/* line 2, app/assets/stylesheets/frontend/components/button_component.scss */
.btn {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  border-radius: 100px;
  padding: 14px 24px;
  min-height: 48px;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* line 17, app/assets/stylesheets/frontend/components/button_component.scss */
.btn.btn-primary {
  background-color: #000000;
  color: #FFFFFF;
}

/* line 20, app/assets/stylesheets/frontend/components/button_component.scss */
.btn.btn-primary:hover {
  background-color: #1a1a1a;
}

/* line 25, app/assets/stylesheets/frontend/components/button_component.scss */
.btn.btn-outline-secondary {
  background-color: #FFFFFF;
  color: #000000;
  border: 1px solid #727272;
}

/* line 29, app/assets/stylesheets/frontend/components/button_component.scss */
.btn.btn-outline-secondary:hover {
  background-color: #F5F7FB;
}

/* line 34, app/assets/stylesheets/frontend/components/button_component.scss */
.btn.btn-icon {
  padding: 14px;
}

/* line 36, app/assets/stylesheets/frontend/components/button_component.scss */
.btn.btn-icon .icon {
  width: 24px;
  height: 24px;
}

/* line 43, app/assets/stylesheets/frontend/components/button_component.scss */
.btn.btn-sm {
  padding: 8px 16px;
  font-size: 14px;
  gap: 12px;
  min-height: 36px;
}

/* line 50, app/assets/stylesheets/frontend/components/button_component.scss */
.btn.btn-lg {
  padding: 20px 32px;
  font-size: 18px;
  gap: 20px;
  min-height: 60px;
}

/* line 2, app/assets/stylesheets/frontend/components/card_component.scss */
.card {
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  border-radius: 16px;
  box-shadow: 0px 1px 12px rgba(0, 0, 0, 0.13);
  overflow: hidden;
}

/* line 8, app/assets/stylesheets/frontend/components/card_component.scss */
.card .card-header {
  padding: 24px 24px 0;
}

/* line 10, app/assets/stylesheets/frontend/components/card_component.scss */
.card .card-header .card-title {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  margin: 0;
  color: #000000;
}

/* line 18, app/assets/stylesheets/frontend/components/card_component.scss */
.card .card-body {
  padding: 16px 24px;
}

/* line 21, app/assets/stylesheets/frontend/components/card_component.scss */
.card .card-footer {
  padding: 0 24px 24px;
}

/* line 25, app/assets/stylesheets/frontend/components/card_component.scss */
.card.card-product .card-image {
  position: relative;
  height: 214px;
  border-radius: 12px;
  overflow: hidden;
  margin: 8px;
}

/* line 31, app/assets/stylesheets/frontend/components/card_component.scss */
.card.card-product .card-image .card-logo {
  position: absolute;
  top: 8px;
  right: 8px;
  width: 90px;
  height: 90px;
  background: #FFFFFF;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 45, app/assets/stylesheets/frontend/components/card_component.scss */
.card.card-pricing {
  border: 1px solid #EBEBEB;
}

/* line 47, app/assets/stylesheets/frontend/components/card_component.scss */
.card.card-pricing.featured {
  border-color: #000000;
}

/* line 49, app/assets/stylesheets/frontend/components/card_component.scss */
.card.card-pricing.featured .card-header {
  background: #000000;
  color: #FFFFFF;
}

/* line 54, app/assets/stylesheets/frontend/components/card_component.scss */
.card.card-pricing .plan-name {
  text-align: center;
  padding: 16px;
}

/* line 58, app/assets/stylesheets/frontend/components/card_component.scss */
.card.card-pricing .pricing {
  text-align: center;
}

/* line 60, app/assets/stylesheets/frontend/components/card_component.scss */
.card.card-pricing .pricing .price-annual {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  display: block;
}

/* line 66, app/assets/stylesheets/frontend/components/card_component.scss */
.card.card-pricing .pricing .price-monthly {
  font-family: 'Lato', sans-serif;
  font-size: 18px;
  color: #727272;
}

/* line 72, app/assets/stylesheets/frontend/components/card_component.scss */
.card.card-pricing .features-list {
  list-style: none;
  padding: 0;
  margin: 16px 0;
}

/* line 76, app/assets/stylesheets/frontend/components/card_component.scss */
.card.card-pricing .features-list .feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid #EBEBEB;
}

/* line 82, app/assets/stylesheets/frontend/components/card_component.scss */
.card.card-pricing .features-list .feature-item:last-child {
  border-bottom: none;
}

/* line 85, app/assets/stylesheets/frontend/components/card_component.scss */
.card.card-pricing .features-list .feature-item.highlight {
  background: rgba(234, 198, 80, 0.15);
  border-radius: 8px;
  padding: 24px;
}

/* line 90, app/assets/stylesheets/frontend/components/card_component.scss */
.card.card-pricing .features-list .feature-item.unavailable {
  opacity: 0.5;
}

/* line 93, app/assets/stylesheets/frontend/components/card_component.scss */
.card.card-pricing .features-list .feature-item .icon-check {
  width: 32px;
  height: 32px;
  color: #000000;
}

/* line 2, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #D4D4D4;
  border-radius: 16px;
  overflow: hidden;
  background: #FFFFFF;
  height: 100%;
}

/* line 14, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-header {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  width: 100%;
  height: 195px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0 8px 40px;
  border: 1px solid #FFFFFF;
  border-radius: 16px 16px 0 0;
}

/* line 30, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, black 100%);
  border-radius: 16px 16px 0 0;
}

/* line 41, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-header .pricing-title {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.32em;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* line 54, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 24px;
  border-radius: 0 0 16px 16px;
  flex: 1;
}

/* line 64, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .pricing-top {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 24px;
}

/* line 73, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .pricing-middle {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  gap: 16px;
  flex: 1;
  margin-top: 24px;
}

/* line 83, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .pricing-description {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25em;
  text-align: center;
  color: #000000;
  margin: 0;
  width: 100%;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 98, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .pricing-info {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}

/* line 104, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .pricing-info .price-main {
  display: flex;
  align-items: center;
  gap: 7px;
  width: 266.67px;
  height: 38px;
}

/* line 111, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .pricing-info .price-main .price-amount {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.19em;
  text-align: center;
  color: #000000;
}

/* line 120, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .pricing-info .price-main .price-period {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.56em;
  text-align: center;
  color: #425466;
}

/* line 130, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .pricing-info .price-alternative {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 266.67px;
  height: 34px;
}

/* line 137, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .pricing-info .price-alternative .price-regular {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.15em;
  text-align: center;
  color: #000000;
}

/* line 146, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .pricing-info .price-alternative .price-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #AFEBBD;
  border-radius: 30px;
}

/* line 155, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .pricing-info .price-alternative .price-badge .badge-text {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.25em;
  text-align: center;
  color: #000000;
}

/* line 166, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .pricing-info .price-note {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.25em;
  letter-spacing: 1.33%;
  text-align: left;
  color: #727272;
  width: 100%;
  margin: 0;
}

/* line 179, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .pricing-action {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0;
}

/* line 185, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .pricing-action .btn-pricing {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  background: #000000;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 196, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .pricing-action .btn-pricing .btn-text {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25em;
  text-align: center;
  color: #FFFFFF;
}

/* line 205, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .pricing-action .btn-pricing .btn-arrow {
  width: 4px;
  height: 10px;
}

/* line 210, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .pricing-action .btn-pricing:hover {
  background: #1a1a1a;
}

/* line 216, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .pricing-divider {
  width: 100%;
  height: 1px;
  background: #EBEBEB;
}

/* line 222, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .featured-feature {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 16px;
  padding: 12px 8px;
  background: #F5F7FB;
  border-radius: 8px;
}

/* line 233, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .featured-feature .feature-highlight {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 16px;
}

/* line 239, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .featured-feature .feature-highlight .star-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 2px;
  background: #FFB909;
  border-radius: 20px;
  width: 20px;
  height: 20px;
}

/* line 250, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .featured-feature .feature-highlight .star-icon svg {
  width: 16px;
  height: 16px;
}

/* line 256, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .featured-feature .feature-highlight .feature-text {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.67em;
  letter-spacing: 1.33%;
  text-align: left;
  color: #000000;
  flex: 1;
  width: 228.67px;
}

/* line 270, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .pricing-features {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 16px;
  padding: 0 8px;
}

/* line 279, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .pricing-features .feature-item {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 16px;
}

/* line 285, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .pricing-features .feature-item .feature-icon {
  width: 22px;
  height: 22px;
  position: relative;
}

/* line 290, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .pricing-features .feature-item .feature-icon .check-circle {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 302, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .pricing-features .feature-item .feature-icon .check-circle svg {
  width: 8px;
  height: 6px;
}

/* line 309, app/assets/stylesheets/frontend/components/pricing_card_component.scss */
.pricing-card .pricing-content .pricing-features .feature-item .feature-text {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.67em;
  letter-spacing: 1.33%;
  text-align: left;
  color: #000000;
  flex: 1;
}

/* line 2, app/assets/stylesheets/frontend/components/partner_address_component.scss */
.partner-address-card-link {
  text-decoration: none;
  color: inherit;
  display: block;
}

/* line 8, app/assets/stylesheets/frontend/components/partner_address_component.scss */
.partner-address-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

/* line 16, app/assets/stylesheets/frontend/components/partner_address_component.scss */
.partner-address-card .partner-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 214px;
  border-radius: 12px;
  overflow: hidden;
  align-self: stretch;
  flex-shrink: 0;
}

/* line 27, app/assets/stylesheets/frontend/components/partner_address_component.scss */
.partner-address-card .partner-labels {
  display: flex;
  align-self: stretch;
  gap: 16px;
}

/* line 32, app/assets/stylesheets/frontend/components/partner_address_component.scss */
.partner-address-card .partner-labels .discount-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 48px;
  height: 48px;
  min-width: 48px;
  min-height: 48px;
  flex-shrink: 0;
  background: #000000;
}

/* line 43, app/assets/stylesheets/frontend/components/partner_address_component.scss */
.partner-address-card .partner-labels .discount-badge .discount-text {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.47em;
  letter-spacing: 1.33%;
  text-align: center;
  color: #FFFFFF;
  width: 42px;
}

/* line 56, app/assets/stylesheets/frontend/components/partner_address_component.scss */
.partner-address-card .partner-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 100%;
}

/* line 62, app/assets/stylesheets/frontend/components/partner_address_component.scss */
.partner-address-card .partner-content .partner-location-rating {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  gap: 3px;
}

/* line 69, app/assets/stylesheets/frontend/components/partner_address_component.scss */
.partner-address-card .partner-content .partner-location-rating .location-info {
  display: flex;
  align-items: center;
  gap: 4px;
  width: 177.88px;
}

/* line 75, app/assets/stylesheets/frontend/components/partner_address_component.scss */
.partner-address-card .partner-content .partner-location-rating .location-info .city-name {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.23em;
  letter-spacing: 1.54%;
  color: #000000;
}

/* line 84, app/assets/stylesheets/frontend/components/partner_address_component.scss */
.partner-address-card .partner-content .partner-location-rating .location-info .distance {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.38em;
  letter-spacing: 1.54%;
  color: #000000;
}

/* line 94, app/assets/stylesheets/frontend/components/partner_address_component.scss */
.partner-address-card .partner-content .partner-location-rating .rating-info {
  display: flex;
  align-items: center;
  gap: 4px;
}

/* line 99, app/assets/stylesheets/frontend/components/partner_address_component.scss */
.partner-address-card .partner-content .partner-location-rating .rating-info .star-icon {
  width: 20px;
  height: 20px;
}

/* line 103, app/assets/stylesheets/frontend/components/partner_address_component.scss */
.partner-address-card .partner-content .partner-location-rating .rating-info .star-icon svg {
  width: 100%;
  height: 100%;
}

/* line 109, app/assets/stylesheets/frontend/components/partner_address_component.scss */
.partner-address-card .partner-content .partner-location-rating .rating-info .rating-score {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.23em;
  letter-spacing: 1.54%;
  text-align: left;
  color: #000000;
  width: 23px;
}

/* line 122, app/assets/stylesheets/frontend/components/partner_address_component.scss */
.partner-address-card .partner-content .partner-name {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.56em;
  letter-spacing: 1.11%;
  color: #000000;
  margin: 0;
  width: 100%;
}

/* line 133, app/assets/stylesheets/frontend/components/partner_address_component.scss */
.partner-address-card .partner-content .partner-description {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.38em;
  letter-spacing: 1.54%;
  color: #727272;
  margin: 0;
  width: 100%;
}

/* line 1, app/assets/stylesheets/frontend/components/_partner_header.scss */
.partner-header {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 54px;
}

/* line 7, app/assets/stylesheets/frontend/components/_partner_header.scss */
.partner-header__content {
  padding: 0 0px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* line 14, app/assets/stylesheets/frontend/components/_partner_header.scss */
.partner-header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

/* line 21, app/assets/stylesheets/frontend/components/_partner_header.scss */
.partner-header__title-section {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* line 27, app/assets/stylesheets/frontend/components/_partner_header.scss */
.partner-header__back {
  width: 25px;
  height: 21.57px;
  cursor: pointer;
  flex-shrink: 0;
}

/* line 33, app/assets/stylesheets/frontend/components/_partner_header.scss */
.partner-header__back svg {
  width: 100%;
  height: 100%;
}

/* line 39, app/assets/stylesheets/frontend/components/_partner_header.scss */
.partner-header__name {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.19287109375em;
  color: #000000;
  margin: 0;
}

/* line 48, app/assets/stylesheets/frontend/components/_partner_header.scss */
.partner-header__cta {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

/* line 54, app/assets/stylesheets/frontend/components/_partner_header.scss */
.partner-header__button {
  background: #000000;
  color: #FFFFFF;
  border: 1px solid #CCD4DC;
  border-radius: 80px;
  padding: 10px 24px;
  height: 50px;
  font-family: 'Avenir Next', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8em;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  border: none;
  box-shadow: none;
}

/* line 74, app/assets/stylesheets/frontend/components/_partner_header.scss */
.partner-header__button:hover {
  background: #1a1a1a;
}

/* line 78, app/assets/stylesheets/frontend/components/_partner_header.scss */
.partner-header__button--disabled {
  background: #CCD4DC;
  color: #7890A3;
  cursor: default;
  opacity: 0.9;
  pointer-events: none;
}

/* line 87, app/assets/stylesheets/frontend/components/_partner_header.scss */
.partner-header__description {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3660000801086425em;
  color: #6C839A;
  margin: 0;
  width: 100%;
}

@media (max-width: 768px) {
  /* line 1, app/assets/stylesheets/frontend/components/_partner_header.scss */
  .partner-header {
    padding: 24px 32px;
  }
  /* line 101, app/assets/stylesheets/frontend/components/_partner_header.scss */
  .partner-header__content {
    padding: 0 24px;
  }
  /* line 105, app/assets/stylesheets/frontend/components/_partner_header.scss */
  .partner-header__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  /* line 111, app/assets/stylesheets/frontend/components/_partner_header.scss */
  .partner-header__name {
    font-size: 32px;
  }
  /* line 115, app/assets/stylesheets/frontend/components/_partner_header.scss */
  .partner-header__description {
    font-size: 18px;
  }
}

/* line 1, app/assets/stylesheets/frontend/components/_partner_detail.scss */
.partner-detail-container {
  background: #FAFAFA;
  padding: 32px 16px 100px;
  width: 100%;
  max-width: 1512px;
  margin: 0 auto;
}

/* line 8, app/assets/stylesheets/frontend/components/_partner_detail.scss */
.partner-detail-container .partner-detail-content {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

/* line 14, app/assets/stylesheets/frontend/components/_partner_detail.scss */
.partner-detail-container .partner-detail-main {
  width: 740px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

/* line 21, app/assets/stylesheets/frontend/components/_partner_detail.scss */
.partner-detail-container .partner-detail-sidebar {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

@media (max-width: 992px) {
  /* line 1, app/assets/stylesheets/frontend/components/_partner_detail.scss */
  .partner-detail-container {
    padding: 24px 32px 60px;
  }
  /* line 33, app/assets/stylesheets/frontend/components/_partner_detail.scss */
  .partner-detail-container .partner-detail-content {
    flex-direction: column;
    gap: 32px;
  }
  /* line 38, app/assets/stylesheets/frontend/components/_partner_detail.scss */
  .partner-detail-container .partner-detail-main {
    width: 100%;
  }
  /* line 42, app/assets/stylesheets/frontend/components/_partner_detail.scss */
  .partner-detail-container .partner-detail-sidebar {
    width: 100%;
  }
}

/* line 1, app/assets/stylesheets/frontend/components/_partner_image.scss */
.partner-image {
  width: 100%;
  height: 462px;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0px 8px 24px 0px rgba(10, 37, 64, 0.03), 6px 0px 24px 0px rgba(10, 37, 64, 0);
}

/* line 8, app/assets/stylesheets/frontend/components/_partner_image.scss */
.partner-image__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* line 15, app/assets/stylesheets/frontend/components/_partner_image.scss */
.partner-image__placeholder {
  width: 100%;
  height: 100%;
  background: #F5F7FB;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #727272;
  font-size: 48px;
}

/* line 2, app/assets/stylesheets/frontend/components/_partner_about.scss */
.partner-about__title {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.19287109375em;
  color: #000000;
  margin: 0 0 24px 0;
}

/* line 11, app/assets/stylesheets/frontend/components/_partner_about.scss */
.partner-about__description {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.875em;
  color: #000000;
}

/* line 18, app/assets/stylesheets/frontend/components/_partner_about.scss */
.partner-about__description p {
  margin: 0 0 1em 0;
}

/* line 21, app/assets/stylesheets/frontend/components/_partner_about.scss */
.partner-about__description p:last-child {
  margin-bottom: 0;
}

/* line 1, app/assets/stylesheets/frontend/components/_partner_reviews.scss */
.partner-reviews {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* line 6, app/assets/stylesheets/frontend/components/_partner_reviews.scss */
.partner-reviews__title {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.19287109375em;
  color: #000000;
  margin: 0;
}

/* line 15, app/assets/stylesheets/frontend/components/_partner_reviews.scss */
.partner-reviews__rating {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* line 21, app/assets/stylesheets/frontend/components/_partner_reviews.scss */
.partner-reviews__score {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 600;
  font-size: 44px;
  line-height: 1.19287109375em;
  color: #000000;
}

/* line 29, app/assets/stylesheets/frontend/components/_partner_reviews.scss */
.partner-reviews__rating-details {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

/* line 36, app/assets/stylesheets/frontend/components/_partner_reviews.scss */
.partner-reviews__stars {
  display: flex;
  gap: 7px;
}

/* line 41, app/assets/stylesheets/frontend/components/_partner_reviews.scss */
.partner-reviews__star {
  width: 15px;
  height: 14px;
  color: #EAC650;
}

/* line 46, app/assets/stylesheets/frontend/components/_partner_reviews.scss */
.partner-reviews__star:not(.active) {
  color: transparent;
  -webkit-text-stroke: 1px #EAC650;
}

/* line 52, app/assets/stylesheets/frontend/components/_partner_reviews.scss */
.partner-reviews__count {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.366000039236886em;
  color: #000000;
}

/* line 60, app/assets/stylesheets/frontend/components/_partner_reviews.scss */
.partner-reviews__certification {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 20px 24px;
  background: white;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

/* line 70, app/assets/stylesheets/frontend/components/_partner_reviews.scss */
.partner-reviews__cert-icon {
  flex-shrink: 0;
}

/* line 74, app/assets/stylesheets/frontend/components/_partner_reviews.scss */
.partner-reviews__cert-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 80, app/assets/stylesheets/frontend/components/_partner_reviews.scss */
.partner-reviews__cert-title {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6666666666666667em;
  color: #000000;
  margin: 0;
}

/* line 89, app/assets/stylesheets/frontend/components/_partner_reviews.scss */
.partner-reviews__cert-text {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.875em;
  color: #000000;
  margin: 0;
}

/* line 98, app/assets/stylesheets/frontend/components/_partner_reviews.scss */
.partner-reviews__list {
  display: flex;
  flex-direction: column;
}

/* line 103, app/assets/stylesheets/frontend/components/_partner_reviews.scss */
.partner-reviews__item {
  display: flex;
  align-items: stretch;
  gap: 24px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(108, 131, 154, 0.1);
}

/* line 110, app/assets/stylesheets/frontend/components/_partner_reviews.scss */
.partner-reviews__item:last-child {
  border-bottom: none;
}

/* line 115, app/assets/stylesheets/frontend/components/_partner_reviews.scss */
.partner-reviews__item-header {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

/* line 122, app/assets/stylesheets/frontend/components/_partner_reviews.scss */
.partner-reviews__user {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.6666666666666667em;
  color: #000000;
}

/* line 130, app/assets/stylesheets/frontend/components/_partner_reviews.scss */
.partner-reviews__item-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: relative;
  width: 283px;
  height: 30px;
}

/* line 140, app/assets/stylesheets/frontend/components/_partner_reviews.scss */
.partner-reviews__item-stars {
  position: absolute;
  left: 0;
  top: 8px;
  display: flex;
  gap: 7px;
}

/* line 147, app/assets/stylesheets/frontend/components/_partner_reviews.scss */
.partner-reviews__item-stars .partner-reviews__star {
  width: 15px;
  height: 14px;
}

/* line 153, app/assets/stylesheets/frontend/components/_partner_reviews.scss */
.partner-reviews__date {
  position: absolute;
  left: 119px;
  top: 0;
  width: 100%;
  height: 30px;
  font-family: 'Avenir Next', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 2.142857142857143em;
  color: #6C839A;
  display: flex;
  align-items: center;
}

/* line 2, app/assets/stylesheets/frontend/components/_partner_conditions.scss */
.partner-conditions__title {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.19287109375em;
  color: #000000;
  margin: 0 0 32px 0;
}

/* line 11, app/assets/stylesheets/frontend/components/_partner_conditions.scss */
.partner-conditions__content {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.875em;
  color: #000000;
}

/* line 18, app/assets/stylesheets/frontend/components/_partner_conditions.scss */
.partner-conditions__content p {
  margin: 0 0 0.5em 0;
}

/* line 21, app/assets/stylesheets/frontend/components/_partner_conditions.scss */
.partner-conditions__content p:last-child {
  margin-bottom: 0;
}

/* line 1, app/assets/stylesheets/frontend/components/_partner_offers.scss */
.partner-offers {
  width: 100%;
}

/* line 4, app/assets/stylesheets/frontend/components/_partner_offers.scss */
.partner-offers__title {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.19287109375em;
  color: #000000;
  margin: 0 0 32px 0;
}

/* line 13, app/assets/stylesheets/frontend/components/_partner_offers.scss */
.partner-offers__list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

/* line 20, app/assets/stylesheets/frontend/components/_partner_offers.scss */
.partner-offers__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  align-self: stretch;
  gap: 16px;
  padding: 24px;
  border: 1px solid rgba(108, 131, 154, 0.15);
  border-radius: 16px;
  background: white;
  box-shadow: 0px 8px 24px 0px rgba(10, 37, 64, 0.03), 6px 0px 24px 0px rgba(10, 37, 64, 0);
  width: 100%;
}

/* line 34, app/assets/stylesheets/frontend/components/_partner_offers.scss */
.partner-offers__card-title {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.19287109375em;
  text-align: center;
  color: #000000;
  margin: 0;
  width: 100%;
}

/* line 45, app/assets/stylesheets/frontend/components/_partner_offers.scss */
.partner-offers__discount {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 600;
  font-size: 46px;
  line-height: 1.19287109375em;
  text-align: center;
  color: #000000;
  width: 100%;
}

/* line 55, app/assets/stylesheets/frontend/components/_partner_offers.scss */
.partner-offers__card-description {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.5555555555555556em;
  text-align: center;
  color: #425466;
  margin: 0;
  width: 100%;
}

/* line 1, app/assets/stylesheets/frontend/components/_partner_contact.scss */
.partner-contact {
  width: 100%;
}

/* line 4, app/assets/stylesheets/frontend/components/_partner_contact.scss */
.partner-contact__map {
  width: 100%;
  height: 220px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
  box-sizing: border-box;
}

/* line 13, app/assets/stylesheets/frontend/components/_partner_contact.scss */
.partner-contact__map .leaflet-container {
  width: 100% !important;
  height: 100% !important;
}

/* line 19, app/assets/stylesheets/frontend/components/_partner_contact.scss */
.partner-contact__image {
  width: 100%;
  height: 200px;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: 32px;
}

/* line 27, app/assets/stylesheets/frontend/components/_partner_contact.scss */
.partner-contact__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 33, app/assets/stylesheets/frontend/components/_partner_contact.scss */
.partner-contact__title {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.19287109375em;
  color: #000000;
  margin: 0 0 32px 0;
}

/* line 42, app/assets/stylesheets/frontend/components/_partner_contact.scss */
.partner-contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* line 48, app/assets/stylesheets/frontend/components/_partner_contact.scss */
.partner-contact__item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

/* line 54, app/assets/stylesheets/frontend/components/_partner_contact.scss */
.partner-contact__icon {
  font-size: 16px;
  color: #666666;
  margin-top: 2px;
  min-width: 16px;
}

/* line 61, app/assets/stylesheets/frontend/components/_partner_contact.scss */
.partner-contact__text {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5em;
  color: #000000;
}

/* line 69, app/assets/stylesheets/frontend/components/_partner_contact.scss */
.partner-contact__link {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.5em;
  color: #1333A2;
  text-decoration: none;
}

/* line 77, app/assets/stylesheets/frontend/components/_partner_contact.scss */
.partner-contact__link:hover {
  text-decoration: underline;
}

/* line 2, app/assets/stylesheets/frontend/components/_partners_grid_component.scss */
.partners-grid {
  display: grid;
  gap: 24px;
  padding: 32px 0;
  grid-template-columns: 1fr;
}

@media (min-width: 768px) {
  /* line 2, app/assets/stylesheets/frontend/components/_partners_grid_component.scss */
  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 992px) {
  /* line 2, app/assets/stylesheets/frontend/components/_partners_grid_component.scss */
  .partners-grid {
    grid-template-columns: repeat(4, 1fr);
  }
}

/* line 22, app/assets/stylesheets/frontend/components/_partners_grid_component.scss */
.partners-grid .partner-address-card {
  height: 100%;
  display: flex;
  flex-direction: column;
}

/* line 27, app/assets/stylesheets/frontend/components/_partners_grid_component.scss */
.partners-grid .partner-address-card .partner-image {
  flex-shrink: 0;
}

/* line 31, app/assets/stylesheets/frontend/components/_partners_grid_component.scss */
.partners-grid .partner-address-card .partner-labels {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

/* line 2, app/assets/stylesheets/frontend/components/offer_type_component.scss */
.offer-type-component {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
  padding: 16px 0;
  width: 140px;
  border: 1px solid #000000;
  border-radius: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
  cursor: pointer;
  box-sizing: border-box;
  height: 140px;
  background: transparent;
  flex: 0 0 auto;
}

/* line 20, app/assets/stylesheets/frontend/components/offer_type_component.scss */
.offer-type-component .offer-icon {
  width: 46px;
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 4px;
}

/* line 27, app/assets/stylesheets/frontend/components/offer_type_component.scss */
.offer-type-component .offer-icon svg, .offer-type-component .offer-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* line 34, app/assets/stylesheets/frontend/components/offer_type_component.scss */
.offer-type-component .offer-title {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.5em;
  text-align: center;
  color: #000000;
  margin: 0;
  padding: 0 8px;
  max-height: calc(1.5em * 2);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: normal;
}

/* line 51, app/assets/stylesheets/frontend/components/offer_type_component.scss */
.offer-type-component.selected {
  background: #F5F7FB;
}

/* line 54, app/assets/stylesheets/frontend/components/offer_type_component.scss */
.offer-type-component.selected .offer-title {
  font-weight: 600;
}

/* line 60, app/assets/stylesheets/frontend/components/offer_type_component.scss */
.offer-type-component:hover {
  background: #F5F7FB;
  text-decoration: none;
}

/* line 64, app/assets/stylesheets/frontend/components/offer_type_component.scss */
.offer-type-component:hover .offer-title {
  color: #000000;
}

/* line 70, app/assets/stylesheets/frontend/components/offer_type_component.scss */
.offer-type-component.selected:hover {
  background: #F5F7FB;
}

@media (max-width: 575.98px) {
  /* line 77, app/assets/stylesheets/frontend/components/offer_type_component.scss */
  .offer-type-component {
    width: 100px;
    min-width: 100px;
    height: 110px;
    padding: 12px 0;
  }
  /* line 82, app/assets/stylesheets/frontend/components/offer_type_component.scss */
  .offer-type-component .offer-icon {
    width: 36px;
    height: 36px;
  }
  /* line 86, app/assets/stylesheets/frontend/components/offer_type_component.scss */
  .offer-type-component .offer-title {
    font-size: 14px;
    /* keep typography similar */
    line-height: 1.4em;
    max-height: calc(1.4em * 2);
  }
}

/* line 2, app/assets/stylesheets/frontend/components/_offer_types_inline.scss */
.offer-types-inline {
  display: flex;
  gap: 8px;
  justify-content: flex-start;
  overflow-x: auto;
  padding: 16px 16px;
  padding-right: 32px;
  -webkit-overflow-scrolling: touch;
}

@media (max-width: 575.98px) {
  /* line 13, app/assets/stylesheets/frontend/components/_offer_types_inline.scss */
  .offer-types-inline {
    padding: 12px 12px;
    gap: 6px;
  }
}

/* line 17, app/assets/stylesheets/frontend/components/_offer_types_inline.scss */
.offer-types-inline::after {
  content: '';
  display: inline-block;
  width: 16px;
  flex: 0 0 auto;
}

/* line 1, app/assets/stylesheets/frontend/components/web_offer_component.scss */
.web-offer-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: inherit;
}

/* line 9, app/assets/stylesheets/frontend/components/web_offer_component.scss */
.web-offer-image {
  position: relative;
  width: 100%;
  height: 214px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  padding: 8px;
}

/* line 20, app/assets/stylesheets/frontend/components/web_offer_component.scss */
.web-offer-brand {
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  width: 90px;
  height: 90px;
  background-color: #FFFFFF;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* line 35, app/assets/stylesheets/frontend/components/web_offer_component.scss */
.web-offer-brand-icon {
  max-width: 56px;
  max-height: 56px;
  object-fit: contain;
}

/* line 41, app/assets/stylesheets/frontend/components/web_offer_component.scss */
.web-offer-labels {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

/* line 47, app/assets/stylesheets/frontend/components/web_offer_component.scss */
.web-offer-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

/* line 54, app/assets/stylesheets/frontend/components/web_offer_component.scss */
.web-offer-title {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 28px;
  letter-spacing: 0.2px;
  color: #000000;
  margin: 0;
}

/* line 64, app/assets/stylesheets/frontend/components/web_offer_component.scss */
.web-offer-subtitle {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.38;
  letter-spacing: 0.2px;
  color: #727272;
  margin: 0;
}

/* line 2, app/assets/stylesheets/frontend/components/_web_offer_header.scss */
.web-offer-header {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding: 32px 54px;
}

/* line 8, app/assets/stylesheets/frontend/components/_web_offer_header.scss */
.web-offer-header__content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* line 14, app/assets/stylesheets/frontend/components/_web_offer_header.scss */
.web-offer-header__top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

/* line 21, app/assets/stylesheets/frontend/components/_web_offer_header.scss */
.web-offer-header__title-section {
  display: flex;
  align-items: center;
  gap: 24px;
}

/* line 27, app/assets/stylesheets/frontend/components/_web_offer_header.scss */
.web-offer-header__back {
  width: 25px;
  height: 21.57px;
  cursor: pointer;
  flex-shrink: 0;
  text-decoration: none;
}

/* line 34, app/assets/stylesheets/frontend/components/_web_offer_header.scss */
.web-offer-header__back svg {
  width: 100%;
  height: 100%;
}

/* line 39, app/assets/stylesheets/frontend/components/_web_offer_header.scss */
.web-offer-header__back:hover {
  opacity: 0.8;
}

/* line 44, app/assets/stylesheets/frontend/components/_web_offer_header.scss */
.web-offer-header__name {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.19287109375em;
  color: #000000;
  margin: 0;
}

/* line 53, app/assets/stylesheets/frontend/components/_web_offer_header.scss */
.web-offer-header__cta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* line 60, app/assets/stylesheets/frontend/components/_web_offer_header.scss */
.web-offer-header__button {
  background: #000000;
  color: #FFFFFF;
  border: none;
  border-radius: 100px;
  padding: 14px 24px;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25em;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

/* line 79, app/assets/stylesheets/frontend/components/_web_offer_header.scss */
.web-offer-header__button:hover {
  background: #1a1a1a;
  color: #FFFFFF;
  text-decoration: none;
}

/* line 85, app/assets/stylesheets/frontend/components/_web_offer_header.scss */
.web-offer-header__button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
}

/* line 90, app/assets/stylesheets/frontend/components/_web_offer_header.scss */
.web-offer-header__button svg {
  width: 4px;
  height: 10px;
  flex-shrink: 0;
}

/* line 97, app/assets/stylesheets/frontend/components/_web_offer_header.scss */
.web-offer-header__description {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.3660000801086425em;
  color: #6C839A;
  margin: 0;
  width: 100%;
}

@media (max-width: 1200px) {
  /* line 2, app/assets/stylesheets/frontend/components/_web_offer_header.scss */
  .web-offer-header {
    padding: 32px 32px;
  }
}

@media (max-width: 768px) {
  /* line 2, app/assets/stylesheets/frontend/components/_web_offer_header.scss */
  .web-offer-header {
    padding: 24px 16px;
  }
  /* line 115, app/assets/stylesheets/frontend/components/_web_offer_header.scss */
  .web-offer-header__top {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
  }
  /* line 121, app/assets/stylesheets/frontend/components/_web_offer_header.scss */
  .web-offer-header__title-section {
    gap: 16px;
  }
  /* line 125, app/assets/stylesheets/frontend/components/_web_offer_header.scss */
  .web-offer-header__name {
    font-size: 32px;
  }
  /* line 129, app/assets/stylesheets/frontend/components/_web_offer_header.scss */
  .web-offer-header__cta {
    align-items: flex-start;
    width: 100%;
  }
  /* line 134, app/assets/stylesheets/frontend/components/_web_offer_header.scss */
  .web-offer-header__button {
    width: 100%;
    justify-content: center;
  }
  /* line 139, app/assets/stylesheets/frontend/components/_web_offer_header.scss */
  .web-offer-header__description {
    font-size: 18px;
  }
}

@media (max-width: 480px) {
  /* line 145, app/assets/stylesheets/frontend/components/_web_offer_header.scss */
  .web-offer-header__name {
    font-size: 28px;
  }
  /* line 149, app/assets/stylesheets/frontend/components/_web_offer_header.scss */
  .web-offer-header__description {
    font-size: 16px;
  }
}

/* line 1, app/assets/stylesheets/frontend/components/ticket_brand_component.scss */
.ticket-brand-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease;
}

/* line 9, app/assets/stylesheets/frontend/components/ticket_brand_component.scss */
.ticket-brand-card:hover {
  transform: translateY(-2px);
  text-decoration: none;
  color: inherit;
}

/* line 16, app/assets/stylesheets/frontend/components/ticket_brand_component.scss */
.ticket-brand-image {
  position: relative;
  width: 100%;
  height: 214px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 12px;
  padding: 8px;
}

/* line 27, app/assets/stylesheets/frontend/components/ticket_brand_component.scss */
.ticket-brand-logo {
  position: absolute;
  top: 50%;
  left: 8px;
  transform: translateY(-50%);
  width: 90px;
  height: 90px;
  background-color: #FFFFFF;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* line 40, app/assets/stylesheets/frontend/components/ticket_brand_component.scss */
.ticket-brand-logo-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 46, app/assets/stylesheets/frontend/components/ticket_brand_component.scss */
.ticket-brand-labels {
  display: flex;
  align-items: stretch;
  gap: 16px;
}

/* line 52, app/assets/stylesheets/frontend/components/ticket_brand_component.scss */
.ticket-brand-content {
  display: flex;
  flex-direction: column;
  gap: 4px;
  flex: 1;
}

/* line 59, app/assets/stylesheets/frontend/components/ticket_brand_component.scss */
.ticket-brand-location-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 3px;
  width: 100%;
}

/* line 67, app/assets/stylesheets/frontend/components/ticket_brand_component.scss */
.ticket-brand-location {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
}

/* line 74, app/assets/stylesheets/frontend/components/ticket_brand_component.scss */
.ticket-brand-location-text {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.23;
  letter-spacing: 0.2px;
  color: #000000;
}

/* line 83, app/assets/stylesheets/frontend/components/ticket_brand_component.scss */
.ticket-brand-title {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.56;
  letter-spacing: 0.2px;
  color: #000000;
  margin: 0;
}

/* line 93, app/assets/stylesheets/frontend/components/ticket_brand_component.scss */
.ticket-brand-subtitle {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
  font-size: 13px;
  line-height: 1.38;
  letter-spacing: 0.2px;
  color: #727272;
  margin: 0;
}

/* line 1, app/assets/stylesheets/frontend/components/select_component.scss */
.select-component {
  margin-bottom: 16px;
}

/* line 4, app/assets/stylesheets/frontend/components/select_component.scss */
.select-component .select-label {
  display: block;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5em;
  color: #000000;
  margin-bottom: 8px;
}

/* line 14, app/assets/stylesheets/frontend/components/select_component.scss */
.select-component .select-wrapper {
  position: relative;
  display: inline-block;
  width: 100%;
}

/* line 20, app/assets/stylesheets/frontend/components/select_component.scss */
.select-component .select-input {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  height: 50px;
  padding: 8px 16px;
  border: 1px solid #727272;
  border-radius: 32px;
  background-color: #FFFFFF;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 18px;
  color: #000000;
  cursor: pointer;
  transition: border-color 0.2s ease;
}

/* line 41, app/assets/stylesheets/frontend/components/select_component.scss */
.select-component .select-input:focus {
  outline: none;
  border-color: #000000;
}

/* line 46, app/assets/stylesheets/frontend/components/select_component.scss */
.select-component .select-input:hover {
  border-color: #000000;
}

/* line 51, app/assets/stylesheets/frontend/components/select_component.scss */
.select-component .select-input::-ms-expand {
  display: none;
}

/* line 56, app/assets/stylesheets/frontend/components/select_component.scss */
.select-component .select-arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  pointer-events: none;
  transition: transform 0.2s ease;
}

/* line 68, app/assets/stylesheets/frontend/components/select_component.scss */
.select-component .select-input:focus + .select-arrow {
  transform: translateY(-50%) rotate(180deg);
}

/* line 74, app/assets/stylesheets/frontend/components/select_component.scss */
.select-component.select-compact .select-input {
  height: 40px;
  padding: 4px 16px;
  font-size: 14px;
  line-height: 16px;
}

/* line 83, app/assets/stylesheets/frontend/components/select_component.scss */
.select-component.select-large .select-input {
  height: 60px;
  padding: 10px 20px;
  font-size: 18px;
  line-height: 20px;
}

/* line 94, app/assets/stylesheets/frontend/components/select_component.scss */
.select-component.select-filled .select-input {
  background-color: #F5F7FB;
  border-color: #EBEBEB;
}

/* line 98, app/assets/stylesheets/frontend/components/select_component.scss */
.select-component.select-filled .select-input:focus, .select-component.select-filled .select-input:hover {
  background-color: #FFFFFF;
  border-color: #000000;
}

/* line 2, app/assets/stylesheets/frontend/components/offers_header_component.scss */
.offers-header {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 8px;
  padding: 48px 32px 16px;
}

/* line 11, app/assets/stylesheets/frontend/components/offers_header_component.scss */
.offers-header .offers-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  gap: 24px;
}

/* line 18, app/assets/stylesheets/frontend/components/offers_header_component.scss */
.offers-header .offers-header-top .offers-header-back {
  width: 220px;
}

/* line 21, app/assets/stylesheets/frontend/components/offers_header_component.scss */
.offers-header .offers-header-top .offers-header-back .back-link {
  display: flex;
  align-items: center;
  gap: 16px;
  text-decoration: none;
  color: inherit;
}

/* line 28, app/assets/stylesheets/frontend/components/offers_header_component.scss */
.offers-header .offers-header-top .offers-header-back .back-link .back-arrow {
  width: 39px;
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 35, app/assets/stylesheets/frontend/components/offers_header_component.scss */
.offers-header .offers-header-top .offers-header-back .back-link .back-arrow .arrow-icon {
  width: 28.44px;
  height: 21.94px;
}

/* line 41, app/assets/stylesheets/frontend/components/offers_header_component.scss */
.offers-header .offers-header-top .offers-header-back .back-link .back-text {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 0.8em;
  letter-spacing: 1.33%;
  color: #000000;
}

/* line 50, app/assets/stylesheets/frontend/components/offers_header_component.scss */
.offers-header .offers-header-top .offers-header-back .back-link:hover {
  opacity: 0.8;
}

/* line 56, app/assets/stylesheets/frontend/components/offers_header_component.scss */
.offers-header .offers-header-top .offers-header-title {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

/* line 62, app/assets/stylesheets/frontend/components/offers_header_component.scss */
.offers-header .offers-header-top .offers-header-title .title-text {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
}

/* line 68, app/assets/stylesheets/frontend/components/offers_header_component.scss */
.offers-header .offers-header-top .offers-header-title .title-text .title-prefix {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 600;
  font-size: 37px;
  line-height: 1.57em;
  color: #000000;
}

/* line 76, app/assets/stylesheets/frontend/components/offers_header_component.scss */
.offers-header .offers-header-top .offers-header-title .title-text .title-location {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 600;
  font-size: 37px;
  line-height: 1.57em;
  background: #E17787;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* line 89, app/assets/stylesheets/frontend/components/offers_header_component.scss */
.offers-header .offers-header-top .offers-header-cta {
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

/* line 96, app/assets/stylesheets/frontend/components/offers_header_component.scss */
.offers-header .offers-header-top .offers-header-cta .btn {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  background: #000000;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 107, app/assets/stylesheets/frontend/components/offers_header_component.scss */
.offers-header .offers-header-top .offers-header-cta .btn .btn-text {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25em;
  text-align: center;
  color: #FFFFFF;
}

/* line 116, app/assets/stylesheets/frontend/components/offers_header_component.scss */
.offers-header .offers-header-top .offers-header-cta .btn .btn-arrow {
  width: 4px;
  height: 10px;
}

/* line 121, app/assets/stylesheets/frontend/components/offers_header_component.scss */
.offers-header .offers-header-top .offers-header-cta .btn:hover {
  background: #1a1a1a;
}

/* line 128, app/assets/stylesheets/frontend/components/offers_header_component.scss */
.offers-header .offers-header-subtitle {
  width: 100%;
}

/* line 131, app/assets/stylesheets/frontend/components/offers_header_component.scss */
.offers-header .offers-header-subtitle .subtitle-text {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.65em;
  text-align: center;
  color: #000000;
  margin: 0;
}

@media (max-width: 1024px) {
  /* line 145, app/assets/stylesheets/frontend/components/offers_header_component.scss */
  .offers-header {
    padding: 32px 24px 16px;
  }
  /* line 148, app/assets/stylesheets/frontend/components/offers_header_component.scss */
  .offers-header .offers-header-top {
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  /* line 153, app/assets/stylesheets/frontend/components/offers_header_component.scss */
  .offers-header .offers-header-top .offers-header-back {
    width: 100%;
  }
  /* line 156, app/assets/stylesheets/frontend/components/offers_header_component.scss */
  .offers-header .offers-header-top .offers-header-back .back-link {
    justify-content: flex-start;
  }
  /* line 162, app/assets/stylesheets/frontend/components/offers_header_component.scss */
  .offers-header .offers-header-top .offers-header-title .title-text {
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
  /* line 167, app/assets/stylesheets/frontend/components/offers_header_component.scss */
  .offers-header .offers-header-top .offers-header-title .title-text .title-prefix,
.offers-header .offers-header-top .offers-header-title .title-text .title-location {
    font-size: 32px;
  }
  /* line 174, app/assets/stylesheets/frontend/components/offers_header_component.scss */
  .offers-header .offers-header-top .offers-header-cta {
    width: 100%;
    align-items: center;
  }
}

@media (max-width: 768px) {
  /* line 183, app/assets/stylesheets/frontend/components/offers_header_component.scss */
  .offers-header {
    padding: 24px 16px 16px;
  }
  /* line 189, app/assets/stylesheets/frontend/components/offers_header_component.scss */
  .offers-header .offers-header-top .offers-header-title .title-text .title-prefix,
.offers-header .offers-header-top .offers-header-title .title-text .title-location {
    font-size: 28px;
  }
  /* line 198, app/assets/stylesheets/frontend/components/offers_header_component.scss */
  .offers-header .offers-header-subtitle .subtitle-text {
    font-size: 18px;
  }
}

/* line 1, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-search-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  width: 100%;
  background: #fff;
  border: none;
  border-radius: 14px;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.12);
  z-index: 100;
  max-height: 0;
  overflow: hidden;
  margin-top: 0;
  padding: 0 0;
  opacity: 0;
  transition: max-height 0.25s cubic-bezier(0.4, 0.2, 0.2, 1), padding 0.2s cubic-bezier(0.4, 0.2, 0.2, 1), opacity 0.2s ease;
  pointer-events: none;
}

/* line 19, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-search-dropdown.is-open {
  max-height: 420px;
  padding: 12px 0 8px 0;
  opacity: 1;
  pointer-events: auto;
}

/* line 26, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-search-dropdown__inner {
  pointer-events: auto;
  max-height: 360px;
  overflow-y: auto;
  overflow-x: hidden;
  -webkit-overflow-scrolling: touch;
  /* smooth native scrolling on iOS */
  touch-action: pan-y;
  /* allow vertical pan gestures */
  /* allow scroll chaining to the page when at boundaries */
  overscroll-behavior: auto;
}

/* line 37, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-search-dropdown__empty {
  padding: 16px 24px;
  color: #6c839a;
  font-size: 0.95em;
}

/* line 44, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-search-dropdown__inner::-webkit-scrollbar {
  width: 8px;
}

/* line 48, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-search-dropdown__inner::-webkit-scrollbar-track {
  background: transparent;
  border-radius: 10px;
}

/* line 53, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-search-dropdown__inner::-webkit-scrollbar-thumb {
  background: #cbd5e0;
  border-radius: 10px;
  transition: background 0.2s;
}

/* line 59, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-search-dropdown__inner::-webkit-scrollbar-thumb:hover {
  background: #a0aec0;
}

/* line 64, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-search-dropdown__inner {
  scrollbar-width: thin;
  scrollbar-color: #cbd5e0 transparent;
}

/* line 69, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-tree {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 75, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-category > span {
  font-weight: 600;
  color: #222c3c;
  padding: 10px 24px 6px 20px;
  display: block;
  font-size: 1.08em;
}

/* line 83, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-category ul {
  margin: 0;
  padding-left: 18px;
  list-style: none;
}

/* line 90, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-question {
  padding: 8px 24px 8px 32px;
  cursor: pointer;
  color: #34495E;
  font-size: 1em;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
  position: relative;
}

/* line 99, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-question::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  width: 12px;
  height: 12px;
  background: url('data:image/svg+xml;utf8,<svg width="12" height="12" viewBox="0 0 12 12" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M4 2L8 6L4 10" stroke="%236C839A" stroke-width="2" stroke-linecap="round" stroke-linejoin="round"/></svg>') no-repeat center center;
}

/* line 110, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-question:hover {
  background: #eaf3fb;
  color: #1976d2;
}

/* line 115, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-question-link {
  color: inherit;
  text-decoration: none;
  display: block;
  width: 100%;
  font: inherit;
}

/* line 122, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-question:hover .faq-question-link {
  color: #1976d2;
  text-decoration: none;
}

/* line 127, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-contact-page {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  min-height: 60vh;
  background: none;
  padding: 48px 0 32px 0;
}

/* line 136, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-contact-card {
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 8px 32px rgba(44, 62, 80, 0.12);
  padding: 40px 36px 32px 36px;
  min-width: 340px;
  max-width: 480px;
  width: 100%;
  margin: 0 auto;
}

/* line 147, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-contact-title {
  text-align: center;
  font-size: 2.1em;
  font-weight: 700;
  color: #222c3c;
  margin-bottom: 32px;
}

/* line 155, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-contact-form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

/* line 161, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-contact-form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 167, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-contact-label {
  font-weight: 500;
  color: #34495E;
  font-size: 1.08em;
}

/* line 173, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-contact-input {
  border: 1px solid #6c839a;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 1em;
  background: #f7fafd;
  color: #34495E;
  outline: none;
  transition: border 0.2s;
}

/* line 183, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-contact-input:focus {
  border-color: #1976d2;
}

/* line 187, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-contact-textarea {
  border: 1px solid #6c839a;
  border-radius: 10px;
  padding: 10px 14px;
  font-size: 1em;
  background: #f7fafd;
  color: #34495E;
  outline: none;
  min-height: 90px;
  resize: vertical;
  transition: border 0.2s;
}

/* line 199, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-contact-textarea:focus {
  border-color: #1976d2;
}

/* line 203, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-contact-form-actions {
  display: flex;
  justify-content: center;
  margin-top: 18px;
}

/* line 209, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-contact-submit-btn {
  background: black;
  color: #fff;
  border: none;
  border-radius: 80px;
  padding: 12px 38px;
  font-size: 1.08em;
  font-weight: 600;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
  transition: background 0.18s;
}

/* line 221, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
.faq-contact-submit-btn:hover {
  background: black;
}

@media (max-width: 768px) {
  /* line 227, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
  .faq-search-dropdown {
    min-width: 100%;
    max-width: 100%;
    left: 0;
    right: 0;
  }
  /* line 234, app/assets/stylesheets/frontend/components/faq_search_dropdown.scss */
  .faq-search-dropdown.is-open {
    max-height: 400px;
  }
}

/* line 1, app/assets/stylesheets/frontend/components/passtime_search_bar.scss */
.faq-search-wrapper {
  position: relative;
  width: 100%;
}

/* line 6, app/assets/stylesheets/frontend/components/passtime_search_bar.scss */
.passtime-search-bar {
  width: 100%;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

/* line 13, app/assets/stylesheets/frontend/components/passtime_search_bar.scss */
.passtime-search-bar__container {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #fff;
  border-radius: 80px;
  position: relative;
  padding: 8px 32px;
  min-width: 420px;
  max-width: 640px;
  width: 100%;
  box-shadow: 0 2px 8px rgba(44, 62, 80, 0.08);
  border: 1px solid #6c839a;
}

/* line 27, app/assets/stylesheets/frontend/components/passtime_search_bar.scss */
.passtime-search-bar__icon {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  cursor: pointer;
}

/* line 40, app/assets/stylesheets/frontend/components/passtime_search_bar.scss */
.passtime-search-bar__input {
  border: none;
  outline: none;
  background: transparent;
  font-family: 'Encode Sans', sans-serif;
  font-size: 17px;
  color: #6c839a;
  width: 100%;
  padding: 0;
  margin: 0;
  font-weight: 400;
}

/* line 52, app/assets/stylesheets/frontend/components/passtime_search_bar.scss */
.passtime-search-bar__input::placeholder {
  color: #6c839a;
  opacity: 1;
}

/* line 58, app/assets/stylesheets/frontend/components/passtime_search_bar.scss */
.passtime-search-bar__input:focus,
.passtime-search-bar__input:focus-visible {
  outline: none;
  box-shadow: none !important;
  border-color: transparent;
  background: transparent;
}

@media (max-width: 640px) {
  /* line 68, app/assets/stylesheets/frontend/components/passtime_search_bar.scss */
  .passtime-search-bar__container {
    min-width: 100%;
    max-width: 100%;
    padding: 8px 20px;
    gap: 12px;
  }
  /* line 75, app/assets/stylesheets/frontend/components/passtime_search_bar.scss */
  .passtime-search-bar__input {
    font-size: 16px;
  }
  /* line 79, app/assets/stylesheets/frontend/components/passtime_search_bar.scss */
  .passtime-search-bar__icon {
    width: 20px;
    height: 20px;
  }
  /* line 84, app/assets/stylesheets/frontend/components/passtime_search_bar.scss */
  .passtime-search-bar__icon svg {
    width: 20px;
    height: 20px;
  }
}

@media (max-width: 480px) {
  /* line 91, app/assets/stylesheets/frontend/components/passtime_search_bar.scss */
  .passtime-search-bar__container {
    padding: 6px 16px;
    gap: 10px;
  }
  /* line 96, app/assets/stylesheets/frontend/components/passtime_search_bar.scss */
  .passtime-search-bar__input {
    font-size: 15px;
  }
}

/* line 1, app/assets/stylesheets/frontend/components/faq.scss */
.faq-container {
  max-width: 700px;
  margin: 0 auto;
}

/* line 4, app/assets/stylesheets/frontend/components/faq.scss */
.faq-container h1, .faq-container h2, .faq-container h3, .faq-container h4 {
  margin-top: 1.5em;
}

/* line 5, app/assets/stylesheets/frontend/components/faq.scss */
.faq-container button {
  margin: 0.5em;
}

/* line 6, app/assets/stylesheets/frontend/components/faq.scss */
.faq-container form {
  margin-bottom: 1em;
}

/* line 9, app/assets/stylesheets/frontend/components/faq.scss */
.hidden {
  display: none !important;
}

/* FAQ Feedback Card - Simple Full Width Design */
/* line 14, app/assets/stylesheets/frontend/components/faq.scss */
.faq-feedback-card {
  background: #f5f7fb;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  border-radius: 16px;
  width: 100%;
  margin: 20px 0;
}

@media (max-width: 768px) {
  /* line 14, app/assets/stylesheets/frontend/components/faq.scss */
  .faq-feedback-card {
    padding: 24px 16px;
    gap: 20px;
  }
}

@media (max-width: 480px) {
  /* line 14, app/assets/stylesheets/frontend/components/faq.scss */
  .faq-feedback-card {
    padding: 20px 12px;
    gap: 16px;
  }
}

/* line 39, app/assets/stylesheets/frontend/components/faq.scss */
.faq-feedback-title {
  font-family: 'Cabin', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: normal;
  color: #000000;
  text-align: center;
  margin: 0;
  width: 100%;
}

@media (max-width: 768px) {
  /* line 39, app/assets/stylesheets/frontend/components/faq.scss */
  .faq-feedback-title {
    font-size: 26px;
  }
}

@media (max-width: 480px) {
  /* line 39, app/assets/stylesheets/frontend/components/faq.scss */
  .faq-feedback-title {
    font-size: 22px;
  }
}

/* line 59, app/assets/stylesheets/frontend/components/faq.scss */
.faq-button-container {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 100%;
  max-width: 600px;
}

/* line 70, app/assets/stylesheets/frontend/components/faq.scss */
.faq-buttons-row {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  width: 100%;
  flex-shrink: 0;
  flex-wrap: wrap;
}

@media (max-width: 480px) {
  /* line 70, app/assets/stylesheets/frontend/components/faq.scss */
  .faq-buttons-row {
    flex-direction: column;
    gap: 12px;
  }
}

/* line 86, app/assets/stylesheets/frontend/components/faq.scss */
.faq-feedback-form {
  display: contents;
}

/* line 90, app/assets/stylesheets/frontend/components/faq.scss */
.faq-primary-button {
  border: 1px solid #000000;
  border-radius: 100px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
  transition: all 0.2s ease-in-out;
  min-width: fit-content;
}

@media (max-width: 480px) {
  /* line 90, app/assets/stylesheets/frontend/components/faq.scss */
  .faq-primary-button {
    width: 100%;
    max-width: 200px;
  }
}

/* line 105, app/assets/stylesheets/frontend/components/faq.scss */
.faq-primary-button:hover {
  background: rgba(0, 0, 0, 0.05);
  transform: translateY(-1px);
}

/* line 110, app/assets/stylesheets/frontend/components/faq.scss */
.faq-primary-button:active {
  transform: translateY(0);
}

/* line 114, app/assets/stylesheets/frontend/components/faq.scss */
.faq-primary-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
}

/* line 120, app/assets/stylesheets/frontend/components/faq.scss */
.faq-button-content {
  box-sizing: border-box;
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 14px 24px;
  border-radius: inherit;
}

@media (max-width: 768px) {
  /* line 120, app/assets/stylesheets/frontend/components/faq.scss */
  .faq-button-content {
    padding: 12px 20px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  /* line 120, app/assets/stylesheets/frontend/components/faq.scss */
  .faq-button-content {
    padding: 10px 16px;
    gap: 10px;
  }
}

/* line 142, app/assets/stylesheets/frontend/components/faq.scss */
.faq-icon-container {
  overflow: hidden;
  border-radius: 3px;
  flex-shrink: 0;
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 480px) {
  /* line 142, app/assets/stylesheets/frontend/components/faq.scss */
  .faq-icon-container {
    width: 28px;
    height: 28px;
  }
}

/* line 159, app/assets/stylesheets/frontend/components/faq.scss */
.faq-thumb-icon {
  width: 34px;
  height: 34px;
}

@media (max-width: 480px) {
  /* line 159, app/assets/stylesheets/frontend/components/faq.scss */
  .faq-thumb-icon {
    width: 28px;
    height: 28px;
  }
}

/* line 170, app/assets/stylesheets/frontend/components/faq.scss */
.faq-thumb-down {
  transform: scaleY(-1);
}

/* line 174, app/assets/stylesheets/frontend/components/faq.scss */
.faq-button-text {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 26.5px;
  color: #000000;
  text-align: center;
  white-space: nowrap;
  letter-spacing: 0.2px;
  margin: 0;
}

@media (max-width: 768px) {
  /* line 174, app/assets/stylesheets/frontend/components/faq.scss */
  .faq-button-text {
    font-size: 15px;
    line-height: 24px;
  }
}

@media (max-width: 480px) {
  /* line 174, app/assets/stylesheets/frontend/components/faq.scss */
  .faq-button-text {
    font-size: 14px;
    line-height: 22px;
    white-space: normal;
  }
}

/* line 1, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-contact-with-franchisee-container {
  display: flex;
  gap: 24px;
  padding: 32px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: flex-start;
}

/* line 11, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-franchisee-card {
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  width: 450px;
  flex-shrink: 0;
}

/* line 24, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-franchisee-card-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

/* line 32, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-franchisee-label {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.2px;
  color: #000000;
  margin: 0;
}

/* line 42, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-franchisee-area-name {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 26.5px;
  letter-spacing: 0.2px;
  color: #000000;
  margin: 0;
}

/* line 52, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-franchisee-avatar {
  width: 125px;
  height: 125px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f5f7fb;
}

/* line 62, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-franchisee-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* line 69, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-franchisee-avatar-placeholder {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 48px;
  color: #727272;
  background: #ebebeb;
}

/* line 77, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-franchisee-info {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  text-align: center;
}

/* line 85, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-franchisee-name {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 26.5px;
  letter-spacing: 0.2px;
  color: #000000;
  margin: 0;
}

/* line 95, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-franchisee-role {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 26px;
  color: #727272;
  margin: 0;
}

/* line 104, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-franchisee-phone {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  border: 1px solid #ebebeb;
  border-radius: 32px;
  padding: 12px 24px;
}

/* line 114, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-franchisee-phone-icon {
  width: 24px;
  height: 24px;
  color: #000000;
}

/* line 120, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-franchisee-phone-number {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 28px;
  letter-spacing: 0.2px;
  color: #000000;
  margin: 0;
}

/* line 129, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-franchisee-phone-number a {
  color: inherit;
  text-decoration: none;
}

/* line 133, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-franchisee-phone-number a:hover {
  text-decoration: none;
  color: inherit;
}

/* line 138, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-franchisee-phone-number a:visited {
  color: inherit;
}

/* line 145, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-contact-form-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

/* line 154, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-sector-banner {
  background: #f5f7fb;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

/* line 164, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-sector-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 171, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-sector-label {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
  font-size: 17px;
  color: #000000;
  margin: 0;
}

/* line 178, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-sector-label .faq-sector-city {
  font-weight: 600;
}

/* line 183, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-sector-area {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #000000;
  margin: 0;
}

/* line 191, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-change-sector-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid #727272;
  border-radius: 100px;
  background: transparent;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000000;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

/* line 207, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-change-sector-btn:hover {
  background: #000000;
  color: #ffffff;
  border-color: #000000;
}

/* line 215, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-contact-form-card {
  background: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* line 225, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-contact-form-title {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #000000;
  margin: 0;
  display: flex;
  align-items: center;
  min-height: 52px;
}

/* line 236, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-form-divider {
  width: 100%;
  height: 1px;
  background: #ebebeb;
}

/* line 242, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-form-notice {
  background: #f5f7fb;
  border-radius: 8px;
  padding: 16px;
}

/* line 247, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-form-notice p {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  margin: 0;
}

/* line 257, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-modern-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* line 263, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-form-row {
  display: flex;
  gap: 16px;
}

@media (max-width: 768px) {
  /* line 263, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-form-row {
    flex-direction: column;
  }
}

/* line 272, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-form-group {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 279, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-form-group-full {
  width: 100%;
}

/* line 283, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-form-label {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  padding: 0 8px;
  margin: 0;
}

/* line 292, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-form-input {
  border: 1px solid #727272;
  border-radius: 32px;
  padding: 16px;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  background: #ffffff;
  outline: none;
  transition: border-color 0.2s ease;
}

/* line 304, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-form-input::placeholder {
  color: #727272;
  opacity: 0.6;
}

/* line 309, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-form-input:focus {
  border-color: #000000;
}

/* line 314, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-form-textarea {
  border: 1px solid #727272;
  border-radius: 32px;
  padding: 16px;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  background: #ffffff;
  outline: none;
  resize: vertical;
  min-height: 100px;
  transition: border-color 0.2s ease;
}

/* line 328, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-form-textarea::placeholder {
  color: #727272;
  opacity: 0.6;
}

/* line 333, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-form-textarea:focus {
  border-color: #000000;
}

/* line 338, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-form-actions {
  padding: 16px 0;
}

/* line 342, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-submit-btn {
  background: #000000;
  color: #ffffff;
  border: none;
  border-radius: 100px;
  padding: 14px 24px;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 354, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-submit-btn:hover {
  background: #333333;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* line 360, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-submit-btn:active {
  transform: translateY(0);
}

/* line 366, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-file-upload-wrapper {
  position: relative;
}

/* line 370, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-form-file-input {
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

/* line 379, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-file-upload-info {
  border: 1px solid #727272;
  border-radius: 32px;
  padding: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: #ffffff;
  transition: all 0.2s ease;
  cursor: pointer;
  position: relative;
}

/* line 391, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-file-upload-info:hover {
  border-color: #000000;
  background: #f5f7fb;
}

/* line 396, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-file-upload-info.faq-file-selected {
  background: #f5f7fb;
  border-color: #000000;
}

/* line 400, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-file-upload-info.faq-file-selected .faq-upload-icon {
  color: #000000;
}

/* line 404, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-file-upload-info.faq-file-selected .faq-upload-text {
  color: #000000;
  font-weight: 600;
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 415, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-upload-icon {
  width: 24px;
  height: 24px;
  color: #727272;
  flex-shrink: 0;
}

/* line 422, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-upload-text {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #727272;
}

/* line 429, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-file-remove-btn {
  display: none;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: none;
  background: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.2s ease;
  flex-shrink: 0;
  margin-left: auto;
  position: relative;
  /* ensure it can be layered above the invisible input */
  z-index: 3;
  /* above .faq-form-file-input which has z-index:2 */
  pointer-events: auto;
  /* ensure clicks reach the button */
}

/* line 446, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-file-remove-btn svg {
  width: 20px;
  height: 20px;
  color: #727272;
}

/* line 452, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-file-remove-btn:hover {
  background: #ebebeb;
}

/* line 455, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-file-remove-btn:hover svg {
  color: #000000;
}

/* line 460, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-file-remove-btn:active {
  transform: scale(0.95);
}

/* line 465, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-form-file-input:focus + .faq-file-upload-info {
  border-color: #000000;
  outline: 2px solid rgba(0, 0, 0, 0.1);
  outline-offset: 2px;
}

@media (max-width: 1200px) {
  /* line 473, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-contact-with-franchisee-container {
    padding: 24px;
  }
}

@media (max-width: 1024px) {
  /* line 479, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-contact-with-franchisee-container {
    flex-direction: column;
    padding: 24px 16px;
    gap: 24px;
  }
  /* line 485, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-franchisee-card {
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
  }
  /* line 491, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-contact-form-section {
    width: 100%;
  }
  /* line 495, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-sector-banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    gap: 16px;
  }
  /* line 502, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-sector-info {
    text-align: center;
  }
  /* line 506, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-change-sector-btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  /* line 513, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-contact-with-franchisee-container {
    padding: 16px;
    gap: 20px;
  }
  /* line 518, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-franchisee-card {
    padding: 20px;
    gap: 14px;
    max-width: 100%;
  }
  /* line 524, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-franchisee-avatar {
    width: 100px;
    height: 100px;
  }
  /* line 529, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-franchisee-avatar-placeholder {
    font-size: 40px;
  }
  /* line 533, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-franchisee-label {
    font-size: 18px;
    line-height: 24px;
  }
  /* line 538, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-franchisee-area-name {
    font-size: 18px;
    line-height: 24px;
  }
  /* line 543, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-franchisee-name {
    font-size: 18px;
    line-height: 24px;
  }
  /* line 548, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-franchisee-role {
    font-size: 14px;
  }
  /* line 552, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-franchisee-phone {
    padding: 10px 20px;
    gap: 12px;
  }
  /* line 557, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-franchisee-phone-number {
    font-size: 18px;
  }
  /* line 561, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-contact-form-card {
    padding: 20px;
  }
  /* line 565, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-contact-form-title {
    font-size: 16px;
    min-height: auto;
  }
  /* line 570, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-form-row {
    flex-direction: column;
    gap: 16px;
  }
  /* line 575, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-sector-banner {
    padding: 20px;
    gap: 16px;
  }
  /* line 580, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-sector-label {
    font-size: 15px;
  }
  /* line 584, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-sector-area {
    font-size: 20px;
  }
  /* line 588, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-change-sector-btn {
    width: 100%;
    font-size: 15px;
    padding: 12px 20px;
  }
  /* line 594, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-form-label {
    font-size: 13px;
  }
  /* line 598, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-form-input,
.faq-form-textarea {
    font-size: 16px;
    padding: 14px;
  }
  /* line 604, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-submit-btn {
    width: 100%;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  /* line 611, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-contact-with-franchisee-container {
    padding: 12px;
    gap: 16px;
  }
  /* line 616, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-franchisee-card {
    padding: 16px;
    gap: 12px;
  }
  /* line 621, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-franchisee-avatar {
    width: 80px;
    height: 80px;
  }
  /* line 626, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-franchisee-avatar-placeholder {
    font-size: 32px;
  }
  /* line 630, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-franchisee-label,
.faq-franchisee-area-name,
.faq-franchisee-name {
    font-size: 16px;
    line-height: 22px;
  }
  /* line 637, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-franchisee-role {
    font-size: 13px;
  }
  /* line 641, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-franchisee-phone {
    padding: 8px 16px;
    flex-wrap: wrap;
  }
  /* line 646, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-franchisee-phone-number {
    font-size: 16px;
  }
  /* line 650, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-contact-form-card {
    padding: 16px;
    gap: 12px;
  }
  /* line 655, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-contact-form-title {
    font-size: 15px;
  }
  /* line 659, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-form-notice p {
    font-size: 13px;
  }
  /* line 663, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-sector-banner {
    padding: 16px;
  }
  /* line 667, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-sector-label {
    font-size: 14px;
  }
  /* line 671, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-sector-area {
    font-size: 18px;
  }
  /* line 675, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-change-sector-btn {
    font-size: 14px;
    padding: 10px 16px;
  }
  /* line 679, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-change-sector-btn svg {
    width: 14px;
    height: 14px;
  }
  /* line 685, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-form-input,
.faq-form-textarea {
    padding: 12px;
    font-size: 16px;
  }
  /* line 691, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-form-textarea {
    min-height: 80px;
  }
  /* line 695, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-file-upload-info {
    padding: 12px;
  }
  /* line 699, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-upload-icon {
    width: 20px;
    height: 20px;
  }
  /* line 704, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-upload-text {
    font-size: 13px;
  }
  /* line 708, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-submit-btn {
    padding: 12px 20px;
    font-size: 15px;
  }
}

/* line 715, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-contact-sent-container {
  display: flex;
  gap: 24px;
  padding: 32px;
  max-width: 1400px;
  margin: 0 auto;
  align-items: flex-start;
}

/* line 724, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-contact-sent-section {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

/* line 732, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-contact-success-card {
  background: #f5f7fb;
  border-radius: 16px;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  width: 100%;
}

/* line 743, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-success-icon {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 750, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-success-icon svg {
  width: 100%;
  height: 100%;
}

/* line 756, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-success-title {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 26.5px;
  letter-spacing: 0.2px;
  color: #000000;
  text-align: center;
  margin: 0;
}

/* line 767, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-return-home-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border: 1px solid #727272;
  border-radius: 100px;
  background: transparent;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 783, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
.faq-return-home-btn:hover {
  background: #000000;
  color: #ffffff;
  text-decoration: none;
}

@media (max-width: 1024px) {
  /* line 792, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-contact-sent-container {
    flex-direction: column;
    padding: 24px 16px;
  }
  /* line 797, app/assets/stylesheets/frontend/components/faq_contact_franchisee.scss */
  .faq-franchisee-card {
    width: 100%;
  }
}

/* Checkout page styles for Passtime frontend */
/* line 4, app/assets/stylesheets/frontend/components/checkout.scss */
.checkout-form {
  font-family: 'Encode Sans', sans-serif;
}

/* line 8, app/assets/stylesheets/frontend/components/checkout.scss */
.checkout-form input:focus,
.checkout-form select:focus,
.checkout-form textarea:focus {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
}

/* line 16, app/assets/stylesheets/frontend/components/checkout.scss */
.checkout-form .radio-button-container {
  transition: border-color 0.2s ease;
}

/* line 20, app/assets/stylesheets/frontend/components/checkout.scss */
.checkout-form .radio-button-container:hover {
  border-color: #000000;
}

/* line 24, app/assets/stylesheets/frontend/components/checkout.scss */
.checkout-form .radio-button-selected {
  border-color: #000000;
}

/* line 28, app/assets/stylesheets/frontend/components/checkout.scss */
.checkout-form .radio-button-selected .radio-dot {
  background-color: #000000;
}

/* line 32, app/assets/stylesheets/frontend/components/checkout.scss */
.checkout-form .radio-button-unselected .radio-dot {
  background-color: transparent;
}

/* line 36, app/assets/stylesheets/frontend/components/checkout.scss */
.checkout-form .radio-circle {
  border-color: #727272;
}

/* line 40, app/assets/stylesheets/frontend/components/checkout.scss */
.checkout-form .radio-button-selected .radio-circle {
  border-color: #000000;
}

/* Custom select dropdown arrow */
/* line 45, app/assets/stylesheets/frontend/components/checkout.scss */
.checkout-form select {
  background-image: url("data:image/svg+xml;charset=UTF-8,<svg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'><path d='M6 9L12 15L18 9' stroke='%23727272' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1.5rem;
}

/* Custom checkbox styles */
/* line 53, app/assets/stylesheets/frontend/components/checkout.scss */
.checkout-form input[type="checkbox"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 1.25rem;
  height: 1.25rem;
  border: 2px solid #727272;
  border-radius: 0.25rem;
  background-color: #FFFFFF;
  position: relative;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 67, app/assets/stylesheets/frontend/components/checkout.scss */
.checkout-form input[type="checkbox"]:checked {
  background-color: #262626;
  border-color: #262626;
}

/* line 73, app/assets/stylesheets/frontend/components/checkout.scss */
.checkout-form input[type="checkbox"]:checked::after {
  content: '';
  position: absolute;
  left: 0.25rem;
  top: 0.1rem;
  width: 0.375rem;
  height: 0.625rem;
  border: solid #FFFFFF;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

/* line 85, app/assets/stylesheets/frontend/components/checkout.scss */
.checkout-form input[type="checkbox"]:focus {
  outline: 2px solid rgba(0, 0, 0, 0.2);
  outline-offset: 2px;
}

/* Custom radio button styles */
/* line 91, app/assets/stylesheets/frontend/components/checkout.scss */
.checkout-form input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

/* Error message styles */
/* line 98, app/assets/stylesheets/frontend/components/checkout.scss */
.checkout-error {
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Button hover effects */
/* line 114, app/assets/stylesheets/frontend/components/checkout.scss */
.checkout-form button:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.2s ease;
}

/* line 120, app/assets/stylesheets/frontend/components/checkout.scss */
.checkout-form button:active {
  transform: translateY(0);
}

/* Loading state for submit button */
/* line 125, app/assets/stylesheets/frontend/components/checkout.scss */
.checkout-form button.loading {
  opacity: 0.7;
  cursor: not-allowed;
  position: relative;
}

/* line 131, app/assets/stylesheets/frontend/components/checkout.scss */
.checkout-form button.loading::after {
  content: '';
  position: absolute;
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  border: 2px solid transparent;
  border-top: 2px solid #FFFFFF;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

/* Modal enhancements */
/* line 152, app/assets/stylesheets/frontend/components/checkout.scss */
.checkout-form .modal-overlay {
  backdrop-filter: blur(4px);
  animation: fadeIn 0.2s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  /* line 164, app/assets/stylesheets/frontend/components/checkout.scss */
  .checkout-form .flex-row-desktop {
    flex-direction: column;
  }
  /* line 168, app/assets/stylesheets/frontend/components/checkout.scss */
  .checkout-form .w-desktop-450 {
    width: 100%;
  }
  /* line 172, app/assets/stylesheets/frontend/components/checkout.scss */
  .checkout-form .gap-desktop-6 {
    gap: 1rem;
  }
}

@media (max-width: 640px) {
  /* line 178, app/assets/stylesheets/frontend/components/checkout.scss */
  .checkout-form .grid-cols-2 {
    grid-template-columns: 1fr;
  }
  /* line 182, app/assets/stylesheets/frontend/components/checkout.scss */
  .checkout-form .px-8 {
    padding-left: 1rem;
    padding-right: 1rem;
  }
  /* line 187, app/assets/stylesheets/frontend/components/checkout.scss */
  .checkout-form .text-37px {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}

/* line 3, app/assets/stylesheets/frontend/components/validation_popup_component.scss */
.validation-popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1200;
  padding: 24px;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* line 14, app/assets/stylesheets/frontend/components/validation_popup_component.scss */
.validation-popup-backdrop.is-visible {
  display: flex;
}

/* line 19, app/assets/stylesheets/frontend/components/validation_popup_component.scss */
.validation-popup {
  box-sizing: border-box;
  width: calc(100% - 48px);
  max-width: 520px;
  background: #ffffff;
  color: #000000;
  border-radius: 20px;
  padding: 20px 20px 18px 20px;
  box-shadow: 0 12px 30px rgba(9, 10, 12, 0.6);
  display: flex;
  flex-direction: column;
  gap: 12px;
  transform: translateY(-8px) scale(0.995);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

/* line 34, app/assets/stylesheets/frontend/components/validation_popup_component.scss */
.validation-popup.is-visible {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* line 40, app/assets/stylesheets/frontend/components/validation_popup_component.scss */
.validation-popup__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  color: #000000;
  line-height: 1.2;
}

/* line 48, app/assets/stylesheets/frontend/components/validation_popup_component.scss */
.validation-popup__message {
  font-size: 14px;
  color: #000000;
  line-height: 1.4;
}

/* line 54, app/assets/stylesheets/frontend/components/validation_popup_component.scss */
.validation-popup__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 6px;
}

/* line 61, app/assets/stylesheets/frontend/components/validation_popup_component.scss */
.validation-popup__btn {
  cursor: pointer;
  padding: 8px 18px;
  border-radius: 20px;
  border: 1px solid transparent;
  font-weight: 700;
  font-size: 14px;
  min-width: 96px;
  text-align: center;
}

/* line 72, app/assets/stylesheets/frontend/components/validation_popup_component.scss */
.validation-popup__btn--cancel {
  background: #ffffff;
  color: #000000;
  border: 1px solid #000000;
}

/* line 78, app/assets/stylesheets/frontend/components/validation_popup_component.scss */
.validation-popup__btn--confirm {
  background: #dc3545;
  color: #ffffff;
  border-color: transparent;
}

@media (max-width: 767px) {
  /* line 86, app/assets/stylesheets/frontend/components/validation_popup_component.scss */
  .validation-popup {
    padding: 16px;
    border-radius: 14px;
  }
  /* line 87, app/assets/stylesheets/frontend/components/validation_popup_component.scss */
  .validation-popup__title {
    font-size: 15px;
  }
}

/* line 4, app/assets/stylesheets/frontend/components/_ticketing_brands.scss */
.ticketing-brands-section .ticketing-brands-header .section-title {
  font-size: 1.5rem;
}

/* line 5, app/assets/stylesheets/frontend/components/_ticketing_brands.scss */
.ticketing-brands-section .ticketing-brands-header .section-subtitle {
  font-size: 0.95rem;
}

/* line 9, app/assets/stylesheets/frontend/components/_ticketing_brands.scss */
.ticketing-brands-section .brand-logos-container .horizontal-scroll-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}

/* line 20, app/assets/stylesheets/frontend/components/_ticketing_brands.scss */
.ticketing-brands-section .brand-logos-container .horizontal-scroll-container::-webkit-scrollbar {
  width: 0;
  height: 0;
  background: transparent;
}

/* line 27, app/assets/stylesheets/frontend/components/_ticketing_brands.scss */
.ticketing-brands-section .brand-logos-container .horizontal-scroll-container.is-scrollable::after {
  content: '';
  position: absolute;
  pointer-events: none;
  top: 0;
  right: 0;
  height: 100%;
  width: 48px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 100%);
  transition: opacity 200ms ease;
  opacity: 1;
}

/* line 40, app/assets/stylesheets/frontend/components/_ticketing_brands.scss */
.ticketing-brands-section .brand-logos-container .horizontal-scroll-content {
  display: flex;
  align-items: center;
  white-space: nowrap;
  padding-bottom: 0.25rem;
}

/* line 46, app/assets/stylesheets/frontend/components/_ticketing_brands.scss */
.ticketing-brands-section .brand-logos-container .horizontal-scroll-content .brand-logo-placeholder,
.ticketing-brands-section .brand-logos-container .horizontal-scroll-content .brand-logo-card {
  flex: 0 0 auto;
  width: 140px;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f8f9fa;
  border-radius: 8px;
}

/* line 62, app/assets/stylesheets/frontend/components/_ticketing_brands.scss */
.ticketing-brands-section .carousel-controls .carousel-control-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: #fff;
  border-radius: 8px;
}

/* line 72, app/assets/stylesheets/frontend/components/_ticketing_brands.scss */
.ticketing-brands-section .carousel-controls.carousel-controls--hidden {
  display: none !important;
}

@media (max-width: 991.98px) {
  /* line 81, app/assets/stylesheets/frontend/components/_ticketing_brands.scss */
  .ticketing-brands-section .ticketing-brands-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
  }
  /* line 89, app/assets/stylesheets/frontend/components/_ticketing_brands.scss */
  .ticketing-brands-section .brand-logos-container .horizontal-scroll-content .brand-logo-placeholder,
.ticketing-brands-section .brand-logos-container .horizontal-scroll-content .brand-logo-card {
    width: 120px;
    height: 72px;
  }
}

@media (max-width: 575.98px) {
  /* line 97, app/assets/stylesheets/frontend/components/_ticketing_brands.scss */
  .ticketing-brands-section {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
  /* line 102, app/assets/stylesheets/frontend/components/_ticketing_brands.scss */
  .ticketing-brands-section .ticketing-brands-header .section-title {
    font-size: 1.25rem;
  }
  /* line 103, app/assets/stylesheets/frontend/components/_ticketing_brands.scss */
  .ticketing-brands-section .ticketing-brands-header .section-subtitle {
    font-size: 0.85rem;
  }
  /* line 107, app/assets/stylesheets/frontend/components/_ticketing_brands.scss */
  .ticketing-brands-section .brand-logos-container .horizontal-scroll-content {
    gap: 0.75rem;
  }
  /* line 109, app/assets/stylesheets/frontend/components/_ticketing_brands.scss */
  .ticketing-brands-section .brand-logos-container .horizontal-scroll-content .brand-logo-placeholder,
.ticketing-brands-section .brand-logos-container .horizontal-scroll-content .brand-logo-card {
    width: 100px;
    height: 56px;
  }
}

/* line 2, app/assets/stylesheets/frontend/components/_app_download_card.scss */
.app-download-card {
  display: flex;
  gap: 1rem;
  align-items: center;
  background: #ffffff;
  border-radius: 12px;
  padding: 1rem 1.25rem;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

/* line 11, app/assets/stylesheets/frontend/components/_app_download_card.scss */
.app-download-card .app-icon-container {
  flex: 0 0 auto;
}

/* line 13, app/assets/stylesheets/frontend/components/_app_download_card.scss */
.app-download-card .app-icon-container .app-icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #f3f6ff 0%, #ffffff 100%);
  border-radius: 12px;
  overflow: hidden;
}

/* line 22, app/assets/stylesheets/frontend/components/_app_download_card.scss */
.app-download-card .app-icon-container .app-icon .app-logo {
  max-width: 62px;
  max-height: 62px;
}

/* line 26, app/assets/stylesheets/frontend/components/_app_download_card.scss */
.app-download-card .app-download-text {
  flex: 1 1 auto;
  margin: 0;
  color: #212529;
  font-size: 1rem;
  line-height: 1.3;
}

/* line 34, app/assets/stylesheets/frontend/components/_app_download_card.scss */
.app-download-card .store-links {
  flex: 0 0 auto;
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

/* line 39, app/assets/stylesheets/frontend/components/_app_download_card.scss */
.app-download-card .store-links .store-badge {
  height: 36px;
  width: auto;
  display: block;
}

@media (max-width: 991.98px) {
  /* line 45, app/assets/stylesheets/frontend/components/_app_download_card.scss */
  .app-download-card {
    padding: 0.75rem 1rem;
  }
  /* line 47, app/assets/stylesheets/frontend/components/_app_download_card.scss */
  .app-download-card .app-icon-container .app-icon {
    width: 56px;
    height: 56px;
  }
  /* line 47, app/assets/stylesheets/frontend/components/_app_download_card.scss */
  .app-download-card .app-icon-container .app-icon .app-logo {
    max-width: 48px;
    max-height: 48px;
  }
  /* line 48, app/assets/stylesheets/frontend/components/_app_download_card.scss */
  .app-download-card .app-download-text {
    font-size: 0.95rem;
  }
  /* line 49, app/assets/stylesheets/frontend/components/_app_download_card.scss */
  .app-download-card .store-links .store-badge {
    height: 32px;
  }
}

@media (max-width: 575.98px) {
  /* line 55, app/assets/stylesheets/frontend/components/_app_download_card.scss */
  .app-download-card {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 0.75rem;
  }
  /* line 61, app/assets/stylesheets/frontend/components/_app_download_card.scss */
  .app-download-card .app-icon-container .app-icon {
    width: 56px;
    height: 56px;
  }
  /* line 62, app/assets/stylesheets/frontend/components/_app_download_card.scss */
  .app-download-card .app-download-text {
    font-size: 0.9rem;
  }
  /* line 63, app/assets/stylesheets/frontend/components/_app_download_card.scss */
  .app-download-card .store-links {
    width: 100%;
    justify-content: flex-start;
  }
  /* line 63, app/assets/stylesheets/frontend/components/_app_download_card.scss */
  .app-download-card .store-links .store-link {
    display: inline-block;
  }
  /* line 63, app/assets/stylesheets/frontend/components/_app_download_card.scss */
  .app-download-card .store-links .store-badge {
    height: 36px;
  }
}

/* Native dialog backdrop (supported browsers) */
/* line 2, app/assets/stylesheets/frontend/components/_sector_confirmation_component.scss */
#sector-change-block-dialog::backdrop {
  background: rgba(0, 0, 0, 0.8);
  /* more opaque */
}

/* Dialog base styling */
/* line 7, app/assets/stylesheets/frontend/components/_sector_confirmation_component.scss */
#sector-change-block-dialog {
  border: none;
  /* remove colored border */
  border-radius: 20px;
  /* more rounded */
  padding: 0;
  /* inner padding handled by inner container */
  background: transparent;
  /* inner box will provide background */
  max-width: 520px;
  width: calc(100% - 40px);
  outline: none;
  /* remove default focus ring */
}

/* Inner content box to style background, radius and shadow */
/* line 18, app/assets/stylesheets/frontend/components/_sector_confirmation_component.scss */
.sector-modal__dialog-inner {
  background: #ffffff;
  border-radius: 20px;
  /* match dialog radius */
  padding: 20px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  border: none;
  /* explicitly no border color */
  outline: none;
  /* ensure no outline */
}

/* Fallback for browsers that don't support dialog's backdrop - simulate overlay */
/* line 28, app/assets/stylesheets/frontend/components/_sector_confirmation_component.scss */
#sector-change-block-dialog[open] {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  /* same opacity as ::backdrop */
  z-index: 10000;
}

/* Remove visible border on action buttons if any */
/* line 39, app/assets/stylesheets/frontend/components/_sector_confirmation_component.scss */
.sector-modal__actions .btn {
  border: none !important;
}

/* line 1, app/assets/stylesheets/frontend/components/promocode_modal_component.scss */
.promocode-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(14, 13, 33, 0.55);
  backdrop-filter: blur(2px);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1100;
  padding: 24px;
}

/* line 12, app/assets/stylesheets/frontend/components/promocode_modal_component.scss */
.promocode-modal-backdrop.is-visible {
  display: flex;
}

/* line 17, app/assets/stylesheets/frontend/components/promocode_modal_component.scss */
.promocode-modal {
  position: relative;
  background: #FFFFFF;
  border-radius: 24px;
  box-shadow: 0 40px 80px rgba(10, 7, 32, 0.25);
  width: 100%;
  max-width: 520px;
  padding: 32px;
  font-family: 'Lato', sans-serif;
  color: #000000;
}

/* line 29, app/assets/stylesheets/frontend/components/promocode_modal_component.scss */
.promocode-modal__close {
  position: absolute;
  top: 16px;
  right: 16px;
  background: transparent;
  border: none;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  color: #000000;
}

/* line 41, app/assets/stylesheets/frontend/components/promocode_modal_component.scss */
.promocode-modal__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* line 47, app/assets/stylesheets/frontend/components/promocode_modal_component.scss */
.promocode-modal__subtitle {
  color: #727272;
  font-size: 0.95rem;
  margin: 0;
}

/* line 53, app/assets/stylesheets/frontend/components/promocode_modal_component.scss */
.promocode-modal__label {
  font-weight: 600;
  margin-bottom: 6px;
}

/* line 58, app/assets/stylesheets/frontend/components/promocode_modal_component.scss */
.promocode-modal__input-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* line 64, app/assets/stylesheets/frontend/components/promocode_modal_component.scss */
.promocode-modal__input {
  flex: 1;
  min-width: 200px;
  border-radius: 14px;
  border: 1px solid #d9d9d9;
  padding: 12px 16px;
  font-size: 1rem;
}

/* line 73, app/assets/stylesheets/frontend/components/promocode_modal_component.scss */
.promocode-modal__submit {
  border-radius: 100px;
  border: none;
  background: #000000;
  color: #FFFFFF;
  padding: 12px 24px;
  font-weight: 600;
  cursor: pointer;
  transition: background 160ms ease;
}

/* line 83, app/assets/stylesheets/frontend/components/promocode_modal_component.scss */
.promocode-modal__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* line 89, app/assets/stylesheets/frontend/components/promocode_modal_component.scss */
.promocode-modal__error {
  background: rgba(229, 28, 35, 0.1);
  border-radius: 12px;
  padding: 12px 16px;
  color: #b7002b;
  font-weight: 600;
}

/* line 97, app/assets/stylesheets/frontend/components/promocode_modal_component.scss */
.promocode-modal__area-form {
  border-top: 1px solid #f0f0f0;
  padding-top: 16px;
}

/* line 102, app/assets/stylesheets/frontend/components/promocode_modal_component.scss */
.promocode-modal__selection {
  margin-bottom: 8px;
  font-weight: 500;
}

/* line 107, app/assets/stylesheets/frontend/components/promocode_modal_component.scss */
.promocode-modal__select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid #d9d9d9;
  padding: 12px;
  font-size: 1rem;
}

@media (max-width: 576px) {
  /* line 116, app/assets/stylesheets/frontend/components/promocode_modal_component.scss */
  .promocode-modal {
    padding: 24px 20px;
  }
  /* line 120, app/assets/stylesheets/frontend/components/promocode_modal_component.scss */
  .promocode-modal__input-group {
    flex-direction: column;
  }
  /* line 124, app/assets/stylesheets/frontend/components/promocode_modal_component.scss */
  .promocode-modal__submit {
    width: 100%;
    text-align: center;
  }
}

/* line 2, app/assets/stylesheets/frontend/components/formulas_header_component.scss */
.formulas-header {
  padding: 48px 32px 16px;
}

/* line 5, app/assets/stylesheets/frontend/components/formulas_header_component.scss */
.formulas-header .formulas-header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  max-width: 1140px;
  margin: 0 auto;
}

/* line 14, app/assets/stylesheets/frontend/components/formulas_header_component.scss */
.formulas-header .back-button-container {
  width: 220px;
  display: flex;
  align-items: center;
}

/* line 20, app/assets/stylesheets/frontend/components/formulas_header_component.scss */
.formulas-header .back-button-link {
  text-decoration: none;
  color: inherit;
}

/* line 25, app/assets/stylesheets/frontend/components/formulas_header_component.scss */
.formulas-header .back-button {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* line 31, app/assets/stylesheets/frontend/components/formulas_header_component.scss */
.formulas-header .back-arrow-icon {
  width: 39px;
  height: 39px;
  flex-shrink: 0;
}

/* line 37, app/assets/stylesheets/frontend/components/formulas_header_component.scss */
.formulas-header .back-button-text {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 0.8;
  letter-spacing: 1.33%;
  color: #000000;
}

/* line 46, app/assets/stylesheets/frontend/components/formulas_header_component.scss */
.formulas-header .title-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex: 1;
}

/* line 53, app/assets/stylesheets/frontend/components/formulas_header_component.scss */
.formulas-header .formulas-title {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 600;
  font-size: 37px;
  line-height: 1.57;
  text-align: center;
  color: #000000;
  margin: 0;
}

/* line 63, app/assets/stylesheets/frontend/components/formulas_header_component.scss */
.formulas-header .button-placeholder {
  width: 220px;
}

@media (max-width: 991.98px) {
  /* line 70, app/assets/stylesheets/frontend/components/formulas_header_component.scss */
  .formulas-header {
    padding: 24px 16px 16px;
  }
  /* line 73, app/assets/stylesheets/frontend/components/formulas_header_component.scss */
  .formulas-header .formulas-header-container {
    flex-direction: column;
    gap: 16px;
  }
  /* line 78, app/assets/stylesheets/frontend/components/formulas_header_component.scss */
  .formulas-header .back-button-container,
.formulas-header .button-placeholder {
    width: 100%;
    justify-content: flex-start;
  }
  /* line 84, app/assets/stylesheets/frontend/components/formulas_header_component.scss */
  .formulas-header .title-container {
    width: 100%;
  }
  /* line 88, app/assets/stylesheets/frontend/components/formulas_header_component.scss */
  .formulas-header .formulas-title {
    font-size: 28px;
    line-height: 1.4;
  }
}

/* line 2, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.formulas-comparison-desktop {
  padding: 0 32px;
  max-width: 1140px;
  margin: 0 auto;
}

/* line 7, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.formulas-comparison-desktop .comparison-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 8px;
}

/* line 13, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.formulas-comparison-desktop .comparison-table th {
  padding: 0;
  border: none;
  vertical-align: top;
}

/* line 18, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.formulas-comparison-desktop .comparison-table th.feature-header {
  border-radius: 8px;
  padding: 16px 24px;
  width: 410px;
  font-family: 'Gill Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 2.05;
  text-align: left;
  color: #FFFFFF;
}

/* line 31, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.formulas-comparison-desktop .comparison-table th.plan-header {
  background: #000000;
  border: 1px solid #F9F9FB;
  border-radius: 8px 8px 0 0;
  padding: 0px;
  text-align: center;
  width: 20%;
}

/* line 39, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.formulas-comparison-desktop .comparison-table th.plan-header .plan-name {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 2.05;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
}

/* line 52, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.formulas-comparison-desktop .comparison-table th.plan-header.featured-header .featured-name {
  color: #FFFFFF;
}

/* line 60, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.formulas-comparison-desktop .comparison-table td {
  padding: 0;
  border: none;
  vertical-align: middle;
  height: 60px;
}

/* line 66, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.formulas-comparison-desktop .comparison-table td.feature-cell {
  background: #F9F9FB;
  padding: 16px 24px;
  border-radius: 8px;
  width: 410px;
}

/* line 72, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.formulas-comparison-desktop .comparison-table td.feature-cell .feature-label {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: #000000;
}

/* line 80, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.formulas-comparison-desktop .comparison-table td.feature-cell .feature-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* line 85, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.formulas-comparison-desktop .comparison-table td.feature-cell .feature-content .feature-text {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: #000000;
}

/* line 93, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.formulas-comparison-desktop .comparison-table td.feature-cell .feature-content .feature-discount {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: 1.11%;
  color: #000000;
}

/* line 103, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.formulas-comparison-desktop .comparison-table td.feature-cell.highlight-cell {
  background: rgba(234, 198, 80, 0.15);
  height: 92px;
  padding: 24px;
}

/* line 110, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.formulas-comparison-desktop .comparison-table td.plan-cell {
  background: #F9F9FB;
  border-left: 1px solid #F9F9FB;
  border-right: 1px solid #F9F9FB;
  text-align: center;
  padding: 16px;
  width: 20%;
}

/* line 118, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.formulas-comparison-desktop .comparison-table td.plan-cell .price-annual {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 2.05;
  text-align: center;
  color: #000000;
}

/* line 127, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.formulas-comparison-desktop .comparison-table td.plan-cell .price-monthly {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  color: #000000;
}

/* line 136, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.formulas-comparison-desktop .comparison-table td.plan-cell .feature-check {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
}

/* line 143, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.formulas-comparison-desktop .comparison-table td.plan-cell .feature-check .check-icon.filled {
  width: 28px;
  height: 28px;
}

/* line 148, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.formulas-comparison-desktop .comparison-table td.plan-cell .feature-check .check-icon.outline {
  width: 32px;
  height: 32px;
}

/* line 154, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.formulas-comparison-desktop .comparison-table td.plan-cell .feature-check .star-badge {
  background: #FFB909;
  border-radius: 20px;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

/* line 164, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.formulas-comparison-desktop .comparison-table td.plan-cell .feature-check .star-badge .star-icon {
  width: 16px;
  height: 16px;
}

/* line 173, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.formulas-comparison-desktop .comparison-table td.plan-cell.highlight-cell {
  background: rgba(234, 198, 80, 0.15);
  height: 92px;
}

/* line 182, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.formulas-comparison-desktop .comparison-table .price-row td.plan-cell {
  background: #F9F9FB;
}

/* line 189, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.formulas-comparison-desktop .comparison-table .feature-row td.plan-cell {
  background: #F9F9FB;
}

/* line 194, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.formulas-comparison-desktop .comparison-table .feature-row.highlight-row td.feature-cell,
.formulas-comparison-desktop .comparison-table .feature-row.highlight-row td.plan-cell {
  height: 92px;
}

/* line 203, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.formulas-comparison-desktop .comparison-table tbody tr:last-child td.plan-cell {
  border-bottom: 1px solid #F9F9FB;
  border-radius: 0 0 8px 8px;
}

@media (max-width: 991.98px) {
  /* line 218, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
  .offer-types-section {
    /* Make the offer-types area span more of the viewport on mobile */
    max-width: none;
    margin: 0;
    padding: 24px 12px;
  }
  /* line 225, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
  .offer-types-section .offer-types-container .offer-types-title {
    font-size: 32px;
    margin-bottom: 16px;
  }
  /* line 230, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
  .offer-types-section .offer-types-container .offer-types-grid {
    gap: 12px;
  }
  /* line 234, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
  .offer-types-section .offer-types-container .offer-type-card {
    align-items: stretch;
    padding: 18px;
    box-sizing: border-box;
    width: 100%;
  }
  /* line 242, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
  .offer-types-section .offer-types-container .offer-type-card .offer-card-header .offer-card-title-group .offer-card-subtitle,
.offer-types-section .offer-types-container .offer-type-card .offer-card-header .offer-card-title-group .offer-card-title {
    width: auto !important;
    margin-left: 0 !important;
    margin-right: 0 !important;
    text-align: left !important;
  }
  /* line 252, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
  .offer-types-section .offer-types-container .offer-type-card .offer-card-content {
    text-align: left;
  }
}

/* line 261, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.offer-types-section {
  max-width: 1140px;
  margin: 0 auto;
  padding: 48px 32px;
  border-radius: 16px;
}

/* line 267, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.offer-types-section .offer-types-container {
  text-align: start;
}

/* line 270, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.offer-types-section .offer-types-container .offer-types-title {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 600;
  font-size: 37px;
  line-height: 1.57;
  color: #000000;
  margin: 0 0 32px 0;
}

/* line 279, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.offer-types-section .offer-types-container .offer-types-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}

@media (max-width: 991.98px) {
  /* line 279, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
  .offer-types-section .offer-types-container .offer-types-grid {
    grid-template-columns: 1fr;
  }
}

/* line 293, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.offer-type-card {
  border-radius: 16px;
  padding: 24px 24px 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  height: 100%;
}

/* line 303, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.offer-type-card.discovery-card {
  background: #000000;
}

/* line 308, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.offer-type-card.permanent-card {
  background: #000000;
}

/* line 313, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.offer-type-card.web-card {
  background: #000000;
}

/* line 317, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.offer-type-card .offer-card-header {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}

/* line 324, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.offer-type-card .offer-card-header .offer-card-title-group .offer-card-subtitle {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 23px;
  line-height: 1.25;
  letter-spacing: 0.87%;
  color: #FFFFFF;
  margin: 0 0 4px 0;
  width: 294.67px;
  margin-left: auto;
  margin-right: auto;
}

/* line 337, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.offer-type-card .offer-card-header .offer-card-title-group .offer-card-title {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 34px;
  line-height: 1.25;
  letter-spacing: 0.59%;
  color: #FFFFFF;
  margin: 0;
  width: 294.67px;
  margin-left: auto;
  margin-right: auto;
}

/* line 351, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.offer-type-card .offer-card-header .offer-card-highlights {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 356, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.offer-type-card .offer-card-header .offer-card-highlights .offer-highlight-badge {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1;
  letter-spacing: 0.91%;
  color: #FFFFFF;
}

/* line 366, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.offer-type-card .offer-card-header .offer-card-highlights .offer-highlight-people {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  line-height: 1.47;
  letter-spacing: 1.33%;
  color: #FFFFFF;
}

/* line 377, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.offer-type-card .offer-card-header .offer-card-divider {
  height: 1px;
  background: #727272;
  width: 100%;
}

/* line 384, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.offer-type-card .offer-card-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: start;
}

/* line 390, app/assets/stylesheets/frontend/components/formulas_comparison_desktop_component.scss */
.offer-type-card .offer-card-content .offer-card-description {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
  font-size: 17px;
  line-height: 1.53;
  letter-spacing: 1.18%;
  color: #FFFFFF;
  margin: 0;
}

/* line 2, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
.formulas-comparison-mobile {
  padding: 0 16px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* line 8, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
.formulas-comparison-mobile .mobile-plan-card {
  border: 1px solid #F9F9FB;
  border-radius: 8px;
  overflow: hidden;
}

/* line 18, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
.formulas-comparison-mobile .mobile-plan-header {
  background: #000000;
  padding: 16px;
}

/* line 22, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
.formulas-comparison-mobile .mobile-plan-header .mobile-plan-name {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 2.05;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
}

/* line 35, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
.formulas-comparison-mobile .mobile-plan-header.mobile-featured-header .mobile-featured-name {
  color: #FFFFFF;
}

/* line 41, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
.formulas-comparison-mobile .mobile-plan-price {
  background: #F9F9FB;
  padding: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
}

/* line 48, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
.formulas-comparison-mobile .mobile-plan-price .mobile-price-annual {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 700;
  font-size: 22px;
  line-height: 2.05;
  text-align: center;
  color: #000000;
}

/* line 57, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
.formulas-comparison-mobile .mobile-plan-price .mobile-price-monthly {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  text-align: center;
  color: #000000;
}

/* line 67, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
.formulas-comparison-mobile .mobile-features-list {
  display: flex;
  flex-direction: column;
}

/* line 72, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
.formulas-comparison-mobile .mobile-feature-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  background: #F9F9FB;
  border-bottom: 1px solid #EBEBEB;
}

/* line 80, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
.formulas-comparison-mobile .mobile-feature-item:last-child {
  border-bottom: none;
}

/* line 84, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
.formulas-comparison-mobile .mobile-feature-item.highlight-feature {
  background: rgba(234, 198, 80, 0.15);
  padding: 24px 16px;
}

/* line 89, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
.formulas-comparison-mobile .mobile-feature-item.empty-feature {
  background: #F9F9FB;
  opacity: 0.5;
}

/* line 94, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
.formulas-comparison-mobile .mobile-feature-item .mobile-feature-check {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 100, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
.formulas-comparison-mobile .mobile-feature-item .mobile-feature-check.empty-check {
  width: 32px;
  height: 32px;
}

/* line 106, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
.formulas-comparison-mobile .mobile-feature-item .mobile-feature-check .check-icon.filled {
  width: 28px;
  height: 28px;
}

/* line 111, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
.formulas-comparison-mobile .mobile-feature-item .mobile-feature-check .check-icon.outline {
  width: 32px;
  height: 32px;
}

/* line 117, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
.formulas-comparison-mobile .mobile-feature-item .mobile-feature-check .star-badge {
  background: #FFB909;
  border-radius: 20px;
  padding: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
}

/* line 127, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
.formulas-comparison-mobile .mobile-feature-item .mobile-feature-check .star-badge .star-icon {
  width: 16px;
  height: 16px;
}

/* line 134, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
.formulas-comparison-mobile .mobile-feature-item .mobile-feature-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 140, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
.formulas-comparison-mobile .mobile-feature-item .mobile-feature-content .mobile-feature-text {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
  color: #000000;
}

/* line 148, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
.formulas-comparison-mobile .mobile-feature-item .mobile-feature-content .mobile-feature-discount {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.22;
  letter-spacing: 1.11%;
  color: #000000;
}

@media (max-width: 575.98px) {
  /* line 162, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
  .formulas-comparison-mobile {
    padding: 0 8px;
  }
  /* line 165, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
  .formulas-comparison-mobile .mobile-feature-item {
    padding: 12px;
  }
  /* line 168, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
  .formulas-comparison-mobile .mobile-feature-item.highlight-feature {
    padding: 18px 12px;
  }
  /* line 174, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
  .formulas-comparison-mobile .mobile-feature-item .mobile-feature-content .mobile-feature-text,
.formulas-comparison-mobile .mobile-feature-item .mobile-feature-content .mobile-feature-discount {
    font-size: 16px;
  }
  /* line 181, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
  .formulas-comparison-mobile .mobile-plan-header {
    padding: 12px;
  }
  /* line 184, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
  .formulas-comparison-mobile .mobile-plan-header .mobile-plan-name {
    font-size: 20px;
  }
  /* line 189, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
  .formulas-comparison-mobile .mobile-plan-price {
    padding: 12px;
  }
  /* line 192, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
  .formulas-comparison-mobile .mobile-plan-price .mobile-price-annual {
    font-size: 20px;
  }
  /* line 196, app/assets/stylesheets/frontend/components/formulas_comparison_mobile_component.scss */
  .formulas-comparison-mobile .mobile-plan-price .mobile-price-monthly {
    font-size: 16px;
  }
}

/* line 2, app/assets/stylesheets/frontend/components/badge_component.scss */
.badge {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  padding: 8px 12px;
  border-radius: 30px;
  display: inline-block;
}

/* line 9, app/assets/stylesheets/frontend/components/badge_component.scss */
.badge.badge-success {
  background: #AFEBBD;
  color: #000000;
}

/* line 13, app/assets/stylesheets/frontend/components/badge_component.scss */
.badge.badge-warning {
  background: #FFB909;
  color: #FFFFFF;
}

/* line 17, app/assets/stylesheets/frontend/components/badge_component.scss */
.badge.badge-info {
  background: #F5F7FB;
  color: #000000;
}

/* line 21, app/assets/stylesheets/frontend/components/badge_component.scss */
.badge.badge-count {
  background: #000000;
  color: #FFFFFF;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
}

/* line 2, app/assets/stylesheets/frontend/components/form_component.scss */
.form-group {
  margin-bottom: 16px;
}

/* line 4, app/assets/stylesheets/frontend/components/form_component.scss */
.form-group .form-label {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #000000;
  display: block;
  margin-bottom: 8px;
}

/* line 12, app/assets/stylesheets/frontend/components/form_component.scss */
.form-group .form-control {
  width: 100%;
  padding: 16px;
  border: 1px solid #727272;
  border-radius: 32px;
  font-family: 'Encode Sans', sans-serif;
  font-size: 14px;
}

/* line 19, app/assets/stylesheets/frontend/components/form_component.scss */
.form-group .form-control::placeholder {
  color: #727272;
}

/* line 22, app/assets/stylesheets/frontend/components/form_component.scss */
.form-group .form-control:focus {
  outline: none;
  border-color: #000000;
}

/* line 28, app/assets/stylesheets/frontend/components/form_component.scss */
.radio-group {
  display: flex;
  gap: 32px;
}

/* line 31, app/assets/stylesheets/frontend/components/form_component.scss */
.radio-group .radio-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* line 36, app/assets/stylesheets/frontend/components/form_component.scss */
.radio-group .radio-input {
  width: 22px;
  height: 22px;
  border: 2px solid #727272;
  border-radius: 50%;
  appearance: none;
  cursor: pointer;
}

/* line 43, app/assets/stylesheets/frontend/components/form_component.scss */
.radio-group .radio-input:checked {
  border-color: #000000;
  background: #000000;
  position: relative;
}

/* line 47, app/assets/stylesheets/frontend/components/form_component.scss */
.radio-group .radio-input:checked::after {
  content: '';
  width: 12px;
  height: 12px;
  background: #FFFFFF;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* line 60, app/assets/stylesheets/frontend/components/form_component.scss */
.radio-group .radio-label {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}

/* line 67, app/assets/stylesheets/frontend/components/form_component.scss */
.checkbox-group {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* line 71, app/assets/stylesheets/frontend/components/form_component.scss */
.checkbox-group .checkbox-input {
  width: 20px;
  height: 20px;
  border: 2px solid #C9CED6;
  border-radius: 4px;
  appearance: none;
  cursor: pointer;
}

/* line 78, app/assets/stylesheets/frontend/components/form_component.scss */
.checkbox-group .checkbox-input:checked {
  background: #000000;
  border-color: #000000;
}

/* line 81, app/assets/stylesheets/frontend/components/form_component.scss */
.checkbox-group .checkbox-input:checked::after {
  content: '\2713';
  color: #FFFFFF;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

/* line 92, app/assets/stylesheets/frontend/components/form_component.scss */
.checkbox-group .checkbox-label {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
}

/* line 3, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form {
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 16px;
  width: 100%;
}

/* line 15, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form--fields-only {
  background: transparent;
  border: 0;
  padding: 0;
  gap: 24px;
}

/* line 21, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form--fields-only .shipping-address-form__field-row {
  height: auto;
}

/* line 25, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form--fields-only .shipping-address-form__field-row--single {
  height: auto;
}

/* line 29, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form--fields-only .shipping-address-form__field {
  align-items: stretch;
}

/* line 35, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__header {
  display: flex;
  gap: 8px;
  height: 52px;
  align-items: center;
  width: 100%;
}

/* line 42, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__header h3 {
  flex: 1;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  line-height: normal;
  font-size: 17px;
  color: #000000;
  font-variation-settings: 'wdth' 100;
  margin: 0;
}

/* line 55, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__divider {
  height: 0;
  width: 100%;
  position: relative;
}

/* line 60, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__divider::after {
  content: '';
  position: absolute;
  bottom: -0.5px;
  left: 0;
  right: 0;
  top: -0.5px;
  border-bottom: 1px solid #EBEBEB;
}

/* line 72, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__notice {
  background: #F5F7FB;
  box-sizing: border-box;
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 16px;
  border-radius: 8px;
  width: 100%;
}

/* line 82, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__notice p {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  line-height: normal;
  font-size: 14px;
  color: #000000;
  font-variation-settings: 'wdth' 100;
  margin: 0;
}

/* line 94, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__fields {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}

/* line 103, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__field-row {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}

/* line 109, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__field-row--single {
  height: 80px;
}

/* line 113, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__field-row--radio {
  height: 22px;
}

/* line 119, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__field {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
}

/* line 125, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__field--full {
  flex: 1;
}

/* line 129, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__field--fixed {
  width: 419px;
}

/* line 135, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__label {
  box-sizing: border-box;
  display: flex;
  gap: 8px;
  height: 18px;
  align-items: flex-start;
  padding: 0 8px;
  width: 100%;
}

/* line 144, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__label label {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  line-height: normal;
  font-size: 14px;
  color: #000000;
  white-space: nowrap;
  font-variation-settings: 'wdth' 100;
  margin: 0;
}

/* line 157, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__input-wrapper {
  border: 1px solid #727272;
  box-sizing: border-box;
  display: flex;
  gap: 16px;
  height: 50px;
  align-items: center;
  padding: 16px;
  border-radius: 32px;
  width: 100%;
}

/* line 168, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__input-wrapper input[type="text"],
.shipping-address-form__input-wrapper input[type="tel"] {
  flex: 1;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  line-height: normal;
  font-size: 14px;
  border: 0;
  outline: none;
  background: transparent;
  width: 100%;
  font-variation-settings: 'wdth' 100;
  color: #000000;
}

/* line 182, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__input-wrapper input[type="text"]::placeholder,
.shipping-address-form__input-wrapper input[type="tel"]::placeholder {
  color: #727272;
}

/* line 186, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__input-wrapper input[type="text"]:focus,
.shipping-address-form__input-wrapper input[type="tel"]:focus {
  outline: none;
}

/* line 193, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__radio-group {
  display: flex;
  gap: 32px;
  height: 22px;
  align-items: flex-start;
  width: 100%;
}

/* line 201, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__radio-item {
  display: flex;
  gap: 16px;
  height: 22px;
  align-items: center;
}

/* line 208, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__radio-button {
  position: relative;
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* line 214, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__radio-button input[type="radio"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  margin: 0;
}

/* line 221, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__radio-button input[type="radio"]:checked + .shipping-address-form__radio-visual .shipping-address-form__radio-indicator {
  opacity: 1;
}

/* line 227, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__radio-visual {
  position: absolute;
  border: 2px solid #727272;
  inset: 0;
  border-radius: 24px;
  pointer-events: none;
}

/* line 235, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__radio-indicator {
  position: absolute;
  inset: 4px;
  border-radius: 50%;
  background: #000000;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* line 244, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__radio-label {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  line-height: normal;
  font-size: 14px;
  color: #000000;
  white-space: nowrap;
  cursor: pointer;
  font-variation-settings: 'wdth' 100;
  margin: 0;
}

/* line 257, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__submit {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-start;
  padding: 16px 0;
  width: 100%;
}

/* line 266, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__submit button[data-address-submit] {
  background: #000000;
  border: 0;
  border-radius: 9999px;
  box-sizing: border-box;
  color: #FFFFFF;
  cursor: pointer;
  display: inline-flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  width: 100%;
  transition: background-color 0.2s ease;
}

/* line 281, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__submit button[data-address-submit]:hover {
  background: #333333;
}

/* line 285, app/assets/stylesheets/frontend/components/shipping_address_form_component.scss */
.shipping-address-form__submit button[data-address-submit] span {
  display: inline-flex;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  text-align: center;
  white-space: nowrap;
  color: inherit;
  font-variation-settings: 'wdth' 100;
}

/* line 4, app/assets/stylesheets/frontend/components/existing_address_component.scss */
.existing-address {
  background-color: white;
  border: 1px solid #EBEBEB;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 10px;
  /* Mobile: stack select and add button vertically */
  /* Ensure address info wraps */
  /* Mobile: stack modify button under details */
}

/* line 16, app/assets/stylesheets/frontend/components/existing_address_component.scss */
.existing-address__header h3 {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #000000;
  margin: 0;
  font-variation-settings: 'wdth' 100;
}

/* line 27, app/assets/stylesheets/frontend/components/existing_address_component.scss */
.existing-address__divider {
  width: 100%;
  height: 1px;
  background-color: #EBEBEB;
}

/* line 34, app/assets/stylesheets/frontend/components/existing_address_component.scss */
.existing-address__controls {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* line 40, app/assets/stylesheets/frontend/components/existing_address_component.scss */
.existing-address__controls-row {
  display: flex;
  gap: 16px;
  align-items: center;
}

@media (max-width: 767px) {
  /* line 4, app/assets/stylesheets/frontend/components/existing_address_component.scss */
  .existing-address {
    /* allow the add button text to wrap if needed */
  }
  /* line 48, app/assets/stylesheets/frontend/components/existing_address_component.scss */
  .existing-address__controls-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  /* line 54, app/assets/stylesheets/frontend/components/existing_address_component.scss */
  .existing-address__add-button {
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }
  /* line 60, app/assets/stylesheets/frontend/components/existing_address_component.scss */
  .existing-address__select-wrapper {
    height: 48px;
  }
  /* line 64, app/assets/stylesheets/frontend/components/existing_address_component.scss */
  .existing-address__select {
    /* allow the select label to wrap on mobile (if the select rendering supports it) */
    line-height: 1.2em;
    padding-left: 16px;
    white-space: normal;
    /* let browser decide height when text wraps */
    height: auto;
    min-height: 48px;
    padding-top: 8px;
    padding-bottom: 8px;
  }
  /* line 77, app/assets/stylesheets/frontend/components/existing_address_component.scss */
  .existing-address__add-button span {
    white-space: normal;
    text-align: center;
  }
}

/* line 84, app/assets/stylesheets/frontend/components/existing_address_component.scss */
.existing-address__info {
  white-space: normal;
  word-break: break-word;
}

/* line 90, app/assets/stylesheets/frontend/components/existing_address_component.scss */
.existing-address__select-wrapper {
  position: relative;
  flex: 1;
  height: 50px;
}

/* line 96, app/assets/stylesheets/frontend/components/existing_address_component.scss */
.existing-address__select {
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  border: 1px solid #727272;
  border-radius: 32px;
  /* Use horizontal padding and rely on line-height to vertically center */
  padding: 0 48px 0 20px;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  /* set line-height equal to container height for vertical centering */
  line-height: 50px;
  color: #000000;
  font-variation-settings: 'wdth' 100;
  background-color: white;
  appearance: none;
  cursor: pointer;
  outline: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

/* line 119, app/assets/stylesheets/frontend/components/existing_address_component.scss */
.existing-address__select:focus {
  border-color: #000000;
}

/* line 124, app/assets/stylesheets/frontend/components/existing_address_component.scss */
.existing-address__select-arrow {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
  width: 24px;
  height: 24px;
  color: #000000;
}

/* line 134, app/assets/stylesheets/frontend/components/existing_address_component.scss */
.existing-address__select-arrow svg {
  width: 100%;
  height: 100%;
}

/* line 141, app/assets/stylesheets/frontend/components/existing_address_component.scss */
.existing-address__add-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border: 1px solid #727272;
  border-radius: 100px;
  background-color: white;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
}

/* line 154, app/assets/stylesheets/frontend/components/existing_address_component.scss */
.existing-address__add-button span {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000000;
  font-variation-settings: 'wdth' 100;
}

/* line 162, app/assets/stylesheets/frontend/components/existing_address_component.scss */
.existing-address__add-button:hover {
  background-color: #F5F7FB;
  border-color: #000000;
}

/* line 169, app/assets/stylesheets/frontend/components/existing_address_component.scss */
.existing-address__display {
  background-color: #F5F7FB;
  border-radius: 8px;
  padding: 16px;
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: space-between;
}

/* line 179, app/assets/stylesheets/frontend/components/existing_address_component.scss */
.existing-address__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 186, app/assets/stylesheets/frontend/components/existing_address_component.scss */
.existing-address__name {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  color: #000000;
  font-variation-settings: 'wdth' 100;
}

/* line 194, app/assets/stylesheets/frontend/components/existing_address_component.scss */
.existing-address__info {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 24px;
  color: #000000;
  font-variation-settings: 'wdth' 100;
}

/* line 202, app/assets/stylesheets/frontend/components/existing_address_component.scss */
.existing-address__info p {
  margin: 0;
}

/* line 208, app/assets/stylesheets/frontend/components/existing_address_component.scss */
.existing-address__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

@media (max-width: 767px) {
  /* line 4, app/assets/stylesheets/frontend/components/existing_address_component.scss */
  .existing-address {
    /* Center the address text inside the display card on mobile */
  }
  /* line 216, app/assets/stylesheets/frontend/components/existing_address_component.scss */
  .existing-address__display {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  /* line 222, app/assets/stylesheets/frontend/components/existing_address_component.scss */
  .existing-address__actions {
    justify-content: center;
  }
  /* line 226, app/assets/stylesheets/frontend/components/existing_address_component.scss */
  .existing-address__modify-button {
    width: auto;
    align-self: center;
    padding: 12px 20px;
    justify-content: center;
  }
  /* line 234, app/assets/stylesheets/frontend/components/existing_address_component.scss */
  .existing-address__details {
    align-items: center;
    text-align: center;
  }
  /* line 239, app/assets/stylesheets/frontend/components/existing_address_component.scss */
  .existing-address__name {
    text-align: center;
  }
  /* line 243, app/assets/stylesheets/frontend/components/existing_address_component.scss */
  .existing-address__info {
    text-align: center;
  }
}

/* line 248, app/assets/stylesheets/frontend/components/existing_address_component.scss */
.existing-address__modify-button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px 14px 24px;
  border: 1px solid #727272;
  border-radius: 100px;
  background-color: white;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 260, app/assets/stylesheets/frontend/components/existing_address_component.scss */
.existing-address__modify-button svg {
  width: 24px;
  height: 24px;
  color: #000000;
}

/* line 266, app/assets/stylesheets/frontend/components/existing_address_component.scss */
.existing-address__modify-button span {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000000;
  font-variation-settings: 'wdth' 100;
}

/* line 274, app/assets/stylesheets/frontend/components/existing_address_component.scss */
.existing-address__modify-button:hover {
  background-color: #F5F7FB;
  border-color: #000000;
}

/* line 4, app/assets/stylesheets/frontend/components/billing_address_checkbox_component.scss */
.billing-address-checkbox {
  background-color: white;
  border: 1px solid #EBEBEB;
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  margin-bottom: 10px;
  /* Ensure long checkbox labels wrap nicely on small screens */
}

/* line 12, app/assets/stylesheets/frontend/components/billing_address_checkbox_component.scss */
.billing-address-checkbox__container {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  width: 100%;
}

/* line 19, app/assets/stylesheets/frontend/components/billing_address_checkbox_component.scss */
.billing-address-checkbox__wrapper {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 100%;
  cursor: pointer;
  position: relative;
  user-select: none;
}

/* line 30, app/assets/stylesheets/frontend/components/billing_address_checkbox_component.scss */
.billing-address-checkbox__input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* line 39, app/assets/stylesheets/frontend/components/billing_address_checkbox_component.scss */
.billing-address-checkbox__input:checked ~ .billing-address-checkbox__box .billing-address-checkbox__checkmark {
  opacity: 1;
  filter: brightness(0) invert(1);
}

/* line 45, app/assets/stylesheets/frontend/components/billing_address_checkbox_component.scss */
.billing-address-checkbox__input:checked ~ .billing-address-checkbox__box {
  background-color: #262626;
  border-color: #262626;
  color: #FFFFFF;
}

/* line 53, app/assets/stylesheets/frontend/components/billing_address_checkbox_component.scss */
.billing-address-checkbox__box {
  position: relative;
  width: 20px;
  height: 20px;
  min-width: 20px;
  border: 2px solid #727272;
  border-radius: 4px;
  background-color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

/* line 66, app/assets/stylesheets/frontend/components/billing_address_checkbox_component.scss */
.billing-address-checkbox__box:hover {
  border-color: #000000;
}

/* line 71, app/assets/stylesheets/frontend/components/billing_address_checkbox_component.scss */
.billing-address-checkbox__checkmark {
  color: white;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* line 78, app/assets/stylesheets/frontend/components/billing_address_checkbox_component.scss */
.billing-address-checkbox__checkmark path {
  stroke: currentColor;
}

/* line 82, app/assets/stylesheets/frontend/components/billing_address_checkbox_component.scss */
.billing-address-checkbox__text {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  color: #000000;
  font-variation-settings: 'wdth' 100;
  white-space: normal;
  word-break: break-word;
  flex: 1;
}

@media (max-width: 767px) {
  /* line 96, app/assets/stylesheets/frontend/components/billing_address_checkbox_component.scss */
  .billing-address-checkbox__text {
    font-size: 14px;
    line-height: 1.3;
  }
}

/* line 3, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method {
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 24px;
}

/* line 11, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__header h3 {
  font-family: 'TT Firs Neue', sans-serif;
  font-weight: 700;
  font-size: 20px;
  line-height: 24px;
  color: #000000;
  margin: 0 0 16px 0;
}

/* line 21, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__divider {
  width: 100%;
  height: 1px;
  background: #EBEBEB;
  margin-bottom: 24px;
}

/* line 28, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__options {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-bottom: 24px;
}

/* line 35, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__option {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px;
  border: 1.5px solid #EBEBEB;
  border-radius: 8px;
  cursor: pointer;
  transition: border-color 0.2s ease;
  flex: 1 1 240px;
}

/* line 46, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__option:hover {
  border-color: #727272;
}

/* line 50, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__option--selected {
  border-color: #000000;
  background: rgba(0, 0, 0, 0.02);
}

@media (max-width: 640px) {
  /* line 57, app/assets/stylesheets/frontend/components/payment_method_component.scss */
  .payment-method__option {
    flex-basis: 100%;
  }
}

/* line 62, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__radio {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* line 68, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__radio-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border: 2px solid #EBEBEB;
  border-radius: 50%;
  flex-shrink: 0;
  transition: border-color 0.2s ease, background 0.2s ease;
}

/* line 79, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__option--selected .payment-method__radio-visual {
  border-color: #000000;
  background: #FFFFFF;
}

/* line 85, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__radio-indicator {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #000000;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* line 93, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__option--selected .payment-method__radio-indicator {
  opacity: 1;
}

/* line 98, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__content {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* line 105, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__label {
  font-family: 'TT Firs Neue', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
}

/* line 113, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__icon {
  width: 24px;
  height: 24px;
  color: #000000;
}

/* line 119, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__terms {
  margin-bottom: 24px;
}

/* line 123, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__terms-wrapper {
  display: flex;
  align-items: center;
  gap: 12px;
  cursor: pointer;
  user-select: none;
}

/* line 131, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__terms-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* line 137, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__terms-box {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  min-width: 20px;
  min-height: 20px;
  border: 1.5px solid #EBEBEB;
  border-radius: 4px;
  background: #FFFFFF;
  transition: border-color 0.2s ease, background 0.2s ease;
  margin-top: 0;
}

/* line 151, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__terms-input:checked ~ .payment-method__terms-box {
  border-color: #262626;
  background: #262626;
}

/* line 158, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__terms-checkmark {
  width: 12px;
  height: 10px;
  color: #FFFFFF;
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* line 165, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__terms-input:checked ~ .payment-method__terms-box .payment-method__terms-checkmark {
  opacity: 1;
  filter: brightness(0) invert(1);
}

/* line 171, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__terms-text {
  font-family: 'TT Firs Neue', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  color: #000000;
}

/* line 179, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__terms-link {
  color: #000000;
  text-decoration: underline;
  font-weight: 500;
}

/* line 184, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__terms-link:hover {
  text-decoration: none;
}

/* line 189, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__submit {
  width: 100%;
}

/* line 193, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__submit-button {
  width: 100%;
  padding: 16px 24px;
  background: #000000;
  border: none;
  border-radius: 8px;
  font-family: 'TT Firs Neue', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #FFFFFF;
  cursor: pointer;
  transition: background 0.2s ease, opacity 0.2s ease;
}

/* line 207, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__submit-button:hover:not(:disabled) {
  background: #1a1a1a;
}

/* line 211, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__submit-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

/* line 216, app/assets/stylesheets/frontend/components/payment_method_component.scss */
.payment-method__submit-button span {
  display: block;
  text-align: center;
}

/* line 3, app/assets/stylesheets/frontend/components/order_summary_component.scss */
.order-summary {
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  border-radius: 16px;
  padding: 24px;
  width: 100%;
  max-width: 450px;
  align-self: flex-start;
  position: static;
}

/* line 13, app/assets/stylesheets/frontend/components/order_summary_component.scss */
.order-summary__header {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
}

/* line 20, app/assets/stylesheets/frontend/components/order_summary_component.scss */
.order-summary__title {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: normal;
  color: #000000;
  margin: 0;
  font-variation-settings: 'wdth' 100;
}

/* line 30, app/assets/stylesheets/frontend/components/order_summary_component.scss */
.order-summary__subtitle {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  color: #727272;
  font-variation-settings: 'wdth' 100;
}

/* line 39, app/assets/stylesheets/frontend/components/order_summary_component.scss */
.order-summary__totals {
  display: flex;
  flex-direction: column;
}

/* line 44, app/assets/stylesheets/frontend/components/order_summary_component.scss */
.order-summary__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 16px 0;
  gap: 16px;
}

/* line 51, app/assets/stylesheets/frontend/components/order_summary_component.scss */
.order-summary__row--total {
  font-weight: 600;
  font-size: 17px;
}

/* line 57, app/assets/stylesheets/frontend/components/order_summary_component.scss */
.order-summary__label {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: normal;
  color: #000000;
  flex: 1;
  font-variation-settings: 'wdth' 100;
}

/* line 66, app/assets/stylesheets/frontend/components/order_summary_component.scss */
.order-summary__label--bold {
  font-weight: 600;
  font-size: 17px;
}

/* line 72, app/assets/stylesheets/frontend/components/order_summary_component.scss */
.order-summary__value {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  color: #000000;
  white-space: nowrap;
  font-variation-settings: 'wdth' 100;
}

/* line 81, app/assets/stylesheets/frontend/components/order_summary_component.scss */
.order-summary__value--bold {
  font-size: 17px;
}

/* line 86, app/assets/stylesheets/frontend/components/order_summary_component.scss */
.order-summary__divider {
  height: 1px;
  background: #EBEBEB;
  width: 100%;
}

@media (max-width: 1199px) {
  /* line 95, app/assets/stylesheets/frontend/components/order_summary_component.scss */
  .order-summary {
    position: static;
    width: 100%;
    max-width: none;
    margin-top: 16px;
  }
}

/* Checkout grid wrapper */
/* line 104, app/assets/stylesheets/frontend/components/order_summary_component.scss */
.checkout-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-column-gap: 24px;
}

/* Desktop: show two columns; hide mobile inline summary */
@media (min-width: 1200px) {
  /* line 112, app/assets/stylesheets/frontend/components/order_summary_component.scss */
  .checkout-grid {
    grid-template-columns: 1fr 450px;
    align-items: start;
  }
  /* line 117, app/assets/stylesheets/frontend/components/order_summary_component.scss */
  .order-summary {
    position: sticky;
    top: 120px;
  }
}

/* Mobile: show inline summary above payment, hide the right sidebar version */
@media (max-width: 1199px) {
  /* line 125, app/assets/stylesheets/frontend/components/order_summary_component.scss */
  .checkout-summary--desktop {
    display: none;
  }
  /* line 126, app/assets/stylesheets/frontend/components/order_summary_component.scss */
  .checkout-summary--mobile {
    display: block;
    margin-bottom: 16px;
  }
}

@media (min-width: 1200px) {
  /* line 130, app/assets/stylesheets/frontend/components/order_summary_component.scss */
  .checkout-summary--mobile {
    display: none;
  }
}

/* line 3, app/assets/stylesheets/frontend/components/checkout_header_component.scss */
.checkout-header {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 48px 32px 16px;
  width: 100%;
  /* Mobile: stack back button above title */
}

/* line 13, app/assets/stylesheets/frontend/components/checkout_header_component.scss */
.checkout-header__container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

/* line 21, app/assets/stylesheets/frontend/components/checkout_header_component.scss */
.checkout-header__back {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 220px;
  text-decoration: none;
  color: #000000;
  transition: opacity 0.2s ease;
}

/* line 30, app/assets/stylesheets/frontend/components/checkout_header_component.scss */
.checkout-header__back:hover {
  opacity: 0.7;
}

/* line 35, app/assets/stylesheets/frontend/components/checkout_header_component.scss */
.checkout-header__back-icon {
  overflow: hidden;
  width: 39px;
  height: 39px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 44, app/assets/stylesheets/frontend/components/checkout_header_component.scss */
.checkout-header__back-icon svg {
  width: 100%;
  height: 100%;
}

/* line 50, app/assets/stylesheets/frontend/components/checkout_header_component.scss */
.checkout-header__back-text {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  line-height: 12px;
  font-size: 15px;
  color: #000000;
  white-space: nowrap;
  letter-spacing: 0.2px;
  font-variation-settings: 'wdth' 100;
  margin: 0;
}

/* line 63, app/assets/stylesheets/frontend/components/checkout_header_component.scss */
.checkout-header__title-container {
  display: flex;
  gap: 8px;
  align-items: center;
}

/* line 69, app/assets/stylesheets/frontend/components/checkout_header_component.scss */
.checkout-header__title {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 600;
  line-height: 58px;
  font-size: 37px;
  color: #000000;
  white-space: nowrap;
  margin: 0;
}

/* line 80, app/assets/stylesheets/frontend/components/checkout_header_component.scss */
.checkout-header__spacer {
  width: 220px;
  opacity: 0;
}

@media (max-width: 767px) {
  /* line 3, app/assets/stylesheets/frontend/components/checkout_header_component.scss */
  .checkout-header {
    padding: 24px 16px 12px;
  }
  /* line 89, app/assets/stylesheets/frontend/components/checkout_header_component.scss */
  .checkout-header__container {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
  /* line 95, app/assets/stylesheets/frontend/components/checkout_header_component.scss */
  .checkout-header__back {
    width: auto;
    /* left-align the back button on mobile while title remains centered */
    align-self: flex-start;
  }
  /* line 101, app/assets/stylesheets/frontend/components/checkout_header_component.scss */
  .checkout-header__title {
    white-space: normal;
    font-size: 28px;
    line-height: 36px;
    text-align: center;
  }
  /* line 108, app/assets/stylesheets/frontend/components/checkout_header_component.scss */
  .checkout-header__spacer {
    display: none;
  }
}

/* line 2, app/assets/stylesheets/frontend/components/header_component.scss */
.main-header {
  position: relative;
  z-index: 100;
  background: #FFFFFF;
  border-bottom: 1px solid #E3E6E9;
  padding: 0 52px;
  width: 100%;
}

/* line 11, app/assets/stylesheets/frontend/components/header_component.scss */
.main-header .header-actions .btn {
  min-height: 0 !important;
  height: auto !important;
  display: inline-flex !important;
  align-items: center !important;
  vertical-align: middle !important;
  margin: 0 !important;
}

/* line 21, app/assets/stylesheets/frontend/components/header_component.scss */
.main-header .header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  max-width: 1510px;
  margin: 0 auto;
  gap: 20px;
  min-width: 0;
}

/* line 32, app/assets/stylesheets/frontend/components/header_component.scss */
.main-header .header-left {
  display: flex;
  align-items: center;
  gap: 100px;
  flex: 1;
  min-width: 0;
}

/* line 40, app/assets/stylesheets/frontend/components/header_component.scss */
.main-header .header-logo {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 8px;
}

/* line 47, app/assets/stylesheets/frontend/components/header_component.scss */
.main-header .header-logo .logo {
  width: 56px;
  height: 56px;
  object-fit: cover;
}

/* line 55, app/assets/stylesheets/frontend/components/header_component.scss */
.main-header .header-nav .nav-menu {
  display: flex !important;
  align-items: center;
  gap: 28px;
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  height: 100%;
}

/* line 64, app/assets/stylesheets/frontend/components/header_component.scss */
.main-header .header-nav .nav-menu .nav-item {
  display: flex;
  align-items: center;
}

/* line 69, app/assets/stylesheets/frontend/components/header_component.scss */
.main-header .header-nav .nav-menu .nav-item.active .nav-link {
  font-weight: 600;
  letter-spacing: 1.33px;
  border-bottom: 2px solid #000000;
}

/* line 77, app/assets/stylesheets/frontend/components/header_component.scss */
.main-header .header-nav .nav-menu .nav-link {
  font-family: 'Encode Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.25em;
  color: #000000;
  text-decoration: none;
  padding: 10px 0;
  display: inline-flex;
  align-items: center;
  position: relative;
  transition: color 160ms ease, transform 160ms ease;
}

/* line 90, app/assets/stylesheets/frontend/components/header_component.scss */
.main-header .header-nav .nav-menu .nav-link:hover {
  color: #727272;
  transform: translateY(-1px);
  text-decoration: none;
}

/* line 97, app/assets/stylesheets/frontend/components/header_component.scss */
.main-header .header-nav .nav-menu .nav-link:after {
  /* disable animated underline in header nav */
  content: none !important;
}

/* line 102, app/assets/stylesheets/frontend/components/header_component.scss */
.main-header .header-nav .nav-menu .nav-link:hover:after, .main-header .header-nav .nav-menu .nav-link.active:after {
  /* ensure nothing appears on hover or active */
  content: none !important;
}

/* line 109, app/assets/stylesheets/frontend/components/header_component.scss */
.main-header .header-nav .nav-menu .nav-link-button {
  border: none;
  background: transparent;
  padding: 0;
  margin: 0;
  width: 100%;
  text-align: left;
  font: inherit;
  color: #000000;
  cursor: pointer;
}

/* line 123, app/assets/stylesheets/frontend/components/header_component.scss */
.main-header .header-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  flex-shrink: 0;
  min-width: max-content;
}

/* line 131, app/assets/stylesheets/frontend/components/header_component.scss */
.main-header .header-actions .btn {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.366em;
  border-radius: 100px;
  border: 1px solid #727272;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  transition: all 0.2s ease;
  /* allow header buttons to fit the header height and not be constrained by global .btn min-height */
  min-height: 0;
  height: auto;
  align-self: center;
  text-align: center;
  background-color: #FFFFFF;
  color: #000000;
}

/* line 152, app/assets/stylesheets/frontend/components/header_component.scss */
.main-header .header-actions .btn .btn-icon {
  width: 24px;
  height: 24px;
}

/* line 157, app/assets/stylesheets/frontend/components/header_component.scss */
.main-header .header-actions .btn.btn-promo {
  padding: 8px 16px;
  white-space: nowrap;
  min-width: max-content;
  flex-shrink: 0;
}

/* line 163, app/assets/stylesheets/frontend/components/header_component.scss */
.main-header .header-actions .btn.btn-promo:hover {
  background-color: #F5F7FB;
  text-decoration: none;
  /* prevent underline on hover */
}

/* line 170, app/assets/stylesheets/frontend/components/header_component.scss */
.main-header .header-actions .btn.btn-login {
  padding: 8px 22px;
  white-space: nowrap;
  min-width: max-content;
  flex-shrink: 0;
  /* Make login button have a solid black background and white text/icon */
  background-color: #000000;
  color: #FFFFFF;
  border: 1px solid transparent;
}

/* line 181, app/assets/stylesheets/frontend/components/header_component.scss */
.main-header .header-actions .btn.btn-login i,
.main-header .header-actions .btn.btn-login .huge-user {
  /* ensure the FontAwesome icon appears white */
  color: #FFFFFF !important;
}

/* line 187, app/assets/stylesheets/frontend/components/header_component.scss */
.main-header .header-actions .btn.btn-login:hover {
  /* Slightly lighten on hover for feedback */
  background-color: #0f0f0f;
  text-decoration: none;
  /* prevent underline on hover */
}

@media (max-width: 992px) {
  /* line 200, app/assets/stylesheets/frontend/components/header_component.scss */
  .main-header {
    padding: 0 20px;
  }
  /* line 203, app/assets/stylesheets/frontend/components/header_component.scss */
  .main-header .header-container {
    gap: 12px;
  }
  /* line 207, app/assets/stylesheets/frontend/components/header_component.scss */
  .main-header .header-left {
    gap: 16px;
  }
  /* line 211, app/assets/stylesheets/frontend/components/header_component.scss */
  .main-header .header-nav {
    display: none;
  }
  /* line 216, app/assets/stylesheets/frontend/components/header_component.scss */
  .main-header .header-actions .btn.btn-promo {
    display: none !important;
  }
  /* line 221, app/assets/stylesheets/frontend/components/header_component.scss */
  .main-header .mobile-menu-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 0;
    /* no rounded background */
    border: none;
    /* remove border */
    background: transparent;
    /* transparent background */
    cursor: pointer;
    transition: none;
    /* disable animations/transitions */
  }
  /* line 233, app/assets/stylesheets/frontend/components/header_component.scss */
  .main-header .mobile-menu-button.is-open {
    /* keep visual state static when open */
    background: transparent;
    transform: none;
  }
  /* Mobile menu: full-height left panel with overlay */
  /* line 242, app/assets/stylesheets/frontend/components/header_component.scss */
  .mobile-menu {
    display: none;
    /* hidden by default, shown on small screens via d-lg-none */
    position: fixed;
    inset: 0;
    /* top:0; right:0; bottom:0; left:0 */
    z-index: 1050;
    pointer-events: none;
    /* block pointer events when closed */
    /* overlay area (rest of screen) */
  }
  /* line 249, app/assets/stylesheets/frontend/components/header_component.scss */
  .mobile-menu .mobile-menu-panel {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 300px;
    /* slightly narrower panel */
    background: #FFFFFF;
    box-shadow: 0 4px 30px rgba(24, 24, 24, 0.12);
    padding: 20px;
    overflow-y: auto;
  }
  /* line 262, app/assets/stylesheets/frontend/components/header_component.scss */
  .mobile-menu::before {
    content: '';
    position: absolute;
    top: 0;
    left: 300px;
    right: 0;
    bottom: 0;
    background: rgba(24, 24, 24, 0.45);
    opacity: 0;
    transition: opacity 160ms ease;
    pointer-events: none;
  }
  /* line 275, app/assets/stylesheets/frontend/components/header_component.scss */
  .mobile-menu .mobile-menu-top {
    display: flex;
    justify-content: flex-end;
    margin-bottom: 6px;
  }
  /* line 280, app/assets/stylesheets/frontend/components/header_component.scss */
  .mobile-menu .mobile-menu-top .mobile-menu-close {
    background: transparent;
    border: none;
    font-size: 18px;
    cursor: pointer;
    color: #000000;
  }
  /* line 289, app/assets/stylesheets/frontend/components/header_component.scss */
  .mobile-menu .nav-menu {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin: 0;
    padding: 8px 4px;
    list-style: none;
    /* remove bullets */
    padding-left: 0;
    /* remove default ul indentation */
    /* support parent .active on nav-item */
  }
  /* line 298, app/assets/stylesheets/frontend/components/header_component.scss */
  .mobile-menu .nav-menu .nav-link {
    padding: 6px 0;
    border-radius: 0;
    font-size: 16px;
    color: #333333;
    font-weight: 500;
    transition: color 120ms ease, font-weight 80ms ease;
    /* selected/current page */
  }
  /* line 306, app/assets/stylesheets/frontend/components/header_component.scss */
  .mobile-menu .nav-menu .nav-link:hover, .mobile-menu .nav-menu .nav-link:focus {
    color: #000000;
    font-weight: 700;
    outline: none;
  }
  /* line 314, app/assets/stylesheets/frontend/components/header_component.scss */
  .mobile-menu .nav-menu .nav-link[aria-current="page"] {
    color: #000000;
    font-weight: 700;
  }
  /* line 322, app/assets/stylesheets/frontend/components/header_component.scss */
  .mobile-menu .nav-menu .nav-item.active .nav-link {
    color: #000000;
    font-weight: 700;
  }
  /* line 329, app/assets/stylesheets/frontend/components/header_component.scss */
  .mobile-menu.open {
    display: block;
    pointer-events: auto;
  }
  /* line 333, app/assets/stylesheets/frontend/components/header_component.scss */
  .mobile-menu.open::before {
    opacity: 1;
    pointer-events: auto;
  }
}

/* line 2, app/assets/stylesheets/frontend/components/icon_component.scss */
.icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* line 10, app/assets/stylesheets/frontend/components/icon_component.scss */
.icon.icon-sm {
  width: 16px;
  height: 16px;
}

/* line 14, app/assets/stylesheets/frontend/components/icon_component.scss */
.icon.icon-lg {
  width: 32px;
  height: 32px;
}

/* line 18, app/assets/stylesheets/frontend/components/icon_component.scss */
.icon.icon-xl {
  width: 48px;
  height: 48px;
}

/* line 26, app/assets/stylesheets/frontend/components/icon_component.scss */
.icon-search::before {
  content: "\f002";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* line 34, app/assets/stylesheets/frontend/components/icon_component.scss */
.icon-arrow-left::before {
  content: "\f104";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* line 42, app/assets/stylesheets/frontend/components/icon_component.scss */
.icon-arrow-right::before {
  content: "\f105";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
}

/* line 2, app/assets/stylesheets/frontend/layouts/base_layout.scss */
.container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

/* line 7, app/assets/stylesheets/frontend/layouts/base_layout.scss */
.container-fluid {
  width: 100%;
  padding: 0 32px;
}

/* line 11, app/assets/stylesheets/frontend/layouts/base_layout.scss */
.section {
  padding: 32px 0;
}

/* line 14, app/assets/stylesheets/frontend/layouts/base_layout.scss */
.section-large {
  padding: 48px 0;
}

/* line 19, app/assets/stylesheets/frontend/layouts/base_layout.scss */
.row-equal-height {
  display: flex;
  flex-wrap: wrap;
}

/* line 23, app/assets/stylesheets/frontend/layouts/base_layout.scss */
.row-equal-height > [class*="col-"] {
  display: flex;
  flex-direction: column;
}

/* line 2, app/assets/stylesheets/frontend/utilities/spacing.scss */
.p-0 {
  padding: 0;
}

/* line 3, app/assets/stylesheets/frontend/utilities/spacing.scss */
.p-1 {
  padding: 8px;
}

/* line 4, app/assets/stylesheets/frontend/utilities/spacing.scss */
.p-2 {
  padding: 16px;
}

/* line 5, app/assets/stylesheets/frontend/utilities/spacing.scss */
.p-3 {
  padding: 24px;
}

/* line 6, app/assets/stylesheets/frontend/utilities/spacing.scss */
.p-4 {
  padding: 32px;
}

/* line 7, app/assets/stylesheets/frontend/utilities/spacing.scss */
.m-0 {
  margin: 0;
}

/* line 8, app/assets/stylesheets/frontend/utilities/spacing.scss */
.m-1 {
  margin: 8px;
}

/* line 9, app/assets/stylesheets/frontend/utilities/spacing.scss */
.m-2 {
  margin: 16px;
}

/* line 10, app/assets/stylesheets/frontend/utilities/spacing.scss */
.m-3 {
  margin: 24px;
}

/* line 11, app/assets/stylesheets/frontend/utilities/spacing.scss */
.m-4 {
  margin: 32px;
}

/* line 12, app/assets/stylesheets/frontend/utilities/spacing.scss */
.pt-1 {
  padding-top: 8px;
}

/* line 13, app/assets/stylesheets/frontend/utilities/spacing.scss */
.pb-1 {
  padding-bottom: 8px;
}

/* line 14, app/assets/stylesheets/frontend/utilities/spacing.scss */
.pl-1 {
  padding-left: 8px;
}

/* line 15, app/assets/stylesheets/frontend/utilities/spacing.scss */
.pr-1 {
  padding-right: 8px;
}

/* line 16, app/assets/stylesheets/frontend/utilities/spacing.scss */
.mt-1 {
  margin-top: 8px;
}

/* line 17, app/assets/stylesheets/frontend/utilities/spacing.scss */
.mb-1 {
  margin-bottom: 8px;
}

/* line 18, app/assets/stylesheets/frontend/utilities/spacing.scss */
.ml-1 {
  margin-left: 8px;
}

/* line 19, app/assets/stylesheets/frontend/utilities/spacing.scss */
.mr-1 {
  margin-right: 8px;
}

/* line 2, app/assets/stylesheets/frontend/utilities/typography.scss */
.h1-title {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 600;
  font-size: 37px;
  line-height: 1.57;
}

/* line 8, app/assets/stylesheets/frontend/utilities/typography.scss */
.h2-subtitle {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25;
}

/* line 14, app/assets/stylesheets/frontend/utilities/typography.scss */
.h3-section {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: 1.25;
}

/* line 20, app/assets/stylesheets/frontend/utilities/typography.scss */
.body-large {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.65;
}

/* line 26, app/assets/stylesheets/frontend/utilities/typography.scss */
.body-medium {
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.2;
}

/* line 32, app/assets/stylesheets/frontend/utilities/typography.scss */
.body-small {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.67;
}

/* line 38, app/assets/stylesheets/frontend/utilities/typography.scss */
.button-text {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25;
}

/* line 44, app/assets/stylesheets/frontend/utilities/typography.scss */
.label-text {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 1.25;
}

/* required styles */
/* line 3, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
  position: absolute;
  left: 0;
  top: 0;
}

/* line 17, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-container {
  overflow: hidden;
}

/* line 20, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
  -webkit-user-drag: none;
}

/* Prevents IE11 from highlighting tiles in blue */
/* line 29, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-tile::selection {
  background: transparent;
}

/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
/* line 33, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-safari .leaflet-tile {
  image-rendering: -webkit-optimize-contrast;
}

/* hack that prevents hw layers "stretching" when loading new tiles */
/* line 37, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-safari .leaflet-tile-container {
  width: 1600px;
  height: 1600px;
  -webkit-transform-origin: 0 0;
}

/* line 42, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-marker-icon,
.leaflet-marker-shadow {
  display: block;
}

/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
/* line 48, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-container .leaflet-overlay-pane svg {
  max-width: none !important;
  max-height: none !important;
}

/* line 52, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer,
.leaflet-container .leaflet-tile {
  max-width: none !important;
  max-height: none !important;
  width: auto;
  padding: 0;
}

/* line 63, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-container img.leaflet-tile {
  /* See: https://bugs.chromium.org/p/chromium/issues/detail?id=600120 */
  mix-blend-mode: plus-lighter;
}

/* line 68, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-container.leaflet-touch-zoom {
  -ms-touch-action: pan-x pan-y;
  touch-action: pan-x pan-y;
}

/* line 72, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-container.leaflet-touch-drag {
  -ms-touch-action: pinch-zoom;
  /* Fallback for FF which doesn't support pinch-zoom */
  touch-action: none;
  touch-action: pinch-zoom;
}

/* line 78, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-container.leaflet-touch-drag.leaflet-touch-zoom {
  -ms-touch-action: none;
  touch-action: none;
}

/* line 82, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-container {
  -webkit-tap-highlight-color: transparent;
}

/* line 85, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-container a {
  -webkit-tap-highlight-color: rgba(51, 181, 229, 0.4);
}

/* line 88, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-tile {
  filter: inherit;
  visibility: hidden;
}

/* line 92, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-tile-loaded {
  visibility: inherit;
}

/* line 95, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-zoom-box {
  width: 0;
  height: 0;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 800;
}

/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
/* line 103, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-overlay-pane svg {
  -moz-user-select: none;
}

/* line 107, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-pane {
  z-index: 400;
}

/* line 109, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-tile-pane {
  z-index: 200;
}

/* line 110, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-overlay-pane {
  z-index: 400;
}

/* line 111, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-shadow-pane {
  z-index: 500;
}

/* line 112, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-marker-pane {
  z-index: 600;
}

/* line 113, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-tooltip-pane {
  z-index: 650;
}

/* line 114, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-popup-pane {
  z-index: 700;
}

/* line 116, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-map-pane canvas {
  z-index: 100;
}

/* line 117, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-map-pane svg {
  z-index: 200;
}

/* line 119, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-vml-shape {
  width: 1px;
  height: 1px;
}

/* line 123, app/assets/stylesheets/frontend/libs/leaflet.css */
.lvml {
  behavior: url(#default#VML);
  display: inline-block;
  position: absolute;
}

/* control positioning */
/* line 132, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-control {
  position: relative;
  z-index: 800;
  pointer-events: visiblePainted;
  /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}

/* line 138, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-top,
.leaflet-bottom {
  position: absolute;
  z-index: 1000;
  pointer-events: none;
}

/* line 144, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-top {
  top: 0;
}

/* line 147, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-right {
  right: 0;
}

/* line 150, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-bottom {
  bottom: 0;
}

/* line 153, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-left {
  left: 0;
}

/* line 156, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-control {
  float: left;
  clear: both;
}

/* line 160, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-right .leaflet-control {
  float: right;
}

/* line 163, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-top .leaflet-control {
  margin-top: 10px;
}

/* line 166, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-bottom .leaflet-control {
  margin-bottom: 10px;
}

/* line 169, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-left .leaflet-control {
  margin-left: 10px;
}

/* line 172, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-right .leaflet-control {
  margin-right: 10px;
}

/* zoom and fade animations */
/* line 179, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-fade-anim .leaflet-popup {
  opacity: 0;
  -webkit-transition: opacity 0.2s linear;
  -moz-transition: opacity 0.2s linear;
  transition: opacity 0.2s linear;
}

/* line 185, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
  opacity: 1;
}

/* line 188, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-zoom-animated {
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
}

/* line 193, app/assets/stylesheets/frontend/libs/leaflet.css */
svg.leaflet-zoom-animated {
  will-change: transform;
}

/* line 197, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-zoom-anim .leaflet-zoom-animated {
  -webkit-transition: -webkit-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  -moz-transition: -moz-transform 0.25s cubic-bezier(0, 0, 0.25, 1);
  transition: transform 0.25s cubic-bezier(0, 0, 0.25, 1);
}

/* line 202, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
  -webkit-transition: none;
  -moz-transition: none;
  transition: none;
}

/* line 209, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-zoom-anim .leaflet-zoom-hide {
  visibility: hidden;
}

/* cursors */
/* line 216, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-interactive {
  cursor: pointer;
}

/* line 219, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-grab {
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}

/* line 224, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
  cursor: crosshair;
}

/* line 228, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-popup-pane,
.leaflet-control {
  cursor: auto;
}

/* line 232, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}

/* marker & overlays interactivity */
/* line 242, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
  pointer-events: none;
}

/* line 250, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive,
svg.leaflet-image-layer.leaflet-interactive path {
  pointer-events: visiblePainted;
  /* IE 9-10 doesn't have auto */
  pointer-events: auto;
}

/* visual tweaks */
/* line 260, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-container {
  background: #ddd;
  outline-offset: 1px;
}

/* line 264, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-container a {
  color: #0078A8;
}

/* line 267, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-zoom-box {
  border: 2px dotted #38f;
  background: rgba(255, 255, 255, 0.5);
}

/* general typography */
/* line 274, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-container {
  font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.5;
}

/* general toolbar styles */
/* line 284, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-bar {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.65);
  border-radius: 4px;
}

/* line 288, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-bar a {
  background-color: #fff;
  border-bottom: 1px solid #ccc;
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: block;
  text-align: center;
  text-decoration: none;
  color: black;
}

/* line 299, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-bar a,
.leaflet-control-layers-toggle {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  display: block;
}

/* line 305, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-bar a:hover,
.leaflet-bar a:focus {
  background-color: #f4f4f4;
}

/* line 309, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-bar a:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}

/* line 313, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-bar a:last-child {
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom: none;
}

/* line 318, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-bar a.leaflet-disabled {
  cursor: default;
  background-color: #f4f4f4;
  color: #bbb;
}

/* line 324, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-touch .leaflet-bar a {
  width: 30px;
  height: 30px;
  line-height: 30px;
}

/* line 329, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-touch .leaflet-bar a:first-child {
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
}

/* line 333, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-touch .leaflet-bar a:last-child {
  border-bottom-left-radius: 2px;
  border-bottom-right-radius: 2px;
}

/* zoom control */
/* line 340, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
  font: bold 18px 'Lucida Console', Monaco, monospace;
  text-indent: 1px;
}

/* line 346, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-touch .leaflet-control-zoom-in, .leaflet-touch .leaflet-control-zoom-out {
  font-size: 22px;
}

/* layers control */
/* line 353, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-control-layers {
  box-shadow: 0 1px 5px rgba(0, 0, 0, 0.4);
  background: #fff;
  border-radius: 5px;
}

/* line 358, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-control-layers-toggle {
  background-image: url(/images/layers.png);
  width: 36px;
  height: 36px;
}

/* line 363, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-retina .leaflet-control-layers-toggle {
  background-image: url(/images/layers-2x.png);
  background-size: 26px 26px;
}

/* line 367, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-touch .leaflet-control-layers-toggle {
  width: 44px;
  height: 44px;
}

/* line 371, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
  display: none;
}

/* line 375, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-control-layers-expanded .leaflet-control-layers-list {
  display: block;
  position: relative;
}

/* line 379, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-control-layers-expanded {
  padding: 6px 10px 6px 6px;
  color: #333;
  background: #fff;
}

/* line 384, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-control-layers-scrollbar {
  overflow-y: scroll;
  overflow-x: hidden;
  padding-right: 5px;
}

/* line 389, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-control-layers-selector {
  margin-top: 2px;
  position: relative;
  top: 1px;
}

/* line 394, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-control-layers label {
  display: block;
  font-size: 13px;
  font-size: 1.08333em;
}

/* line 399, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-control-layers-separator {
  height: 0;
  border-top: 1px solid #ddd;
  margin: 5px -10px 5px -6px;
}

/* Default icon URLs */
/* line 406, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-default-icon-path {
  /* used only in path-guessing heuristic, see L.Icon.Default */
  background-image: url(/images/marker-icon.png);
}

/* attribution and scale controls */
/* line 413, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-container .leaflet-control-attribution {
  background: #fff;
  background: rgba(255, 255, 255, 0.8);
  margin: 0;
}

/* line 418, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-control-attribution,
.leaflet-control-scale-line {
  padding: 0 5px;
  color: #333;
  line-height: 1.4;
}

/* line 424, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-control-attribution a {
  text-decoration: none;
}

/* line 427, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-control-attribution a:hover,
.leaflet-control-attribution a:focus {
  text-decoration: underline;
}

/* line 431, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-attribution-flag {
  display: inline !important;
  vertical-align: baseline !important;
  width: 1em;
  height: 0.6669em;
}

/* line 437, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-left .leaflet-control-scale {
  margin-left: 5px;
}

/* line 440, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-bottom .leaflet-control-scale {
  margin-bottom: 5px;
}

/* line 443, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-control-scale-line {
  border: 2px solid #777;
  border-top: none;
  line-height: 1.1;
  padding: 2px 5px 1px;
  white-space: nowrap;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  background: rgba(255, 255, 255, 0.8);
  text-shadow: 1px 1px #fff;
}

/* line 454, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-control-scale-line:not(:first-child) {
  border-top: 2px solid #777;
  border-bottom: none;
  margin-top: -2px;
}

/* line 459, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
  border-bottom: 2px solid #777;
}

/* line 463, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  box-shadow: none;
}

/* line 468, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
  border: 2px solid rgba(0, 0, 0, 0.2);
  background-clip: padding-box;
}

/* popup */
/* line 477, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-popup {
  position: absolute;
  text-align: center;
  margin-bottom: 20px;
}

/* line 482, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-popup-content-wrapper {
  padding: 1px;
  text-align: left;
  border-radius: 12px;
}

/* line 487, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-popup-content {
  margin: 13px 24px 13px 20px;
  line-height: 1.3;
  font-size: 13px;
  font-size: 1.08333em;
  min-height: 1px;
}

/* line 494, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-popup-content p {
  margin: 17px 0;
  margin: 1.3em 0;
}

/* line 498, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-popup-tip-container {
  width: 40px;
  height: 20px;
  position: absolute;
  left: 50%;
  margin-top: -1px;
  margin-left: -20px;
  overflow: hidden;
  pointer-events: none;
}

/* line 508, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-popup-tip {
  width: 17px;
  height: 17px;
  padding: 1px;
  margin: -10px auto 0;
  pointer-events: auto;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

/* line 521, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
  background: white;
  color: #333;
  box-shadow: 0 3px 14px rgba(0, 0, 0, 0.4);
}

/* line 527, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-container a.leaflet-popup-close-button {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  text-align: center;
  width: 24px;
  height: 24px;
  font: 16px/24px Tahoma, Verdana, sans-serif;
  color: #757575;
  text-decoration: none;
  background: transparent;
}

/* line 540, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-container a.leaflet-popup-close-button:hover,
.leaflet-container a.leaflet-popup-close-button:focus {
  color: #585858;
}

/* line 544, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-popup-scrolled {
  overflow: auto;
}

/* line 548, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-oldie .leaflet-popup-content-wrapper {
  -ms-zoom: 1;
}

/* line 551, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-oldie .leaflet-popup-tip {
  width: 24px;
  margin: 0 auto;
  -ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
  filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
}

/* line 559, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
  border: 1px solid #999;
}

/* div icon */
/* line 569, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-div-icon {
  background: #fff;
  border: 1px solid #666;
}

/* Tooltip */
/* Base styles for the element that has a tooltip */
/* line 577, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-tooltip {
  position: absolute;
  padding: 6px;
  background-color: #fff;
  border: 1px solid #fff;
  border-radius: 3px;
  color: #222;
  white-space: nowrap;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* line 592, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-tooltip.leaflet-interactive {
  cursor: pointer;
  pointer-events: auto;
}

/* line 596, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  position: absolute;
  pointer-events: none;
  border: 6px solid transparent;
  background: transparent;
  content: "";
}

/* Directions */
/* line 609, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-tooltip-bottom {
  margin-top: 6px;
}

/* line 612, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-tooltip-top {
  margin-top: -6px;
}

/* line 615, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
  left: 50%;
  margin-left: -6px;
}

/* line 620, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-tooltip-top:before {
  bottom: 0;
  margin-bottom: -12px;
  border-top-color: #fff;
}

/* line 625, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-tooltip-bottom:before {
  top: 0;
  margin-top: -12px;
  margin-left: -6px;
  border-bottom-color: #fff;
}

/* line 631, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-tooltip-left {
  margin-left: -6px;
}

/* line 634, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-tooltip-right {
  margin-left: 6px;
}

/* line 637, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
  top: 50%;
  margin-top: -6px;
}

/* line 642, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-tooltip-left:before {
  right: 0;
  margin-right: -12px;
  border-left-color: #fff;
}

/* line 647, app/assets/stylesheets/frontend/libs/leaflet.css */
.leaflet-tooltip-right:before {
  left: 0;
  margin-left: -12px;
  border-right-color: #fff;
}

/* Printing */
@media print {
  /* Prevent printers from removing background-images of controls. */
  /* line 657, app/assets/stylesheets/frontend/libs/leaflet.css */
  .leaflet-control {
    -webkit-print-color-adjust: exact;
    print-color-adjust: exact;
  }
}

/* line 5, app/assets/stylesheets/frontend/offers/home.scss */
.hero-section {
  background: #FFFFFF;
  padding: 48px 0 16px;
  text-align: center;
}

/* line 10, app/assets/stylesheets/frontend/offers/home.scss */
.hero-section .hero-title {
  font-family: 'Gill Sans', 'Avenir Next', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 1.38;
  color: #000000;
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  /* line 10, app/assets/stylesheets/frontend/offers/home.scss */
  .hero-section .hero-title {
    font-size: 30px;
  }
}

/* line 23, app/assets/stylesheets/frontend/offers/home.scss */
.hero-section .search-container {
  max-width: 458px;
  margin: 0 auto;
}

/* line 27, app/assets/stylesheets/frontend/offers/home.scss */
.hero-section .search-container .search-btn {
  width: 100%;
  padding: 8px 24px;
  border: 1px solid #CCD4DC;
  border-radius: 80px;
  background: #FFFFFF;
  color: #6C839A;
  font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8;
  display: flex;
  align-items: center;
  text-align: left;
  transition: all 0.2s ease;
}

/* line 43, app/assets/stylesheets/frontend/offers/home.scss */
.hero-section .search-container .search-btn:hover {
  border-color: #000000;
  color: #000000;
}

/* line 48, app/assets/stylesheets/frontend/offers/home.scss */
.hero-section .search-container .search-btn .fas.fa-search {
  width: 13px;
  height: 17px;
  flex-shrink: 0;
}

/* line 58, app/assets/stylesheets/frontend/offers/home.scss */
.section-title {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.93;
  color: #000000;
  margin-bottom: 16px;
}

/* line 67, app/assets/stylesheets/frontend/offers/home.scss */
.section-subtitle {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8;
  color: #425466;
}

/* line 76, app/assets/stylesheets/frontend/offers/home.scss */
.categories-section {
  padding: 48px 0;
}

/* line 79, app/assets/stylesheets/frontend/offers/home.scss */
.categories-section .horizontal-scroll-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* line 85, app/assets/stylesheets/frontend/offers/home.scss */
.categories-section .horizontal-scroll-container::-webkit-scrollbar {
  display: none;
}

/* line 90, app/assets/stylesheets/frontend/offers/home.scss */
.categories-section .horizontal-scroll-content {
  display: flex;
  gap: 24px;
  padding-bottom: 8px;
  min-width: max-content;
}

/* line 97, app/assets/stylesheets/frontend/offers/home.scss */
.categories-section .category-card {
  flex: none;
  width: 251.75px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* line 104, app/assets/stylesheets/frontend/offers/home.scss */
.categories-section .category-card .category-image {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 12px;
  box-shadow: 0px 8px 24px rgba(10, 37, 64, 0.03), 6px 0px 24px rgba(10, 37, 64, 0);
}

/* line 112, app/assets/stylesheets/frontend/offers/home.scss */
.categories-section .category-card .category-name {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.8;
  color: #000000;
  margin: 0;
}

/* line 122, app/assets/stylesheets/frontend/offers/home.scss */
.categories-section .app-download-card {
  flex: none;
  width: auto;
  background: #F5F7FB;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 24px;
  height: 322.72px;
}

/* line 136, app/assets/stylesheets/frontend/offers/home.scss */
.categories-section .app-download-card .app-icon-container .app-icon img {
  width: 144px;
  height: 144px;
}

/* line 142, app/assets/stylesheets/frontend/offers/home.scss */
.categories-section .app-download-card .app-download-text {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.19;
  text-align: center;
  color: #000000;
  margin: 0;
}

/* line 152, app/assets/stylesheets/frontend/offers/home.scss */
.categories-section .app-download-card .store-links {
  display: flex;
  gap: 10px;
  align-items: center;
}

/* line 157, app/assets/stylesheets/frontend/offers/home.scss */
.categories-section .app-download-card .store-links .store-badge {
  height: 38px;
  width: auto;
}

/* line 162, app/assets/stylesheets/frontend/offers/home.scss */
.categories-section .app-download-card .store-links .store-badge-placeholder {
  height: 38px;
  background: #000000;
  color: #FFFFFF;
  border-radius: 6px;
  padding: 8px 16px;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 120px;
}

/* line 181, app/assets/stylesheets/frontend/offers/home.scss */
.carousel-control-btn {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  border: 1px solid #CCD4DC;
  background: #EAEDEF;
  color: #6C839A;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
  padding: 0;
}

/* line 195, app/assets/stylesheets/frontend/offers/home.scss */
.carousel-control-btn:hover {
  background: #E5E8EC;
}

/* line 199, app/assets/stylesheets/frontend/offers/home.scss */
.carousel-control-btn:not(.disabled):not(:disabled) {
  background: #F5F7FB;
  color: #000000;
  border-color: #F5F7FB;
}

/* line 204, app/assets/stylesheets/frontend/offers/home.scss */
.carousel-control-btn:not(.disabled):not(:disabled):hover {
  background: #EAEDEF;
  border-color: #CCD4DC;
}

/* line 210, app/assets/stylesheets/frontend/offers/home.scss */
.carousel-control-btn.disabled, .carousel-control-btn:disabled {
  background: #EAEDEF;
  color: #6C839A;
  border-color: #CCD4DC;
  cursor: not-allowed;
}

/* line 218, app/assets/stylesheets/frontend/offers/home.scss */
.carousel-control-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* line 226, app/assets/stylesheets/frontend/offers/home.scss */
.hero-carousel-section {
  padding: 48px 0;
}

/* line 229, app/assets/stylesheets/frontend/offers/home.scss */
.hero-carousel-section .hero-slide {
  display: none;
}

/* line 232, app/assets/stylesheets/frontend/offers/home.scss */
.hero-carousel-section .hero-slide.active {
  display: block;
}

/* line 237, app/assets/stylesheets/frontend/offers/home.scss */
.hero-carousel-section .hero-container {
  height: 500px;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
}

/* line 243, app/assets/stylesheets/frontend/offers/home.scss */
.hero-carousel-section .hero-container .hero-bg-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 252, app/assets/stylesheets/frontend/offers/home.scss */
.hero-carousel-section .hero-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

/* line 263, app/assets/stylesheets/frontend/offers/home.scss */
.hero-carousel-section .hero-container .hero-content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  width: 890px;
  max-width: 90%;
}

/* line 272, app/assets/stylesheets/frontend/offers/home.scss */
.hero-carousel-section .hero-container .hero-content .hero-badge {
  font-family: 'Gill Sans', 'Avenir Next', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.93;
  color: #FFFFFF;
  margin: 0;
}

/* line 281, app/assets/stylesheets/frontend/offers/home.scss */
.hero-carousel-section .hero-container .hero-content .hero-title {
  font-family: 'Gill Sans', 'Avenir Next', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 600;
  font-size: 53px;
  line-height: 1.17;
  color: #FFFFFF;
}

@media (max-width: 768px) {
  /* line 281, app/assets/stylesheets/frontend/offers/home.scss */
  .hero-carousel-section .hero-container .hero-content .hero-title {
    font-size: 36px;
  }
}

/* line 293, app/assets/stylesheets/frontend/offers/home.scss */
.hero-carousel-section .hero-container .hero-content .hero-subtitle {
  font-family: 'Avenir Next', -apple-system, BlinkMacSystemFont, sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8;
  color: #FFFFFF;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 309, app/assets/stylesheets/frontend/offers/home.scss */
.web-exclusive-section {
  padding: 48px 0;
}

/* line 312, app/assets/stylesheets/frontend/offers/home.scss */
.web-exclusive-section .horizontal-scroll-container {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* line 318, app/assets/stylesheets/frontend/offers/home.scss */
.web-exclusive-section .horizontal-scroll-container::-webkit-scrollbar {
  display: none;
}

/* line 323, app/assets/stylesheets/frontend/offers/home.scss */
.web-exclusive-section .horizontal-scroll-content {
  display: flex;
  gap: 10px;
  padding-bottom: 8px;
  width: max-content;
}

/* line 330, app/assets/stylesheets/frontend/offers/home.scss */
.web-exclusive-section .web-exclusive-card-link {
  display: block;
  transition: transform 0.2s ease;
}

/* line 334, app/assets/stylesheets/frontend/offers/home.scss */
.web-exclusive-section .web-exclusive-card-link:hover {
  transform: translateY(-2px);
}

/* line 339, app/assets/stylesheets/frontend/offers/home.scss */
.web-exclusive-section .web-exclusive-card {
  flex: none;
  width: 642px;
  min-width: 642px;
  padding: 24px 8px 8px 24px;
  border-radius: 16px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  height: 332px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: transform 0.2s ease;
}

/* line 354, app/assets/stylesheets/frontend/offers/home.scss */
.web-exclusive-section .web-exclusive-card .partner-logo {
  margin-right: auto;
}

/* line 357, app/assets/stylesheets/frontend/offers/home.scss */
.web-exclusive-section .web-exclusive-card .partner-logo .logo-placeholder {
  width: 120px;
  height: 120px;
  background: #FFFFFF;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

/* line 367, app/assets/stylesheets/frontend/offers/home.scss */
.web-exclusive-section .web-exclusive-card .partner-logo .logo-placeholder .brand-name {
  font-family: 'Helvetica Neue', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #1333A2;
  text-align: center;
  padding: 8px;
}

/* line 376, app/assets/stylesheets/frontend/offers/home.scss */
.web-exclusive-section .web-exclusive-card .partner-logo .logo-placeholder .partner-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/* line 386, app/assets/stylesheets/frontend/offers/home.scss */
.web-exclusive-section .carousel-controls-left .carousel-control-btn {
  width: 48px;
  height: 48px;
  background: #EAEDEF;
  border: 1px solid #CCD4DC;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 396, app/assets/stylesheets/frontend/offers/home.scss */
.web-exclusive-section .carousel-controls-left .carousel-control-btn svg {
  color: #000000;
}

/* line 400, app/assets/stylesheets/frontend/offers/home.scss */
.web-exclusive-section .carousel-controls-left .carousel-control-btn:hover {
  background: #DDE1E6;
}

/* line 408, app/assets/stylesheets/frontend/offers/home.scss */
.ticketing-brands-section {
  padding: 48px 0;
}

/* line 411, app/assets/stylesheets/frontend/offers/home.scss */
.ticketing-brands-section .ticketing-brands-header {
  padding-left: 24px;
}

/* line 414, app/assets/stylesheets/frontend/offers/home.scss */
.ticketing-brands-section .ticketing-brands-header .section-title {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.93;
  color: #000000;
  margin-bottom: 16px;
}

/* line 423, app/assets/stylesheets/frontend/offers/home.scss */
.ticketing-brands-section .ticketing-brands-header .section-subtitle {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8;
  color: #425466;
  max-width: 100%;
}

/* line 433, app/assets/stylesheets/frontend/offers/home.scss */
.ticketing-brands-section .ticketing-brands-header .carousel-controls .carousel-control-btn {
  width: 48px;
  height: 48px;
  border-radius: 24px;
  border: 1px solid #CCD4DC;
  background: #EAEDEF;
  color: #6C839A;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  cursor: pointer;
  padding: 8px;
}

/* line 447, app/assets/stylesheets/frontend/offers/home.scss */
.ticketing-brands-section .ticketing-brands-header .carousel-controls .carousel-control-btn:hover {
  background: #E5E8EC;
}

/* line 451, app/assets/stylesheets/frontend/offers/home.scss */
.ticketing-brands-section .ticketing-brands-header .carousel-controls .carousel-control-btn.active {
  background: #F5F7FB;
  color: #000000;
  border-color: #F5F7FB;
}

/* line 456, app/assets/stylesheets/frontend/offers/home.scss */
.ticketing-brands-section .ticketing-brands-header .carousel-controls .carousel-control-btn.active:hover {
  background: #EAEDEF;
  border-color: #CCD4DC;
}

/* line 462, app/assets/stylesheets/frontend/offers/home.scss */
.ticketing-brands-section .ticketing-brands-header .carousel-controls .carousel-control-btn svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
}

/* line 472, app/assets/stylesheets/frontend/offers/home.scss */
.ticketing-brands-section .brand-logos-container .brand-logos-grid {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
  min-width: max-content;
}

/* line 479, app/assets/stylesheets/frontend/offers/home.scss */
.ticketing-brands-section .brand-logos-container .brand-logos-grid::-webkit-scrollbar {
  display: none;
}

/* line 483, app/assets/stylesheets/frontend/offers/home.scss */
.ticketing-brands-section .brand-logos-container .brand-logos-grid .brand-logo-card {
  flex: none;
  width: 150px;
  height: 150px;
  border-radius: 12px;
  border: 1px solid #727272;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #FFFFFF;
}

/* line 495, app/assets/stylesheets/frontend/offers/home.scss */
.ticketing-brands-section .brand-logos-container .brand-logos-grid .brand-logo-card .brand-logo-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 8px;
}

/* line 502, app/assets/stylesheets/frontend/offers/home.scss */
.ticketing-brands-section .brand-logos-container .brand-logos-grid .brand-logo-card .brand-logo-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 509, app/assets/stylesheets/frontend/offers/home.scss */
.ticketing-brands-section .brand-logos-container .brand-logos-grid .brand-logo-card .brand-logo-placeholder .logo-placeholder-content {
  width: 100%;
  height: 100%;
  background: #D9D9D9;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 517, app/assets/stylesheets/frontend/offers/home.scss */
.ticketing-brands-section .brand-logos-container .brand-logos-grid .brand-logo-card .brand-logo-placeholder .logo-placeholder-content .brand-name-fallback {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 600;
  font-size: 24px;
  color: #6C839A;
}

/* line 527, app/assets/stylesheets/frontend/offers/home.scss */
.ticketing-brands-section .brand-logos-container .brand-logos-grid .brand-logo-placeholder {
  flex: none;
  width: 150px;
  height: 150px;
  border-radius: 12px;
  border: 1px solid #727272;
  overflow: hidden;
  background: #FFFFFF;
}

/* line 536, app/assets/stylesheets/frontend/offers/home.scss */
.ticketing-brands-section .brand-logos-container .brand-logos-grid .brand-logo-placeholder .logo-placeholder-content {
  width: 100%;
  height: 100%;
  background: #D9D9D9;
}

/* line 547, app/assets/stylesheets/frontend/offers/home.scss */
.ticketing-section {
  padding: 48px 0;
}

/* line 551, app/assets/stylesheets/frontend/offers/home.scss */
.ticketing-section .partner-logos-container .partner-logos-scroll {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

/* line 559, app/assets/stylesheets/frontend/offers/home.scss */
.ticketing-section .partner-logos-container .partner-logos-scroll::-webkit-scrollbar {
  display: none;
}

/* line 563, app/assets/stylesheets/frontend/offers/home.scss */
.ticketing-section .partner-logos-container .partner-logos-scroll .partner-logo-item {
  flex: none;
}

/* line 566, app/assets/stylesheets/frontend/offers/home.scss */
.ticketing-section .partner-logos-container .partner-logos-scroll .partner-logo-item .partner-logo-placeholder {
  width: 150px;
  height: 150px;
  background: #D9D9D9;
  border: 1px solid #727272;
  border-radius: 12px;
}

@media (max-width: 992px) {
  /* line 580, app/assets/stylesheets/frontend/offers/home.scss */
  .hero-section .hero-title {
    font-size: 36px;
  }
  /* line 584, app/assets/stylesheets/frontend/offers/home.scss */
  .section-title {
    font-size: 24px;
  }
  /* line 588, app/assets/stylesheets/frontend/offers/home.scss */
  .categories-section .category-card {
    width: 200px;
  }
  /* line 591, app/assets/stylesheets/frontend/offers/home.scss */
  .categories-section .category-card .category-image {
    height: 200px;
  }
  /* line 596, app/assets/stylesheets/frontend/offers/home.scss */
  .categories-section .app-download-card {
    width: 200px;
    height: 280px;
  }
  /* line 602, app/assets/stylesheets/frontend/offers/home.scss */
  .hero-carousel-section .hero-container .hero-content .hero-title {
    font-size: 36px;
  }
  /* line 608, app/assets/stylesheets/frontend/offers/home.scss */
  .ticketing-brands-section .ticketing-brands-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 16px;
  }
  /* line 615, app/assets/stylesheets/frontend/offers/home.scss */
  .ticketing-brands-section .brand-logos-container .brand-logos-grid .brand-logo-card,
.ticketing-brands-section .brand-logos-container .brand-logos-grid .brand-logo-placeholder {
    width: 130px;
    height: 130px;
  }
}

/* line 626, app/assets/stylesheets/frontend/offers/home.scss */
.city-search-modal .modal-content {
  border-radius: 15px;
  box-shadow: 0px 8px 24px 0px rgba(10, 37, 64, 0.03), 6px 0px 24px 0px rgba(10, 37, 64, 0);
  max-height: 80vh;
  display: flex;
  flex-direction: column;
}

/* line 634, app/assets/stylesheets/frontend/offers/home.scss */
.city-search-modal .modal-body {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  max-height: 60vh;
}

/* line 642, app/assets/stylesheets/frontend/offers/home.scss */
.modal-scrollable-content {
  overflow-y: auto;
  flex: 1;
  min-height: 0;
  max-height: 400px;
}

/* line 648, app/assets/stylesheets/frontend/offers/home.scss */
.modal-scrollable-content::-webkit-scrollbar {
  width: 6px;
}

/* line 652, app/assets/stylesheets/frontend/offers/home.scss */
.modal-scrollable-content::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

/* line 657, app/assets/stylesheets/frontend/offers/home.scss */
.modal-scrollable-content::-webkit-scrollbar-thumb {
  background: #CCD4DC;
  border-radius: 3px;
}

/* line 661, app/assets/stylesheets/frontend/offers/home.scss */
.modal-scrollable-content::-webkit-scrollbar-thumb:hover {
  background: #6C839A;
}

/* line 667, app/assets/stylesheets/frontend/offers/home.scss */
.city-search-input {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8em;
  color: #CCD4DC;
}

/* line 674, app/assets/stylesheets/frontend/offers/home.scss */
.city-search-input:focus {
  color: #000;
}

/* line 679, app/assets/stylesheets/frontend/offers/home.scss */
.city-search-item {
  border: 1px solid #CCD4DC;
  border-radius: 8px;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 685, app/assets/stylesheets/frontend/offers/home.scss */
.city-search-item:hover {
  background-color: #f8f9fa;
  border-color: #6c757d;
}

/* line 690, app/assets/stylesheets/frontend/offers/home.scss */
.city-search-item:not(.geolocation-btn) {
  border-bottom: 1px solid #CCD4DC;
  border-radius: 0;
  border-left: none;
  border-right: none;
  border-top: none;
}

/* line 697, app/assets/stylesheets/frontend/offers/home.scss */
.city-search-item:not(.geolocation-btn):hover {
  background-color: #f8f9fa;
}

/* line 703, app/assets/stylesheets/frontend/offers/home.scss */
.geolocation-btn {
  border: 1px solid #CCD4DC;
}

/* line 707, app/assets/stylesheets/frontend/offers/home.scss */
.city-icon-container {
  width: 45px;
  height: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 716, app/assets/stylesheets/frontend/offers/home.scss */
.city-icon {
  display: block;
  margin: auto;
}

/* line 721, app/assets/stylesheets/frontend/offers/home.scss */
.city-name {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 500;
  font-size: 20px;
  line-height: 1.8em;
  color: #000000;
}

/* line 729, app/assets/stylesheets/frontend/offers/home.scss */
.recent-cities-title {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 700;
  font-size: 14px;
  line-height: 2.57em;
  letter-spacing: 21%;
  text-transform: uppercase;
  color: #6C839A;
}

/* line 740, app/assets/stylesheets/frontend/offers/home.scss */
.search-icon-container svg {
  stroke: #000000;
  stroke-width: 2;
}

/* line 746, app/assets/stylesheets/frontend/offers/home.scss */
.city-distance-container {
  flex-shrink: 0;
  margin-left: auto;
  text-align: right;
}

/* line 752, app/assets/stylesheets/frontend/offers/home.scss */
.city-distance {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #6C839A;
  white-space: nowrap;
}

@media (max-width: 768px) {
  /* line 761, app/assets/stylesheets/frontend/offers/home.scss */
  .hero-section {
    padding: 24px 0;
  }
  /* line 764, app/assets/stylesheets/frontend/offers/home.scss */
  .hero-section .search-container .search-btn {
    font-size: 16px;
    padding: 8px;
  }
  /* line 770, app/assets/stylesheets/frontend/offers/home.scss */
  .categories-section,
.hero-carousel-section,
.web-exclusive-section,
.ticketing-section {
    padding: 24px 0;
  }
  /* line 777, app/assets/stylesheets/frontend/offers/home.scss */
  .categories-section .category-card,
.categories-section .app-download-card {
    width: 180px;
  }
  /* line 782, app/assets/stylesheets/frontend/offers/home.scss */
  .categories-section .category-card .category-image {
    height: 150px;
  }
  /* line 786, app/assets/stylesheets/frontend/offers/home.scss */
  .categories-section .app-download-card {
    height: 240px;
  }
  /* line 790, app/assets/stylesheets/frontend/offers/home.scss */
  .hero-carousel-section .hero-container {
    height: 300px;
  }
  /* line 794, app/assets/stylesheets/frontend/offers/home.scss */
  .hero-carousel-section .hero-container .hero-content .hero-badge {
    font-size: 16px;
  }
  /* line 798, app/assets/stylesheets/frontend/offers/home.scss */
  .hero-carousel-section .hero-container .hero-content .hero-title {
    font-size: 24px;
  }
  /* line 802, app/assets/stylesheets/frontend/offers/home.scss */
  .hero-carousel-section .hero-container .hero-content .hero-subtitle {
    font-size: 16px;
    height: auto;
  }
  /* line 809, app/assets/stylesheets/frontend/offers/home.scss */
  .web-exclusive-section {
    padding: 24px 0;
  }
  /* line 812, app/assets/stylesheets/frontend/offers/home.scss */
  .web-exclusive-section .web-exclusive-card-link:hover {
    transform: translateY(-1px);
  }
  /* line 816, app/assets/stylesheets/frontend/offers/home.scss */
  .web-exclusive-section .web-exclusive-card {
    width: 480px;
    min-width: 480px;
    height: 240px;
  }
  /* line 821, app/assets/stylesheets/frontend/offers/home.scss */
  .web-exclusive-section .web-exclusive-card .partner-logo .logo-placeholder {
    width: 80px;
    height: 80px;
  }
  /* line 828, app/assets/stylesheets/frontend/offers/home.scss */
  .web-exclusive-section .carousel-controls-left .carousel-control-btn {
    width: 40px;
    height: 40px;
  }
  /* line 835, app/assets/stylesheets/frontend/offers/home.scss */
  .ticketing-brands-section {
    padding: 24px 0;
  }
  /* line 838, app/assets/stylesheets/frontend/offers/home.scss */
  .ticketing-brands-section .ticketing-brands-header {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 16px;
    padding-left: 8px;
  }
  /* line 844, app/assets/stylesheets/frontend/offers/home.scss */
  .ticketing-brands-section .ticketing-brands-header .carousel-controls {
    align-self: flex-start;
  }
  /* line 850, app/assets/stylesheets/frontend/offers/home.scss */
  .ticketing-brands-section .brand-logos-container .brand-logos-grid .brand-logo-card,
.ticketing-brands-section .brand-logos-container .brand-logos-grid .brand-logo-placeholder {
    width: 120px;
    height: 120px;
  }
  /* line 858, app/assets/stylesheets/frontend/offers/home.scss */
  .ticketing-section .partner-logos-container .partner-logos-scroll .partner-logo-item .partner-logo-placeholder {
    width: 120px;
    height: 120px;
  }
}

@media (max-width: 428px) {
  /* line 866, app/assets/stylesheets/frontend/offers/home.scss */
  .hero-section .container {
    padding-left: 8px;
    padding-right: 8px;
  }
  /* line 871, app/assets/stylesheets/frontend/offers/home.scss */
  .hero-section .row {
    margin-left: 0;
    margin-right: 0;
  }
  /* line 876, app/assets/stylesheets/frontend/offers/home.scss */
  .hero-section .col-lg-8 {
    padding-left: 8px;
    padding-right: 8px;
  }
  /* line 881, app/assets/stylesheets/frontend/offers/home.scss */
  .hero-section .search-container {
    max-width: 100%;
    width: 100%;
    margin: 0;
  }
  /* line 886, app/assets/stylesheets/frontend/offers/home.scss */
  .hero-section .search-container .search-btn {
    font-size: 14px;
    padding: 10px 12px;
  }
  /* line 890, app/assets/stylesheets/frontend/offers/home.scss */
  .hero-section .search-container .search-btn .fas.fa-search {
    margin-right: 6px;
    width: 12px;
  }
  /* line 895, app/assets/stylesheets/frontend/offers/home.scss */
  .hero-section .search-container .search-btn span {
    font-size: 14px;
    white-space: normal;
    line-height: 1.4;
  }
}

/* line 2, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show {
  padding: 32px 0;
  background: #FAFAFA;
}

/* line 6, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 32px;
}

/* line 12, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .row {
  display: flex;
  gap: 24px;
  align-items: flex-start;
}

@media (max-width: 767px) {
  /* line 12, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
  .web-offer-show .row {
    flex-direction: column;
    gap: 16px;
  }
}

/* line 23, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .col-lg-8 {
  flex: 0 0 740px;
  max-width: 740px;
}

@media (max-width: 767px) {
  /* line 23, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
  .web-offer-show .col-lg-8 {
    flex: 1;
    max-width: 100%;
  }
}

/* line 33, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .col-lg-4 {
  flex: 1;
}

@media (max-width: 767px) {
  /* line 33, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
  .web-offer-show .col-lg-4 {
    width: 100%;
  }
}

/* line 42, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .web-offer-card {
  background: #FFFFFF;
  border: none;
  border-radius: 16px;
  box-shadow: none;
  overflow: hidden;
}

/* line 49, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .web-offer-card .card-image-wrapper {
  position: relative;
  height: 400px;
  background: none;
}

@media (max-width: 767px) {
  /* line 49, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
  .web-offer-show .web-offer-card .card-image-wrapper {
    height: 250px;
  }
}

/* line 58, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .web-offer-card .card-image-wrapper .card-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* line 65, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .web-offer-card .card-image-wrapper .card-logo-overlay {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
}

@media (max-width: 767px) {
  /* line 65, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
  .web-offer-show .web-offer-card .card-image-wrapper .card-logo-overlay {
    left: 16px;
  }
}

/* line 75, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .web-offer-card .card-image-wrapper .card-logo-overlay .partner-logo {
  width: 120px;
  height: 120px;
  object-fit: contain;
  background: #FFFFFF;
  border-radius: 6px;
  padding: 8px;
}

@media (max-width: 767px) {
  /* line 75, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
  .web-offer-show .web-offer-card .card-image-wrapper .card-logo-overlay .partner-logo {
    width: 80px;
    height: 80px;
  }
}

/* line 95, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .offer-details .offer-section .section-title {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 600;
  font-size: 30px;
  line-height: 1.19;
  color: #000000;
  margin-bottom: 16px;
}

@media (max-width: 767px) {
  /* line 95, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
  .web-offer-show .offer-details .offer-section .section-title {
    font-size: 24px;
  }
}

/* line 108, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .offer-details .offer-section .section-content {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.875;
  color: #000000;
}

/* line 115, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .offer-details .offer-section .section-content .subsection-title {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 18px;
  line-height: 1.25;
  color: #000000;
  margin-bottom: 12px;
}

/* line 124, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .offer-details .offer-section .section-content .subsection-subtitle {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.25;
  color: #000000;
  margin-bottom: 8px;
}

/* line 133, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .offer-details .offer-section .section-content p {
  margin-bottom: 16px;
}

/* line 136, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .offer-details .offer-section .section-content p:last-child {
  margin-bottom: 0;
}

/* line 145, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .discount-card {
  background: #FFFFFF;
  border: 1px solid rgba(108, 131, 154, 0.15);
  border-radius: 16px;
  box-shadow: 0px 8px 24px 0px rgba(10, 37, 64, 0.03), 6px 0px 24px 0px rgba(10, 37, 64, 0);
}

/* line 151, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .discount-card .card-body {
  padding: 24px;
}

/* line 155, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .discount-card .discount-content {
  margin-bottom: 16px;
}

/* line 158, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .discount-card .discount-content .discount-label {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.19;
  color: #000000;
  display: block;
  text-align: center;
}

/* line 168, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .discount-card .discount-content .discount-percentage {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 600;
  font-size: 46px;
  line-height: 1.19;
  color: #000000;
  display: block;
  text-align: center;
  margin: 8px 0;
}

/* line 180, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .discount-card .discount-description {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.56;
  color: #425466;
  text-align: center;
  margin: 0;
}

/* line 192, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .promo-card {
  background: #FFFFFF;
  border: 1px solid rgba(108, 131, 154, 0.15);
  border-radius: 16px;
  box-shadow: 0px 8px 24px 0px rgba(10, 37, 64, 0.03), 6px 0px 24px 0px rgba(10, 37, 64, 0);
}

/* line 198, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .promo-card .card-body {
  padding: 24px;
}

/* line 202, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .promo-card .promo-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* line 208, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .promo-card .promo-title {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 18px;
  line-height: 1.56;
  letter-spacing: 1.11%;
  color: #000000;
  margin: 0;
}

/* line 218, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .promo-card .promo-code-wrapper {
  position: relative;
  overflow: hidden;
  background: #F5F7FB;
  border-radius: 30px;
  min-height: 48px;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

/* line 227, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .promo-card .promo-code-wrapper:hover {
  background: #e3e8f4;
}

/* line 232, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .promo-card .promo-code-display {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  padding: 8px 24px;
  background: transparent;
  border-radius: 30px;
  min-height: 48px;
  cursor: pointer;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}

/* line 247, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .promo-card .promo-code-display.sliding-up {
  animation: slideUp 0.3s ease-out forwards;
}

/* line 251, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .promo-card .promo-code-display.sliding-down {
  animation: slideDown 0.3s ease-out forwards;
}

/* line 255, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .promo-card .promo-code-display .promo-code-text {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.33;
  letter-spacing: 1.33%;
  color: #000000;
}

/* line 264, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .promo-card .promo-code-display .btn-copy {
  background: none;
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: auto;
}

/* line 274, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .promo-card .promo-code-display .btn-copy .icon-copy {
  width: 20px;
  height: 20px;
  fill: #000000;
}

/* line 282, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .promo-card .copy-feedback {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  background: transparent;
  border-radius: 30px;
  z-index: 1;
  transform: translateY(100%);
  transition: transform 0.3s ease;
  padding: 8px 24px;
}

/* line 299, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .promo-card .copy-feedback.is-visible {
  transform: translateY(0);
}

/* line 303, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .promo-card .copy-feedback .copy-text {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.33;
  letter-spacing: 1.33%;
  color: #000000;
}

/* line 312, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .promo-card .copy-feedback .icon-check {
  width: 20px;
  height: 20px;
  fill: #000000;
}

/* line 319, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .promo-card .btn-reserve {
  background: #000000;
  color: #FFFFFF;
  border: none;
  border-radius: 30px;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.33;
  letter-spacing: 1.33%;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: block;
  width: 100%;
}

/* line 336, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .promo-card .btn-reserve:hover {
  background: #1a1a1a;
  color: #FFFFFF;
  text-decoration: none;
}

/* line 342, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .promo-card .btn-reserve:focus {
  outline: none;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.2);
}

/* line 350, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .login-prompt-card {
  background: #000000;
  border-radius: 16px;
  box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.15);
  padding: 24px;
}

/* line 356, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .login-prompt-card .login-prompt-content {
  color: #FFF;
  text-align: center;
  font-family: "Gill Sans";
  font-size: 20px;
  font-style: normal;
  font-weight: 600;
  line-height: normal;
}

/* line 368, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
.web-offer-show .mb-4 {
  margin-bottom: 24px;
}

@media (max-width: 767px) {
  /* line 374, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
  .web-offer-show .web-offer-show {
    padding: 16px 0;
  }
  /* line 377, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
  .web-offer-show .web-offer-show .container {
    padding: 0 16px;
  }
  /* line 384, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
  .web-offer-show .discount-card .card-body,
.web-offer-show .promo-card .card-body {
    padding: 16px;
  }
  /* line 390, app/assets/stylesheets/frontend/pages/_web_offer_show.scss */
  .web-offer-show .discount-content .discount-percentage {
    font-size: 36px;
  }
}

@keyframes slideUp {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(-100%);
    opacity: 0;
  }
}

@keyframes slideDown {
  0% {
    transform: translateY(-100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideInFromBottom {
  0% {
    transform: translateY(100%);
    opacity: 0;
  }
  100% {
    transform: translateY(0);
    opacity: 1;
  }
}

@keyframes slideOutToBottom {
  0% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(100%);
    opacity: 0;
  }
}

/* line 2, app/assets/stylesheets/frontend/components/faq_component.scss */
.responsive-header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 32px;
}

/* line 10, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-header-content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 1200px;
  gap: 24px;
}

/* line 20, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-back-btn-wrapper {
  flex: 0 0 auto;
}

/* line 24, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-search-bar-responsive {
  min-width: 320px;
  display: flex;
  justify-content: flex-end;
}

@media (max-width: 900px) {
  /* line 31, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-header-content {
    flex-direction: column;
    align-items: stretch;
    gap: 16px;
  }
  /* line 36, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-search-bar-responsive {
    min-width: 0;
    width: 100%;
    justify-content: flex-start;
    margin-top: 8px;
  }
  /* line 42, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-back-btn-wrapper {
    width: 100%;
    margin-bottom: 8px;
  }
}

@media (max-width: 700px) {
  /* line 49, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-questions {
    padding: 24px 0 0 0;
  }
  /* line 52, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-questions-title {
    font-size: 28px;
  }
  /* line 55, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-questions-list {
    flex-direction: column;
    gap: 16px;
    padding: 0 8px;
  }
  /* line 60, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-question-card {
    min-width: 0;
    max-width: 100%;
    width: 100%;
    font-size: 18px;
    padding: 16px 16px;
  }
}

/* line 68, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding-top: 48px;
  padding-bottom: 16px;
  box-sizing: border-box;
}

/* line 78, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-title {
  font-family: 'Cabin', 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 42px;
  line-height: 58px;
  color: #000;
  text-align: center;
  margin-bottom: 16px;
}

/* line 87, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-title h1 {
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  margin: 0;
}

/* line 95, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-search {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  width: 526px;
  height: 52px;
  padding: 8px 24px;
  border-radius: 80px;
  background: #fff;
  box-sizing: border-box;
}

/* line 107, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-search-border {
  position: absolute;
  inset: 0;
  border: 1px solid #6C839A;
  border-radius: 80px;
  pointer-events: none;
  z-index: 3;
}

/* kept intentionally empty: do not hide the faq-search border on focus */
/* line 119, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-search-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

/* line 129, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-search-placeholder {
  font-family: 'Encode Sans', sans-serif;
  font-size: 17px;
  color: #6C839A;
  white-space: nowrap;
  font-weight: 400;
  z-index: 1;
}

/* line 137, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-search-form {
  position: relative;
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  height: 100%;
}

/* line 145, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-search-input {
  font-family: 'Encode Sans', sans-serif;
  font-size: 17px;
  color: #6C839A;
  background: transparent;
  border: none;
  outline: none;
  flex: 1;
  padding: 0 8px;
  height: 36px;
  z-index: 1;
}

/* line 157, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-search-input::placeholder {
  color: #6C839A;
  opacity: 1;
}

/* line 161, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-search-submit {
  background: none;
  border: none;
  padding: 0 4px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  z-index: 1;
}

/* line 172, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-search-submit svg {
  width: 20px;
  height: 20px;
}

/* line 176, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-card {
  background: #ffffff;
  border: 1px solid rgba(66, 84, 102, 0.06);
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(10, 37, 64, 0.035);
  padding: 20px;
  /* reduced from 28px */
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 16px;
  min-width: 0;
  text-decoration: none;
  transition: box-shadow 0.2s ease, transform 0.12s ease;
}

/* line 191, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-card:hover {
  box-shadow: 0 10px 28px rgba(10, 37, 64, 0.07);
  transform: translateY(-2px);
}

/* line 195, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-card-inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
}

/* line 202, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-card-title {
  font-family: 'Cabin', 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: #000;
  margin-top: 8px;
}

/* line 209, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-questions {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 48px 0 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
}

/* line 218, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-questions-header {
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto 32px auto;
}

/* line 227, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-questions-title {
  font-family: 'Cabin', 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 42px;
  color: #000;
  margin: 0;
}

/* line 234, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-search-bar {
  min-width: 320px;
  display: flex;
  justify-content: flex-end;
}

/* line 239, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-questions-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  padding-top: 30px;
}

/* line 248, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-question-card {
  background: #ffffff;
  border: 1px solid rgba(66, 84, 102, 0.06);
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(10, 37, 64, 0.035);
  padding: 16px 28px;
  /* reduced padding */
  width: 100%;
  text-align: left;
  font-family: 'Cabin', 'Encode Sans', sans-serif;
  font-size: 18px;
  /* reduced font-size */
  font-weight: 500;
  color: #0b1220;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: box-shadow 0.18s ease, transform 0.12s ease, border-color 0.12s ease;
  cursor: pointer;
  /* show pointer like a button */
}

/* line 267, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-question-card-text {
  flex: 1;
  padding-right: 20px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* line 274, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-question-card-arrow {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* line 279, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-question-card:hover {
  box-shadow: 0 10px 28px rgba(10, 37, 64, 0.07);
  transform: translateY(-2px);
  border-color: rgba(66, 84, 102, 0.12);
}

/* line 285, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-question-card:active {
  transform: translateY(0);
}

/* Focus style for keyboard users */
/* line 290, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-question-card:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(66, 84, 102, 0.06);
  border-color: rgba(66, 84, 102, 0.14);
}

/* line 295, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-back-btn {
  display: inline-block;
  padding: 0 24px;
  height: 48px;
  line-height: 48px;
  font-family: 'Cabin', 'Encode Sans', sans-serif;
  font-size: 18px;
  font-weight: 500;
  color: #222;
  border: none;
  border-radius: 24px;
  text-decoration: none;
  margin-right: 8px;
}

@media (max-width: 1250px) {
  /* line 312, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-questions {
    padding: 48px 24px 0 24px;
  }
  /* line 316, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-questions-header {
    padding: 0 24px;
  }
  /* line 320, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-questions-list {
    padding: 30px 0;
  }
}

@media (max-width: 900px) {
  /* line 326, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-hero {
    padding-top: 32px;
  }
  /* line 330, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-title {
    font-size: 32px;
    line-height: 42px;
    padding: 0 20px;
  }
  /* line 336, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-search {
    width: calc(100% - 40px);
    max-width: 526px;
  }
  /* line 341, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-questions {
    padding: 32px 20px 0 20px;
  }
  /* line 345, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-questions-title {
    font-size: 32px;
    padding: 0 20px;
  }
  /* line 350, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-back-btn {
    font-size: 16px;
    padding: 0 16px;
    height: 44px;
    line-height: 44px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  /* line 360, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-back-btn svg {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 640px) {
  /* line 367, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-hero {
    padding-top: 24px;
    padding-bottom: 12px;
  }
  /* line 372, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-title {
    font-size: 28px;
    line-height: 36px;
    margin-bottom: 12px;
    padding: 0 16px;
  }
  /* line 379, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-search {
    width: calc(100% - 32px);
    padding: 6px 16px;
    height: 48px;
  }
  /* line 385, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-questions {
    padding: 24px 16px 0 16px;
  }
  /* line 389, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-questions-title {
    font-size: 28px;
    text-align: center;
    padding: 0 16px;
  }
  /* line 395, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-questions-list {
    padding-top: 20px;
  }
  /* line 399, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-question-card {
    padding: 18px 20px;
    font-size: 18px;
  }
  /* line 404, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-question-card-text {
    padding-right: 16px;
  }
  /* line 408, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-question-card-arrow svg {
    width: 32px;
    height: 32px;
  }
  /* line 413, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-back-btn {
    width: 100%;
    text-align: center;
    justify-content: center;
    font-size: 15px;
    padding: 0 12px;
    height: 42px;
    line-height: 42px;
    margin-right: 0;
  }
  /* line 424, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-back-btn svg {
    width: 28px;
    height: 28px;
  }
}

@media (max-width: 480px) {
  /* line 431, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-title {
    font-size: 24px;
    line-height: 32px;
  }
  /* line 436, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-questions-title {
    font-size: 24px;
  }
  /* line 440, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-question-card {
    padding: 16px 16px;
    font-size: 16px;
  }
  /* line 445, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-card-title {
    font-size: 22px;
  }
}

/* line 451, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-header-bar {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-top: 48px;
  padding-bottom: 16px;
}

/* line 460, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-subject-card {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
  background: #fff;
  border-radius: 16px;
  padding: 32px 24px;
  color: #000;
}

/* line 472, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-subject-title {
  font-family: 'Cabin', 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: #000;
}

/* line 479, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-subject-description {
  font-family: 'Encode Sans', sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 28px;
  color: #000;
}

/* line 487, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-answer-feedback-card {
  background-color: #F5F7FB;
  border-radius: 16px;
  gap: 24px;
  padding: 32px 24px;
  margin-top: 24px;
}

/* line 495, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-answer-title {
  font-family: 'Cabin', 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 30px;
  color: #000;
  text-align: center;
  margin-bottom: 24px;
}

/* line 504, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-answer-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* line 511, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-answer-btn {
  display: flex;
  align-items: center;
  gap: 16px;
  background: #f5f7fb;
  border: 1px solid #000;
  border-radius: 100px;
  padding: 14px 24px;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000;
  cursor: pointer;
  transition: all 0.2s;
}

/* line 527, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-answer-btn:hover {
  background: #e5e7eb;
  transform: translateY(-1px);
}

/* line 532, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-back-btn-container {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 250px;
  justify-content: flex-start;
}

/* line 540, app/assets/stylesheets/frontend/components/faq_component.scss */
.faq-back-link {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  color: #000;
  text-decoration: none;
}

@media (max-width: 1250px) {
  /* line 552, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-header-bar {
    padding: 48px 24px 16px 24px;
  }
  /* line 556, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-header-content {
    padding: 0 !important;
  }
}

@media (max-width: 900px) {
  /* line 562, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-header-bar {
    padding: 32px 20px 16px 20px;
  }
  /* line 566, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-header-content {
    flex-direction: column !important;
    align-items: stretch !important;
    gap: 16px !important;
  }
  /* line 572, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-back-btn-container {
    width: 100% !important;
  }
  /* line 576, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-subject-card {
    padding: 24px 20px;
  }
  /* line 580, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-subject-title {
    font-size: 26px;
  }
  /* line 584, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-subject-description {
    font-size: 18px;
    line-height: 26px;
  }
  /* line 589, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-answer-title {
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  /* line 595, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-header-bar {
    padding: 24px 16px 12px 16px;
  }
  /* line 599, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-subject-card {
    padding: 20px 16px;
    gap: 20px;
  }
  /* line 604, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-subject-title {
    font-size: 24px;
  }
  /* line 608, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-subject-description {
    font-size: 17px;
    line-height: 24px;
  }
  /* line 613, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-answer-feedback-card {
    padding: 24px 16px;
    margin-top: 20px;
  }
  /* line 618, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-answer-title {
    font-size: 24px;
    margin-bottom: 20px;
  }
  /* line 623, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-answer-buttons {
    flex-direction: column;
    gap: 12px;
  }
  /* line 628, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-answer-btn {
    width: 100%;
    justify-content: center;
    padding: 12px 20px;
  }
  /* line 634, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-back-link {
    font-size: 15px;
  }
  /* line 638, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-back-btn-icon {
    width: 32px !important;
    height: 32px !important;
  }
  /* line 643, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-back-btn-icon svg {
    width: 32px;
    height: 32px;
  }
}

@media (max-width: 480px) {
  /* line 650, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-subject-title {
    font-size: 22px;
  }
  /* line 654, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-subject-description {
    font-size: 16px;
    line-height: 22px;
  }
  /* line 659, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-answer-title {
    font-size: 22px;
  }
  /* line 663, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-answer-btn {
    font-size: 15px;
    padding: 10px 16px;
  }
  /* line 668, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-answer-btn-icon {
    width: 28px !important;
    height: 28px !important;
  }
  /* line 673, app/assets/stylesheets/frontend/components/faq_component.scss */
  .faq-answer-btn-icon svg {
    width: 28px !important;
    height: 28px !important;
  }
}

/* line 2, app/assets/stylesheets/frontend/components/faq_cards_component.scss */
.faq-cards-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  margin-top: 48px;
}

/* line 9, app/assets/stylesheets/frontend/components/faq_cards_component.scss */
.faq-cards-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  width: 100%;
  max-width: 1200px;
}

/* line 16, app/assets/stylesheets/frontend/components/faq_cards_component.scss */
.faq-card {
  background: #ffffff;
  border: 1px solid rgba(66, 84, 102, 0.06);
  border-radius: 12px;
  box-shadow: 0 6px 14px rgba(10, 37, 64, 0.035);
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  min-width: 0;
  width: 100%;
  align-items: flex-start;
  position: relative;
  text-decoration: none;
  /* ensure link style removed when using anchor */
  transition: box-shadow 0.16s ease, transform 0.12s ease, border-color 0.12s ease;
}

/* line 32, app/assets/stylesheets/frontend/components/faq_cards_component.scss */
.faq-card-icon {
  background: #000000;
  /* icon background should be black */
  border-radius: 50%;
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  flex-shrink: 0;
  overflow: hidden;
}

/* line 44, app/assets/stylesheets/frontend/components/faq_cards_component.scss */
.faq-card-icon svg,
.faq-card-icon svg,
.faq-card-icon img {
  width: 34px;
  height: 34px;
}

/* line 51, app/assets/stylesheets/frontend/components/faq_cards_component.scss */
.faq-card-icon--has-image {
  background: transparent;
}

/* line 55, app/assets/stylesheets/frontend/components/faq_cards_component.scss */
.faq-card-icon-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
  display: block;
}

/* line 62, app/assets/stylesheets/frontend/components/faq_cards_component.scss */
.faq-card-content {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 8px;
  width: 100%;
}

/* line 69, app/assets/stylesheets/frontend/components/faq_cards_component.scss */
.faq-card-title {
  font-family: 'Cabin', 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #0b1220;
  flex: 1;
}

/* line 76, app/assets/stylesheets/frontend/components/faq_cards_component.scss */
.faq-card-cta {
  background: #f5f7fb;
  border-radius: 20px;
  padding: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 84, app/assets/stylesheets/frontend/components/faq_cards_component.scss */
.faq-card-arrow img {
  width: 18px;
  height: 18px;
}

/* line 89, app/assets/stylesheets/frontend/components/faq_cards_component.scss */
.faq-card:hover {
  box-shadow: 0 10px 28px rgba(10, 37, 64, 0.07);
  transform: translateY(-4px);
  border-color: rgba(66, 84, 102, 0.12);
}

/* line 95, app/assets/stylesheets/frontend/components/faq_cards_component.scss */
.faq-card:focus {
  outline: none;
  box-shadow: 0 0 0 4px rgba(66, 84, 102, 0.06);
}

@media (max-width: 1250px) {
  /* line 102, app/assets/stylesheets/frontend/components/faq_cards_component.scss */
  .faq-cards-row {
    padding: 0 24px;
    box-sizing: border-box;
  }
}

@media (max-width: 900px) {
  /* line 109, app/assets/stylesheets/frontend/components/faq_cards_component.scss */
  .faq-cards-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 0 20px;
  }
  /* line 114, app/assets/stylesheets/frontend/components/faq_cards_component.scss */
  .faq-card-title {
    font-size: 26px;
  }
}

@media (max-width: 640px) {
  /* line 120, app/assets/stylesheets/frontend/components/faq_cards_component.scss */
  .faq-cards-section {
    margin-top: 32px;
  }
  /* line 124, app/assets/stylesheets/frontend/components/faq_cards_component.scss */
  .faq-cards-row {
    grid-template-columns: 1fr;
    padding: 0 16px;
    gap: 16px;
  }
  /* line 130, app/assets/stylesheets/frontend/components/faq_cards_component.scss */
  .faq-card {
    width: 100%;
  }
  /* line 134, app/assets/stylesheets/frontend/components/faq_cards_component.scss */
  .faq-card-title {
    font-size: 24px;
  }
  /* line 138, app/assets/stylesheets/frontend/components/faq_cards_component.scss */
  .faq-card-icon {
    width: 56px;
    height: 56px;
  }
  /* line 143, app/assets/stylesheets/frontend/components/faq_cards_component.scss */
  .faq-card-icon img {
    width: 28px;
    height: 28px;
  }
}

/* line 1, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
.formula-choice-component {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.13);
  border: 1px solid #ebebeb;
  /* reduced padding to make component less tall */
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
  max-width: 100%;
}

/* line 14, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
.formula-choice-component .choice-row {
  display: flex;
  /* center items vertically so price aligns with title */
  align-items: center;
  gap: 12px;
  width: 100%;
}

/* indicate row is clickable */
/* line 23, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
.formula-choice-component .choice-row {
  cursor: pointer;
}

/* line 26, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
.formula-choice-component .choice-radio {
  width: 22px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
}

/* line 32, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
.formula-choice-component .choice-radio .circle {
  border: 2px solid #727272;
  border-radius: 24px;
  width: 22px;
  height: 22px;
  position: absolute;
  top: 0;
  left: 0;
}

/* line 41, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
.formula-choice-component .choice-radio.selected .circle {
  border-color: #000;
}

/* line 44, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
.formula-choice-component .choice-radio.selected .dot {
  background: #000;
  border-radius: 24px;
  width: 12px;
  height: 12px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* line 54, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
.formula-choice-component .choice-content {
  display: flex;
  flex-direction: column;
  /* tighter vertical spacing */
  gap: 6px;
  flex-grow: 1;
  min-width: 0;
}

/* line 62, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
.formula-choice-component .choice-title {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 16px;
  color: #000;
}

/* line 68, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
.formula-choice-component .choice-desc {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  color: #727272;
  /* slightly reduced line-height to compact rows */
  line-height: 20px;
  letter-spacing: 0.2px;
}

/* line 77, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
.formula-choice-component .choice-price {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #000;
  text-align: right;
  min-width: 78px;
  /* ensure price is vertically centered with the title */
  align-self: center;
}

/* line 87, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
.formula-choice-component .choice-price.price-strong {
  font-weight: 600;
}

/* make price sit at the far right of the row */
/* line 91, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
.formula-choice-component .choice-row > .choice-price {
  margin-left: auto;
}

/* line 94, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
.formula-choice-component .divider {
  width: 100%;
  height: 1px;
  background: #ebebeb;
  margin: 0.5px 0;
}

/* line 100, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
.formula-choice-component .gift-row {
  display: flex;
  align-items: center;
  gap: 28px;
  width: 100%;
}

/* line 106, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
.formula-choice-component .gift-img {
  width: 168px;
  height: 161px;
  background-size: cover;
  background-position: center;
  border-radius: 8px;
  flex-shrink: 0;
}

/* line 114, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
.formula-choice-component .gift-desc {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #000;
  line-height: 25px;
  letter-spacing: 0.2px;
}

/* line 122, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
.formula-choice-component .gift-desc .bold {
  font-weight: 600;
}

@media (max-width: 767px) {
  /* line 128, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
  .formula-choice-component {
    padding: 16px;
    gap: 12px;
  }
  /* line 133, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
  .formula-choice-component .choice-row {
    flex-wrap: wrap;
    align-items: center;
  }
  /* line 138, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
  .formula-choice-component .choice-content.price-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    width: 100%;
  }
  /* line 146, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
  .formula-choice-component .choice-title {
    font-size: 16px;
  }
  /* line 150, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
  .formula-choice-component .choice-desc {
    font-size: 14px;
    line-height: 20px;
  }
  /* line 155, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
  .formula-choice-component .choice-price {
    min-width: auto;
    text-align: right;
    margin-left: auto;
  }
  /* line 161, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
  .formula-choice-component .gift-row {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }
  /* line 167, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
  .formula-choice-component .gift-img,
.formula-choice-component svg {
    width: 100%;
    height: auto;
    max-height: 240px;
    border-radius: 8px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  /* line 177, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
  .formula-choice-component .choice-title {
    font-size: 16px;
  }
  /* line 181, app/assets/stylesheets/frontend/cart/formula_choice_component.scss */
  .formula-choice-component .gift-img,
.formula-choice-component svg {
    width: 140px;
    height: auto;
  }
}

/* line 1, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  width: 100%;
  margin-top: 48px;
  /* Responsive adjustments */
}

/* line 9, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__container {
  max-width: 1440px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: start;
  margin: 0 auto;
}

/* line 18, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__header {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 48px 32px 16px 32px;
  gap: 8px;
}

/* line 28, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__header-actions {
  width: 100%;
  display: flex;
  align-items: start;
  justify-content: space-between;
}

/* line 35, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__back-button {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 220px;
}

/* line 41, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__back-button a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
}

/* line 47, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__back-button a img {
  width: 39px;
  height: 39px;
}

/* line 52, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__back-button a span {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 15px;
  color: #000;
  line-height: 12px;
}

/* line 62, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__title-section {
  display: flex;
  gap: 8px;
  align-items: center;
  color: #000;
}

/* line 68, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__title-section .title {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 600;
  font-size: 37px;
  line-height: 58px;
}

/* line 75, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__title-section .count {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
  font-size: 22px;
  line-height: 58px;
}

/* line 83, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__spacer {
  width: 220px;
  opacity: 0;
}

/* line 88, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__main {
  width: 100%;
  display: flex;
  gap: 24px;
  align-items: start;
  padding: 32px;
}

/* line 96, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: start;
}

/* line 104, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__product-card {
  width: 100%;
  background: #f5f7fb;
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 24px;
  border-radius: 16px;
}

/* line 114, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__product-image {
  width: 168px;
  height: 168px;
  border-radius: 8px;
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 124, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* line 132, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__product-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: start;
  justify-content: center;
}

/* line 141, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__product-name {
  max-width: 100%;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #000;
}

/* line 149, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__product-area {
  max-width: 100%;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #000;
}

/* line 157, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__product-format {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  color: #727272;
  line-height: 25px;
  letter-spacing: 0.2px;
}

/* line 165, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__product-format .format-type {
  font-weight: 500;
  color: #000;
}

/* line 171, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__product-price-section {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  justify-content: center;
}

/* line 179, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__product-price {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 22px;
  color: #000;
}

/* line 186, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__summary-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: center;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.13);
  border: 1px solid #ebebeb;
}

@media (max-width: 1200px) {
  /* line 201, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__main {
    padding: 24px;
  }
}

@media (max-width: 900px) {
  /* line 205, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__header {
    padding: 16px;
  }
  /* line 206, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__header-actions {
    flex-wrap: wrap;
    gap: 12px;
  }
  /* line 207, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__back-button {
    width: auto;
  }
  /* line 208, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__spacer {
    display: none;
  }
  /* line 209, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__main {
    flex-direction: column;
    padding: 16px;
    gap: 16px;
  }
  /* line 210, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__product-card {
    gap: 16px;
  }
  /* line 211, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__product-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1;
  }
  /* line 212, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__product-details {
    width: 100%;
  }
  /* line 213, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__product-price-section {
    width: 100%;
    align-items: flex-start;
  }
  /* line 214, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__summary-card {
    width: 100%;
    max-width: 100%;
  }
  /* line 215, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__summary-content {
    max-width: 100%;
  }
}

@media (max-width: 600px) {
  /* line 219, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__header {
    padding: 12px;
  }
  /* line 220, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__header-actions {
    justify-content: center;
  }
  /* line 221, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__back-button {
    order: -1;
    width: 100%;
    justify-content: flex-start;
  }
  /* line 222, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__title-section {
    width: 100%;
    justify-content: center;
  }
  /* line 225, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__title-section .title {
    font-size: 24px;
    line-height: 32px;
  }
  /* line 226, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__title-section .count {
    font-size: 18px;
    line-height: 32px;
  }
  /* line 228, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__main {
    padding: 12px;
    gap: 12px;
  }
  /* line 229, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__product-card {
    padding: 12px;
  }
  /* line 230, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__product-name {
    font-size: 18px;
  }
  /* line 231, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__product-area {
    font-size: 15px;
  }
  /* line 232, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__product-format {
    font-size: 14px;
  }
  /* line 233, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__product-price {
    font-size: 20px;
  }
  /* line 234, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__summary-card {
    padding: 16px;
  }
  /* line 235, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__validate-button {
    padding: 12px 16px;
    font-size: 15px;
  }
}

@media (max-width: 390px) {
  /* line 239, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__header {
    padding: 8px;
  }
  /* line 241, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__title-section .title {
    font-size: 20px;
    line-height: 28px;
  }
  /* line 242, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__title-section .count {
    font-size: 16px;
    line-height: 28px;
  }
  /* line 244, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__main {
    padding: 8px;
    gap: 8px;
  }
  /* line 245, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__product-card {
    padding: 10px;
  }
  /* line 246, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__product-name {
    font-size: 16px;
  }
  /* line 247, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__product-area, .cart-preview__product-format {
    font-size: 13px;
  }
  /* line 248, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__product-price {
    font-size: 18px;
  }
  /* line 249, app/assets/stylesheets/frontend/cart/cart_preview.scss */
  .cart-preview__summary-card {
    padding: 12px;
  }
}

/* line 252, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__summary-header {
  width: 100%;
  display: flex;
  gap: 8px;
  align-items: center;
}

/* line 258, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__summary-header .title {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  color: #000;
}

/* line 265, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__summary-header .subtitle {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  color: #727272;
}

/* line 273, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__summary-content {
  width: 100%;
  max-width: 402px;
  display: flex;
  flex-direction: column;
  align-items: start;
  margin: 0 auto;
}

/* line 282, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__summary-row {
  width: 100%;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-radius: 32px;
  font-size: 14px;
  color: #000;
}

/* line 292, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__summary-row--total {
  font-size: 17px;
}

/* line 296, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__summary-row .label {
  flex: 1;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
}

/* line 301, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__summary-row .label--bold {
  font-weight: 600;
}

/* line 306, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__summary-row .value {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
}

/* line 312, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__summary-divider {
  width: 100%;
  height: 1px;
  background: #e0e0e0;
  border: none;
  margin: 0;
}

/* line 320, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__validate-button-wrapper {
  text-decoration: none;
  width: 100%;
}

/* line 325, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__validate-button {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
}

/* line 340, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__validate-button .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10px;
  width: 4px;
  margin-left: 8px;
}

/* line 348, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__validate-button .icon-wrapper .icon-inner {
  transform: rotate(270deg);
  display: inline-block;
}

/* line 352, app/assets/stylesheets/frontend/cart/cart_preview.scss */
.cart-preview__validate-button .icon-wrapper .icon-inner img {
  height: 4px;
  width: 10px;
  display: block;
}

/* line 1, app/assets/stylesheets/frontend/cart/show.scss */
.cart-show-page {
  font-family: 'Encode Sans', sans-serif;
}

/* line 4, app/assets/stylesheets/frontend/cart/show.scss */
.cart-show-page__header-wrapper {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 48px 32px 16px 32px;
  width: 100%;
}

/* line 15, app/assets/stylesheets/frontend/cart/show.scss */
.cart-show-page__header-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

/* line 22, app/assets/stylesheets/frontend/cart/show.scss */
.cart-show-page__back-button-container {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 220px;
}

/* line 28, app/assets/stylesheets/frontend/cart/show.scss */
.cart-show-page__back-button-container a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
}

/* line 36, app/assets/stylesheets/frontend/cart/show.scss */
.cart-show-page__back-icon {
  overflow: hidden;
  width: 39px;
  height: 39px;
}

/* line 42, app/assets/stylesheets/frontend/cart/show.scss */
.cart-show-page__back-text {
  font-weight: 600;
  font-size: 15px;
  line-height: 12px;
  letter-spacing: 0.2px;
  white-space: nowrap;
}

/* line 50, app/assets/stylesheets/frontend/cart/show.scss */
.cart-show-page__title-section {
  display: flex;
  gap: 8px;
  align-items: center;
  white-space: nowrap;
}

/* line 56, app/assets/stylesheets/frontend/cart/show.scss */
.cart-show-page__title-section .title {
  font-family: 'Gill Sans', sans-serif;
  font-size: 37px;
  line-height: 58px;
}

/* line 62, app/assets/stylesheets/frontend/cart/show.scss */
.cart-show-page__title-section .count {
  font-weight: 400;
  font-size: 22px;
  line-height: 58px;
}

/* line 69, app/assets/stylesheets/frontend/cart/show.scss */
.cart-show-page__spacer {
  opacity: 0;
  width: 220px;
}

/* line 74, app/assets/stylesheets/frontend/cart/show.scss */
.cart-show-page__main {
  box-sizing: border-box;
  display: flex;
  gap: 24px;
  align-items: flex-start;
  padding: 32px;
  width: 100%;
}

/* line 83, app/assets/stylesheets/frontend/cart/show.scss */
.cart-show-page__left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  /* line 95, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-show-page__main {
    padding: 24px;
  }
}

@media (max-width: 900px) {
  /* line 101, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-show-page__header-wrapper {
    padding: 16px;
  }
  /* line 102, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-show-page__title-section .title {
    font-size: 28px;
    line-height: 40px;
  }
  /* line 103, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-show-page__back-button-container {
    width: auto;
  }
  /* line 104, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-show-page__spacer {
    display: none;
  }
  /* line 105, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-show-page__main {
    flex-direction: column;
    padding: 16px;
    gap: 16px;
  }
  /* line 108, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-item {
    padding: 16px;
    gap: 16px;
  }
  /* line 111, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-item__image {
    width: 100%;
    max-width: 100%;
    height: auto;
    aspect-ratio: 1;
    padding: 12px;
  }
  /* line 112, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-item__details {
    width: 100%;
  }
  /* line 113, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-item__info {
    flex-wrap: wrap;
    gap: 12px;
  }
  /* line 114, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-item__price {
    width: 100%;
  }
  /* line 115, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-item__actions {
    justify-content: space-between;
  }
  /* line 118, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-summary {
    min-width: 0 !important;
    max-width: 100% !important;
    width: 100% !important;
  }
}

@media (max-width: 600px) {
  /* line 127, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-show-page__header-wrapper {
    padding: 12px;
  }
  /* line 128, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-show-page__header-actions {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
  }
  /* line 129, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-show-page__back-button-container {
    order: -1;
    width: 100%;
    justify-content: flex-start;
  }
  /* line 130, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-show-page__title-section {
    width: 100%;
    justify-content: center;
  }
  /* line 131, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-show-page__title-section .title {
    font-size: 24px;
    line-height: 32px;
  }
  /* line 133, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-show-page__main {
    padding: 12px;
    gap: 12px;
  }
  /* line 136, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-item {
    padding: 12px;
  }
  /* line 138, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-item__name {
    font-size: 18px;
  }
  /* line 139, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-item__area {
    font-size: 15px;
  }
  /* line 140, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-item__format {
    font-size: 14px;
  }
  /* line 141, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-item__price .amount {
    font-size: 20px;
  }
  /* line 142, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-item__delete-button {
    padding: 10px;
  }
  /* line 145, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-summary {
    padding: 16px;
  }
  /* line 147, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-summary__row {
    padding: 12px 0;
    gap: 8px;
  }
}

@media (max-width: 390px) {
  /* line 156, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-show-page__header-wrapper {
    padding: 8px;
  }
  /* line 157, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-show-page__title-section .title {
    font-size: 20px;
    line-height: 28px;
  }
  /* line 158, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-show-page__main {
    padding: 8px;
    gap: 8px;
  }
  /* line 161, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-item {
    padding: 10px;
  }
  /* line 163, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-item__name {
    font-size: 16px;
  }
  /* line 164, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-item__area, .cart-item__format {
    font-size: 13px;
  }
  /* line 165, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-item__price .amount {
    font-size: 18px;
  }
  /* line 168, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-summary {
    padding: 12px;
  }
  /* line 170, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-summary__row {
    padding: 10px 0;
    gap: 6px;
  }
  /* line 174, app/assets/stylesheets/frontend/cart/show.scss */
  .cart-summary__validate-button {
    padding: 12px 16px;
    font-size: 15px;
  }
}

/* line 178, app/assets/stylesheets/frontend/cart/show.scss */
.cart-item {
  background: #f5f7fb;
  box-sizing: border-box;
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 24px;
  border-radius: 16px;
  width: 100%;
}

/* line 188, app/assets/stylesheets/frontend/cart/show.scss */
.cart-item__image {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 40px 8px 0 8px;
  border-radius: 8px;
  width: 168px;
  height: 168px;
  position: relative;
}

/* line 200, app/assets/stylesheets/frontend/cart/show.scss */
.cart-item__image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* line 210, app/assets/stylesheets/frontend/cart/show.scss */
.cart-item__details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  min-width: 0;
}

/* line 218, app/assets/stylesheets/frontend/cart/show.scss */
.cart-item__info {
  display: flex;
  gap: 28px;
  align-items: center;
  width: 100%;
}

/* line 225, app/assets/stylesheets/frontend/cart/show.scss */
.cart-item__info-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 0;
}

/* line 233, app/assets/stylesheets/frontend/cart/show.scss */
.cart-item__name {
  font-weight: 600;
  font-size: 22px;
  line-height: normal;
}

/* line 239, app/assets/stylesheets/frontend/cart/show.scss */
.cart-item__area {
  font-weight: 600;
  font-size: 17px;
  line-height: normal;
}

/* line 245, app/assets/stylesheets/frontend/cart/show.scss */
.cart-item__format {
  font-weight: 400;
  font-size: 15px;
  line-height: 25px;
  letter-spacing: 0.2px;
  color: #727272;
}

/* line 252, app/assets/stylesheets/frontend/cart/show.scss */
.cart-item__format .format-type {
  font-weight: 500;
  color: #000;
}

/* line 258, app/assets/stylesheets/frontend/cart/show.scss */
.cart-item__price {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
}

/* line 264, app/assets/stylesheets/frontend/cart/show.scss */
.cart-item__price .amount {
  font-weight: 600;
  font-size: 22px;
  line-height: normal;
}

/* line 271, app/assets/stylesheets/frontend/cart/show.scss */
.cart-item__actions {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
}

/* line 278, app/assets/stylesheets/frontend/cart/show.scss */
.cart-item__delete-form {
  margin: 0;
  display: inline-flex;
}

/* line 283, app/assets/stylesheets/frontend/cart/show.scss */
.cart-item__quantity-form {
  margin: 0;
  display: contents;
}

/* line 288, app/assets/stylesheets/frontend/cart/show.scss */
.cart-item__delete-button {
  background: transparent;
  border: 1px solid #727272;
  border-radius: 100px;
  padding: 14px;
  display: flex;
  align-items: center;
  cursor: pointer;
}

/* line 298, app/assets/stylesheets/frontend/cart/show.scss */
.cart-item__quantity-selector {
  position: relative;
}

/* line 301, app/assets/stylesheets/frontend/cart/show.scss */
.cart-item__quantity-selector select {
  background: #fff;
  border: 1px solid #727272;
  border-radius: 100px;
  padding: 14px 24px;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  text-align: center;
  appearance: none;
  cursor: pointer;
  padding-right: 48px;
}

/* line 316, app/assets/stylesheets/frontend/cart/show.scss */
.cart-item__quantity-icon {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

/* line 325, app/assets/stylesheets/frontend/cart/show.scss */
.cart-summary {
  background: #fff;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.13);
  border: 1px solid #ebebeb;
  min-width: 425px;
  max-width: 425px;
}

/* line 339, app/assets/stylesheets/frontend/cart/show.scss */
.cart-summary__header {
  display: flex;
  gap: 8px;
  width: 100%;
}

/* line 344, app/assets/stylesheets/frontend/cart/show.scss */
.cart-summary__header .title {
  font-weight: 600;
  font-size: 17px;
  color: #000;
}

/* line 350, app/assets/stylesheets/frontend/cart/show.scss */
.cart-summary__header .subtitle {
  font-weight: 500;
  font-size: 14px;
  color: #727272;
}

/* line 357, app/assets/stylesheets/frontend/cart/show.scss */
.cart-summary__content {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

/* line 365, app/assets/stylesheets/frontend/cart/show.scss */
.cart-summary__row {
  box-sizing: border-box;
  display: flex;
  gap: 16px;
  align-items: center;
  padding: 16px 0;
  border-radius: 32px;
  width: 100%;
}

/* line 374, app/assets/stylesheets/frontend/cart/show.scss */
.cart-summary__row .label {
  flex: 1;
  font-weight: 400;
  font-size: 14px;
  color: #000;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* line 382, app/assets/stylesheets/frontend/cart/show.scss */
.cart-summary__row .label--bold {
  font-weight: 600;
  font-size: 17px;
}

/* line 388, app/assets/stylesheets/frontend/cart/show.scss */
.cart-summary__row .value {
  font-weight: 600;
  font-size: 14px;
  color: #000;
  white-space: nowrap;
}

/* line 396, app/assets/stylesheets/frontend/cart/show.scss */
.cart-summary__row--total .value {
  font-size: 17px;
}

/* line 402, app/assets/stylesheets/frontend/cart/show.scss */
.cart-summary__divider {
  width: 100%;
  height: 1px;
  background: #e0e0e0;
  border: none;
  margin: 0;
}

/* line 410, app/assets/stylesheets/frontend/cart/show.scss */
.cart-summary__validate-wrapper {
  text-decoration: none;
  width: 100%;
}

/* line 415, app/assets/stylesheets/frontend/cart/show.scss */
.cart-summary__validate-button {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  width: 100%;
}

/* line 430, app/assets/stylesheets/frontend/cart/show.scss */
.cart-summary__validate-button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background: #cccccc;
}

/* line 436, app/assets/stylesheets/frontend/cart/show.scss */
.cart-summary__validate-button .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10px;
  width: 4px;
  margin-left: 8px;
}

/* line 445, app/assets/stylesheets/frontend/cart/show.scss */
.cart-summary__validate-button .icon-inner {
  transform: rotate(270deg);
  display: inline-block;
}

/* line 449, app/assets/stylesheets/frontend/cart/show.scss */
.cart-summary__validate-button .icon-inner img {
  height: 4px;
  width: 10px;
  display: block;
}

/* line 459, app/assets/stylesheets/frontend/cart/show.scss */
#validationPopup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  align-items: center;
  justify-content: center;
  z-index: 1000;
}

/* line 471, app/assets/stylesheets/frontend/cart/show.scss */
#validationPopup.show {
  display: flex;
}

/* line 475, app/assets/stylesheets/frontend/cart/show.scss */
#validationPopup .popup-content {
  background: white;
  padding: 24px;
  border-radius: 8px;
  text-align: center;
}

/* line 481, app/assets/stylesheets/frontend/cart/show.scss */
#validationPopup .popup-content h3 {
  margin: 0 0 16px 0;
}

/* line 485, app/assets/stylesheets/frontend/cart/show.scss */
#validationPopup .popup-content p {
  margin: 0 0 24px 0;
}

/* line 489, app/assets/stylesheets/frontend/cart/show.scss */
#validationPopup .popup-content .popup-actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* line 495, app/assets/stylesheets/frontend/cart/show.scss */
#validationPopup .popup-content button {
  margin: 0 8px;
  padding: 8px 16px;
  cursor: pointer;
}

/* line 6, app/assets/stylesheets/frontend/cart/index.scss */
.cart-submit-container {
  display: flex;
  justify-content: center;
  padding-top: 28px;
}

/* line 12, app/assets/stylesheets/frontend/cart/index.scss */
.cart-submit-button {
  background: #000;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
  margin-bottom: 48px;
}

/* line 27, app/assets/stylesheets/frontend/cart/index.scss */
.cart-submit-button .icon-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 10px;
  width: 4px;
  margin-left: 8px;
}

/* line 35, app/assets/stylesheets/frontend/cart/index.scss */
.cart-submit-button .icon-wrapper .icon-inner {
  display: inline-block;
}

/* line 43, app/assets/stylesheets/frontend/cart/index.scss */
.selected-formula-summary .selected-formula-image {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

/* line 50, app/assets/stylesheets/frontend/cart/index.scss */
.selected-formula-summary .selected-formula-body .formula-title {
  font-weight: 500;
  font-size: 17px;
}

/* line 55, app/assets/stylesheets/frontend/cart/index.scss */
.selected-formula-summary .selected-formula-body .formula-details {
  font-weight: 600;
  font-size: 22px;
}

/* line 64, app/assets/stylesheets/frontend/cart/index.scss */
.geographical-area-search .search-input-container {
  position: relative;
}

/* line 70, app/assets/stylesheets/frontend/cart/index.scss */
.cart-page {
  padding: 24px 0;
}

/* line 73, app/assets/stylesheets/frontend/cart/index.scss */
.cart-page .container-fluid {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 24px;
}

@media (max-width: 767px) {
  /* line 73, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-page .container-fluid {
    padding: 0 12px;
  }
}

/* line 83, app/assets/stylesheets/frontend/cart/index.scss */
.cart-page .cart-header {
  margin-bottom: 32px;
}

/* line 86, app/assets/stylesheets/frontend/cart/index.scss */
.cart-page .cart-header .cart-title {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.25em;
  color: #000000;
  margin: 0;
}

@media (max-width: 767px) {
  /* line 86, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-page .cart-header .cart-title {
    font-size: 28px;
  }
}

/* line 99, app/assets/stylesheets/frontend/cart/index.scss */
.cart-page .cart-header .btn-outline-secondary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  background: #FFFFFF;
  color: #000000;
  border: 1px solid #727272;
  border-radius: 100px;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  text-decoration: none;
  transition: all 0.2s ease;
}

/* line 114, app/assets/stylesheets/frontend/cart/index.scss */
.cart-page .cart-header .btn-outline-secondary:hover {
  background: #F5F7FB;
  border-color: #000000;
  color: #000000;
}

/* line 120, app/assets/stylesheets/frontend/cart/index.scss */
.cart-page .cart-header .btn-outline-secondary i {
  font-size: 16px;
}

@media (max-width: 767px) {
  /* line 99, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-page .cart-header .btn-outline-secondary {
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  /* line 83, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-page .cart-header {
    margin-bottom: 24px;
  }
  /* line 133, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-page .cart-header .row {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }
}

/* line 141, app/assets/stylesheets/frontend/cart/index.scss */
.cart-page .formulas-container {
  width: 100%;
}

/* line 144, app/assets/stylesheets/frontend/cart/index.scss */
.cart-page .formulas-container .row {
  margin: 0;
}

@media (min-width: 992px) {
  /* line 144, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-page .formulas-container .row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  /* line 153, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-page .formulas-container .row .col-lg-4 {
    flex: 1;
    max-width: calc(33.333% - 16px);
    display: flex;
  }
  /* line 158, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-page .formulas-container .row .col-lg-4 .formula-card {
    width: 100%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  /* line 144, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-page .formulas-container .row {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
  }
  /* line 170, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-page .formulas-container .row .col-md-6 {
    flex: 1;
    max-width: calc(50% - 10px);
    display: flex;
  }
  /* line 175, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-page .formulas-container .row .col-md-6 .formula-card {
    width: 100%;
  }
}

@media (max-width: 767px) {
  /* line 144, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-page .formulas-container .row {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 16px;
    padding-bottom: 16px;
  }
  /* line 189, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-page .formulas-container .row .col-lg-4 {
    flex: 0 0 280px;
    max-width: none;
  }
}

/* line 200, app/assets/stylesheets/frontend/cart/index.scss */
.cart-show-page .cart-main {
  display: flex !important;
  gap: 24px;
  align-items: flex-start;
  /* override inline styles if present */
  padding: 0 !important;
  width: 100%;
  box-sizing: border-box;
}

/* line 211, app/assets/stylesheets/frontend/cart/index.scss */
.cart-show-page .cart-left {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 24px;
  min-width: 0;
}

/* line 219, app/assets/stylesheets/frontend/cart/index.scss */
.cart-show-page .cart-right {
  display: flex !important;
  gap: 24px;
  align-items: flex-start;
  padding: 0;
  width: auto;
  max-width: 450px;
}

/* line 228, app/assets/stylesheets/frontend/cart/index.scss */
.cart-show-page .cart-item {
  background: #f5f7fb;
  box-sizing: border-box;
  display: flex;
  gap: 28px;
  align-items: center;
  padding: 24px;
  border-radius: 16px;
  width: 100%;
}

/* line 239, app/assets/stylesheets/frontend/cart/index.scss */
.cart-show-page .product-image {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 40px 8px 0 8px;
  border-radius: 8px;
  width: 168px;
  height: 168px;
  position: relative;
  overflow: hidden;
}

/* line 252, app/assets/stylesheets/frontend/cart/index.scss */
.cart-show-page .product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 8px;
}

/* line 262, app/assets/stylesheets/frontend/cart/index.scss */
.cart-show-page .header-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

/* line 269, app/assets/stylesheets/frontend/cart/index.scss */
.cart-show-page .summary-button {
  width: 100%;
}

/* line 273, app/assets/stylesheets/frontend/cart/index.scss */
.cart-show-page .summary-card {
  width: 450px;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  /* line 280, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-show-page .summary-card {
    width: 90%;
    max-width: 460px;
    margin: 0 auto;
  }
  /* line 286, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-show-page .cart-right {
    width: 100% !important;
    align-items: center !important;
  }
  /* line 291, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-show-page .cart-item .product-image {
    width: 140px;
    height: 140px;
  }
  /* line 296, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-show-page select {
    padding: 14px 20px !important;
    font-size: 16px !important;
    min-width: 100px !important;
    text-align: center !important;
  }
  /* line 303, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-show-page button,
.cart-show-page input[type="text"],
.cart-show-page input[type="number"] {
    padding: 14px 20px !important;
    font-size: 16px !important;
    height: auto !important;
    text-align: center !important;
  }
}

@media (max-width: 860px) {
  /* line 315, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-show-page .cart-main {
    flex-direction: column !important;
    padding: 12px;
  }
  /* line 320, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-show-page .summary-card {
    width: 92%;
    max-width: 520px;
    margin: 0 auto;
  }
  /* line 326, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-show-page .cart-right {
    width: 100% !important;
    align-items: center !important;
  }
  /* line 330, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-show-page .cart-right > div {
    width: 100%;
  }
  /* line 335, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-show-page .product-image {
    width: 120px;
    height: 120px;
    padding: 20px 8px 0 8px;
  }
  /* line 341, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-show-page .cart-item {
    gap: 16px;
    padding: 16px;
  }
  /* line 346, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-show-page .header-actions {
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
  }
  /* line 352, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-show-page select {
    padding: 16px 22px !important;
    font-size: 17px !important;
    min-width: 80px !important;
    padding-right: 48px !important;
  }
}

@media (max-width: 480px) {
  /* line 362, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-show-page .summary-card {
    width: calc(100% - 24px);
    max-width: 420px;
    margin: 0 auto;
  }
  /* line 368, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-show-page .cart-left {
    order: 1;
  }
  /* line 372, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-show-page .cart-right {
    order: 2;
    align-items: center !important;
  }
  /* line 377, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-show-page .cart-item {
    flex-direction: column !important;
    align-items: flex-start !important;
    padding: 16px !important;
    gap: 28px !important;
  }
  /* line 384, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-show-page .product-image {
    width: 100% !important;
    height: 168px !important;
    padding: 0 0 40px 0 !important;
  }
  /* line 390, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-show-page .product-info {
    flex-direction: column !important;
    align-items: flex-start !important;
    gap: 28px !important;
  }
  /* line 396, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-show-page .product-price {
    order: 2 !important;
    align-items: flex-start !important;
  }
  /* line 401, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-show-page select {
    padding: 16px 20px !important;
    font-size: 16px !important;
    min-width: 80px !important;
    padding-right: 40px !important;
    text-align: center !important;
    padding-right: 36px !important;
    text-align: center !important;
    /* give extra room on the right so number isn't touching the chevron */
    padding-right: 36px !important;
    -webkit-appearance: none;
    /* normalize on iOS */
    -moz-appearance: none;
    appearance: none;
    text-align: center !important;
  }
}

/* line 420, app/assets/stylesheets/frontend/cart/index.scss */
.summary-card {
  width: 450px;
  box-sizing: border-box;
}

@media (max-width: 1024px) {
  /* line 420, app/assets/stylesheets/frontend/cart/index.scss */
  .summary-card {
    width: 90%;
    max-width: 460px;
    margin: 0 auto;
  }
}

@media (max-width: 860px) {
  /* line 420, app/assets/stylesheets/frontend/cart/index.scss */
  .summary-card {
    width: 92%;
    max-width: 520px;
    margin: 0 auto;
  }
}

@media (max-width: 480px) {
  /* line 420, app/assets/stylesheets/frontend/cart/index.scss */
  .summary-card {
    width: calc(100% - 32px);
    max-width: 420px;
    margin: 0 auto;
  }
}

/* Global override: ensure .cart-main padding is removed even if inline styles exist
   and provide mobile overrides in case .cart-main isn't nested under .cart-show-page */
/* line 445, app/assets/stylesheets/frontend/cart/index.scss */
.cart-main {
  padding: 0 !important;
  box-sizing: border-box;
}

@media (max-width: 860px) {
  /* line 451, app/assets/stylesheets/frontend/cart/index.scss */
  .cart-main {
    padding: 12px !important;
  }
}

@media (max-width: 767px) {
  /* line 457, app/assets/stylesheets/frontend/cart/index.scss */
  .container-fluid {
    padding: 0 12px !important;
  }
}

/* line 2, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  border: 1px solid #D4D4D4;
  border-radius: 16px;
  overflow: hidden;
  background: #FFFFFF;
  height: 100%;
  transition: all 0.2s ease;
}

/* line 14, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card--selected {
  border-color: #000000;
  box-shadow: 0px 4px 16px rgba(0, 0, 0, 0.1);
}

/* line 20, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card:hover {
  box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.08);
}

/* line 25, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__header {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  position: relative;
  width: 100%;
  height: 195px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  padding: 0 8px 40px;
  border: 1px solid #FFFFFF;
  border-radius: 16px 16px 0 0;
}

/* line 41, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(0, 0, 0, 0.33) 42%);
  border-radius: 16px 16px 0 0;
}

/* line 53, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__title {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 700;
  font-size: 34px;
  line-height: 1.32em;
  text-align: center;
  color: #FFFFFF;
  margin: 0;
  position: relative;
  z-index: 1;
}

/* line 66, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 24px;
  border-radius: 0 0 16px 16px;
  flex: 1;
  gap: 24px;
}

/* line 77, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__description {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25em;
  text-align: center;
  color: #000000;
  margin: 0;
  width: 100%;
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 92, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__pricing {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 8px;
}

/* line 98, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__pricing .price-main {
  display: flex;
  align-items: center;
  gap: 7px;
  justify-content: center;
}

/* line 104, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__pricing .price-main .price-amount {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 600;
  font-size: 32px;
  line-height: 1.19em;
  text-align: center;
  color: #000000;
}

/* line 113, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__pricing .price-main .price-period {
  font-family: 'Avenir Next', sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 1.56em;
  text-align: center;
  color: #425466;
}

/* line 123, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__pricing .price-alternative {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

/* line 129, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__pricing .price-alternative .price-regular {
  font-family: 'Gill Sans', sans-serif;
  font-weight: 400;
  font-size: 20px;
  line-height: 1.15em;
  text-align: center;
  color: #000000;
  text-decoration: line-through;
}

/* line 139, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__pricing .price-alternative .price-badge {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 8px 12px;
  background: #AFEBBD;
  border-radius: 30px;
}

/* line 148, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__pricing .price-alternative .price-badge .badge-text {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  line-height: 1.25em;
  text-align: center;
  color: #000000;
}

/* line 159, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__pricing .price-note {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.25em;
  letter-spacing: 1.33%;
  text-align: left;
  color: #727272;
  width: 100%;
  margin: 0;
}

/* line 172, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__action {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px 0;
}

/* line 178, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__action .btn-formula {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  background: #000000;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  color: #FFFFFF;
}

/* line 191, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__action .btn-formula .btn-text {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25em;
  text-align: center;
  color: #FFFFFF;
}

/* line 200, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__action .btn-formula .btn-arrow {
  width: 4px;
  height: 10px;
  color: #FFFFFF;
}

/* line 206, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__action .btn-formula:hover {
  background: #1a1a1a;
  color: #FFFFFF;
}

/* line 211, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__action .btn-formula--selected {
  background: #AFEBBD;
  color: #000000;
}

/* line 215, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__action .btn-formula--selected .btn-text {
  color: #000000;
}

/* line 219, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__action .btn-formula--selected .btn-arrow {
  color: #000000;
}

/* line 223, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__action .btn-formula--selected:hover {
  background: #9be6ac;
}

/* line 230, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__divider {
  width: 100%;
  height: 1px;
  background: #EBEBEB;
}

/* line 236, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__featured {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 16px;
  padding: 12px 8px;
  background: #F5F7FB;
  border-radius: 8px;
}

/* line 247, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__featured .feature-highlight {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 16px;
}

/* line 253, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__featured .feature-highlight .star-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  padding: 2px;
  background: #FFB909;
  border-radius: 20px;
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

/* line 265, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__featured .feature-highlight .star-icon svg {
  width: 16px;
  height: 16px;
}

/* line 271, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__featured .feature-highlight .feature-text {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.67em;
  letter-spacing: 1.33%;
  text-align: left;
  color: #000000;
  flex: 1;
}

/* line 284, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__features {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  gap: 16px;
  padding: 0 8px;
}

/* line 293, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__features .feature-item {
  display: flex;
  align-items: center;
  width: 100%;
  gap: 16px;
}

/* line 299, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__features .feature-item .feature-icon {
  width: 22px;
  height: 22px;
  position: relative;
  flex-shrink: 0;
}

/* line 305, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__features .feature-item .feature-icon .check-circle {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 16px;
  height: 16px;
  background: #000000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* line 317, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__features .feature-item .feature-icon .check-circle svg {
  width: 8px;
  height: 6px;
}

/* line 324, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-card__features .feature-item .feature-text {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.67em;
  letter-spacing: 1.33%;
  text-align: left;
  color: #000000;
  flex: 1;
}

@media (max-width: 991px) {
  /* line 341, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
  .formula-card__content {
    padding: 16px;
  }
  /* line 345, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
  .formula-card__title {
    font-size: 28px;
  }
  /* line 349, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
  .formula-card__description {
    font-size: 18px;
    min-height: auto;
  }
}

@media (max-width: 767px) {
  /* line 358, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
  .formula-card__header {
    height: 150px;
    padding: 0 8px 30px;
  }
  /* line 363, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
  .formula-card__title {
    font-size: 24px;
  }
  /* line 369, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
  .formula-card__pricing .price-main .price-amount {
    font-size: 28px;
  }
  /* line 373, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
  .formula-card__pricing .price-main .price-period {
    font-size: 16px;
  }
  /* line 379, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
  .formula-card__pricing .price-alternative .price-regular {
    font-size: 18px;
  }
}

/* line 388, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-choice-component .gift-row {
  overflow: hidden;
  max-height: 0;
  opacity: 0;
  transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.25s;
  pointer-events: none;
}

/* line 396, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-choice-component .gift-row.open {
  max-height: 600px;
  opacity: 1;
  pointer-events: auto;
}

/* line 402, app/assets/stylesheets/frontend/cart/formula_card_component.scss */
.formula-choice-component {
  cursor: default;
}

/* line 2, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
.geographical-area-search {
  background: #FFFFFF;
  border: 1px solid #EBEBEB;
  border-radius: 16px;
  box-shadow: 0px 1px 12px 0px rgba(0, 0, 0, 0.13);
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

/* line 16, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
.geographical-area-search .search-header {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 21, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
.geographical-area-search .search-header .search-title-wrapper {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 976px;
  height: 28px;
}

@media (max-width: 1023px) {
  /* line 21, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
  .geographical-area-search .search-header .search-title-wrapper {
    width: 100%;
    height: auto;
  }
}

/* line 34, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
.geographical-area-search .search-header .search-title {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: 1.25em;
  color: #000000;
  margin: 0;
  flex: 1;
}

@media (max-width: 767px) {
  /* line 34, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
  .geographical-area-search .search-header .search-title {
    font-size: 20px;
  }
}

/* line 48, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
.geographical-area-search .search-header .search-subtitle {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6666666666666667em;
  letter-spacing: 1.3333333532015483%;
  color: #000000;
  margin: 0;
  width: 976px;
}

@media (max-width: 1023px) {
  /* line 48, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
  .geographical-area-search .search-header .search-subtitle {
    width: 100%;
  }
}

/* line 64, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
.geographical-area-search .search-form {
  display: flex;
  flex-direction: row;
  align-self: stretch;
  gap: 12px;
}

@media (max-width: 767px) {
  /* line 64, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
  .geographical-area-search .search-form {
    flex-direction: column;
  }
}

/* line 74, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
.geographical-area-search .search-form .search-input-container {
  display: flex;
  justify-content: stretch;
  align-items: stretch;
  gap: 16px;
  height: 50px;
  flex: 1;
}

@media (max-width: 767px) {
  /* line 74, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
  .geographical-area-search .search-form .search-input-container {
    flex-direction: column;
    height: auto;
    gap: 12px;
  }
}

/* line 88, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
.geographical-area-search .search-form .search-input-container .search-input-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px;
  height: 50px;
  flex: 1;
  background: #FFFFFF;
  border: 1px solid #727272;
  border-radius: 32px;
  transition: border-color 0.2s ease;
  position: relative;
}

/* line 101, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
.geographical-area-search .search-form .search-input-container .search-input-wrapper:focus-within {
  border-color: #000000;
}

/* line 105, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
.geographical-area-search .search-form .search-input-container .search-input-wrapper .search-icon {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000000;
  flex-shrink: 0;
}

/* line 114, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
.geographical-area-search .search-form .search-input-container .search-input-wrapper .search-icon svg {
  width: 24px;
  height: 24px;
}

/* line 120, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
.geographical-area-search .search-form .search-input-container .search-input-wrapper .search-input {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1.25em;
  color: #000000;
  background: transparent;
  border: none;
  outline: none;
  flex: 1;
}

/* line 131, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
.geographical-area-search .search-form .search-input-container .search-input-wrapper .search-input::placeholder {
  color: #727272;
}

/* line 137, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
.geographical-area-search .search-form .search-input-container .validate-button {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
  background: #000000;
  border: none;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.2s ease;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.25em;
  text-align: center;
  color: #FFFFFF;
  white-space: nowrap;
}

/* line 156, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
.geographical-area-search .search-form .search-input-container .validate-button:hover:not(:disabled) {
  background: #333333;
}

/* line 160, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
.geographical-area-search .search-form .search-input-container .validate-button:disabled {
  background: #CCCCCC;
  cursor: not-allowed;
}

@media (max-width: 767px) {
  /* line 137, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
  .geographical-area-search .search-form .search-input-container .validate-button {
    align-self: stretch;
    justify-content: center;
  }
}

/* line 173, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
.geographical-area-search .search-results {
  display: none;
  flex-direction: column;
  min-width: 0;
  background: #fff;
  box-shadow: 0px 8px 32px 0px rgba(0, 0, 0, 0.13);
  border-radius: 16px;
  padding: 8px 0;
  transition: height 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  right: 0;
  width: auto;
  z-index: 10;
  box-sizing: border-box;
}

@media (max-width: 767px) {
  /* line 173, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
  .geographical-area-search .search-results {
    left: 0;
    right: 0;
    min-width: 0;
    width: 100%;
    max-width: none;
  }
}

/* line 199, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
.geographical-area-search .search-results:not(:empty) {
  display: flex;
}

/* line 203, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
.geographical-area-search .search-results .search-result-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 16px 24px;
  background: transparent;
  border-radius: 12px;
  cursor: pointer;
  transition: background 0.2s, border 0.2s;
}

/* line 213, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
.geographical-area-search .search-results .search-result-item:hover {
  background: #F5F7FB;
}

/* line 217, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
.geographical-area-search .search-results .search-result-item.selected {
  background: #E8F4FD;
  border: 1px solid #2196F3;
}

/* line 222, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
.geographical-area-search .search-results .search-result-item .result-icon {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  background: #F5F7FB;
  border-radius: 8px;
  flex-shrink: 0;
}

/* line 231, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
.geographical-area-search .search-results .search-result-item .result-icon svg {
  width: 20px;
  height: 20px;
  color: #000000;
}

/* line 238, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
.geographical-area-search .search-results .search-result-item .result-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  flex: 1;
}

/* line 246, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
.geographical-area-search .search-results .search-result-item .result-content .result-name {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 15px;
  line-height: 1.33em;
  letter-spacing: 1.33%;
  color: #000000;
  margin: 0;
}

/* line 256, app/assets/stylesheets/frontend/cart/geographical_area_search_component.scss */
.geographical-area-search .search-results .search-result-item .result-content .result-description {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.33em;
  letter-spacing: 1.67%;
  color: #666666;
  margin: 0;
}

/* line 1, app/assets/stylesheets/frontend/cart/sector_confirmation_component.scss */
.sector-confirmation {
  background-color: #F5F7FB;
  border-radius: 16px;
  padding: 24px;
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 28px;
  width: 100%;
  max-width: 1024px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 767px) {
  /* line 1, app/assets/stylesheets/frontend/cart/sector_confirmation_component.scss */
  .sector-confirmation {
    flex-direction: column;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    margin-bottom: 24px;
  }
}

/* line 23, app/assets/stylesheets/frontend/cart/sector_confirmation_component.scss */
.sector-confirmation .sector-info {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

/* line 29, app/assets/stylesheets/frontend/cart/sector_confirmation_component.scss */
.sector-confirmation .sector-info .sector-title {
  color: #000000;
  font-family: 'Encode Sans', sans-serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.25em;
  margin: 0;
}

@media (max-width: 767px) {
  /* line 29, app/assets/stylesheets/frontend/cart/sector_confirmation_component.scss */
  .sector-confirmation .sector-info .sector-title {
    font-size: 15px;
  }
}

/* line 42, app/assets/stylesheets/frontend/cart/sector_confirmation_component.scss */
.sector-confirmation .sector-info .sector-name {
  color: #000000;
  font-family: 'Encode Sans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.25em;
  margin: 0;
}

@media (max-width: 767px) {
  /* line 42, app/assets/stylesheets/frontend/cart/sector_confirmation_component.scss */
  .sector-confirmation .sector-info .sector-name {
    font-size: 18px;
  }
}

/* line 56, app/assets/stylesheets/frontend/cart/sector_confirmation_component.scss */
.sector-confirmation .btn-change-sector {
  background: transparent;
  border: 1px solid #727272;
  border-radius: 100px;
  padding: 14px 24px;
  color: #000000;
  font-family: 'Encode Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25em;
  display: flex;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  white-space: nowrap;
  text-decoration: none;
}

@media (max-width: 767px) {
  /* line 56, app/assets/stylesheets/frontend/cart/sector_confirmation_component.scss */
  .sector-confirmation .btn-change-sector {
    align-self: stretch;
    justify-content: center;
  }
}

/* line 79, app/assets/stylesheets/frontend/cart/sector_confirmation_component.scss */
.sector-confirmation .btn-change-sector svg {
  width: 24px;
  height: 24px;
  color: #1C274C;
  transition: color 0.2s ease-in-out;
}

/* line 86, app/assets/stylesheets/frontend/cart/sector_confirmation_component.scss */
.sector-confirmation .btn-change-sector:hover {
  background-color: rgba(0, 0, 0, 0.05);
  border-color: #000000;
  color: #000000;
  text-decoration: none;
}

/* line 92, app/assets/stylesheets/frontend/cart/sector_confirmation_component.scss */
.sector-confirmation .btn-change-sector:hover svg {
  color: #000000;
}

/* line 97, app/assets/stylesheets/frontend/cart/sector_confirmation_component.scss */
.sector-confirmation .btn-change-sector:active {
  background-color: rgba(0, 0, 0, 0.1);
}

/* Selected formula summary overrides and responsiveness */
/* line 104, app/assets/stylesheets/frontend/cart/sector_confirmation_component.scss */
.selected-formula-summary {
  align-items: center;
  gap: 16px;
}

/* line 108, app/assets/stylesheets/frontend/cart/sector_confirmation_component.scss */
.selected-formula-summary .selected-formula-image {
  flex: 0 0 168px;
  width: 168px;
  height: 168px;
  background-size: cover;
  background-position: center;
}

/* line 116, app/assets/stylesheets/frontend/cart/sector_confirmation_component.scss */
.selected-formula-summary .selected-formula-body {
  min-width: 0;
}

/* line 120, app/assets/stylesheets/frontend/cart/sector_confirmation_component.scss */
.selected-formula-summary .formula-action {
  flex: 0 0 auto;
}

@media (max-width: 767px) {
  /* line 104, app/assets/stylesheets/frontend/cart/sector_confirmation_component.scss */
  .selected-formula-summary {
    flex-direction: column;
    align-items: stretch;
    text-align: left;
    padding: 16px;
  }
  /* line 130, app/assets/stylesheets/frontend/cart/sector_confirmation_component.scss */
  .selected-formula-summary .selected-formula-image {
    width: 100%;
    height: 160px;
    border-radius: 12px;
    margin-bottom: 12px;
    background-size: cover;
  }
  /* line 138, app/assets/stylesheets/frontend/cart/sector_confirmation_component.scss */
  .selected-formula-summary .selected-formula-body {
    order: 2;
    margin-bottom: 12px;
  }
  /* line 143, app/assets/stylesheets/frontend/cart/sector_confirmation_component.scss */
  .selected-formula-summary .formula-action {
    order: 3;
  }
  /* line 146, app/assets/stylesheets/frontend/cart/sector_confirmation_component.scss */
  .selected-formula-summary .formula-action .btn-change-sector {
    display: flex;
    width: 100%;
    justify-content: center;
    padding: 12px 16px;
  }
}

@media (min-width: 768px) and (max-width: 991.98px) {
  /* line 156, app/assets/stylesheets/frontend/cart/sector_confirmation_component.scss */
  .selected-formula-summary .selected-formula-image {
    flex: 0 0 140px;
    width: 140px;
    height: 140px;
  }
}

/* line 1, app/assets/stylesheets/frontend/cart/selected_formula_summary_component.scss */
.btn-formula--change {
  background: #fff;
  color: #fff;
  border: 1.5px solid #1C274C;
  border-radius: 100px;
  padding: 12px 32px;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: box-shadow 0.2s, border-color 0.2s;
}

/* line 14, app/assets/stylesheets/frontend/cart/selected_formula_summary_component.scss */
.btn-formula--change:hover {
  box-shadow: 0 2px 8px rgba(28, 39, 76, 0.08);
  border-color: #009FE3;
  color: #009FE3;
}

/* line 19, app/assets/stylesheets/frontend/cart/selected_formula_summary_component.scss */
.btn-arrow {
  margin-left: 8px;
  width: 16px;
  height: 16px;
}

/* line 8, app/assets/stylesheets/frontend/cart.scss */
.promocode-banner {
  border-radius: 16px;
  background: #f6f3ff;
  border: 1px solid rgba(31, 15, 61, 0.12);
  padding: 16px 20px;
  color: #1f0f3d;
}

/* line 15, app/assets/stylesheets/frontend/cart.scss */
.promocode-banner__code {
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* line 21, app/assets/stylesheets/frontend/cart.scss */
.promocode-banner__description {
  margin: 8px 0 0;
}

/* line 25, app/assets/stylesheets/frontend/cart.scss */
.promocode-banner__helper {
  margin: 8px 0 0;
  font-size: 0.9rem;
  color: #5c4c74;
}

/* line 32, app/assets/stylesheets/frontend/cart.scss */
.cart-show-page {
  font-family: 'Encode Sans', sans-serif;
}

/* line 36, app/assets/stylesheets/frontend/cart.scss */
.cart-show-page__header-container {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 48px 32px 16px 32px;
  width: 100%;
}

/* line 47, app/assets/stylesheets/frontend/cart.scss */
.cart-show-page .header-actions {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
}

/* line 54, app/assets/stylesheets/frontend/cart.scss */
.cart-show-page__back-wrap {
  display: flex;
  gap: 16px;
  align-items: center;
  width: 220px;
}

/* line 61, app/assets/stylesheets/frontend/cart.scss */
.cart-show-page__back-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
}

/* line 68, app/assets/stylesheets/frontend/cart.scss */
.cart-show-page__back-icon {
  overflow: hidden;
  width: 39px;
  height: 39px;
}

/* line 74, app/assets/stylesheets/frontend/cart.scss */
.cart-show-page__back-icon img {
  width: 39px;
  height: 39px;
  display: block;
}

/* line 80, app/assets/stylesheets/frontend/cart.scss */
.cart-show-page__title-section .title {
  font-size: 1.5rem;
  font-weight: 700;
}

/* line 85, app/assets/stylesheets/frontend/cart.scss */
.cart-show-page__main {
  display: flex;
  gap: 24px;
  padding: 0 32px 48px 32px;
}

/* line 91, app/assets/stylesheets/frontend/cart.scss */
.cart-show-page__left {
  flex: 1 1 auto;
}

/* line 95, app/assets/stylesheets/frontend/cart.scss */
.cart-summary {
  width: 360px;
  max-width: 100%;
}

/* line 100, app/assets/stylesheets/frontend/cart.scss */
.cart-summary__helper {
  font-size: 0.85rem;
  color: #5c4c74;
  margin: 4px 0 12px;
}

/* line 106, app/assets/stylesheets/frontend/cart.scss */
.cart-summary__remove-promocode {
  border: none;
  background: transparent;
  color: #000;
  font-size: 1rem;
  line-height: 1;
  padding: 0;
  margin-left: 4px;
  cursor: pointer;
}

/* Validation popup styles */
/* line 118, app/assets/stylesheets/frontend/cart.scss */
.validation-popup-backdrop {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1200;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* line 130, app/assets/stylesheets/frontend/cart.scss */
.validation-popup {
  background: #fff;
  border-radius: 16px;
  padding: 32px;
  max-width: 500px;
  width: 90%;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}

/* line 139, app/assets/stylesheets/frontend/cart.scss */
.validation-popup__title {
  margin: 0 0 16px 0;
  font-size: 22px;
  font-weight: 600;
}

/* line 145, app/assets/stylesheets/frontend/cart.scss */
.validation-popup__message {
  margin: 0 0 24px 0;
  font-size: 16px;
  color: #727272;
}

/* line 151, app/assets/stylesheets/frontend/cart.scss */
.validation-popup__actions {
  display: flex;
  gap: 12px;
  justify-content: flex-end;
}

/* line 157, app/assets/stylesheets/frontend/cart.scss */
.validation-popup__cancel {
  background: #fff;
  border: 1px solid #727272;
  border-radius: 100px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

/* line 167, app/assets/stylesheets/frontend/cart.scss */
.validation-popup__confirm {
  background: #DC2626;
  color: #fff;
  border: none;
  border-radius: 100px;
  padding: 12px 24px;
  font-weight: 600;
  font-size: 16px;
  cursor: pointer;
}

/* line 178, app/assets/stylesheets/frontend/cart.scss */
.is-visible[data-validation-popup-backdrop] {
  display: flex !important;
}

/* line 1, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  padding: 20px;
}

/* line 15, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-modal {
  width: 100%;
  max-width: 820px;
  background: #FFFFFF;
  border-radius: 16px;
  border: 1px solid #EBEBEB;
  box-sizing: border-box;
  max-height: 90vh;
  overflow-y: auto;
  padding: 30px;
}

/* line 27, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-container {
  padding: 64px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* line 34, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

/* line 41, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-title {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 22px;
  line-height: normal;
  color: #000000;
  margin: 0;
  white-space: nowrap;
}

/* line 51, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-close {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 64, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-close:hover {
  opacity: 0.7;
}

/* line 68, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-close svg {
  width: 24px;
  height: 24px;
  color: #000000;
}

/* line 74, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-divider {
  width: 100%;
  height: 1px;
  background: #EBEBEB;
  flex-shrink: 0;
}

/* line 81, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-vertical-divider {
  width: 1px;
  align-self: stretch;
  background: #EBEBEB;
  flex-shrink: 0;
}

/* line 88, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-content {
  display: flex;
  flex-direction: row;
  gap: 48px;
  width: 100%;
  align-items: flex-start;
}

/* line 96, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-content.inline-center {
  justify-content: center;
}

/* line 100, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
  min-width: 0;
}

/* line 109, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-form-title {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: normal;
  color: #000000;
  margin: 0;
  width: 100%;
}

/* line 119, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-form-input-wrapper {
  display: flex;
  flex-direction: column;
  gap: 12px;
  width: 100%;
}

/* line 126, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-form-label {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  color: #000000;
  padding: 0 8px;
}

/* line 135, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-form-input-group {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  height: 52px;
  border: 1px solid #727272;
  border-radius: 32px;
  box-sizing: border-box;
  background: #FFFFFF;
}

/* line 147, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-form-input-group:focus-within {
  border-color: #000000;
}

/* line 151, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-form-input-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #000000;
}

/* line 158, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-form-input {
  flex: 1;
  border: none;
  outline: none;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  color: #000000;
  background: transparent;
  min-width: 0;
}

/* line 171, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-form-input::placeholder {
  color: #000000;
  opacity: 1;
}

/* line 176, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-password-toggle {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

/* line 189, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-password-toggle:hover {
  opacity: 0.7;
}

/* line 193, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-password-toggle svg {
  width: 24px;
  height: 24px;
  color: #000000;
}

/* line 199, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-forgot-password {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  color: #000000;
  text-decoration: underline;
  text-align: right;
  width: 100%;
}

/* line 210, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-forgot-password:hover {
  opacity: 0.7;
}

/* line 214, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-primary-button {
  background: #000000;
  border: none;
  border-radius: 100px;
  padding: 16px 28px;
  display: block;
  width: 100%;
  text-align: center;
  cursor: pointer;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 16px;
  line-height: normal;
  color: #FFFFFF;
  white-space: nowrap;
}

/* line 231, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-primary-button:hover {
  background: #333333;
}

/* line 235, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-primary-button:active {
  background: #000000;
}

/* line 239, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-error {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: normal;
  color: #DC2626;
  padding: 12px;
  background: #FEE2E2;
  border-radius: 8px;
}

/* line 250, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-register {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: stretch;
  min-width: 0;
  max-width: 360px;
  margin-left: auto;
}

/* line 261, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-register-title {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: normal;
  color: #000000;
  margin: 0;
  width: 100%;
}

/* line 271, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-register-text {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 24px;
  color: #000000;
  margin: 0;
}

/* line 280, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-social {
  display: flex;
  flex-direction: column;
  padding: 5px;
  gap: 20px;
  align-items: center;
  width: 100%;
  padding-bottom: 8px;
}

/* line 289, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-social-title {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: normal;
  color: #000000;
  text-align: center;
}

/* line 298, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-social-list {
  display: flex;
  gap: 16px;
  align-items: center;
  justify-content: center;
}

/* line 305, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-social-button {
  width: 68px;
  height: 53.318px;
  background: #FFFFFF;
  border: none;
  border-radius: 8px;
  box-shadow: 0px 0px 1px 0px rgba(12, 26, 75, 0.2), 0px 1px 3px 0px rgba(50, 50, 71, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}

/* line 319, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-social-button:hover {
  transform: translateY(-2px);
  box-shadow: 0px 2px 4px 0px rgba(12, 26, 75, 0.3), 0px 3px 6px 0px rgba(50, 50, 71, 0.15);
}

/* line 324, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-social-button svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* line 330, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-social-facebook-text {
  font-family: 'Inter', sans-serif;
  font-weight: 700;
  font-size: 40px;
  line-height: normal;
  color: #3B5999;
}

@media (max-width: 768px) {
  /* line 339, app/assets/stylesheets/frontend/account/account_identification.scss */
  .account-identification-container {
    padding: 40px;
    gap: 24px;
  }
  /* line 343, app/assets/stylesheets/frontend/account/account_identification.scss */
  .account-identification-content {
    flex-direction: column;
    gap: 24px;
  }
  /* line 347, app/assets/stylesheets/frontend/account/account_identification.scss */
  .account-identification-vertical-divider {
    display: none;
  }
  /* line 350, app/assets/stylesheets/frontend/account/account_identification.scss */
  .account-identification-title {
    font-size: 20px;
  }
  /* line 353, app/assets/stylesheets/frontend/account/account_identification.scss */
  .account-identification-form-title,
.account-identification-register-title,
.account-identification-social-title {
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  /* line 361, app/assets/stylesheets/frontend/account/account_identification.scss */
  .account-identification-container {
    padding: 24px;
    gap: 16px;
  }
  /* line 365, app/assets/stylesheets/frontend/account/account_identification.scss */
  .account-identification-title {
    font-size: 18px;
  }
  /* line 368, app/assets/stylesheets/frontend/account/account_identification.scss */
  .account-identification-primary-button {
    padding: 12px 20px;
    font-size: 14px;
  }
}

@media (min-width: 769px) {
  /* line 375, app/assets/stylesheets/frontend/account/account_identification.scss */
  .inline-register-form {
    align-items: start;
  }
  /* line 379, app/assets/stylesheets/frontend/account/account_identification.scss */
  .inline-register-form .account-identification-form-input-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 70px;
  }
  /* line 386, app/assets/stylesheets/frontend/account/account_identification.scss */
  .inline-register-form .account-identification-form-checkbox {
    display: inline-flex;
    align-items: center;
    height: 52px;
    padding: 0 18px;
    border-radius: 28px;
  }
  /* line 394, app/assets/stylesheets/frontend/account/account_identification.scss */
  .inline-register-form .account-identification-checkbox-label {
    display: inline-block;
    vertical-align: middle;
    margin-left: 12px;
  }
  /* line 400, app/assets/stylesheets/frontend/account/account_identification.scss */
  .inline-register-form .inline-checkbox-wrapper .account-identification-form-input-group {
    margin-top: 26px;
  }
  /* line 404, app/assets/stylesheets/frontend/account/account_identification.scss */
  .inline-register-form .inline-checkbox-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    height: 20px;
  }
  /* line 411, app/assets/stylesheets/frontend/account/account_identification.scss */
  .inline-register-form .inline-checkbox-input {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    cursor: pointer;
    margin: 0;
  }
  /* line 419, app/assets/stylesheets/frontend/account/account_identification.scss */
  .inline-register-form .inline-checkbox-text {
    font-family: 'Encode Sans', sans-serif;
    font-weight: 500;
    font-size: 14px;
    line-height: normal;
    color: #000000;
    cursor: pointer;
    flex: 1;
  }
  /* line 429, app/assets/stylesheets/frontend/account/account_identification.scss */
  .inline-register-form .inline-checkbox-required {
    color: #E00000;
    margin-left: 2px;
  }
  /* line 434, app/assets/stylesheets/frontend/account/account_identification.scss */
  .inline-register-form .inline-register-separator {
    width: 100%;
    height: 1px;
    margin: 12px 0;
  }
}

/* line 441, app/assets/stylesheets/frontend/account/account_identification.scss */
.inline-register-panel {
  flex-direction: column;
  gap: 24px;
  width: 100%;
  padding: 0;
  opacity: 0;
  transform: translateY(-20px);
  transition: all 0.3s ease;
  align-items: center;
}

/* line 452, app/assets/stylesheets/frontend/account/account_identification.scss */
.inline-register-panel.is-open {
  opacity: 1;
  transform: translateY(0);
}

/* line 457, app/assets/stylesheets/frontend/account/account_identification.scss */
.inline-register-back-btn {
  background: none;
  border: none;
  padding: 8px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: normal;
  color: #000000;
  align-self: flex-start;
}

/* line 473, app/assets/stylesheets/frontend/account/account_identification.scss */
.inline-register-back-btn:hover {
  opacity: 0.7;
}

/* line 477, app/assets/stylesheets/frontend/account/account_identification.scss */
.inline-register-back-btn svg {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* line 483, app/assets/stylesheets/frontend/account/account_identification.scss */
.inline-register-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  max-width: 720px;
  box-sizing: border-box;
  margin: 0 auto;
}

/* line 493, app/assets/stylesheets/frontend/account/account_identification.scss */
.inline-register-title {
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  font-size: 17px;
  line-height: normal;
  color: #000000;
  margin: 0 0 8px 0;
  width: 100%;
}

/* line 503, app/assets/stylesheets/frontend/account/account_identification.scss */
.account-identification-form-select-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  color: #000000;
  pointer-events: none;
}

/* line 511, app/assets/stylesheets/frontend/account/account_identification.scss */
.inline-hidden {
  display: none !important;
}

@media (min-width: 769px) {
  /* Desktop: 3 columns (wide screens) */
  /* line 517, app/assets/stylesheets/frontend/account/account_identification.scss */
  .inline-register-form {
    display: grid;
    grid-template-columns: minmax(220px, 1fr) minmax(220px, 1fr) 2fr;
    gap: 16px;
    column-gap: 24px;
  }
  /* line 524, app/assets/stylesheets/frontend/account/account_identification.scss */
  .inline-register-form .inline-checkbox-row,
.inline-register-form .inline-register-separator {
    grid-column: 1 / -1;
  }
  /* line 529, app/assets/stylesheets/frontend/account/account_identification.scss */
  .inline-register-form .account-identification-primary-button {
    grid-column: 1 / -1;
    margin-top: 8px;
  }
}

/* Tablet: use two columns between 769px and 1024px for better readability */
@media (min-width: 769px) and (max-width: 1024px) {
  /* line 537, app/assets/stylesheets/frontend/account/account_identification.scss */
  .inline-register-form {
    display: grid;
    grid-template-columns: repeat(2, minmax(160px, 1fr));
    gap: 14px;
    column-gap: 18px;
  }
  /* Make sure separators, checkboxes and submit button span full width */
  /* line 545, app/assets/stylesheets/frontend/account/account_identification.scss */
  .inline-register-form .inline-checkbox-row,
.inline-register-form .inline-register-separator,
.inline-register-form .account-identification-primary-button {
    grid-column: 1 / -1;
  }
}

/* Tweak input paddings for smaller screens */
@media (max-width: 768px) {
  /* line 554, app/assets/stylesheets/frontend/account/account_identification.scss */
  .inline-register-form .account-identification-form-input-group {
    padding: 12px 14px;
    height: 48px;
    gap: 12px;
  }
}

@media (max-width: 480px) {
  /* line 562, app/assets/stylesheets/frontend/account/account_identification.scss */
  .inline-register-form .account-identification-form-input-group {
    padding: 10px 12px;
    height: 44px;
    gap: 10px;
  }
  /* Reduce container padding to give more room for content on very small screens */
  /* line 569, app/assets/stylesheets/frontend/account/account_identification.scss */
  .account-identification-container {
    padding: 16px;
    gap: 12px;
  }
  /* line 574, app/assets/stylesheets/frontend/account/account_identification.scss */
  .account-identification-modal {
    padding: 18px;
    max-width: 96%;
  }
}

/* line 581, app/assets/stylesheets/frontend/account/account_identification.scss */
.inline-register-form .account-identification-form-input-group {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 18px 20px;
  height: 52px;
  border-radius: 32px;
  box-sizing: border-box;
  width: 100%;
}

/* line 592, app/assets/stylesheets/frontend/account/account_identification.scss */
.inline-register-form .account-identification-form-input {
  flex: 1 1 auto;
  min-width: 0;
}

/* line 597, app/assets/stylesheets/frontend/account/account_identification.scss */
.inline-register-form select.account-identification-form-input,
.inline-register-form input.account-identification-form-input[type="date"] {
  -webkit-appearance: none;
  appearance: none;
}

/* Account page layout */
/* line 2, app/assets/stylesheets/frontend/account/_side_nav.scss */
.account-page {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 24px 0;
}

/* line 9, app/assets/stylesheets/frontend/account/_side_nav.scss */
.account-page__header {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 16px;
}

/* line 18, app/assets/stylesheets/frontend/account/_side_nav.scss */
.account-page__title {
  font-family: 'Encode Sans', sans-serif;
  font-size: 37px;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
}

/* line 26, app/assets/stylesheets/frontend/account/_side_nav.scss */
.account-page__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* line 32, app/assets/stylesheets/frontend/account/_side_nav.scss */
.account-page__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
  background-color: transparent;
}

/* line 39, app/assets/stylesheets/frontend/account/_side_nav.scss */
.account-page__content > * {
  width: 100%;
}

/* line 43, app/assets/stylesheets/frontend/account/_side_nav.scss */
.account-page__placeholder {
  background-color: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.13);
  padding: 24px;
}

@media (min-width: 992px) {
  /* line 52, app/assets/stylesheets/frontend/account/_side_nav.scss */
  .account-page__header {
    padding: 0;
  }
  /* line 56, app/assets/stylesheets/frontend/account/_side_nav.scss */
  .account-page__body {
    display: grid;
    gap: 24px;
    width: 100%;
    grid-template-columns: 320px 1fr;
    align-items: flex-start;
  }
}

/* Styles for the account side navigation and layout */
@media (min-width: 992px) {
  /* line 68, app/assets/stylesheets/frontend/account/_side_nav.scss */
  .account-page {
    grid-template-columns: 320px 1fr;
    align-items: flex-start;
  }
}

/* line 77, app/assets/stylesheets/frontend/account/_side_nav.scss */
.account-menu {
  background-color: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.13);
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* line 88, app/assets/stylesheets/frontend/account/_side_nav.scss */
.account-menu__mobile {
  display: none;
}

/* line 92, app/assets/stylesheets/frontend/account/_side_nav.scss */
.account-menu__mobile-toggle {
  align-items: center;
  background-color: #000000;
  border: none;
  border-radius: 8px;
  color: #ffffff;
  cursor: pointer;
  display: flex;
  font-family: 'Encode Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  justify-content: space-between;
  line-height: 1.25;
  padding: 16px;
  width: 100%;
}

/* line 109, app/assets/stylesheets/frontend/account/_side_nav.scss */
.account-menu__mobile-toggle:focus {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

/* line 114, app/assets/stylesheets/frontend/account/_side_nav.scss */
.account-menu__mobile-label {
  text-align: left;
}

/* line 118, app/assets/stylesheets/frontend/account/_side_nav.scss */
.account-menu__mobile-icon {
  font-size: 14px;
  line-height: 1;
  transition: transform 0.2s ease;
}

/* line 124, app/assets/stylesheets/frontend/account/_side_nav.scss */
.account-menu.account-menu--open .account-menu__mobile-icon {
  transform: rotate(180deg);
}

/* line 128, app/assets/stylesheets/frontend/account/_side_nav.scss */
.account-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 137, app/assets/stylesheets/frontend/account/_side_nav.scss */
.account-menu__item {
  border-radius: 8px;
}

/* line 141, app/assets/stylesheets/frontend/account/_side_nav.scss */
.account-menu__link {
  align-items: center;
  border-radius: 8px;
  color: #000000;
  display: flex;
  justify-content: space-between;
  padding: 16px;
  text-decoration: none;
  font-family: 'Encode Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.25;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* line 156, app/assets/stylesheets/frontend/account/_side_nav.scss */
.account-menu__link:hover,
.account-menu__link:focus {
  background-color: #f5f7fb;
  color: #000000;
}

/* line 162, app/assets/stylesheets/frontend/account/_side_nav.scss */
.account-menu__link--active {
  background-color: #000000;
  color: #ffffff;
}

/* line 167, app/assets/stylesheets/frontend/account/_side_nav.scss */
.account-menu__chevron {
  font-size: 18px;
  line-height: 1;
}

/* line 172, app/assets/stylesheets/frontend/account/_side_nav.scss */
.account-menu__link--active .account-menu__chevron {
  color: #ffffff;
}

/* line 177, app/assets/stylesheets/frontend/account/_side_nav.scss */
.account-menu__logout {
  display: none;
}

/* line 181, app/assets/stylesheets/frontend/account/_side_nav.scss */
.account-menu__logout-separator {
  border-top: 1px solid #ebebeb;
  margin: 8px 0 12px;
}

/* line 186, app/assets/stylesheets/frontend/account/_side_nav.scss */
.account-menu__logout-link {
  color: #d90e0e;
  display: flex;
  font-family: 'Encode Sans', sans-serif;
  font-size: 17px;
  font-weight: 600;
  justify-content: space-between;
  text-decoration: none;
}

@media (max-width: 991px) {
  /* line 197, app/assets/stylesheets/frontend/account/_side_nav.scss */
  .account-menu {
    gap: 12px;
    padding: 12px;
  }
  /* line 202, app/assets/stylesheets/frontend/account/_side_nav.scss */
  .account-menu__mobile {
    display: block;
  }
  /* line 206, app/assets/stylesheets/frontend/account/_side_nav.scss */
  .account-menu__list {
    display: none;
  }
  /* line 210, app/assets/stylesheets/frontend/account/_side_nav.scss */
  .account-menu.account-menu--open .account-menu__list {
    display: flex;
  }
  /* line 214, app/assets/stylesheets/frontend/account/_side_nav.scss */
  .account-menu.account-menu--open .account-menu__logout {
    display: block;
    border-radius: 8px;
    padding: 16px;
  }
}

/* line 221, app/assets/stylesheets/frontend/account/_side_nav.scss */
.account-page__logout-desktop {
  display: none;
  margin-top: 24px;
}

/* line 226, app/assets/stylesheets/frontend/account/_side_nav.scss */
.account-page__logout-link {
  color: #d90e0e;
  display: inline-flex;
  font-family: 'Encode Sans', sans-serif;
  font-size: 17px;
  line-height: 24px;
  font-weight: 600;
  gap: 8px;
  text-decoration: none;
  padding-left: 16px;
  padding-right: 16px;
}

/* line 239, app/assets/stylesheets/frontend/account/_side_nav.scss */
.account-page__logout-link::before, .account-menu__logout-link::before {
  display: inline-flex;
  content: url(/assets/frontend/logout_icon-ccbbcf270df22a64a68659cc254fb03818dcf0de962481f318569dd16703bfd0.svg);
}

@media (max-width: 991px) {
  /* line 245, app/assets/stylesheets/frontend/account/_side_nav.scss */
  .account-menu__logout-link {
    display: inline-flex;
    line-height: 24px;
    justify-content: left;
  }
  /* line 249, app/assets/stylesheets/frontend/account/_side_nav.scss */
  ::before {
    margin-right: 8px;
  }
}

@media (min-width: 992px) {
  /* line 255, app/assets/stylesheets/frontend/account/_side_nav.scss */
  .account-page__logout-desktop {
    display: block;
  }
  /* line 259, app/assets/stylesheets/frontend/account/_side_nav.scss */
  .account-menu__logout {
    display: none !important;
  }
}

/* line 2, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding-left: 24px;
  padding-right: 24px;
  gap: 24px;
}

/* line 10, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-card--stacked {
  padding-top: 24px;
  padding-bottom: 24px;
}

/* line 15, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-card__header {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 24px 0px 0;
  border-bottom: 1px solid #ebebeb;
  padding-bottom: 16px;
}

/* line 23, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-card__header::after {
  content: "";
  flex: 1;
}

/* line 29, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-card__title {
  font-family: 'Encode Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  line-height: 1.25;
  margin: 0;
  color: #000000;
  white-space: nowrap;
}

/* line 39, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-card__body {
  padding: 0 0 24px;
}

/* line 44, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* line 49, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-form--stacked {
  gap: 0;
}

/* line 53, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-form__fieldset {
  border: 0;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 62, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-form__legend {
  font-family: 'Encode Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}

/* line 69, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-form__radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

/* line 75, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-form__grid {
  display: grid;
  gap: 16px;
}

/* line 80, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-form__grid--two {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

/* line 84, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-form__grid--mixed {
  grid-template-columns: minmax(220px, 280px) minmax(220px, 1fr);
}

/* line 88, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-form__field {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 94, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-form__label {
  font-family: 'Encode Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}

/* line 101, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-form__hint {
  font-family: 'Encode Sans', sans-serif;
  font-size: 12px;
  font-weight: 500;
  color: #727272;
  margin: 0;
  padding-left: 16px;
}

/* line 111, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-form__stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* line 117, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-form__actions {
  display: flex;
  justify-content: flex-end;
  padding: 0 24px 24px;
}

/* line 122, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-form__actions--detached {
  margin-top: 24px;
}

/* line 127, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-radio {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-family: 'Encode Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  cursor: pointer;
}

/* line 138, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-radio__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* line 144, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-radio__custom {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border: 1px solid #727272;
  border-radius: 50%;
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* line 156, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-radio__label {
  line-height: 1.25;
}

/* line 160, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-radio__input:focus-visible + .account-radio__custom {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

/* line 165, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-radio__input:checked + .account-radio__custom {
  border-color: #000000;
}

/* line 168, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-radio__input:checked + .account-radio__custom::after {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #000000;
}

/* line 178, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-checkbox {
  position: relative;
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: 'Encode Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  cursor: pointer;
}

/* line 189, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-checkbox__input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* line 195, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-checkbox__custom {
  width: 20px;
  height: 20px;
  border: 1px solid #727272;
  border-radius: 6px;
  background-color: #ffffff;
  background-image: url(/assets/frontend/account/checkbox-default-2e827e46e458cb1926dc3b806d2993b8433d87b4d8d3598bb4550a3234bcfb3c.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

/* line 210, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-checkbox__custom::after {
  content: '';
  width: 6px;
  height: 10px;
  border-right: 2px solid #ffffff;
  border-bottom: 2px solid #ffffff;
  transform: rotate(45deg);
  opacity: 0;
  transition: opacity 0.2s ease;
}

/* line 222, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-checkbox__label {
  line-height: 1.4;
}

/* line 226, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-checkbox__input:focus-visible + .account-checkbox__custom {
  outline: 2px solid #000000;
  outline-offset: 2px;
}

/* line 231, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-checkbox__input:checked + .account-checkbox__custom {
  border-color: #000000;
  background-color: #000000;
  background-image: none;
}

/* line 236, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-checkbox__input:checked + .account-checkbox__custom::after {
  opacity: 1;
}

/* line 241, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-checkbox--required .account-checkbox__label {
  font-weight: 600;
}

/* line 246, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-input {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 16px;
  min-height: 50px;
  border: 1px solid #727272;
  border-radius: 32px;
  background-color: #ffffff;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

/* line 257, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-input:focus-within {
  border-color: #000000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

/* line 262, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-input--with-icon {
  padding-left: 12px;
}

/* line 266, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-input--with-suffix {
  padding-right: 12px;
}

/* line 270, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-input--disabled {
  background-color: #f5f7fb;
}

/* line 274, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-input__icon, .account-input__suffix {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* line 281, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-input__suffix {
  margin-left: auto;
  pointer-events: none;
}

/* line 286, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-input__field {
  flex: 1;
  border: none;
  background: transparent;
  font-family: 'Encode Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1c274c;
  padding: 0;
  height: 100%;
}

/* line 297, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-input__field:focus {
  outline: none;
}

/* line 301, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-input__field::placeholder {
  color: #727272;
  opacity: 1;
}

/* line 306, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-input__field:disabled {
  color: #727272;
  cursor: not-allowed;
}

/* line 312, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-input__field--date {
  position: relative;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding-right: 32px;
}

/* line 319, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-input__field--date::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
}

/* line 332, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-form__field--with-hint {
  gap: 8px;
}

/* line 336, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* line 341, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__form {
  display: none;
}

/* line 343, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__form.is-visible {
  display: block;
}

/* line 349, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-card--addresses {
  position: relative;
}

/* line 352, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-card--addresses.is-loading {
  opacity: 0.6;
  pointer-events: none;
}

/* line 358, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-card--addresses.is-editing .account-addresses__controls,
.account-card--addresses.is-editing .account-addresses__preview,
.account-card--addresses.is-editing .account-addresses__actions,
.account-card--addresses.is-editing [data-address-empty] {
  display: none;
}

/* line 367, app/assets/stylesheets/frontend/account/user_informations.scss */
[data-address-empty][data-hidden='true'] {
  display: none;
}

/* line 371, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__controls {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 377, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__controls-row {
  display: flex;
  gap: 12px;
  align-items: center;
  flex-wrap: wrap;
}

/* line 384, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__label {
  font-family: 'Encode Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #000000;
}

/* line 391, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__select-wrapper {
  position: relative;
  flex: 1;
  min-width: 220px;
}

/* line 397, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__select {
  width: 100%;
  border: 1px solid #727272;
  border-radius: 32px;
  height: 50px;
  padding: 0 48px 0 16px;
  font-family: 'Encode Sans', sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #000000;
  background-color: #ffffff;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  line-height: 1.25;
}

/* line 413, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__select:focus {
  outline: none;
  border-color: #000000;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.08);
}

/* line 420, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__select-chevron {
  position: absolute;
  inset: 0 16px 0 auto;
  width: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
}

/* line 429, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__select-chevron::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid #1c274c;
}

/* line 440, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__preview {
  border: 1px solid #ebebeb;
  border-radius: 16px;
  padding: 16px;
  background-color: #f5f7fb;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 450, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__name {
  font-family: 'Encode Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #000000;
}

/* line 457, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__details {
  font-family: 'Encode Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #1c274c;
}

/* line 463, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__details p {
  margin: 0;
  line-height: 1.5;
}

/* line 469, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

/* line 476, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: 'Encode Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

/* line 489, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__button--secondary {
  background-color: #ffffff;
  border-color: #1c274c;
  color: #1c274c;
}

/* line 494, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__button--secondary:hover, .account-addresses__button--secondary:focus-visible {
  background-color: #f5f7fb;
}

/* line 500, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__button--ghost {
  background: none;
  border-color: transparent;
  color: #1c274c;
}

/* line 505, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__button--ghost:hover, .account-addresses__button--ghost:focus-visible {
  text-decoration: underline;
}

/* line 511, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__button--add {
  background-color: #ffffff;
  border-color: #727272;
  color: #000000;
  gap: 8px;
  padding: 14px 16px;
  border-radius: 100px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.25;
  min-height: 50px;
}

/* line 523, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__button--add:hover, .account-addresses__button--add:focus-visible {
  border-color: #000000;
  background-color: #f5f7fb;
}

/* line 531, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__empty {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

/* line 538, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__empty-title {
  font-family: 'Encode Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
  color: #000000;
}

/* line 546, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__empty-hint {
  font-family: 'Encode Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #727272;
  margin: 0;
}

/* line 554, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__button-icon {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

/* line 560, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__button-label {
  display: inline-flex;
  align-items: center;
}

/* line 565, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-card--addresses.account-card--addresses-hidden {
  display: none;
}

/* line 569, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__form-content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* line 575, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__form-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

/* line 582, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__form-title {
  font-family: 'Encode Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
  color: #000000;
}

/* line 590, app/assets/stylesheets/frontend/account/user_informations.scss */
.account-addresses__form-footer {
  margin-top: 16px;
  display: flex;
  justify-content: flex-end;
  gap: 12px;
}

@media (max-width: 767px) {
  /* line 599, app/assets/stylesheets/frontend/account/user_informations.scss */
  .account-card__title {
    white-space: normal;
  }
  /* line 605, app/assets/stylesheets/frontend/account/user_informations.scss */
  .account-form__grid--mixed {
    grid-template-columns: 1fr;
  }
  /* line 609, app/assets/stylesheets/frontend/account/user_informations.scss */
  .account-form__radio-group {
    gap: 16px 24px;
  }
}

/* line 2, app/assets/stylesheets/frontend/account/password.scss */
.account-card--password {
  gap: 0;
}

/* line 5, app/assets/stylesheets/frontend/account/password.scss */
.account-card--password .account-card__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding-bottom: 0;
}

/* line 13, app/assets/stylesheets/frontend/account/password.scss */
.account-password__notice {
  display: flex;
  align-items: center;
  padding: 16px;
  border-radius: 12px;
  background-color: #F5F7FB;
  color: #1c274c;
}

/* line 21, app/assets/stylesheets/frontend/account/password.scss */
.account-password__notice-text {
  margin: 0;
  font-family: 'Encode Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
}

/* line 29, app/assets/stylesheets/frontend/account/password.scss */
.account-password__form {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* line 35, app/assets/stylesheets/frontend/account/password.scss */
.account-password__fields {
  gap: 32px;
}

/* line 39, app/assets/stylesheets/frontend/account/password.scss */
.account-password__field {
  gap: 16px;
}

/* line 43, app/assets/stylesheets/frontend/account/password.scss */
.account-password__input {
  position: relative;
  padding-right: 56px;
}

/* line 48, app/assets/stylesheets/frontend/account/password.scss */
.account-password__toggle {
  position: absolute;
  top: 50%;
  right: 16px;
  transform: translateY(-50%);
  border: none;
  background: none;
  padding: 4px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #727272;
  cursor: pointer;
  transition: color 0.2s ease;
}

/* line 63, app/assets/stylesheets/frontend/account/password.scss */
.account-password__toggle:focus {
  outline: none;
}

/* line 67, app/assets/stylesheets/frontend/account/password.scss */
.account-password__toggle:focus-visible {
  outline: 2px solid #000000;
  outline-offset: 2px;
  border-radius: 50%;
}

/* line 73, app/assets/stylesheets/frontend/account/password.scss */
.account-password__toggle:hover {
  color: #1c274c;
}

/* line 77, app/assets/stylesheets/frontend/account/password.scss */
.account-password__toggle[aria-disabled='true'] {
  cursor: not-allowed;
  color: #C9CED6;
}

/* line 84, app/assets/stylesheets/frontend/account/password.scss */
.account-password__toggle-icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* line 90, app/assets/stylesheets/frontend/account/password.scss */
.account-password__icon {
  width: 24px;
  height: 24px;
  display: block;
}

/* line 96, app/assets/stylesheets/frontend/account/password.scss */
.account-password__icon--eye-off {
  display: none;
}

/* line 100, app/assets/stylesheets/frontend/account/password.scss */
.account-password__toggle[data-password-state='visible'] .account-password__icon--eye {
  display: none;
}

/* line 104, app/assets/stylesheets/frontend/account/password.scss */
.account-password__toggle[data-password-state='visible'] .account-password__icon--eye-off {
  display: block;
}

/* line 108, app/assets/stylesheets/frontend/account/password.scss */
.account-password__requirements {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 12px;
}

/* line 115, app/assets/stylesheets/frontend/account/password.scss */
.account-password__requirements-title {
  font-family: 'Encode Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  margin: 0;
  color: #727272;
}

/* line 123, app/assets/stylesheets/frontend/account/password.scss */
.password-requirements {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 132, app/assets/stylesheets/frontend/account/password.scss */
.password-requirements__item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Encode Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  color: #727272;
}

/* line 141, app/assets/stylesheets/frontend/account/password.scss */
.password-requirements__item[data-state='valid'] {
  color: #1c274c;
}

/* line 146, app/assets/stylesheets/frontend/account/password.scss */
.password-requirements__icon {
  width: 26px;
  height: 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* line 154, app/assets/stylesheets/frontend/account/password.scss */
.password-requirements__icon-check {
  display: none;
}

/* line 158, app/assets/stylesheets/frontend/account/password.scss */
.password-requirements__icon-cross {
  display: block;
}

/* line 162, app/assets/stylesheets/frontend/account/password.scss */
.password-requirements__item[data-state='valid'] .password-requirements__icon-check {
  display: block;
}

/* line 166, app/assets/stylesheets/frontend/account/password.scss */
.password-requirements__item[data-state='valid'] .password-requirements__icon-cross {
  display: none;
}

/* line 170, app/assets/stylesheets/frontend/account/password.scss */
.password-requirements__label {
  flex: 1;
}

/* line 174, app/assets/stylesheets/frontend/account/password.scss */
.account-password__error {
  margin: 0;
  font-family: 'Encode Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #d32f2f;
}

/* line 182, app/assets/stylesheets/frontend/account/password.scss */
.account-password__actions {
  display: flex;
  justify-content: flex-end;
}

/* line 191, app/assets/stylesheets/frontend/account/password.scss */
.account-alert {
  border-radius: 12px;
  padding: 16px;
  font-family: 'Encode Sans', sans-serif;
  font-size: 14px;
  font-weight: 500;
  background-color: rgba(225, 119, 135, 0.15);
  color: #d32f2f;
}

/* line 200, app/assets/stylesheets/frontend/account/password.scss */
.account-alert__message {
  margin: 0 0 8px 0;
}

/* line 204, app/assets/stylesheets/frontend/account/password.scss */
.account-alert__list {
  margin: 0;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

@media (max-width: 767px) {
  /* line 214, app/assets/stylesheets/frontend/account/password.scss */
  .account-password__notice {
    padding: 12px;
  }
  /* line 218, app/assets/stylesheets/frontend/account/password.scss */
  .account-password__input {
    padding-right: 48px;
  }
  /* line 222, app/assets/stylesheets/frontend/account/password.scss */
  .account-password__toggle {
    right: 12px;
  }
}

/* line 1, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__product-list {
  list-style: none;
  margin: 0 0 16px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 10, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__product-row {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr auto;
}

/* line 17, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__product-thumb {
  align-items: center;
  background-color: #f5f7fb;
  border-radius: 12px;
  display: flex;
  height: 60px;
  justify-content: center;
  width: 60px;
}

/* line 27, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__product-thumb-image {
  border-radius: 12px;
  height: 60px;
  object-fit: cover;
  width: 60px;
}

/* line 34, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__product-thumb-image--placeholder {
  background-color: #e0e0e0;
}

/* line 38, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__product-row-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 43, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__product-icon {
  align-items: center;
  background-color: #f5f7fb;
  border-radius: 16px;
  display: flex;
  height: 72px;
  justify-content: center;
  width: 72px;
}

/* line 53, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__items-card {
  background-color: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 62, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* line 68, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

/* line 74, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__tab {
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: 999px;
  color: #000000;
  display: inline-flex;
  font-family: 'Avenir Next', 'Encode Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  gap: 8px;
  padding: 12px 24px;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* line 90, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__tab:hover,
.account-orders__tab:focus {
  background-color: black;
  color: #ffffff;
}

/* line 96, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__tab--active {
  background-color: #000000;
  color: #ffffff;
}

/* line 101, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__tab--active .account-orders__tab-count {
  background-color: rgba(255, 255, 255, 0.16);
  color: #ffffff;
}

/* line 106, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__tab-count {
  background-color: #000000;
  border-radius: 999px;
  color: #ffffff;
  display: inline-flex;
  font-size: 14px;
  font-weight: 600;
  padding: 2px 12px;
}

/* line 116, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* line 122, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__empty {
  background-color: #ffffff;
  border: 1px dashed #d4dbde;
  border-radius: 16px;
  padding: 32px;
  text-align: center;
  font-family: 'Encode Sans', sans-serif;
  font-size: 16px;
  color: #4f4f4f;
}

/* line 133, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__card {
  background-color: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* line 142, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__summary {
  display: grid;
  gap: 16px;
  padding: 16px 16px 0;
  position: relative;
  background-color: #f5f7fb;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

/* line 152, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__summary-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 16px;
}

/* line 159, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__summary-block--actions {
  gap: 8px;
}

/* line 163, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__summary-label {
  color: #6b6b6b;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0;
}

/* line 173, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__summary-value {
  font-family: 'Encode Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

/* line 180, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__status {
  align-self: start;
  border-radius: 999px;
  font-family: 'Encode Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  padding: 6px 14px;
}

/* line 189, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__status--success {
  background-color: rgba(0, 128, 0, 0.12);
  color: #0a8f3c;
}

/* line 194, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__status--warning {
  background-color: rgba(255, 165, 0, 0.16);
  color: #a05a00;
}

/* line 199, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__items {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 16px;
}

/* line 206, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__item-row {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr auto;
}

/* line 213, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__item-media {
  align-items: center;
  background-color: #f5f7fb;
  border-radius: 16px;
  display: flex;
  height: 72px;
  justify-content: center;
  width: 72px;
}

/* line 223, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__item-image {
  border-radius: 16px;
  height: 72px;
  object-fit: cover;
  width: 72px;
}

/* line 230, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__item-image--placeholder {
  background-color: #e0e0e0;
}

/* line 234, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__item-details {
  display: flex;
  flex-direction: row;
  gap: 4px;
}

/* line 240, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__item-qty {
  color: #6b6b6b;
  font-family: 'Encode Sans', sans-serif;
  font-size: 13px;
  margin: 0;
}

/* line 247, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__item-name {
  font-family: 'Encode Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

/* line 254, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__item-price {
  font-family: 'Encode Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
}

/* line 260, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__ticket {
  display: grid;
  gap: 16px;
  padding: 16px;
}

/* line 266, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__ticket-overview {
  align-items: center;
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr;
}

/* line 273, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__ticket-media {
  align-items: center;
  background-color: #f5f7fb;
  border-radius: 16px;
  display: flex;
  height: 72px;
  justify-content: center;
  width: 72px;
}

/* line 283, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__ticket-image {
  border-radius: 16px;
  height: 72px;
  object-fit: cover;
  width: 72px;
}

/* line 290, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__ticket-image--placeholder {
  background-color: #e0e0e0;
}

/* line 294, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__ticket-brand {
  font-family: 'Encode Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* line 301, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__ticket-product,
.account-orders__ticket-quantity {
  color: #4f4f4f;
  font-family: 'Encode Sans', sans-serif;
  font-size: 14px;
  margin: 0;
}

/* line 309, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__ticket-validity,
.account-orders__ticket-price {
  border-radius: 12px;
  padding: 12px 16px;
}

/* line 315, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__details-link {
  color: #000000;
  font-family: 'Encode Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: underline;
}

/* line 323, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__pagination {
  display: flex;
  justify-content: center;
}

/* line 328, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__pagination .pagination {
  margin: 0;
}

/* line 332, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__pagination .page-link {
  border-color: #000000;
  color: #000000;
  font-family: 'Encode Sans', sans-serif;
  font-weight: 600;
  transition: background-color 0.2s ease, color 0.2s ease;
}

/* line 340, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__pagination .page-link:hover,
.account-orders__pagination .page-link:focus {
  background-color: #000000;
  color: #ffffff;
}

/* line 346, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__pagination .page-item.active .page-link {
  background-color: #000000;
  border-color: #000000;
  color: #ffffff;
}

/* line 352, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders__pagination .page-item.disabled .page-link {
  border-color: #d4dbde;
  color: #9f9f9f;
  background-color: #f5f7fb;
}

/* line 358, app/assets/stylesheets/frontend/account/_orders.scss */
body.account-orders-modal-open {
  overflow: hidden;
}

/* line 362, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal[hidden] {
  display: none !important;
}

/* line 366, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal {
  align-items: flex-start;
  display: flex;
  inset: 0;
  justify-content: center;
  padding: 32px 16px;
  position: fixed;
  z-index: 1060;
}

/* line 376, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__backdrop {
  background: rgba(0, 0, 0, 0.6);
  inset: 0;
  position: absolute;
}

/* line 382, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__dialog {
  background-color: #ffffff;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(15, 23, 42, 0.25);
  max-height: calc(100vh - 64px);
  max-width: 720px;
  overflow-y: auto;
  padding: 32px;
  position: relative;
  width: 100%;
  z-index: 1;
}

/* line 395, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__close {
  background: none;
  border: none;
  color: #000000;
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
  padding: 8px;
  position: absolute;
  right: 12px;
  top: 12px;
}

/* line 408, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__body {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* line 414, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__feedback {
  background-color: #fff4f4;
  border-radius: 16px;
  color: #b42318;
  font-family: 'Encode Sans', sans-serif;
  font-size: 15px;
  margin-top: 16px;
  padding: 16px;
}

/* line 424, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* line 430, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__intro {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 436, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__intro--separated {
  gap: 12px;
}

/* line 440, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__title-group {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 446, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__eyebrow {
  color: #4f4f4f;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  margin: 0;
  text-transform: uppercase;
}

/* line 455, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__title {
  font-family: 'Encode Sans', sans-serif;
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}

/* line 462, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__meta {
  color: #6b6b6b;
  font-family: 'Encode Sans', sans-serif;
  font-size: 14px;
  margin: 0;
}

/* line 469, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__section {
  border: 1px solid #ebebeb;
  border-radius: 20px;
  padding: 20px;
}

/* line 475, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__section-title {
  font-family: 'Encode Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0 0 16px;
}

/* line 482, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__product {
  align-items: center;
  background-color: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  display: grid;
  gap: 16px;
  grid-template-columns: auto 1fr auto;
  padding: 16px;
}

/* line 493, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__product-media {
  align-items: center;
  background-color: #f5f7fb;
  border-radius: 16px;
  display: flex;
  height: 72px;
  justify-content: center;
  width: 72px;
}

/* line 503, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__product-image {
  border-radius: 16px;
  height: 72px;
  object-fit: cover;
  width: 72px;
}

/* line 510, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__product-image--placeholder {
  background-color: #e0e0e0;
}

/* line 514, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__product-details {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 520, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__product-name {
  font-family: 'Encode Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* line 527, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__product-price {
  color: #4f4f4f;
  font-family: 'Encode Sans', sans-serif;
  font-size: 15px;
  margin: 0;
}

/* line 534, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__validity-card {
  align-items: center;
  background-color: #f5f7fb;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 16px;
}

/* line 544, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__validity-label {
  color: #4f4f4f;
  font-family: 'Encode Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  margin: 0;
}

/* line 552, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__validity-value {
  font-family: 'Encode Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

/* line 559, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__divider {
  border-top: 1px solid #d4dbde;
}

/* line 563, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__details-grid {
  display: grid;
  gap: 12px;
}

/* line 568, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__detail-item {
  background-color: #ffffff;
}

/* line 572, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__detail-label {
  display: inline-flex;
  color: black;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin: 0 0 4px;
  text-transform: uppercase;
}

/* line 583, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__detail-value {
  display: inline-flex;
  font-family: 'Encode Sans', sans-serif;
  font-size: 16px;
  font-weight: 400;
  margin: 0;
}

/* line 591, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__address-card {
  background-color: #ffffff;
  border: 1px solid #ebebeb;
  border-radius: 16px;
  padding: 18px 20px;
}

/* line 598, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__address {
  font-family: 'Encode Sans', sans-serif;
  font-size: 15px;
  margin: 0;
  white-space: pre-line;
}

/* line 605, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__address.is-empty {
  color: #9f9f9f;
}

/* line 609, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__definition-list {
  display: grid;
  gap: 16px;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  margin: 0;
}

/* line 616, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__definition-list dt {
  color: #6b6b6b;
  font-family: 'Roboto', sans-serif;
  font-size: 12px;
  letter-spacing: 0.08em;
  font-weight: 600;
  margin-bottom: 4px;
  text-transform: uppercase;
}

/* line 626, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__definition-list dd {
  font-family: 'Encode Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  margin: 0;
}

/* line 633, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__list,
.account-orders-modal__ticket-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* line 640, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__list-row,
.account-orders-modal__ticket-row {
  align-items: center;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
}

/* line 649, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__list-row:last-child,
.account-orders-modal__ticket-row:last-child {
  border-bottom: none;
}

/* line 654, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__item-name {
  font-family: 'Encode Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

/* line 661, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__item-qty {
  color: #6b6b6b;
  font-family: 'Encode Sans', sans-serif;
  font-size: 13px;
  margin: 2px 0 0;
}

/* line 668, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__item-price {
  font-family: 'Encode Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

/* line 675, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__ticket-code {
  font-family: 'Encode Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  margin: 0;
}

/* line 682, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__ticket-meta {
  color: #6b6b6b;
  font-family: 'Encode Sans', sans-serif;
  font-size: 13px;
  margin: 4px 0 0;
}

/* line 689, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__ticket-status {
  background-color: #f5f7fb;
  border-radius: 999px;
  font-family: 'Encode Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  margin: 0;
  padding: 6px 16px;
}

/* line 699, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

/* line 706, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__cta--stacked {
  margin-top: 16px;
}

/* line 710, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__button {
  background-color: #000000;
  border: none;
  border-radius: 999px;
  color: #ffffff;
  font-family: 'Encode Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  padding: 14px 28px;
  text-align: center;
  text-decoration: none;
}

/* line 723, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__button--icon {
  align-items: center;
  display: inline-flex;
  gap: 8px;
  justify-content: center;
}

/* line 730, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__button-icon {
  display: inline-flex;
}

/* line 734, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__button-icon-svg {
  height: 18px;
  width: 18px;
}

/* line 739, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__hint {
  color: #6b6b6b;
  font-family: 'Encode Sans', sans-serif;
  font-size: 13px;
  margin: 0;
}

/* line 746, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__placeholder,
.account-orders-modal__empty {
  color: #4f4f4f;
  font-family: 'Encode Sans', sans-serif;
  font-size: 14px;
  margin: 0;
  text-align: center;
}

/* line 755, app/assets/stylesheets/frontend/account/_orders.scss */
.account-orders-modal__sr-text {
  clip: rect(0 0 0 0);
  border: 0;
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
}

@media (max-width: 640px) {
  /* line 767, app/assets/stylesheets/frontend/account/_orders.scss */
  .account-orders-modal__dialog {
    border-radius: 0;
    height: 100%;
    max-height: none;
    padding: 24px 16px;
  }
  /* line 774, app/assets/stylesheets/frontend/account/_orders.scss */
  .account-orders-modal__section {
    padding: 16px;
  }
  /* line 778, app/assets/stylesheets/frontend/account/_orders.scss */
  .account-orders-modal__product {
    grid-template-columns: 1fr;
    text-align: center;
  }
  /* line 783, app/assets/stylesheets/frontend/account/_orders.scss */
  .account-orders-modal__product-media {
    justify-self: center;
  }
}

@media (min-width: 768px) {
  /* line 795, app/assets/stylesheets/frontend/account/_orders.scss */
  .account-orders__summary {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
  /* line 799, app/assets/stylesheets/frontend/account/_orders.scss */
  .account-orders__status {
    justify-self: end;
  }
  /* line 803, app/assets/stylesheets/frontend/account/_orders.scss */
  .account-orders__ticket {
    grid-template-columns: 2fr 1fr 1fr;
    align-items: center;
  }
}

/* line 1, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

/* line 6, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__hero {
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.13);
  border-radius: 16px;
  background-color: #ffffff;
}

/* line 12, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__hero-layout {
  display: flex;
  gap: 24px;
  align-items: stretch;
  flex-wrap: nowrap;
}

/* line 19, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__hero-col {
  flex: 1 1 260px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

/* line 26, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__hero-col--secondary {
  justify-content: center;
}

/* line 30, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__hero-col--primary {
  align-items: center;
  text-align: center;
}

/* line 35, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__hero-divider {
  width: 1px;
  background-color: #ebebeb;
  border-radius: 1px;
}

/* line 41, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__eyebrow {
  font-family: 'Encode Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #141414;
  margin: 0;
}

/* line 49, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__plan {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

/* line 55, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__brand {
  font-family: 'Encode Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-transform: uppercase;
  color: #000000;
}

/* line 63, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__name {
  font-family: 'Gill Sans', 'Encode Sans', sans-serif;
  font-size: 32px;
  font-weight: 700;
  color: #000000;
}

/* line 70, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__summary {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  justify-content: center;
}

/* line 78, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__expiry {
  display: flex;
  flex-direction: column;
  gap: 4px;
  align-items: center;
}

/* line 85, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__expiry-label {
  font-family: 'Encode Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  color: #6a6a6a;
}

/* line 92, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__expiry-date {
  font-family: 'Encode Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  color: #000000;
}

/* line 99, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__countdown {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 72px;
  border: 1px solid #ebebeb;
  border-radius: 10px;
  overflow: hidden;
}

/* line 110, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__countdown-label {
  width: 100%;
  text-align: center;
  background-color: #ff4f4f;
  color: #ffffff;
  font-family: 'Encode Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  padding: 4px 0;
}

/* line 121, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__countdown-value {
  width: 100%;
  text-align: center;
  padding: 12px 0;
  font-family: 'Encode Sans', sans-serif;
  font-size: 22px;
  font-weight: 600;
  background-color: #fafafa;
}

/* line 131, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__countdown-value--positive {
  color: #141414;
}

/* line 135, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__countdown-value--negative {
  color: #d20000;
}

/* line 139, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__metadata {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 0;
}

/* line 146, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__metadata-row, .account-subscriptions__history-detail {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  width: 100%;
}

/* line 154, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__metadata-row dt, .account-subscriptions__history-detail dt {
  font-family: 'Encode Sans', sans-serif;
  font-size: 14px;
  font-weight: 600;
  color: #000000;
  margin: 0;
  flex-shrink: 0;
}

/* line 163, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__metadata-row dd, .account-subscriptions__history-detail dd {
  font-family: 'Encode Sans', sans-serif;
  font-size: 15px;
  font-weight: 400;
  color: #000000;
  margin: 0;
  text-align: left;
  flex: 0 1 auto;
  word-break: break-word;
}

/* line 175, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__empty {
  display: flex;
  flex-direction: column;
  gap: 12px;
  text-align: left;
}

/* line 182, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__empty-title {
  font-family: 'Encode Sans', sans-serif;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}

/* line 189, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__empty-body {
  font-family: 'Encode Sans', sans-serif;
  font-size: 15px;
  margin: 0;
  color: #555555;
}

/* line 196, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__cta {
  align-self: flex-start;
  padding: 10px 24px;
  border-radius: 999px;
  background-color: #141414;
  color: #ffffff;
  font-family: 'Encode Sans', sans-serif;
  font-size: 15px;
  font-weight: 500;
  text-decoration: none;
  transition: background-color 0.2s ease;
}

/* line 209, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__cta:hover, .account-subscriptions__cta:focus-visible {
  background-color: #202020;
  color: #ffffff;
}

/* line 215, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__callout {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
  padding: 24px;
  border-radius: 15px;
  background-color: #000000;
  color: #ffffff;
}

/* line 227, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__callout-header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* line 234, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__callout-icon {
  width: 22px;
  height: 22px;
  display: block;
}

/* line 240, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__callout-title {
  margin: 0;
  font-family: 'Encode Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
}

/* line 248, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__callout-body {
  margin: 0;
  font-family: 'Encode Sans', sans-serif;
  font-size: 14px;
  color: #ffffff;
  line-height: 1.4;
}

/* line 256, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__callout-cta {
  padding: 10px 24px;
  border-radius: 30px;
  background-color: #ffffff;
  color: #141414;
  font-family: 'Encode Sans', sans-serif;
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  align-self: center;
}

/* line 268, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__history {
  gap: 0;
}

/* line 272, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__history-header {
  padding-bottom: 16px;
  border-bottom: 1px solid #ebebeb;
}

/* line 277, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__history-title {
  font-family: 'Encode Sans', sans-serif;
  font-size: 20px;
  font-weight: 600;
  margin: 0;
}

/* line 284, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__history-body {
  padding-top: 16px;
}

/* line 288, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__history-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* line 297, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__history-item {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  padding: 16px;
  border: 1px solid #ebebeb;
  border-radius: 12px;
  background-color: #f5f7fb;
}

/* line 309, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__history-content {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

/* line 317, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__history-name {
  font-family: 'Encode Sans', sans-serif;
  font-size: 16px;
  font-weight: 600;
  margin: 0;
}

/* line 324, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__history-period {
  font-family: 'Encode Sans', sans-serif;
  font-size: 14px;
  color: #555555;
  margin: 0;
}

/* line 331, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__history-details {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin: 0;
}

/* line 338, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.account-subscriptions__history-empty {
  font-family: 'Encode Sans', sans-serif;
  font-size: 15px;
  color: #555555;
  margin: 0;
}

/* line 346, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.subscription-status-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 16px;
  border-radius: 999px;
  font-family: 'Encode Sans', sans-serif;
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* line 358, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.subscription-status-badge--valid {
  background-color: #e6f7f0;
  color: #0f7b4f;
}

/* line 363, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.subscription-status-badge--pending {
  background-color: #fff4e5;
  color: #a45b00;
}

/* line 368, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.subscription-status-badge--error {
  background-color: #ffe6e6;
  color: #c10909;
}

/* line 373, app/assets/stylesheets/frontend/account/_subscriptions.scss */
.subscription-status-badge--neutral {
  background-color: #f0f0f0;
  color: #555555;
}

@media (max-width: 768px) {
  /* line 381, app/assets/stylesheets/frontend/account/_subscriptions.scss */
  .account-subscriptions__summary {
    flex-direction: column;
    align-items: flex-start;
  }
  /* line 386, app/assets/stylesheets/frontend/account/_subscriptions.scss */
  .account-subscriptions__hero-layout {
    flex-direction: column;
  }
  /* line 390, app/assets/stylesheets/frontend/account/_subscriptions.scss */
  .account-subscriptions__hero-divider {
    display: none;
  }
  /* line 394, app/assets/stylesheets/frontend/account/_subscriptions.scss */
  .account-subscriptions__history-item {
    flex-direction: column;
    align-items: flex-start;
  }
  /* line 399, app/assets/stylesheets/frontend/account/_subscriptions.scss */
  .account-subscriptions__callout {
    align-items: center;
  }
}

/* line 8, app/assets/stylesheets/frontend/account.scss */
.account-required {
  color: #E00000;
}

/* Final safety override: prevent double-card visuals by keeping the inner
	 container transparent when nested inside the modal shell. This lives at
	 the end of the frontend manifest so it's applied after other frontend
	 stylesheets. */
/* line 72, app/assets/stylesheets/frontend/frontend.scss */
.account-identification-modal .account-identification-container {
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
  padding: 0 !important;
}
