.receipt-wrapper {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.receipt-page {
  font-family: 'Rubik', sans-serif;
  max-width: 680px;
  margin: 0 auto;
  padding: 24px 16px;
  background: #ffffff;
  box-sizing: border-box;
  width: 100%;
}

.receipt-site-header {
  background-color: #ffffff;
  padding: 20px 16px 2px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.receipt-site-logo {
  width: 60px;
  height: 60px;
}

.language-switcher-globe {
  width: 20px;
  height: 20px;
}

.language-switcher {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.language-switcher-toggle {
  display: flex;
  align-items: center;
  gap: 6px;
  background-color: #76b82d;
  color: white;
  padding: 8px 12px;
  border-radius: 12px;
  cursor: pointer;
}

.language-switcher-arrow {
  width: 12px;
  height: 12px;
}

.language-dropdown {
  position: absolute;
  background: white;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  padding: 8px;
  margin-top: 8px;
  z-index: 100;
}

.language-option {
  display: block;
  padding: 8px 16px;
  font-size: 14px;
  color: black;
  text-decoration: none;
  border-radius: 8px;
}

.language-option:hover {
  background-color: #f0f0f0;
}

.receipt-header {
  margin-bottom: 24px;
}

.receipt-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}

.receipt-header-left {
  flex: 1;
}

.receipt-title {
  font-size: 36px;
  font-weight: 700;
  color: #76b82d;
  line-height: 1.2;
  margin-bottom: 16px;
  text-align: left;
}

.receipt-meta {
  color: black;
  font-size: 15px;
  margin-bottom: 3px;
  font-weight: 300;
}

.receipt-meta--bold {
  font-weight: 500;
  margin-top: 12px;
  margin-bottom: 6px;
}

.receipt-header-badges {
  display: flex;
  flex-direction: row;
  gap: 8px;
  align-items: center;
  width: 100%;
}

.status-badge {
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 300;
  flex: 1;
  text-align: center;
}

.status-active {
  background-color: #76b82d;
  color: white;
}

.status-inactive {
  background-color: #dee0e3;
  color: white;
}

.receipt-card {
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #ebeaea;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.03);
  padding: 20px;
  margin-bottom: 25px;
}

.receipt-card-header {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 16px;
}

.receipt-card-title {
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 4px 0;
}

.receipt-card-location {
  font-weight: 500;
  font-size: 14px;
  margin: 0;
}

.receipt-logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

.receipt-hand-image {
  width: 100%;
  height: 350px;
  object-fit: cover;
  margin-top: 10px;
}

.receipt-divider {
  border: none;
  border-top: 1px solid #e0e0e0;
  margin: 8px 0;
}

.receipt-divider-green {
  border: none;
  border-top: 2px solid #76b82d;
  margin: 16px 0;
}

.receipt-line {
  display: flex;
  justify-content: space-between;
  font-size: 15px;
  margin-bottom: 8px;
}

.receipt-line--first {
  margin-top: 24px;
}

.receipt-line--total {
  margin-bottom: 24px;
}

.receipt-amount {
  font-weight: 500;
  font-size: 15px;
}

.receipt-total-label {
  font-weight: 600;
  font-size: 15px;
}

.receipt-total-amount {
  font-weight: 700;
  font-size: 15px;
  color: #76b82d;
}

.receipt-tax-toggle {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  color: #555;
  font-size: 14px;
  font-weight: 300;
  margin-top: 10px;
}

.tax-toggle-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1.5px solid #753e8f;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease;
}

.tax-arrow-icon {
  width: 8px;
  height: 8px;
}

.receipt-tax-details {
  font-size: 14px;
  color: #555;
  font-weight: 300;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.receipt-tax-details-inner {
  padding-top: 25px;
}

.receipt-tax-details p {
  margin-bottom: 2px;
}

.receipt-tax-details .receipt-tax-info {
  font-size: 13px;
  color: #777;
  margin-bottom: 12px;
}

.receipt-tax-disclaimer {
  margin-top: 12px;
  font-size: 13px;
  color: #777;
}

.receipt-amount .vat-category {
  font-weight: 300;
}

.deposit-title {
  font-weight: 700;
  font-size: 18px;
  margin: 0 0 2px 0;
}

.deposit-subtitle {
  color: #555;
  font-size: 15px;
  margin: 0 0 16px 0;
  font-weight: 300;
}

.deposit-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  margin-bottom: 8px;
  font-weight: 300;
}

.deposit-icon-img {
  width: 20px;
  height: 20px;
}

.return-title {
  font-weight: 700;
  font-size: 20px;
  margin: 8px 0 16px 0;
}

.return-deposit-title {
  font-weight: 700;
  font-size: 16px;
  margin: 16px 0 4px 0;
}

.return-deposit-info {
  font-size: 14px;
  color: #555;
  margin: 0 0 6px 0;
  font-weight: 300;
}

.return-deposit-warning {
  font-size: 14px;
  color: #555;
  margin: 0;
  font-weight: 300;
}

.find-locations-btn {
  display: block;
  background-color: #76b82d;
  color: white;
  text-align: center;
  padding: 16px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 16px;
  text-decoration: none;
  margin-top: 16px;
}

.return-deposit-warning-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.warning-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #f5a623;
  flex-shrink: 0;
  margin-top: 4px;
}

