/* Minimal fixes for static clone */
html { scroll-behavior: smooth; }

/* AOS animations hide content until JS runs — show everything on static clone */
[data-aos] {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}

/* Product gallery — use aspect-ratio (padding-bottom breaks Swiper slide sizing) */
.product__gallery-root,
.product__main-medias,
.product__medias-wrapper,
.product__swiper {
  width: 100%;
  max-width: 100%;
}

.product__media.product__media-image.media {
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  padding-bottom: 0 !important;
  position: relative;
  overflow: hidden;
}

.product__media.media > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product__main-medias .swiper,
.product__main-medias .swiper-wrapper {
  width: 100%;
}

.product__main-medias .swiper-slide {
  width: 100%;
  height: auto;
  flex-shrink: 0;
}

.product__thumbs .swiper-slide {
  width: auto;
  height: auto;
}

.product__thumbs .product__media.media {
  width: 8rem;
}

/* Static Loox-style trust badge */
.loox-trust-badge-static {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  font-size: 1.4rem;
  margin-bottom: 1.2rem;
}

.loox-trust-badge-static .stars {
  color: #f4a000;
  letter-spacing: 1px;
}

/* Fix protocol-relative font URLs from theme-inline.css */
@font-face {
  font-family: Ubuntu;
  font-weight: 400 700;
  font-style: normal;
  font-display: swap;
  src: url("https://autoflag.fr/cdn/fonts/ubuntu/ubuntu_n4.2c466c9d72970fbeeea5774a5658b256f03b28fd.woff2") format("woff2");
}

body.overflow-hidden-drawer { overflow: hidden; }

/* Header fixed rules live in src/app/globals.css (bundled with the app) */

/* Product pack colors (from autoflag.fr inline theme) */
.product-pack {
  --pack-color-selected: 0, 0, 0;
  --pack-color-selected-background: #f6f6f6;
  --pack-color-background: #ffffff;
  --pack-color-background-dark: #e6e6e6;
  --pack-color-title: #000000;
  --pack-color-price: #000000;
  --pack-color-discount-price: #a72a2a;
  --pack-color-texts: #777777;
  --pack-color-variants-title: #000000;
  --pack-color-disclaimer: 51, 201, 28;
  --pack-color-disclaimer-fade: #ebfce8;
}

.product__gallery-root:has(.product__swiper) > .product__medias:first-of-type {
  display: none;
}

.product-form__submit.button__style--1 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}

.buy-buttons__text-flex {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}

/* Cart page */
.section-cart-padding.is-empty .title-wrapper-with-link {
  display: none;
}

.section-cart-padding.is-empty .cart__contents {
  display: none !important;
}

.section-cart-padding:not(.is-empty) .cart__warnings {
  display: none !important;
}

.section-cart-padding {
  padding-top: 1.6rem;
  padding-bottom: 0;
}

@media screen and (min-width: 750px) {
  .section-cart-padding {
    padding-top: 2.4rem;
  }
}

.cart-page__layout {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
}

@media screen and (min-width: 990px) {
  .cart-page__layout {
    flex-direction: row;
    align-items: flex-start;
    gap: 2.4rem;
  }

  .cart-page__items {
    flex: 1;
    min-width: 0;
  }

  .cart-page__summary {
    width: min(100%, 38rem);
    flex-shrink: 0;
  }
}

.cart-page__items {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-line-item {
  display: grid;
  grid-template-columns: 8.8rem 1fr;
  gap: 1.2rem;
  padding: 1.2rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.2rem;
}

.cart-line-item__media {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 8.8rem;
  height: 8.8rem;
  border-radius: 0.8rem;
  overflow: hidden;
  background: #f6f6f6;
  text-decoration: none;
}

.cart-line-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.cart-line-item__media-fallback {
  font-size: 2.4rem;
  line-height: 1;
}

.cart-line-item__body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.cart-line-item__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0.8rem;
}

.cart-line-item__info {
  min-width: 0;
}

.cart-line-item__title {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.3;
  color: rgb(var(--color-foreground));
  text-decoration: none;
}

.cart-line-item__meta,
.cart-line-item__flags {
  margin: 0.35rem 0 0;
  font-size: 1.25rem;
  line-height: 1.35;
  color: #666;
}

.cart-line-item__flags {
  font-weight: 600;
  color: rgb(var(--color-foreground));
}

.cart-line-item__remove {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  background: #fff;
  color: #666;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.cart-line-item__remove:hover {
  background: #fff5f5;
  border-color: #c62828;
  color: #c62828;
}

.cart-line-item__remove-icon {
  width: 1.6rem;
  height: 1.6rem;
  display: block;
}

.cart-line-item__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.cart-line-item__price {
  margin: 0;
  font-size: 1.7rem;
  font-weight: 700;
  color: rgb(var(--color-foreground));
}

.cart-line-item__footer .product__quantity {
  margin: 0;
  min-height: 4rem;
}

.cart-line-item__footer .quantity__button {
  width: 3.6rem;
  min-width: 3.6rem;
}

.cart-line-item__footer .quantity__input {
  width: 3.6rem;
  min-width: 3.6rem;
  text-align: center;
}

.cart-page__summary.cart-modules.content-container {
  background: rgb(var(--color-background-secondary));
  border-radius: var(--content-container-radius, 1rem);
  padding: 1.6rem;
}

.section-cart-padding .cart__discount-code {
  display: flex;
  gap: 0.8rem;
  align-items: stretch;
}

.section-cart-padding .cart__discount-code input {
  flex: 1;
  min-width: 0;
}

.section-cart-padding .cart__discount-code .cartDiscountCodeButton {
  flex-shrink: 0;
  white-space: nowrap;
}

.section-cart-padding .discounts__discount--position {
  justify-content: center;
  text-align: center;
}

.section-cart-padding .cart__checkout-button {
  width: 100%;
}

.section-cart-padding .totals {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.2rem 0 0.8rem;
}

.section-cart-padding .totals__subtotal {
  margin: 0;
  font-size: 1.6rem;
}

.section-cart-padding .totals__subtotal-value {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
}

.cart-trust-section {
  padding-top: 0;
  padding-bottom: 1.2rem;
}

.cart-trust-shape {
  margin-top: 0;
}

.checkout-error {
  color: #b00020;
  font-size: 0.875rem;
  margin-top: 0.75rem;
}

/* Wavy divider above trust section (from Shopify shape-curve-2) */
.shape-curve-2.top::before {
  background: rgb(var(--color-background));
  -webkit-mask-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23"/></svg>');
  mask-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23"/></svg>');
  background-position: 50% 100%;
}

.shape-curve-2.bottom::before {
  background: rgb(var(--color-background));
  -webkit-mask-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23"/></svg>');
  mask-image: url('data:image/svg+xml;charset=utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 35.28 2.17" preserveAspectRatio="none"><path d="M35.28 1.16c-3.17-.8-7.3.4-10.04.56-2.76.17-9.25-1.47-12.68-1.3-3.42.16-4.64.84-7.04.86C3.12 1.31 0 .4 0 .4v1.77h35.28z" fill="%23"/></svg>');
  background-position: 50% 0%;
  transform: rotate(180deg);
}

.cart-trust-section .icon__heading {
  font-size: 2.1rem;
}

@media screen and (min-width: 750px) {
  .cart-trust-section .icon__heading {
    font-size: 2.4rem;
  }
}

.cart-trust-section .icon__block :is(.icon, .global-media-settings) {
  width: 40px;
}

@media screen and (min-width: 750px) {
  .cart-trust-section .icon__block :is(.icon, .global-media-settings) {
    width: 50px;
  }
}

/* ── kestay UX improvements ── */

/* Logo — Bungee text, ~25% smaller than previous image logo */
.header__heading .header__heading-link.kestay-logo-text,
a.kestay-logo-text {
  font-family: "Bungee", "Bungee Inline", cursive !important;
  font-weight: 400 !important;
  font-style: normal !important;
  font-size: 2rem !important;
  line-height: 1 !important;
  letter-spacing: 0 !important;
  text-transform: lowercase !important;
  color: rgb(var(--color-foreground)) !important;
  text-decoration: none !important;
  display: inline-block;
  padding: 0.2rem 0;
}

@media screen and (min-width: 750px) {
  .header__heading .header__heading-link.kestay-logo-text,
  a.kestay-logo-text {
    font-size: 2.2rem !important;
  }
}

.header__heading {
  margin: 0;
}

.header {
  padding-top: 0.8rem !important;
  padding-bottom: 0.8rem !important;
}

.announcement-bar-section .announcement-bar {
  padding-top: 0.6rem !important;
  padding-bottom: 0.6rem !important;
}

.announcement-bar__message {
  font-size: 1.2rem !important;
}

/* Tighter product info — product visible without scroll */
.section-product .product__content--block {
  margin-bottom: 1rem !important;
}

.product__title-block {
  margin-bottom: 0.6rem !important;
}

.product__title .heading {
  font-size: clamp(1.8rem, 4.5vw, 2.4rem) !important;
  line-height: 1.2 !important;
}

/* Smaller gallery arrows */
.product__swiper .swiper-button-next,
.product__swiper .swiper-button-prev {
  width: 2.8rem !important;
  height: 2.8rem !important;
  margin-top: -1.4rem !important;
}

.product__swiper .swiper-button-next::after,
.product__swiper .swiper-button-prev::after {
  font-size: 1.2rem !important;
  font-weight: 700;
}

/* Country picker — flag cards */
.country-picker-section {
  margin-bottom: 1.6rem !important;
}

.country-picker__heading {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  width: 100%;
  margin: 0 0 1.15rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.07);
  font-size: 1.35rem;
  font-weight: 700;
  letter-spacing: -0.01em;
}

.country-picker__heading-icon-wrap {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: rgb(var(--color-foreground));
  flex-shrink: 0;
}

.country-picker__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  max-height: 22rem;
  overflow-y: auto;
  padding-right: 0.15rem;
}

.country-picker__grid--search {
  max-height: 26rem;
}

@media screen and (min-width: 750px) {
  .country-picker__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0.75rem;
  }
}

@media screen and (min-width: 990px) {
  .country-picker__grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }
}

.country-picker__card {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 6.4rem;
  padding: 0.75rem 0.4rem 0.7rem;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.2rem;
  background: #fafafa;
  cursor: pointer;
  transition: border-color 0.18s ease, box-shadow 0.18s ease, transform 0.18s ease, background 0.18s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.country-picker__card:hover {
  border-color: rgba(0, 0, 0, 0.18);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.07);
}

.country-picker__card--selected {
  border-color: #c62828;
  background: linear-gradient(180deg, #fff6f6 0%, #fff 100%);
  box-shadow: 0 0 0 2px rgba(198, 40, 40, 0.12), 0 4px 16px rgba(198, 40, 40, 0.1);
}

.country-picker__check {
  position: absolute;
  top: 0.55rem;
  right: 0.55rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: #c62828;
  color: #fff;
}

.country-picker__label-wrap {
  width: 100%;
  pointer-events: none;
}

/* Pack — Most Popular red border */
.pack--most-popular {
  position: relative;
  border: 2px solid #c62828 !important;
  box-shadow: 0 0 0 1px rgba(198, 40, 40, 0.15);
}

.pack__popular-ribbon {
  position: absolute;
  top: -0.1rem;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #c62828;
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  padding: 0.3rem 0.8rem;
  border-radius: 999px;
  white-space: nowrap;
  z-index: 2;
}

/* Country grid inside packs */
.pack__country-grid-wrap {
  margin-top: 1rem;
}

.pack__country-slot-label {
  display: block;
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.6rem;
}

.pack__country-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.45rem;
  max-height: 22rem;
  overflow-y: auto;
  padding-right: 0.2rem;
}

@media screen and (min-width: 750px) {
  .pack__country-grid {
    grid-template-columns: repeat(4, 1fr);
    max-height: 20rem;
  }
}

.pack__country-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 5.4rem;
  padding: 0.55rem 0.35rem;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 0.9rem;
  background: #fafafa;
  cursor: pointer;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.pack__country-btn:hover {
  border-color: rgba(0, 0, 0, 0.2);
  background: #fff;
}

.pack__country-btn--active {
  border-color: #c62828;
  background: #fff6f6;
  box-shadow: 0 0 0 1px rgba(198, 40, 40, 0.15);
}

/* Buy button */
.buy-buttons__shipping-note {
  text-align: center;
  font-size: 1.3rem;
  font-weight: 600;
  margin: 0.8rem 0 0;
  color: rgb(var(--color-foreground));
}

/* Buy button — always sticky */
body.buy-bar-open {
  padding-bottom: calc(11.5rem + env(safe-area-inset-bottom, 0px));
}

.buy-now-sticky-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99990;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom, 0px));
  background: rgb(var(--color-background));
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
}

.buy-now-sticky-bar__trust {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.buy-now-sticky-bar__trust-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-size: 1.05rem;
  color: rgb(var(--color-foreground));
}

.buy-now-sticky-bar__trust-badges {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.75rem;
  font-size: 0.95rem;
  font-weight: 600;
  color: #555;
}

.buy-now-sticky-bar__trust-badges span {
  display: inline-flex;
  align-items: center;
  gap: 0.3rem;
}

.buy-now-sticky-bar__action {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 0.85rem;
}

.buy-now-sticky-bar__price {
  margin: 0;
  font-size: 1.55rem;
  font-weight: 800;
  white-space: nowrap;
}

.buy-now-sticky-bar__btn {
  min-height: 5rem;
  font-size: 1.55rem;
  font-weight: 700;
  border-radius: 16px;
}

.section-product .product__info-container {
  padding-bottom: 1rem;
}

.social-proof-toast--above-buy-bar {
  bottom: calc(12.5rem + env(safe-area-inset-bottom, 0px));
}

@media screen and (min-width: 750px) {
  body.buy-bar-open {
    padding-bottom: calc(10rem + env(safe-area-inset-bottom, 0px));
  }

  .buy-now-sticky-bar {
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    width: min(520px, calc(100% - 2rem));
    border-radius: 1.2rem 1.2rem 0 0;
  }
}

/* Timer — elegant labeled countdown */
.timer__elegant {
  padding: 1.2rem 1.4rem;
  border-radius: 1rem;
  background: rgba(var(--color-accent-1), 0.08);
  border: 1px solid rgba(var(--color-accent-1), 0.2);
}

.timer__headline {
  font-size: 1.4rem;
  font-weight: 700;
  margin: 0 0 0.8rem;
  text-align: center;
}

.timer__numbers--labeled {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
}

.timer__unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-width: 4.4rem;
  padding: 0.6rem 0.4rem;
  background: #fff;
  border-radius: 0.8rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
}

.timer__value {
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.timer__label {
  font-size: 1rem;
  font-weight: 600;
  color: #666;
  margin-top: 0.3rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* Video demo */
.video-demo-section {
  padding: 2rem 0;
}

.video-demo__subtitle {
  font-size: 1.3rem;
  color: #666;
  margin: 0.4rem 0 1.2rem;
}

.video-demo__wrapper {
  border-radius: 1.2rem;
  overflow: hidden;
  max-width: 720px;
  margin: 0 auto;
}

.video-demo__media {
  width: 100%;
  height: auto;
  display: block;
}

/* Gallery — customer reviews */
.gallery__with-reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

@media screen and (min-width: 750px) {
  .gallery__with-reviews {
    grid-template-columns: repeat(4, 1fr);
  }
}

.gallery__item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.gallery__review {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.2rem;
  text-align: center;
}

.gallery__stars {
  font-size: 1.1rem;
  letter-spacing: 1px;
}

.gallery__author {
  font-size: 1.2rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
}

/* Features bar — horizontal icons */
.features-bar {
  background: #111;
  color: #fff;
  padding: 2rem 0;
}

.features-bar__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.6rem 1rem;
}

@media screen and (min-width: 750px) {
  .features-bar__grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

.features-bar__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.6rem;
}

.features-bar__icon {
  font-size: 2.4rem;
  line-height: 1;
}

.features-bar__title {
  font-size: 1.3rem;
  font-weight: 700;
}

/* ── Mobile menu fix ── */
.header-drawer {
  grid-area: left-icon;
  justify-self: start;
  margin-left: -1.2rem;
}

@media screen and (min-width: 990px) {
  .header:has(> .header__inline-menu) .header-drawer {
    display: none !important;
  }
}

/* Menu toggle — single icon, override theme details/summary rules */
.kestay-menu-toggle.header__icon--menu .icon {
  position: relative !important;
  opacity: 1 !important;
  visibility: visible !important;
  transform: none !important;
}

@media screen and (max-width: 989px) {
  .menu-drawer-container {
    display: flex !important;
    position: relative;
  }

  .kestay-menu-toggle {
    position: relative !important;
    width: 4.4rem !important;
    height: 4.4rem !important;
    color: rgb(var(--color-foreground)) !important;
    background: transparent;
    border: 0;
    cursor: pointer;
    padding: 0;
  }

  .kestay-menu-toggle span {
    position: relative;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }

  .kestay-menu-toggle .icon-hamburger,
  .kestay-menu-toggle .icon-close {
    position: relative !important;
    display: block !important;
    width: 2.4rem !important;
    height: 2.4rem !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
  }
}

.menu-drawer-container > .menu-drawer,
.menu-drawer.menu-drawer--open {
  position: fixed !important;
  top: var(--header-height, 88px) !important;
  left: 0 !important;
  bottom: 0 !important;
  height: auto !important;
  max-height: none !important;
  width: min(40rem, 100vw) !important;
  z-index: 100002 !important;
  background-color: rgb(var(--color-background)) !important;
  border-right: 1px solid rgba(var(--color-foreground), 0.08);
  overflow-x: hidden;
  overflow-y: auto;
  transform: translateX(-100%);
  visibility: hidden;
  transition: transform 0.25s ease, visibility 0.25s ease;
}

.menu-drawer-container.is-open > .menu-drawer,
.menu-drawer.menu-drawer--open {
  transform: translateX(0) !important;
  visibility: visible !important;
}

.menu-drawer-container.is-open > .menu-drawer__overlay {
  display: block !important;
  position: fixed !important;
  inset: 0 !important;
  top: var(--header-height, 88px) !important;
  z-index: 100001 !important;
  background: rgba(var(--color-foreground), 0.5) !important;
  border: 0;
  padding: 0;
  margin: 0;
  cursor: pointer;
}

.menu-drawer__inner-container,
.menu-drawer__navigation-container {
  height: 100%;
}

.menu-drawer__navigation-container {
  display: flex;
  flex-direction: column;
}

/* ── kestay mobile menu ── */
.kestay-menu {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  background: #fff;
}

.kestay-menu__hero {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.4rem 1.4rem 1.2rem;
  background: linear-gradient(135deg, #111 0%, #2a2a2a 100%);
  color: #fff;
}

.kestay-menu__hero-icon-wrap {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
}

.kestay-menu__hero-title {
  margin: 0;
  font-size: 1.75rem;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.02em;
}

.kestay-menu__hero-subtitle {
  margin: 0.45rem 0 0;
  font-size: 1.25rem;
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.78);
}

.kestay-menu__nav {
  flex: 1;
  padding: 0.4rem 0 1rem;
}

.kestay-menu__section {
  padding: 0.9rem 1.2rem 0.2rem;
  border-top: 1px solid rgba(0, 0, 0, 0.07);
}

.kestay-menu__section:first-of-type {
  border-top: 0;
  padding-top: 1rem;
}

.kestay-menu__heading {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 0.65rem;
  font-size: 1.05rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #888;
}

.kestay-menu__featured-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 4.6rem;
  padding: 0.85rem 1rem;
  border-radius: 1rem;
  background: #111;
  color: #fff !important;
  font-size: 1.45rem;
  font-weight: 800;
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.14);
}

.kestay-menu__country-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.45rem;
  max-height: 28rem;
  overflow-y: auto;
  margin: 0;
  padding: 0 0.15rem 0 0;
  list-style: none;
  scrollbar-width: thin;
}

.kestay-menu__country-link {
  display: flex;
  align-items: center;
  min-height: 4rem;
  padding: 0.55rem 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.85rem;
  background: #f8f8f8;
  color: rgb(var(--color-foreground)) !important;
  font-size: 1.15rem;
  font-weight: 600;
  line-height: 1.25;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, transform 0.15s ease;
}

.kestay-menu__country-link:hover {
  background: #fff;
  border-color: #111;
  transform: translateY(-1px);
}

.kestay-menu__link-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.kestay-menu__link-list li + li {
  margin-top: 0.15rem;
}

.kestay-menu__link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-height: 4.2rem;
  padding: 0.5rem 0.2rem;
  color: rgb(var(--color-foreground)) !important;
  font-size: 1.35rem;
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.kestay-menu__link:last-child {
  border-bottom: 0;
}

.kestay-menu__link-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
}

.kestay-menu__link-list--inline {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.kestay-menu__link-list--inline li + li {
  margin-top: 0;
}

.kestay-menu__pill-link {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 3.6rem;
  padding: 0.45rem 0.9rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  background: #fafafa;
  color: rgb(var(--color-foreground)) !important;
  font-size: 1.15rem;
  font-weight: 600;
  text-decoration: none;
}

.kestay-menu__section--account {
  padding-bottom: 0.8rem;
}

.kestay-menu__proof {
  margin-top: auto;
  padding: 1.1rem 1.2rem calc(1.2rem + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(180deg, #fafafa 0%, #f0f0f0 100%);
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  text-align: center;
}

.kestay-menu__proof-stars {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin: 0;
  font-size: 1.35rem;
  line-height: 1.3;
  color: rgb(var(--color-foreground));
}

.kestay-menu__proof-stars strong {
  font-weight: 800;
}

.kestay-menu__proof-customers {
  margin: 0.35rem 0 0;
  font-size: 1.15rem;
  font-weight: 700;
  color: #666;
}

@media screen and (max-width: 360px) {
  .kestay-menu__country-list {
    grid-template-columns: 1fr;
  }
}

/* Social proof purchase toasts */
.social-proof-toast {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: calc(1.2rem + env(safe-area-inset-bottom, 0px));
  z-index: 99985;
  display: flex;
  align-items: center;
  gap: 0.85rem;
  max-width: 34rem;
  padding: 0.95rem 1.1rem;
  background: #fff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 1.2rem;
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.12);
  opacity: 0;
  transform: translateY(1.2rem);
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

@media screen and (min-width: 750px) {
  .social-proof-toast {
    left: 1.5rem;
    right: auto;
    max-width: 32rem;
  }
}

.social-proof-toast--visible {
  opacity: 1;
  transform: translateY(0);
}

.social-proof-toast__icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.05);
  color: rgb(var(--color-foreground));
}

.social-proof-toast__body {
  min-width: 0;
  flex: 1;
}

.social-proof-toast__text {
  margin: 0;
  font-size: 1.2rem;
  line-height: 1.4;
  color: rgb(var(--color-foreground));
}

.social-proof-toast__country {
  display: inline-flex;
  vertical-align: middle;
  font-weight: 600;
}

.social-proof-toast__country .country-label__flag-wrap {
  width: 1.6rem;
  height: 1.1rem;
}

.social-proof-toast__text strong {
  font-weight: 700;
}

.social-proof-toast__time {
  margin: 0.3rem 0 0;
  font-size: 1.1rem;
  color: #666;
}

/* Added to cart notice */
body.cart-notice-open {
  overflow: hidden;
}

.cart-notice {
  position: fixed;
  inset: 0;
  z-index: 100000;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
}

.cart-notice__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

.cart-notice__panel {
  position: relative;
  width: min(100%, 42rem);
  padding: 1.6rem;
  background: #fff;
  border-radius: 1.6rem 1.6rem 1.2rem 1.2rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
  animation: cart-notice-slide-up 0.3s ease;
}

@keyframes cart-notice-slide-up {
  from {
    opacity: 0;
    transform: translateY(1.6rem);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cart-notice__header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.cart-notice__check {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.2rem;
  height: 3.2rem;
  border-radius: 50%;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1;
}

.cart-notice__title {
  margin: 0;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: rgb(var(--color-foreground));
}

.cart-notice__subtitle {
  margin: 0.35rem 0 0;
  font-size: 1.35rem;
  line-height: 1.35;
  color: #666;
}

.cart-notice__details {
  padding: 1.2rem;
  margin-bottom: 1.4rem;
  background: #f7f7f7;
  border-radius: 1rem;
}

.cart-notice__pack {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 600;
  color: rgb(var(--color-foreground));
}

.cart-notice__countries {
  margin: 0.45rem 0 0;
  font-size: 1.25rem;
  line-height: 1.35;
  color: #666;
}

.cart-notice__price {
  margin: 0.8rem 0 0;
  font-size: 1.7rem;
  font-weight: 700;
  color: rgb(var(--color-foreground));
}

.cart-notice__actions {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cart-notice__checkout {
  width: 100%;
  min-height: 5rem;
  font-size: 1.6rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  border-radius: 17px;
}

.cart-notice__continue {
  width: 100%;
  min-height: 4.4rem;
  padding: 0.8rem 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 17px;
  background: #fff;
  color: rgb(var(--color-foreground));
  font-size: 1.45rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}

.cart-notice__continue:hover {
  background: #f5f5f5;
  border-color: rgba(0, 0, 0, 0.2);
}

@media screen and (min-width: 750px) {
  .cart-notice {
    align-items: center;
    padding: 2rem;
  }

  .cart-notice__panel {
    border-radius: 1.6rem;
  }
}

/* Product checkout modal */
body.checkout-modal-open {
  overflow: hidden;
  padding-bottom: 0 !important;
}

body.checkout-modal-open .buy-now-sticky-bar,
body.country-modal-open .buy-now-sticky-bar,
body.cart-notice-open .buy-now-sticky-bar {
  display: none;
}

.checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 100010;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.checkout-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  padding: 0;
  margin: 0;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(4px);
  cursor: pointer;
}

.checkout-modal__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(100%, 44rem);
  max-height: min(94vh, 820px);
  background: #fff;
  border-radius: 2rem 2rem 0 0;
  box-shadow: 0 -20px 60px rgba(0, 0, 0, 0.28);
  animation: checkout-modal-slide-up 0.38s cubic-bezier(0.22, 1, 0.36, 1);
  overflow: hidden;
}

@keyframes checkout-modal-slide-up {
  from {
    opacity: 0;
    transform: translateY(100%);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.checkout-modal__handle {
  flex-shrink: 0;
  width: 4rem;
  height: 0.45rem;
  margin: 0.75rem auto 0;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.14);
}

.checkout-modal__topbar {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.85rem 1.2rem 1rem;
  background: #fff;
  color: #111;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
}

.checkout-modal__topbar-main {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  min-width: 0;
}

.checkout-modal__secure-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.6rem;
  height: 3.6rem;
  border-radius: 50%;
  background: #f3f3f3;
  color: #111;
}

.checkout-modal__topbar-label {
  margin: 0;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #666;
}

.checkout-modal__topbar-total {
  margin: 0.15rem 0 0;
  font-size: 2rem;
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: #111 !important;
}

.checkout-modal__close {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3.4rem;
  height: 3.4rem;
  border: 0;
  border-radius: 50%;
  background: #f3f3f3;
  color: #111;
  cursor: pointer;
  transition: background 0.15s ease;
}

.checkout-modal__close:hover {
  background: #e8e8e8;
}

.checkout-modal__steps {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.75rem 1.2rem;
  background: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.checkout-modal__scroll {
  flex: 1;
  overflow: auto;
  padding: 1.2rem 1.2rem 0.6rem;
  -webkit-overflow-scrolling: touch;
}

.checkout-modal__product {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.2rem;
  margin-bottom: 1.2rem;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 1.2rem;
  background: linear-gradient(135deg, #fafafa 0%, #fff 100%);
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
}

.checkout-modal__product-body {
  min-width: 0;
}

.checkout-modal__product-title {
  margin: 0;
  font-size: 1.35rem;
  font-weight: 700;
  line-height: 1.25;
}

.checkout-modal__product-pack {
  margin: 0.35rem 0 0;
  font-size: 1.2rem;
  font-weight: 600;
  color: #333;
}

.checkout-modal__product-flags {
  margin: 0.35rem 0 0;
  font-size: 1.1rem;
  line-height: 1.35;
  color: #666;
}

.checkout-modal__product-pricing {
  flex-shrink: 0;
  text-align: right;
}

.checkout-modal__discount-badge {
  display: inline-block;
  padding: 0.2rem 0.55rem;
  border-radius: 999px;
  background: #e8f5e9;
  color: #2e7d32;
  font-size: 1rem;
  font-weight: 700;
}

.checkout-modal__product-was {
  margin: 0.35rem 0 0;
  font-size: 1.1rem;
  color: #999;
  text-decoration: line-through;
}

.checkout-modal__product-now {
  margin: 0.1rem 0 0;
  font-size: 1.6rem;
  font-weight: 800;
  color: #111;
}

.checkout-modal__form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.checkout-modal__section {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.checkout-modal__section--payment {
  padding-top: 0.2rem;
}

.checkout-modal__section-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
}

.checkout-modal__section-title {
  margin: 0;
  font-size: 1.15rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #111;
}

.checkout-modal__field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

.checkout-modal__field {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.checkout-modal__field span {
  font-size: 1.05rem;
  font-weight: 600;
  color: #555;
}

.checkout-modal__field input {
  width: 100%;
  min-height: 4.6rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid #e8e8e8;
  border-radius: 1rem;
  font: inherit;
  font-size: 1.35rem;
  background: #fafafa;
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.checkout-modal__field input::placeholder {
  color: #aaa;
}

.checkout-modal__field input:focus {
  outline: none;
  border-color: #111;
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.checkout-modal__gps-btn {
  flex-shrink: 0;
  min-height: 3.2rem;
  padding: 0.45rem 0.9rem;
  border: 1.5px solid #111;
  border-radius: 999px;
  background: #fff;
  color: #111;
  font-size: 1.15rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.checkout-modal__gps-btn:hover:not(:disabled) {
  background: #111;
  color: #fff;
}

.checkout-modal__gps-btn:disabled {
  opacity: 0.55;
  cursor: wait;
}

.checkout-modal__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 0.8rem;
  margin: 0.2rem 0 0.4rem;
  padding: 0;
  list-style: none;
}

.checkout-modal__trust li {
  font-size: 1.05rem;
  font-weight: 600;
  color: #666;
  white-space: nowrap;
}

.checkout-modal__footer {
  flex-shrink: 0;
  padding: 0.8rem 1.2rem calc(1rem + env(safe-area-inset-bottom, 0px));
  background: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.06);
}

.checkout-modal__error {
  margin: 0 0 0.7rem;
  padding: 0.75rem 0.9rem;
  border-radius: 0.9rem;
  background: #fff5f5;
  color: #c62828;
  font-size: 1.15rem;
  line-height: 1.35;
}

.checkout-modal__continue-btn,
.checkout-modal__pay-btn {
  width: 100%;
  min-height: 5.4rem;
  font-size: 1.55rem;
  font-weight: 700;
  border-radius: 1.4rem;
  letter-spacing: -0.01em;
}

.checkout-modal__continue-btn strong {
  font-weight: 800;
}

.checkout-modal__payment {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.checkout-modal__payment-element {
  padding: 0.9rem;
  border: 1.5px solid #e8e8e8;
  border-radius: 1rem;
  background: #fafafa;
}

@media screen and (min-width: 750px) {
  .checkout-modal {
    align-items: center;
    padding: 2rem;
  }

  .checkout-modal__panel {
    border-radius: 1.8rem;
    max-height: 88vh;
  }

  .checkout-modal__handle {
    display: none;
  }

  .checkout-modal__topbar {
    border-radius: 1.8rem 1.8rem 0 0;
  }
}

@media screen and (max-width: 380px) {
  .checkout-modal__field-row {
    grid-template-columns: 1fr;
  }

  .checkout-modal__trust {
    flex-direction: column;
    gap: 0.35rem;
  }
}

/* Icons & country labels */
.ui-icon {
  display: inline-block;
  flex-shrink: 0;
  vertical-align: middle;
}

.country-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-width: 0;
}

.country-label__flag-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  overflow: hidden;
  border-radius: 4px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1), 0 0 0 1px rgba(0, 0, 0, 0.06);
  background: #eee;
}

.country-label__flag {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.country-label--inline .country-label__flag-wrap {
  border-radius: 3px;
}

.country-label--stacked {
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: 100%;
}

.country-label--stacked .country-label__flag-wrap {
  width: 3.2rem;
  height: 2.2rem;
  border-radius: 5px;
}

.country-label--stacked .country-label__name {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.25;
  text-align: center;
  color: rgb(var(--color-foreground));
  word-break: break-word;
  hyphens: auto;
}

.country-picker__card--selected .country-label__name {
  color: #b71c1c;
}

.country-label__name {
  min-width: 0;
  line-height: 1.25;
}

.star-rating {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  color: #f5a623;
}

.star-rating__star {
  display: block;
}

.header__menu-item-inner,
.footer-link-inner,
.announcement-bar__message-inner,
.video__heading-inner,
.gallery__heading-inner,
.buy-buttons__text-flex,
.buy-buttons__shipping-note,
.timer__headline {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.product__title-inner {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}

.pack__title {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.pack__country-btn .country-label {
  justify-content: center;
}

.pack__country-btn .country-label--stacked {
  gap: 0.35rem;
}

.pack__country-btn .country-label--stacked .country-label__flag-wrap {
  width: 2.6rem;
  height: 1.75rem;
}

.pack__country-btn .country-label--stacked .country-label__name {
  font-size: 0.95rem;
}

.checkout-modal__product-flags,
.cart-line-item__flags,
.cart-notice__countries {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.checkout-modal__trust li,
.checkout-modal__gps-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.loox-trust-badge-static {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.features-bar__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

/* Country search */
.country-search {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-bottom: 1rem;
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(0, 0, 0, 0.1);
  border-radius: 1rem;
  background: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.country-search__icon {
  flex-shrink: 0;
  color: #888;
}

.country-search__input {
  flex: 1;
  min-width: 0;
  border: 0;
  background: transparent;
  font-size: 1.2rem;
  font-weight: 500;
  color: rgb(var(--color-foreground));
  outline: none;
}

.country-search__input::placeholder {
  color: #999;
}

.country-picker__quick {
  margin-bottom: 1rem;
}

.country-picker__quick-label {
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #888;
}

.country-picker__quick-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.country-picker__quick-btn {
  display: inline-flex;
  align-items: center;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 999px;
  background: #fafafa;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.country-picker__quick-btn--active {
  border-color: #c62828;
  background: #fff5f5;
}

.country-picker__empty,
.country-modal__empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 1rem;
  text-align: center;
  color: #666;
}

body.country-modal-open {
  overflow: hidden;
}

.country-modal {
  position: fixed;
  inset: 0;
  z-index: 100001;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.country-modal__backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0, 0, 0, 0.45);
  cursor: pointer;
}

.country-modal__panel {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 520px;
  max-height: 85vh;
  display: flex;
  flex-direction: column;
  padding: 1rem 1rem calc(1rem + env(safe-area-inset-bottom, 0px));
  border-radius: 1.4rem 1.4rem 0 0;
  background: #fff;
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.18);
}

.country-modal__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 0.85rem;
}

.country-modal__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

.country-modal__close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  border: 0;
  border-radius: 50%;
  background: #f2f2f2;
  cursor: pointer;
}

.country-modal__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.55rem;
  overflow-y: auto;
  max-height: 50vh;
  padding-top: 0.25rem;
}

.country-modal__card {
  min-height: 5.8rem;
}

.pack__flag-slot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-top: 0.75rem;
  padding: 0.75rem 0.85rem;
  border: 1.5px solid rgba(0, 0, 0, 0.08);
  border-radius: 0.9rem;
  background: #fafafa;
}

.pack__flag-slot-main {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
}

.pack__flag-change-btn {
  flex-shrink: 0;
  padding: 0.55rem 0.9rem;
  border: 1.5px solid #111;
  border-radius: 999px;
  background: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  cursor: pointer;
}

.pack__flag-change-btn:hover {
  background: #111;
  color: #fff;
}

.pack__popular-ribbon {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.product-highlights {
  padding: 1rem 0;
}

.product-highlights__rating {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  margin-bottom: 0.75rem;
  font-size: 1.15rem;
}

.product-highlights__reviews {
  color: #666;
}

.product-highlights__list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.55rem 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.product-highlights__list li {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 1.05rem;
  font-weight: 600;
}

.checkout-modal__step-dot {
  width: 2.4rem;
  height: 0.35rem;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.12);
}

.checkout-modal__step-dot--active {
  background: #111;
}

.checkout-modal__footer-actions {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.65rem;
}

.checkout-modal__back-btn {
  padding: 0.85rem 1rem;
  border: 1.5px solid rgba(0, 0, 0, 0.12);
  border-radius: 12px;
  background: #fff;
  font-weight: 600;
  cursor: pointer;
}

.checkout-modal__loading-payment {
  margin: 0;
  padding: 1rem;
  text-align: center;
  color: #666;
}

.social-proof-toast__purchase {
  margin: 0.15rem 0 0;
  font-size: 1.15rem;
  line-height: 1.35;
}

.gallery__author {
  display: inline-flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.35rem;
}