.help-section {
  background-color: #f0f0f0;
  flex: 1;
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
}

.help-section-inner {
  width: 100%;
  max-width: 680px;
  padding: 16px;
}

.help-card {
  font-family: 'Rubik', sans-serif;
  background: #ffffff;
  margin-bottom: 0;
  border: 1px solid #ebeaea;
  box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1), 4px 4px 10px rgba(0, 0, 0, 0.03);
  border-radius: 16px;
  padding: 20px;
}

.help-title {
  font-weight: 700;
  font-size: 16px;
  margin: 0 0 12px 0;
}

.help-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
  margin-bottom: 4px;
  font-weight: 300;
}

.help-icon-img {
  width: 15px;
  height: 15px;
}

.help-link {
  color: black;
  text-decoration: none;
  font-weight: 300;
}

.receipt-footer {
  width: 100%;
  background-color: black;
  padding: 16px 0 32px 0;
}

.receipt-footer-inner {
  max-width: 680px;
  padding: 24px 32px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  margin: 0 auto;
}

.receipt-footer-title {
  font-size: 13px;
  font-weight: 700;
  color: #76b82d;
  margin-bottom: 10px;
}

.receipt-footer-btn {
  width: 35%;
  text-align: center;
  padding: 8px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 12px;
  text-decoration: none;
  margin-bottom: 8px;
}

.receipt-footer-btn--primary {
  background-color: #76b82d;
  color: white;
}

.receipt-footer-btn--secondary {
  background-color: transparent;
  color: #76b82d;
  border: 1.5px solid #76b82d;
}

.receipt-footer-copyright {
  font-size: 11px;
  color: #777;
  margin-top: 16px;
  font-weight: 300;
}

@media print {
  .receipt-site-header,
  .language-switcher,
  .receipt-hand-image,
  .receipt-tax-toggle,
  .help-section,
  .receipt-footer,
  .find-locations-btn,
  .return-deposit-warning-row,
  .receipt-print-btn-wrapper {
    display: none !important;
  }

  .receipt-tax-details {
    max-height: none !important;
    overflow: visible !important;
  }

  .receipt-card {
    box-shadow: none !important;
    border: 1px solid #e0e0e0 !important;
  }

  .receipt-page {
    max-width: 100% !important;
    padding: 0 !important;
  }
}

.receipt-print-btn {
  background-color: #76b82d;
  color: white;
  border: none;
  border-radius: 999px;
  padding: 12px 24px;
  font-size: 15px;
  font-weight: 500;
  font-family: 'Rubik', sans-serif;
  cursor: pointer;
  width: 100%;
}

.receipt-print-btn-wrapper {
  max-width: 680px;
  margin: 0 auto;
  padding: 0 16px 16px 16px;
}
.spinner,
.spinner:before,
.spinner:after {
  border-radius: 50%;
}
.spinner {
  color: #ffffff;
  font-size: 22px;
  text-indent: -99999px;
  margin: 0px auto;
  position: relative;
  width: 20px;
  height: 20px;
  box-shadow: inset 0 0 0 2px;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
}
.spinner:before,
.spinner:after {
  position: absolute;
  content: "";
}
.spinner:before {
  width: 10.4px;
  height: 20.4px;
  background: #ffffff;
  border-radius: 20.4px 0 0 20.4px;
  top: -0.2px;
  left: -0.2px;
  -webkit-transform-origin: 10.4px 10.2px;
  transform-origin: 10.4px 10.2px;
  -webkit-animation: loading 2s infinite ease 1.5s;
  animation: loading 2s infinite ease 1.5s;
}
.spinner:after {
  width: 10.4px;
  height: 10.2px;
  background: #ffffff;
  border-radius: 0 10.2px 10.2px 0;
  top: -0.1px;
  left: 10.2px;
  -webkit-transform-origin: 0px 10.2px;
  transform-origin: 0px 10.2px;
  -webkit-animation: loading 2s infinite ease;
  animation: loading 2s infinite ease;
}

@-webkit-keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes loading {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */
