*{
    margin: 0;
    padding: 0;
}

:root{
    --site-header-height: 118px;
    --sticky-offset: calc(var(--site-header-height) + 14px);
}

body{
    font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    padding-top: var(--site-header-height);
    overflow-x: hidden;
}

html,
body{
    min-width: 320px;
    overflow-x: clip;
}

html{
    scroll-padding-top: calc(var(--site-header-height) + 12px);
}

button{
    border: 0;
    background: none;
}

header{
    border-bottom: none;
    background: #fff;
}

.site-header{
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1020;
    background: rgba(255, 255, 255, 0.96);
    backdrop-filter: blur(10px);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.08);
}

.header-grid {
    grid-template-columns: auto 1fr auto;
}

.header-grid > .text-center{
    min-width: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-inline: clamp(16px, 2.2vw, 32px);
}

.header-search-desktop{
  position: relative;
  flex: 1 1 auto;
  width: min(100%, 600px);
  max-width: 600px;
  min-width: 0;
  margin: 0 auto;
}

/* Full-width layout on small screens */
@media (max-width: 770px){
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl{
    width: 90% !important;
    max-width: 90% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}

header .menu i{
    font-size: 20px;
    transition: color 300ms ease-in-out;
    font-weight: bold;
    padding-top: 5px;
    cursor: pointer;
}

header .userMenu a{
  color: #222222;
  text-decoration: none;
  transition: color 300ms ease-in-out;
}

header .menu i:hover,
header .userMenu i:hover,
header .userMenu a:hover,
.colRed{
    color: #db000b;
}



header .userMenu i{
    font-size: 20px;
    transition: color 300ms ease-in-out;
}

.header-favorite-link{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.menu-badge{
  position: absolute;
  top: -6px;
  right: -10px;
  min-width: 18px;
  height: 18px;
  padding: 0 5px;
  border-radius: 999px;
  background: #db000b;
  color: #fff;
  font-size: 11px;
  line-height: 18px;
  font-weight: 700;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}

.menu-badge--desktop{
  top: -8px;
  right: -9px;
}

.guest-session{
  align-items: center;
  gap: 8px;
  margin-left: 8px;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid #dee0ea;
  background: #f8fafc;
  color: #334155;
  font-size: 12px;
  line-height: 1;
  font-weight: 600;
}

.guest-session__id{
  max-width: 140px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.guest-session__dot{
  opacity: .55;
}

.header-install-app-slot{
  position: relative;
  display: inline-flex;
  align-items: center;
}

.install-app-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid rgba(219, 0, 11, 0.16);
  border-radius: 999px;
  background: linear-gradient(135deg, rgba(255, 245, 246, 0.96), rgba(255, 255, 255, 0.98));
  color: #c31923;
  font-size: 12px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0.01em;
  box-shadow: 0 10px 24px rgba(219, 0, 11, 0.08);
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, color 180ms ease;
}

.install-app-button:hover{
  transform: translateY(-1px);
  border-color: rgba(219, 0, 11, 0.28);
  box-shadow: 0 14px 30px rgba(219, 0, 11, 0.12);
}

.install-app-button:disabled{
  opacity: .66;
  cursor: progress;
}

.install-app-button i{
  font-size: 14px;
}

.footer-install-app-slot{
  display: inline-flex;
  align-items: center;
}

.install-app-button--footer{
  min-height: 42px;
  padding-inline: 18px;
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.06));
  color: #fff;
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: none;
}

.install-app-button--footer:hover{
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.install-app-popup{
  position: fixed;
  right: 20px;
  bottom: calc(20px + env(safe-area-inset-bottom, 0px));
  z-index: 1085;
  pointer-events: none;
}

.install-app-popup__card{
  width: min(380px, calc(100vw - 24px));
  padding: 20px 18px 18px;
  border-radius: 24px;
  border: 1px solid rgba(219, 0, 11, 0.12);
  background:
    radial-gradient(circle at top right, rgba(219, 0, 11, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 249, 249, 0.98));
  box-shadow: 0 26px 60px rgba(15, 23, 42, 0.22);
  pointer-events: auto;
  position: relative;
}

.install-app-popup__close{
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #475569;
  background: rgba(255, 255, 255, 0.86);
}

.install-app-popup__eyebrow{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 10px;
  color: #c31923;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.install-app-popup__title{
  margin: 0 26px 8px 0;
  color: #111827;
  font-size: 21px;
  line-height: 1.15;
  font-weight: 900;
}

.install-app-popup__text{
  margin: 0;
  color: #475569;
  font-size: 14px;
  line-height: 1.55;
}

.install-app-popup__steps{
  margin: 14px 0 0;
  padding-left: 18px;
  color: #334155;
  font-size: 14px;
  line-height: 1.6;
}

.install-app-popup__actions{
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 18px;
}

.install-app-button--popup{
  min-height: 44px;
  padding-inline: 18px;
}

.install-app-popup__later{
  color: #64748b;
  font-size: 14px;
  font-weight: 700;
}

/* кнопка поиска в шапке (показывается на экранах < 990px) */
.search-open-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.search-open-btn i{
  font-size: 20px;
}

.custom-search{
  border: 1px solid #dee2e6;
  border-radius: 10px;
  /* dropdown-menu не должен обрезаться */
  overflow: visible;
  background: #fff;
}

/* общая логика: убираем "родные" границы у внутренних элементов */
.search-icon{
  background: transparent;
  border: 0;
  color: #6c757d;
  padding-left: 10px;
  padding-right: 0px;
}

.search-input{
  border: 0;
  box-shadow: none !important;
  outline: none !important;
}

/* чтобы при фокусе ничего не перекрывало перегородку */
.search-input:focus{
  border: 0;
  box-shadow: none !important;
  /* Bootstrap повышает z-index инпута при фокусе — из-за этого может пропадать перегородка */
  z-index: 1 !important;
}

/* dropdown в input-group */
.category-dd{
  position: relative;
  display: flex; /* чтобы кнопка растягивалась по высоте */
  align-items: stretch;
}

/* Перегородка рисуется НЕ border-left кнопки, а псевдоэлементом — так она не пропадёт */
.category-dd::before{
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  bottom: 8px;
  width: 1px;
  background: #dee2e6;
  z-index: 10;
  pointer-events: none;
}

.category-btn{
  background: transparent;
  border: 0;
  box-shadow: none !important;
  padding: 0 18px;
  white-space: nowrap;
  position: relative;
  z-index: 11; /* выше input, чтобы divider не перекрывался */
  min-width: 180px; /* фиксируем ширину, чтобы ничего не прыгало */
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* делаем меню ровно по ширине кнопки */
.category-dd{
  flex: 0 0 auto;
}

.category-dd .dropdown-menu{
  min-width: 100%;
  width: 100%;
  z-index: 2000;
}

.category-dd .dropdown-item{
  white-space: normal;
}

/* можно подсветить всю рамку при фокусе внутри */
.custom-search:focus-within{
  border-color: #cbd5e1;
}

.search-autocomplete{
  position: relative;
  width: 100%;
}

.search-autocomplete--inline{
  --search-category-width: 186px;
  width: 100%;
}

.search-autocomplete--modal{
  width: 100%;
}

.search-autocomplete__field{
  position: relative;
  width: 100%;
  min-width: 0;
}

.search-autocomplete__bar{
  display: flex;
  align-items: stretch;
  width: 100%;
  min-width: 0;
}

.search-autocomplete--inline .custom-search{
  min-height: 40px;
  border-radius: 10px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.search-autocomplete--inline .search-icon{
  flex: 0 0 42px;
  width: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-left: 12px;
  padding-right: 0;
  font-size: 16px;
}

.search-autocomplete--inline .search-input{
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  min-height: 40px;
  padding: 0 10px 0 8px;
  font-size: 15px;
  line-height: 1.2;
  background: transparent;
}

.search-autocomplete--inline .search-input::placeholder{
  color: #94a3b8;
}

.search-autocomplete--inline .search-autocomplete__category{
  flex: 0 0 var(--search-category-width);
  width: var(--search-category-width);
  min-width: var(--search-category-width);
}

.search-autocomplete--inline .category-dd{
  align-self: stretch;
}

.search-autocomplete--inline .category-dd::before{
  top: 10px;
  bottom: 10px;
  background: #e2e8f0;
}

.search-autocomplete--inline .category-btn{
  width: 100%;
  min-width: 0;
  min-height: 40px;
  padding: 0 16px;
  border: 0;
  border-radius: 0 18px 18px 0;
  background: transparent;
  color: #0f172a;
  font-size: 15px;
  font-weight: 500;
}

.search-autocomplete--inline .category-btn:hover,
.search-autocomplete--inline .category-btn:focus{
  background: #f8fafc;
}

.search-autocomplete--inline .category-label{
  display: block;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.search-autocomplete--inline .category-menu{
  min-width: var(--search-category-width);
  width: var(--search-category-width);
  margin-top: 6px;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 14px;
  box-shadow: 0 20px 44px rgba(15, 23, 42, 0.12);
  overflow: hidden;
}

.search-suggest{
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  background: #fff;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 18px;
  box-shadow: 0 24px 56px rgba(15, 23, 42, 0.16);
  overflow: hidden;
  z-index: 2600;
}

.search-suggest--inline{
  right: calc(var(--search-category-width) + 1px);
}

.search-suggest__list{
  max-height: min(360px, 60vh);
  overflow-y: auto;
  padding: 8px 0;
}

.search-suggest__item{
  width: 100%;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  background: transparent;
  border: 0;
  border-bottom: 1px solid rgba(148, 163, 184, 0.18);
  text-align: left;
  transition: background-color .16s ease, color .16s ease;
}

.search-suggest__item:hover,
.search-suggest__item.is-active{
  background: #f8fafc;
}

.search-suggest__item:last-child{
  border-bottom: 0;
}

.search-suggest__image{
  flex: 0 0 44px;
  width: 44px !important;
  height: 44px !important;
  min-width: 44px !important;
  max-width: 44px !important;
  min-height: 44px !important;
  max-height: 44px !important;
  border-radius: 12px;
  object-fit: cover;
  display: block;
  background: #f8fafc;
  box-shadow: inset 0 0 0 1px rgba(148, 163, 184, 0.16);
}

.search-suggest__body{
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
  overflow: hidden;
}

.search-suggest__title{
  display: block;
  color: #0f172a;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-suggest__meta{
  display: block;
  color: #64748b;
  font-size: 12px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.search-suggest__state{
  padding: 14px 16px;
  color: #64748b;
  font-size: 14px;
  line-height: 1.45;
}

.search-suggest__all{
  width: 100%;
  display: block;
  padding: 14px 16px;
  background: #f8fafc;
  border: 0;
  border-top: 1px solid rgba(148, 163, 184, 0.18);
  color: #0d6efd;
  font-size: 14px;
  font-weight: 700;
  text-align: left;
  transition: background-color .16s ease, color .16s ease;
}

.search-suggest__all:hover{
  background: #eef4ff;
  color: #0b5ed7;
}

.search-autocomplete--modal .search-suggest{
  top: calc(100% + 12px);
}

@media (max-width: 1199.98px){
  .header-grid > .text-center{
    padding-inline: 20px;
  }

  .header-search-desktop{
    max-width: 640px;
  }

  .search-autocomplete--inline{
    --search-category-width: 170px;
  }

  .search-autocomplete--inline .search-autocomplete__category,
  .search-autocomplete--inline .category-menu{
    width: var(--search-category-width);
    min-width: var(--search-category-width);
  }
}

@media (min-width: 992px){
  .header-grid{
    grid-template-columns: auto minmax(0, 800px) auto;
  }
}

/* кнопка отправки в модальном поиске */
.search-submit-btn{
  background: #0d6efd; /* bootstrap primary */
  color: #fff;
  border: 0;
  border-radius: 10px;
  padding: 10px 18px;
  font-weight: 600;
  white-space: nowrap;
}

/* кнопка "Пошук" под полем в модальном окне */
.search-modal__submit{
  display: flex;
  justify-content: center;
  margin-top: 14px;
}

.search-modal__submit .search-submit-btn{
  width: 56%; /* ~50-60% ширины модалки */
  max-width: 440px;
  min-width: min(240px, 100%);
}

.search-submit-btn:hover{
  background: #0b5ed7;
  color: #fff;
}

/* ========== Fullscreen Search Modal ========== */
.search-modal{
  position: fixed;
  inset: 0;
  display: none;
  z-index: 5000;
}

.search-modal.is-open{
  display: block;
}

.search-modal__panel{
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.98);
  padding: 24px;
  overflow-y: auto;
  overflow-x: hidden;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.search-modal__content{
  width: min(92vw, 700px);
  min-height: calc(100dvh - 48px);
  margin: 0 auto;
  display: grid;
  place-items: center;
}

.search-modal__content > *{
  width: 100%;
}

.search-modal__content--card{
  width: 100%;
  max-width: none;
}

.search-modal__content--search{
  width: min(92vw, 700px);
}

.search-modal__card{
  width: min(92vw, 680px);
  margin: 0 auto;
  padding: 28px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid #e5e7eb;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.16);
  display: grid;
  gap: 20px;
}

.search-modal__card--confirm{
  width: min(92vw, 520px);
}

.search-modal__card-head{
  display: grid;
  gap: 8px;
}

.search-modal__card-title{
  margin: 0;
  font-size: clamp(24px, 3vw, 32px);
  font-weight: 800;
  line-height: 1.08;
  color: #111827;
}

.search-modal__card-subtitle{
  margin: 0;
  color: #6b7280;
  line-height: 1.55;
}

.search-modal__card-body{
  display: grid;
  gap: 18px;
}

.search-modal__card-actions{
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.search-modal__card-actions .btn,
.search-modal__card-actions .checkout-submit{
  width: auto;
  margin-top: 0;
}

.search-modal__confirm-summary{
  display: grid;
  gap: 6px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  background: #f8fafc;
  color: #475569;
}

.search-modal__confirm-summary strong{
  color: #111827;
}

.search-modal__close{
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.search-modal__close i{
  font-size: 26px;
}

/* точнее под требование "< 990px" */
@media (max-width: 989.98px){
  .header-search-desktop{ display: none !important; }
  .userMenu .search-open-btn,
  .userMenu button:not(.install-app-button--header):not(:last-child){
    display: none !important;
  }
  .userMenu{
    gap: 0 !important;
  }
}

@media (max-width: 575.98px){
  .install-app-button--header{
    width: 38px;
    min-width: 38px;
    height: 38px;
    min-height: 38px;
    padding: 0;
    border-radius: 12px;
    box-shadow: none;
  }

  .install-app-button--header span{
    display: none;
  }

  .install-app-button--header i{
    font-size: 17px;
  }

  .install-app-popup{
    right: 12px;
    left: 12px;
    bottom: calc(74px + env(safe-area-inset-bottom, 0px));
  }

  .install-app-popup__card{
    width: 100%;
    padding: 18px 16px 16px;
    border-radius: 22px;
  }

  .install-app-popup__actions{
    flex-direction: column;
    align-items: stretch;
  }

  .install-app-button--popup{
    width: 100%;
  }

  .footer-bottom{
    flex-direction: column;
    align-items: flex-start;
  }
}

/* На мобильных: выбор категории под поиском */
.search-modal .search-modal__row{
  display: flex;
  align-items: center;
  width: 100%;
  border: 1px solid #dee2e6;
  border-radius: 12px;
  background: #fff;
}

.search-modal .search-icon{
  background: transparent;
  border: 0;
  padding: 0 12px;
}

.search-modal .search-input{
  border: 0;
  min-height: 52px;
}

.search-modal .search-modal__category{
  width: 100%;
  margin-top: 12px;
}

.search-modal .search-modal__category::before{
  display: none;
}

.search-modal .search-modal__category .category-btn{
  width: 100%;
  min-height: 48px;
  min-width: 0;
  justify-content: center;
  border: 1px solid #dee2e6;
  border-radius: 12px;
}

.search-modal .category-menu{
  max-height: min(48vh, 320px);
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
}

.search-modal .search-modal__submit{
  margin-top: 14px;
}

.search-modal .search-modal__submit .search-submit-btn{
  width: 100%;
  max-width: none;
}

@media (max-width: 575.98px){
  .search-modal__panel{
    padding: 18px;
    display: grid;
    place-items: center;
  }
  .search-modal__content{
    min-height: auto;
  }
  .search-modal__card{
    width: 100%;
    padding: 22px 18px;
    border-radius: 24px;
  }
  .search-modal__card-actions{
    flex-direction: column-reverse;
    align-items: stretch;
  }
  .search-modal__card-actions .btn,
  .search-modal__card-actions .checkout-submit{
    width: 100%;
  }

  .search-suggest{
    max-width: 100%;
  }
}

@media (max-width: 989.98px){
  .search-modal__panel{
    display: grid;
    place-items: center;
    padding: 24px 18px;
  }

  .search-modal__content{
    width: min(100%, 700px);
    min-height: auto;
    margin: 0;
  }

  .search-modal__content--search{
    position: static;
    width: min(100%, 420px);
    transform: none;
    display: grid;
    place-items: center;
  }
}

/* ========== Offcanvas side menu tweaks ========== */
.offcanvas{
  --bs-offcanvas-width: 320px;
  height: 100dvh;
}

.offcanvas-body{
  overflow-y: auto;
  overscroll-behavior: contain;
  -webkit-overflow-scrolling: touch;
  padding-bottom: calc(24px + env(safe-area-inset-bottom, 0px));
}

.side-nav{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.side-link,
.side-link--btn{
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #111827;
  font-weight: 600;
}

.side-link:hover,
.side-link--btn:hover{
  background: #f1f5f9;
}

.side-link--btn{
  width: 100%;
  border: 0;
  background: transparent;
}

.side-sub{
  padding: 6px 6px 6px 18px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.side-sublink{
  padding: 10px 12px;
  border-radius: 12px;
  text-decoration: none;
  color: #334155;
  font-weight: 500;
}

.side-sublink:hover{
  background: #f8fafc;
}

/* Header top/bottom borders */
.header-top{
    border-bottom: 1px solid #dee0ea;
}
.header-bottom{
    border-bottom: 1px solid #dee0ea;
}

/* Header secondary links */
.header-links-nav .header-link{
    display: inline-block;
    padding: 6px 8px;
    text-decoration: none;
    color: inherit;
    font-weight: 500;
    border-radius: 8px;
    transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
    text-transform: uppercase;
    letter-spacing: .02em;
}
.header-links-nav .header-link:hover{
    background: #ebdcc3;
    color: inherit;
    transform: translateY(-1px);
}
/* Make dropdown toggle look like other links */
.header-links-nav .dropdown-toggle::after{
    margin-left: .35rem;
}

/* Hide the secondary links menu on screens < 990px */
@media (max-width: 989.98px){
  .header-bottom.header-links{ display: none !important; }
}

/* ========== Афіші / Posters slider ========== */
.afisha-wrap{
  padding: 18px 0 6px;
}

.afisha-carousel{
  max-width: 1220px;
  margin-inline: auto;
  border-radius: 16px;
  overflow: hidden;
  background: transparent;
}

@media (min-width: 992px){
  .afisha-carousel{
    border-radius: 18px;
    border: none;
    box-shadow: none;
  }
  .afisha-carousel .carousel-inner,
  .afisha-carousel .carousel-item,
  .afisha-carousel .afisha-img{
    border-radius: inherit;
  }
}

.afisha-carousel .carousel-inner{
  border-radius: inherit;
  overflow: hidden;
  /* позволяем вертикальный скролл страницы, но ловим горизонтальные свайпы сами */
  touch-action: pan-y;
}

.afisha-slide{
  min-height: 240px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.afisha-slide__content{
  width: min(920px, 92%);
  padding: 26px 22px;
  color: #0b1220;
}

.afisha-title{
  font-size: 32px;
  font-weight: 800;
  line-height: 1.1;
  margin: 0 0 8px;
}

.afisha-text{
  margin: 0;
  font-size: 16px;
  opacity: .9;
}

.afisha-btn{
  margin-top: 14px;
  border-radius: 12px;
  font-weight: 700;
}

/* Афіші: обкладинки (cover images) + легкий оверлей для читабельності */
.afisha-1{
  background-image:
    radial-gradient(1200px 420px at 20% 20%, rgba(255,255,255,.90), rgba(255,255,255,.35)),
    linear-gradient(90deg, rgba(0,0,0,.25), rgba(0,0,0,.10)),
    url('../img/afisha-1.jpg');
  background-size: cover;
  background-position: center;
}
.afisha-2{
  background-image:
    radial-gradient(1200px 420px at 80% 30%, rgba(255,255,255,.88), rgba(255,255,255,.33)),
    linear-gradient(90deg, rgba(0,0,0,.22), rgba(0,0,0,.10)),
    url('../img/afisha-2.jpg');
  background-size: cover;
  background-position: center;
}
.afisha-3{
  background-image:
    radial-gradient(1200px 420px at 35% 35%, rgba(255,255,255,.88), rgba(255,255,255,.33)),
    linear-gradient(90deg, rgba(0,0,0,.22), rgba(0,0,0,.10)),
    url('../img/afisha-3.jpg');
  background-size: cover;
  background-position: center;
}

@media (max-width: 575.98px){
  .afisha-slide{ min-height: 200px; }
  .afisha-title{ font-size: 24px; }
}


/* === Афіші: тепер як зображення (без тексту) === */
.afisha-carousel .carousel-item { background: transparent; }

/*
  Адаптивний слайдер афіш:
  - показуємо зображення повністю без обрізання
  - без жорсткої прив'язки блоку до висоти/пропорції
*/
.afisha-carousel .carousel-inner{
  position: relative;
  background: transparent;
}

.afisha-carousel .afisha-img{
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
  object-position: center;
  max-height: none;
  margin-inline: auto;
  background: transparent;
}

.afisha-link{
  position: relative;
  display: block;
  color: inherit;
  text-decoration: none;
}

.afisha-caption{
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(15, 23, 42, 0.04) 0%, rgba(15, 23, 42, 0.14) 45%, rgba(15, 23, 42, 0.7) 100%);
}

.afisha-caption__content{
  width: min(440px, 100%);
  padding: clamp(14px, 2.8vw, 28px);
  color: #fff;
}

.afisha-caption__eyebrow{
  display: inline-flex;
  align-items: center;
  margin-bottom: 8px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.18);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.afisha-caption__content strong{
  display: block;
  font-size: clamp(24px, 4.1vw, 44px);
  line-height: 1.02;
  font-weight: 900;
  letter-spacing: .01em;
  text-shadow: 0 3px 16px rgba(2, 6, 23, .5);
  text-wrap: balance;
}

.afisha-caption__cta{
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 16px;
  padding: 10px 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, #fbbf24 0%, #f97316 100%);
  color: #111827;
  font-size: 15px;
  font-weight: 800;
  letter-spacing: .01em;
  box-shadow: 0 8px 18px rgba(249, 115, 22, .35);
}

.home-discovery{
  padding: 16px 0 12px;
}

.home-discovery__grid{
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 18px;
  align-items: stretch;
}

.home-discovery__panel,
.home-benefit-card{
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.07);
}

.home-discovery__panel{
  padding: clamp(22px, 3vw, 30px);
  background:
    radial-gradient(560px 240px at 0% 0%, rgba(254, 240, 138, 0.28), transparent 60%),
    radial-gradient(420px 220px at 100% 0%, rgba(191, 219, 254, 0.38), transparent 60%),
    #fff;
}

.home-discovery__eyebrow{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff1f2;
  color: #be123c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.home-discovery__title{
  margin: 14px 0 8px;
  color: #0f172a;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.06;
  font-weight: 800;
  text-wrap: balance;
}

.home-discovery__text{
  margin: 0;
  max-width: 62ch;
  color: #475569;
  font-size: 15px;
  line-height: 1.6;
}

.home-discovery__section{
  margin-top: 18px;
}

.home-discovery__section-title{
  margin-bottom: 10px;
  color: #0f172a;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: .04em;
  text-transform: uppercase;
}

.home-discovery__chips{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.home-discovery__chip{
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(148, 163, 184, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.86);
  color: #0f172a;
  text-decoration: none;
  font-size: 14px;
  font-weight: 600;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, color .18s ease;
}

.home-discovery__chip:hover{
  color: #b91c1c;
  border-color: rgba(248, 113, 113, 0.48);
  box-shadow: 0 10px 24px rgba(248, 113, 113, 0.12);
  transform: translateY(-1px);
}

.home-discovery__chip.is-placeholder{
  min-width: 132px;
  background: rgba(241, 245, 249, 0.9);
  border-color: transparent;
}

.home-discovery__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.home-discovery__cta{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 10px 18px;
  border-radius: 14px;
  background: #111827;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 14px 24px rgba(17, 24, 39, 0.16);
}

.home-discovery__cta:hover{
  color: #fff;
  background: #7f1d1d;
}

.home-discovery__cta--ghost{
  background: rgba(255, 255, 255, 0.72);
  color: #0f172a;
  box-shadow: none;
  border: 1px solid rgba(148, 163, 184, 0.3);
}

.home-discovery__cta--ghost:hover{
  color: #7f1d1d;
  background: #fff;
}

.home-discovery__benefits{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(12px, 1.8vw, 18px);
}

.home-discovery__benefits--standalone{
  align-items: stretch;
}

.home-benefit-card{
  min-height: 100%;
  padding: clamp(18px, 2vw, 22px);
}

.home-benefit-card__icon{
  width: 52px;
  height: 52px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  background: linear-gradient(135deg, #f6efe2 0%, #ebdcc3 58%, #ddc19b 100%);
  border: 1px solid rgba(151, 118, 74, 0.14);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 10px 24px rgba(203, 171, 127, 0.18);
  color: #7b5a33;
  font-size: 20px;
}

.home-benefit-card h3{
  margin: 0 0 8px;
  color: #0f172a;
  font-size: clamp(17px, 1.6vw, 18px);
  font-weight: 800;
  line-height: 1.35;
}

.home-benefit-card p{
  margin: 0;
  color: #475569;
  font-size: clamp(14px, 1.3vw, 15px);
  line-height: 1.6;
}

@media (max-width: 575.98px){
  .afisha-wrap{
    padding: 10px 0 4px;
  }
  .afisha-carousel .carousel-inner{
    border-radius: 12px;
  }
  .afisha-carousel .carousel-indicators{
    margin-bottom: .2rem;
  }
  .afisha-carousel .carousel-indicators [data-bs-target]{
    width: 7px;
    height: 7px;
    border-radius: 999px;
  }
  .afisha-carousel .carousel-control-prev,
  .afisha-carousel .carousel-control-next{
    display: none;
  }
  .afisha-caption{
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 54%, rgba(15, 23, 42, .66) 100%);
  }
  .afisha-caption__content{
    width: min(78%, 270px);
    padding: 10px 10px 12px;
  }
  .afisha-caption__content strong{
    font-size: clamp(14px, 4.2vw, 17px);
    line-height: 1.18;
    max-width: 22ch;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-wrap: pretty;
  }
  .afisha-caption__cta{
    gap: 6px;
    margin-top: 6px;
    padding: 6px 10px;
    font-size: 12px;
    border-radius: 12px;
    box-shadow: 0 4px 10px rgba(249, 115, 22, .28);
  }
  .afisha-caption__cta i{
    font-size: 11px;
  }
}

@media (max-width: 991.98px){
  .home-discovery__grid{
    grid-template-columns: 1fr;
  }
  .home-discovery__benefits{
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
  }
  .home-discovery__benefits--standalone .home-benefit-card:last-child:nth-child(odd){
    grid-column: 1 / -1;
  }
  .home-benefit-card{
    padding: 18px;
  }
}

@media (max-width: 767.98px){
  .home-discovery{
    padding-top: 10px;
  }
  .home-discovery__panel{
    border-radius: 20px;
    padding: 20px;
  }
  .home-discovery__benefits{
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .home-benefit-card{
    padding: 16px;
    border-radius: 20px;
  }
  .home-benefit-card__icon{
    width: 46px;
    height: 46px;
    border-radius: 14px;
    margin-bottom: 12px;
    font-size: 18px;
  }
  .home-benefit-card h3{
    margin-bottom: 6px;
    font-size: 17px;
  }
  .home-benefit-card p{
    line-height: 1.55;
  }
}

@media (max-width: 575.98px){
  .home-discovery__chips{
    gap: 8px;
  }
  .home-discovery__chip{
    min-height: 38px;
    padding: 8px 12px;
    font-size: 13px;
  }
  .home-discovery__actions{
    display: grid;
    grid-template-columns: 1fr;
  }
  .home-discovery__cta{
    width: 100%;
  }
  .home-discovery__benefits--standalone{
    gap: 10px;
  }
  .home-benefit-card{
    padding: 14px;
  }
  .home-benefit-card__icon{
    width: 42px;
    height: 42px;
    border-radius: 12px;
    margin-bottom: 10px;
    font-size: 16px;
  }
}

/* === Топ продаж (горизонтальний скрол) === */
.top-sales{
  padding: 14px 0 40px;
}
.top-sales__head{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}
.top-sales__title{
  margin:0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .02em;
}
.top-sales__all{
  text-decoration:none;
  font-weight: 700;
}
.top-sales__row{
  display:flex;
  gap: 14px;
  overflow-x: auto;
  padding: 8px 2px 14px;
  /* Без snap: товар может остаться видимым частично, без автоприлипания. */
  scroll-snap-type: none;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-x pan-y;
  overscroll-behavior-x: contain;
}
.top-sales__row::-webkit-scrollbar{ height: 10px; }
.top-sales__row::-webkit-scrollbar-thumb{ background: rgba(0,0,0,.18); border-radius: 999px; }

.product-card{
  flex: 0 0 auto;
  width: 220px;
  scroll-snap-align: start;
  border: 1px solid rgba(0,0,0,.10);
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}
.product-card__overlay-link{
  position: absolute;
  inset: 0;
  z-index: 1;
}
.product-card__img{
  display:block;
  aspect-ratio: 1 / 1;
  overflow:hidden;
  position: relative;
  z-index: 2;
}
.product-card__img img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
  transition: transform .25s ease;
}
.product-card:hover .product-card__img img{
  transform: scale(1.04);
}
.product-card__body{
  padding: 10px 12px 12px;
  position: relative;
  z-index: 2;
}
.product-card__name{
  font-weight: 800;
  font-size: 15px;
  margin-bottom: 4px;
}
.product-card__title-link{
  color: inherit;
  text-decoration: none;
}
.product-card__meta{
  font-size: 13px;
  opacity: .8;
  margin-bottom: 8px;
}
.product-card__price{
  font-weight: 800;
}
@media (min-width: 1200px){
  .product-card{ width: 240px; }
}


/* Drag-to-scroll helpers for Top Sales */
.top-sales__row{ cursor: grab; user-select: none; }
.top-sales__row.is-grabbing{ cursor: grabbing; }
.top-sales__row.is-dragging a{ pointer-events: none; }

.top-sales__row img,
.top-sales__row a{
  -webkit-user-drag: none;
}

/* === Знижки (старa ціна) === */
.price-old{
  position: relative;
  display: inline-block;
  margin-right: 8px;
  font-weight: 700;
  opacity: .6;
}
.price-old::after{
  content: "";
  position: absolute;
  left: -3px;
  right: -3px;
  top: 55%;
  height: 2px;
  background: currentColor;
  transform: rotate(-10deg);
}

/* === Відгуки === */
.reviews{
  padding: 10px 0 52px;
}
.reviews__head{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}
.reviews__title{
  margin:0;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: .02em;
}
.reviews__subtitle{
  font-size: 13px;
  opacity: .75;
}
.reviews__slider{
  display: flex;
  gap: 14px;
  overflow-x: auto;
  padding: 8px 2px 14px;
  scroll-snap-type: none;
  scroll-behavior: auto;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  user-select: none;
  -webkit-user-select: none;
  touch-action: pan-y;
}
.reviews__slider::-webkit-scrollbar{ height: 10px; }
.reviews__slider::-webkit-scrollbar-thumb{ background: rgba(0,0,0,.18); border-radius: 999px; }
.review-card{
  flex: 0 0 auto;
  width: 280px;
  margin:0;
  border-radius: 18px;
  overflow:hidden;
  border: 1px solid rgba(0,0,0,.10);
  background: #fff;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .06);
}
.review-img{
  width: 100%;
  height: 260px;
  object-fit: cover;
  display:block;
}
.review-cap{
  padding: 10px 12px;
  font-weight: 800;
  font-size: 13px;
  opacity: .9;
}
.reviews__slider.is-grabbing{ cursor: grabbing; }
.reviews__slider.is-dragging a{ pointer-events: none; }
.reviews__slider img,
.reviews__slider a{
  -webkit-user-drag: none;
}
@media (max-width: 991.98px){
  .review-card{ width: 250px; }
  .review-img{ height: 240px; }
}
@media (max-width: 575.98px){
  .reviews__head{ flex-direction: column; align-items: flex-start; }
  .review-card{ width: 86vw; }
  .review-img{ height: 260px; }
}

/* === Footer === */
.site-footer{
  background: #212121;
  color: rgba(255,255,255,.92);
  padding: 44px 0 22px;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
}
.footer-title{
  font-weight: 900;
  letter-spacing: .02em;
  margin-bottom: 10px;
}
.footer-list{
  list-style: none;
  padding:0;
  margin:0;
  display:flex;
  flex-direction: column;
  gap: 8px;
}
.footer-list--cols{
  columns: 2;
  column-gap: 18px;
}
.footer-list--cols li{
  break-inside: avoid;
  margin-bottom: 8px;
}
.footer-link{
  color: rgba(255,255,255,.86);
  text-decoration: none;
}
.footer-link:hover{
  color: #fff;
  text-decoration: underline;
}

.footer-contact-stack{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  margin-top: 4px;
}

.footer-socials{
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 6px;
}

.footer-social-link{
  width: 34px;
  height: 34px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .3);
  transition: background-color .2s ease, border-color .2s ease, color .2s ease;
}

.footer-social-link:hover{
  background: #db000b;
  border-color: #db000b;
  color: #fff;
}

.footer-social-link i{
  font-size: 15px;
}
.footer-muted{
  color: rgba(255,255,255,.65);
}
.footer-bottom{
  border-top: 1px solid rgba(255,255,255,.12);
  margin-top: 22px;
  padding-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  flex-wrap: wrap;
}
.footer-copy{
  font-size: 13px;
  color: rgba(255,255,255,.70);
}
/* ========= Product card buttons (favorites/cart/buy) ========= */
.product-card{position:relative;}

/* Favorite (heart) button on top-right of product image */
.favorite-btn{
  position:absolute;
  top:10px;
  right:10px;
  z-index:5;
  background:#fff;
  border-radius:50%;
  width:36px;
  height:36px;
  display:flex;
  align-items:center;
  justify-content:center;
  cursor:pointer;
  border:none;
  box-shadow:0 2px 6px rgba(0,0,0,.2);
  color:#111;
  transition:transform .18s ease, box-shadow .18s ease;
  opacity:1;               /* important: do not disappear on hover */
  visibility:visible;      /* important: do not disappear on hover */
  pointer-events:auto;
  z-index: 3;
}
.favorite-btn:hover{transform:scale(1.06);}
.favorite-btn i{pointer-events:none;}
/* Heart fill animation */
.favorite-btn i.fa-heart{transition:transform .2s ease, color .2s ease;}
.favorite-btn.active i{color:#e11d48;animation:heartPop .35s ease;}
@keyframes heartPop{0%{transform:scale(.9);}55%{transform:scale(1.25);}100%{transform:scale(1);}}

/* Action buttons under price */
.product-actions{
  margin-top:10px;
  display:flex;
  gap:10px;
  position: relative;
  z-index: 3;
}
.buy-btn{
  flex:1;
  padding:8px 10px;
  background:#111;
  color:#fff;
  border:none;
  cursor:pointer;
  border-radius:10px;
}
.cart-btn{
  width:42px;
  display:flex;
  align-items:center;
  justify-content:center;
  background:#111;
  color:#fff;
  border:none;
  cursor:pointer;
  border-radius:10px;
  transition:background-color .2s ease, transform .18s ease;
}
.cart-btn:hover{transform:translateY(-1px);}
.cart-btn.active{background:#e11d48;}
.cart-btn i{pointer-events:none;}

/* Ensure hover overlays don't hide the buttons */
.product-card:hover .favorite-btn{opacity:1;visibility:visible;}
.product-card:hover .favorite-btn,
.product-card:hover .product-actions{z-index:5;}

/* ========= Toast notification ========= */
.toast{
  position:fixed;
  left:50%;
  bottom:18px;
  transform:translateX(-50%);
  background:rgba(17,17,17,.92);
  color:#fff;
  padding:12px 14px;
  border-radius:14px;
  display:flex;
  align-items:center;
  gap:10px;
  box-shadow:0 10px 30px rgba(0,0,0,.25);
  opacity:0;
  pointer-events:none;
  transition:opacity .22s ease, transform .22s ease;
  z-index:9999;
  max-width:min(92vw, 460px);
}
.toast.show{opacity:1;transform:translateX(-50%) translateY(-6px);}
.toast .toast-icon{color:#22c55e;}

/* ========= Mobile bottom nav ========= */
.mobile-bottom-nav{
  display: none;
}

@media (max-width: 989.98px){
  .header-cart-link-mobile{
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 28px;
    padding-right: 6px;
    flex-shrink: 0;
  }

  .header-cart-link-mobile .menu-badge{
    top: -7px;
    right: 0;
    min-width: 16px;
    height: 16px;
    padding: 0 4px;
    font-size: 10px;
    line-height: 16px;
  }

  .mobile-bottom-nav__item--with-badge{
    position: relative;
  }

  .mobile-bottom-nav__item--with-badge .menu-badge{
    top: 8px;
    right: 18px;
  }

  .mobile-bottom-nav{
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1200;
    display: block;
    background: rgba(255,255,255,.98);
    border-top: 1px solid #e5e7eb;
    box-shadow: 0 -8px 20px rgba(15, 23, 42, .08);
    backdrop-filter: blur(6px);
    padding-bottom: max(0px, env(safe-area-inset-bottom));
  }

  .mobile-bottom-nav__grid{
    height: 64px;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    align-items: center;
  }

  .mobile-bottom-nav__item{
    height: 100%;
    display: inline-flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    text-decoration: none;
    color: #334155;
    background: transparent;
    border: 0;
    padding: 0;
    font: inherit;
  }

  .mobile-bottom-nav__icon{
    font-size: 18px;
    line-height: 1;
  }

  .mobile-bottom-nav__label{
    font-size: 11px;
    line-height: 1;
    text-transform: lowercase;
  }

  body{
    padding-bottom: calc(64px + max(0px, env(safe-area-inset-bottom)));
  }

  .site-footer{
    padding: 30px 0 calc(94px + env(safe-area-inset-bottom, 0px));
  }

  .site-footer .container{
    width: 90% !important;
    max-width: 90% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }

  .footer-list--cols{
    columns: 1;
  }
}

@media (max-width: 389.98px){
  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl{
    width: 94% !important;
    max-width: 94% !important;
  }

  .guest-session{
    min-width: 0;
    max-width: 100%;
    padding: 4px 8px;
    gap: 6px;
  }

  .guest-session__id{
    max-width: 84px;
  }

  .category-btn{
    min-width: 112px;
    max-width: 38vw;
    padding: 0 12px;
    font-size: 13px;
  }

  .search-modal__panel{
    padding: 14px;
  }

  .search-modal__content,
  .search-modal__content--search,
  .search-modal__card{
    width: 100%;
  }

  .search-modal__content{
    min-height: calc(100dvh - 28px);
  }

  .search-modal__card{
    padding: 18px;
    border-radius: 20px;
  }

  .search-modal__submit .search-submit-btn{
    width: 100%;
    min-width: 0;
  }

  .home-discovery{
    padding: 12px 0 8px;
  }

  .home-discovery__grid,
  .home-discovery__benefits{
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .home-discovery__panel,
  .home-benefit-card{
    border-radius: 18px;
  }

  .home-discovery__panel{
    padding: 18px;
  }

  .home-discovery__title{
    font-size: clamp(22px, 8vw, 28px);
  }

  .home-discovery__text{
    font-size: 14px;
  }

  .home-discovery__chip,
  .home-discovery__cta{
    width: 100%;
    justify-content: center;
  }

  .product-card{
    width: min(78vw, 240px);
  }

  .review-card{
    width: min(84vw, 260px);
  }

  .review-img{
    height: 220px;
  }

  .toast{
    max-width: calc(100vw - 20px);
    padding: 10px 12px;
  }

  .mobile-bottom-nav__grid{
    height: 60px;
  }

  .mobile-bottom-nav__label{
    font-size: 10px;
  }

  .mobile-bottom-nav__item--with-badge .menu-badge{
    right: 12px;
  }
}

/* ========== Extra tweaks for very small screens (320px) ========== */
@media (max-width: 359.98px) {
  html, body { min-width: 320px; }

  /* Header: prevent overflow */
  .header-grid {
    gap: 0 !important;
  }

  /* Logo: never show on tiny screens (burger + center logo already works) */
  .logo img { max-width: 30px; }

  /* UserMenu: tighter gaps */
  .userMenu {
    gap: 0 !important;
  }

  /* Guest session badge: hide on really tiny screens to save space */
  .guest-session {
    display: none !important;
  }

  /* Cart/bag icon text: already hidden via d-none d-md-inline but ensure no overflow */
  .header-cart-link-mobile {
    font-size: 0; /* hide any residual text */
    min-width: 26px;
    padding-right: 4px;
  }
  .header-cart-link-mobile i {
    font-size: 18px;
  }
  .header-cart-link-mobile .menu-badge{
    right: 0;
  }

  /* Mobile bottom nav - tighten up */
  .mobile-bottom-nav__grid {
    height: 58px;
  }
  .mobile-bottom-nav__label {
    font-size: 9px;
    letter-spacing: -0.02em;
  }
  .mobile-bottom-nav__icon {
    font-size: 16px;
  }

  /* Afisha / banner slider */
  .afisha-wrap { padding: 8px 0 2px; }
  .afisha-caption {
    background: linear-gradient(180deg, rgba(15, 23, 42, 0) 58%, rgba(15, 23, 42, .64) 100%);
  }
  .afisha-caption__content {
    width: min(82%, 250px);
    padding: 8px 9px 10px;
  }
  .afisha-caption__content strong {
    font-size: 13px;
    line-height: 1.16;
    -webkit-line-clamp: 2;
  }
  .afisha-caption__cta {
    margin-top: 5px;
    padding: 5px 8px;
    font-size: 11px;
  }

  /* Discovery chips */
  .home-discovery__chips { gap: 6px; }
  .home-discovery__chip {
    min-height: 34px;
    padding: 7px 10px;
    font-size: 12px;
  }

  /* Product card in slider */
  .product-card,
  .top-sales__row .catalog-card {
    width: min(74vw, 220px);
    flex-basis: min(74vw, 220px);
    max-width: min(74vw, 220px);
  }

  /* Review card */
  .review-card { width: min(82vw, 240px); }

  /* Toast */
  .toast { max-width: calc(100vw - 16px); padding: 9px 11px; font-size: 13px; }

  /* Site footer */
  .site-footer { padding: 24px 0 calc(82px + env(safe-area-inset-bottom, 0px)); }

  /* Home discovery panel */
  .home-discovery__panel { padding: 14px; }
  .home-discovery__title { font-size: clamp(20px, 8vw, 26px); }
  .home-discovery__text { font-size: 13px; }

  /* Benefit cards */
  .home-benefit-card { padding: 12px; }
  .home-benefit-card__icon { width: 38px; height: 38px; border-radius: 10px; font-size: 15px; }
  .home-benefit-card h3 { font-size: 16px; margin-bottom: 4px; }
  .home-benefit-card p { font-size: 13px; }

  /* Top sales section */
  .top-sales__title { font-size: 19px; }

  /* Reviews section */
  .reviews__title { font-size: 19px; }
}

/* ========== Status / Error pages ========== */
.status-page{
  min-height: calc(100dvh - var(--site-header-height));
  margin-top: calc(-1 * var(--site-header-height));
  padding: clamp(28px, 5vw, 56px) 0;
  background:
    radial-gradient(960px 340px at 0% 0%, rgba(255, 247, 237, 0.92), rgba(255, 247, 237, 0) 62%),
    radial-gradient(820px 320px at 100% 0%, rgba(239, 246, 255, 0.92), rgba(239, 246, 255, 0) 58%),
    linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.status-page__shell{
  min-height: calc(100dvh - var(--site-header-height) - clamp(56px, 10vw, 112px));
  display: grid;
  place-items: center;
  gap: 22px;
}

.status-page__brand{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.status-page__brand img{
  width: min(240px, 62vw);
  height: auto;
  display: block;
}

.status-page__card{
  width: min(100%, 760px);
  padding: clamp(24px, 4vw, 42px);
  border-radius: 30px;
  border: 1px solid rgba(226, 232, 240, 0.96);
  background:
    radial-gradient(220px 140px at 100% 0%, rgba(251, 191, 36, 0.12), rgba(251, 191, 36, 0) 72%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, #ffffff 100%);
  box-shadow: 0 28px 64px rgba(15, 23, 42, 0.1);
  text-align: center;
}

.status-page__eyebrow{
  margin-bottom: 10px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #b45309;
}

.status-page__code{
  font-size: clamp(64px, 16vw, 132px);
  line-height: .92;
  font-weight: 900;
  letter-spacing: -.04em;
  color: #0f172a;
}

.status-page__title{
  margin: 14px 0 12px;
  font-size: clamp(28px, 4.2vw, 46px);
  line-height: 1.04;
  font-weight: 800;
  color: #111827;
}

.status-page__message{
  width: min(100%, 560px);
  margin: 0 auto;
  color: #64748b;
  font-size: 16px;
  line-height: 1.7;
}

.status-page__extra{
  margin-top: 14px;
  color: #94a3b8;
  font-size: 13px;
  line-height: 1.5;
}

.status-page__actions{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.status-page__action{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 20px;
  border-radius: 999px;
  border: 1px solid #111827;
  background: #111827;
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}

.status-page__action:hover{
  color: #fff;
  transform: translateY(-1px);
  box-shadow: 0 18px 28px rgba(15, 23, 42, 0.12);
}

.status-page__action.is-secondary{
  background: #fff;
  color: #111827;
  border-color: #dbe2eb;
}

.status-page__action.is-secondary:hover{
  color: #b91c1c;
  border-color: #fca5a5;
  background: #fff7f7;
}

@media (max-width: 575.98px){
  .status-page{
    padding: 22px 0;
  }

  .status-page__card{
    border-radius: 24px;
    padding: 24px 18px;
  }

  .status-page__message{
    font-size: 15px;
  }

  .status-page__actions{
    flex-direction: column;
    align-items: stretch;
  }

  .status-page__action{
    width: 100%;
  }
}
.shop-page{
  background:
    radial-gradient(1100px 360px at 0% -10%, #fff7ed 0%, transparent 58%),
    radial-gradient(900px 280px at 100% 0%, #eff6ff 0%, transparent 55%),
    #f7f8fc;
}

.shop-shell{ padding: 22px 0 44px; }

.shop-breadcrumbs{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 13px;
  color: #64748b;
}

.shop-breadcrumbs a{
  color: #334155;
  text-decoration: none;
}

.shop-breadcrumbs a:hover{ color: #db000b; }

.shop-breadcrumbs--bottom{
  margin-top: 20px;
  margin-bottom: 0;
  padding-top: 14px;
  border-top: 1px dashed #dbe2eb;
}

.shop-head{ margin-bottom: 14px; }

.shop-title{
  margin: 0 0 6px;
  font-size: clamp(24px, 2.8vw, 34px);
  font-weight: 800;
  line-height: 1.12;
}

.shop-subtitle{
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}

.shop-search{
  margin-top: 14px;
  max-width: 420px;
}

.shop-search--sidebar{
  margin: 0;
  padding: 14px 14px 14px;
  max-width: none;
  border-bottom: 1px dashed #e2e8f0;
}

.shop-search--mobile{
  margin: 0 0 16px;
  max-width: none;
}

.shop-search input{
  width: 100%;
  border: 1px solid #dbe2eb;
  border-radius: 14px;
  padding: 12px 16px;
  font-size: 14px;
  background: #fff;
  color: #0f172a;
  box-shadow: 0 6px 16px rgba(15, 23, 42, .04);
  box-sizing: border-box;
}

.shop-search input::placeholder{
  color: #94a3b8;
}

.shop-search input:focus{
  outline: none;
  border-color: #f87171;
  box-shadow: 0 0 0 4px rgba(248, 113, 113, .14);
}

.shop-layout{
  display: grid;
  grid-template-columns: 290px minmax(0, 1fr);
  gap: 16px;
  align-items: start;
}

.shop-filters-mobile-actions{
  display: none;
}

.shop-filters-toggle{
  display: none;
}

.shop-filters{
  position: sticky;
  top: var(--sticky-offset);
  max-height: calc(100vh - var(--sticky-offset) - 12px);
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable;
  scrollbar-width: thin;
  scrollbar-color: #cbd5e1 transparent;
  background: #fff;
  border: 1px solid #e6eaf2;
  border-radius: 16px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
  box-sizing: border-box;
}

.shop-filters::-webkit-scrollbar{
  width: 10px;
}

.shop-filters::-webkit-scrollbar-track{
  background: transparent;
}

.shop-filters::-webkit-scrollbar-thumb{
  background: #cbd5e1;
  border-radius: 999px;
  border: 2px solid #fff;
}

.shop-mobile-accordion{
  display: block;
}

.shop-categories{
  padding: 14px 14px 10px;
  border-bottom: 1px dashed #e2e8f0;
}

.shop-categories__list{
  display: grid;
  gap: 6px;
}

.shop-category-caption{
  margin: 0 0 8px;
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
}

.shop-category-link{
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
  min-height: 36px;
  padding: 7px 10px;
  border-radius: 10px;
  text-decoration: none;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
  border: 1px solid transparent;
  background: #f8fafc;
  transition: color .18s ease, border-color .18s ease, background-color .18s ease;
  cursor: pointer;
}

.shop-category-link:hover{
  color: #b91c1c;
  border-color: #fecaca;
  background: #fff7f7;
}

.shop-category-link.is-active{
  color: #b91c1c;
  border-color: #fca5a5;
  background: #fff1f2;
}

.shop-category-link--subcategory{
  padding-left: 18px;
}

.shop-category-link--subcategory::before{
  content: '';
  width: 6px;
  height: 6px;
  margin-right: 8px;
  border-radius: 999px;
  background: currentColor;
  opacity: .45;
  flex: 0 0 auto;
}

.shop-category-link--more{
  justify-content: center;
  text-align: center;
}

.filters-form{
  padding: 14px;
  width: 100%;
  box-sizing: border-box;
  padding-right: 12px;
}

.filter-block + .filter-block{
  margin-top: 14px;
  padding-top: 12px;
  border-top: 1px dashed #e2e8f0;
}

.filter-title{
  margin-bottom: 8px;
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
}

.filter-search{
  width: 100%;
  border: 1px solid #dbe2eb;
  border-radius: 10px;
  padding: 9px 10px;
  font-size: 14px;
  box-sizing: border-box;
}

.filter-search:focus{
  outline: 0;
  border-color: #fca5a5;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .14);
}

.filter-check{
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 6px;
  font-size: 13px;
  color: #334155;
  cursor: pointer;
}

.filter-check input{
  width: 15px;
  height: 15px;
  accent-color: #db000b;
}

#priceRange{
  width: 100%;
  accent-color: #db000b;
  box-sizing: border-box;
}

.filter-actions{ margin-top: 14px; }

.filter-btn{
  width: 100%;
  border: 1px solid #dbe2eb;
  border-radius: 10px;
  padding: 9px 10px;
  font-size: 13px;
  font-weight: 700;
  background: #fff;
  color: #334155;
  cursor: pointer;
  box-sizing: border-box;
}

.filter-btn:hover{
  border-color: #fca5a5;
  color: #b91c1c;
}

.shop-toolbar{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 12px;
}

.shop-count{
  font-size: 14px;
  color: #334155;
}

.shop-sort{
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #475569;
}

.shop-sort select{
  border: 1px solid #dbe2eb;
  border-radius: 10px;
  padding: 7px 10px;
  font-size: 13px;
  background: #fff;
}

.shop-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.top-sales__row{
  align-items: stretch;
}

.top-sales__row .catalog-card{
  flex: 0 0 220px;
  width: 220px;
  max-width: 220px;
  scroll-snap-align: start;
  min-height: 392px;
}

.top-sales__row .catalog-card__body{
  min-height: 148px;
  display: flex;
  flex-direction: column;
}

.top-sales__row .catalog-card__name{
  min-height: 44px;
  max-height: 44px;
  line-height: 1.35;
  overflow: hidden;
}

.top-sales__row .catalog-card__meta{
  min-height: 16px;
}

.top-sales__row .catalog-card__specs{
  min-height: 0;
}

.top-sales__row .catalog-card__img .placeholder{
  min-height: 220px !important;
}

.top-sales__row .catalog-card__footer{
  min-height: 0;
}

.top-sales__row .catalog-card__price{
  min-height: 0;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.top-sales__row .catalog-card__topline{
  min-height: 26px;
  max-height: 58px;
  overflow: hidden;
}

.top-sales__row .product-actions{
  margin-top: auto;
}

.product-related .top-sales__row{
  align-items: stretch;
}

.product-related .top-sales__row .catalog-card{
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 392px;
}

.product-related .top-sales__row .catalog-card__body{
  min-height: 148px;
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}

.product-related .top-sales__row .catalog-card__content{
  flex: 1 1 auto;
  min-height: 0;
}

.product-related .top-sales__row .catalog-card__name{
  min-height: 44px;
  max-height: 44px;
  line-height: 1.35;
  overflow: hidden;
}

.top-sales__row .catalog-card__name a,
.product-related .top-sales__row .catalog-card__name a{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-related .top-sales__row .product-actions{
  margin-top: auto;
}

@media (min-width: 1200px){
  .product-related .top-sales__row .catalog-card{
    min-height: 408px;
  }
}

@media (min-width: 1200px){
  .top-sales__row .catalog-card{
    flex-basis: 240px;
    width: 240px;
    max-width: 240px;
  }
}

.catalog-card{
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100%;
  border: 1px solid #e6eaf2;
  border-radius: 16px;
  background: #fff;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(15, 23, 42, .06);
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}

.catalog-card:hover{
  transform: translateY(-3px);
  border-color: #e6eaf2;
  box-shadow: 0 16px 34px rgba(15, 23, 42, .1);
}

.catalog-card__overlay-link{
  position: absolute;
  inset: 0;
  z-index: 1;
}

.catalog-card__topline{
  position: absolute;
  top: 10px;
  left: 10px;
  right: 54px;
  z-index: 3;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.catalog-card__badge{
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: #b91c1c;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .02em;
  backdrop-filter: blur(8px);
  box-shadow: 0 8px 18px rgba(15, 23, 42, .08);
}

.catalog-card__badge--muted{
  color: #334155;
}

.catalog-card__badge--promotion{
  color: #0b63f6;
  background: rgba(239, 246, 255, .96);
  border: 1px solid rgba(147, 197, 253, .72);
  box-shadow: 0 8px 18px rgba(59, 130, 246, .14);
}

.catalog-card__img{
  display: block;
  aspect-ratio: 1 / 1;
  background:
    radial-gradient(circle at top, rgba(255,255,255,.9), rgba(255,255,255,0) 42%),
    linear-gradient(180deg, #fff7ed 0%, #f8fafc 100%);
  position: relative;
  z-index: 2;
}

.catalog-card__discount-badge{
  position: absolute;
  left: 0;
  bottom: 0;
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #db000b;
  color: #fff;
  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .01em;
  z-index: 3;
}

.catalog-card__promotion-badge{
  position: absolute;
  left: 0;
  bottom: 0;
  min-height: 25px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0px 11px;
  background: #dc3545;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: .01em;
  border-top-right-radius: 0px;
  z-index: 3;
}

.catalog-card__promotion-badge--with-discount{
  left: 42px;
}

.catalog-card__img img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.catalog-card__body{
  padding: 12px 12px 12px;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 208px;
  flex: 1 1 auto;
}

.catalog-card__content{
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1 1 auto;
}

.catalog-card__name{
  margin: 0;
  font-size: 16px;
  font-weight: 800;
  line-height: 1.28;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  min-height: 42px;
}

.catalog-card__name a{
  color: #0f172a;
  text-decoration: none;
}

.catalog-card__name a:hover{
  color: #b91c1c;
}

.catalog-card__meta{
  margin: 0;
  font-size: 12px;
  color: #64748b;
  min-height: 16px;
}

.catalog-card__specs{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-content: start;
  min-height: 34px;
}

.catalog-card__spec{
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  color: #334155;
  font-size: 12px;
  line-height: 1.2;
}

.catalog-card__spec strong{
  color: #0f172a;
  font-weight: 800;
}

.catalog-card__spec span{
  white-space: nowrap;
}

.catalog-card__footer{
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 8px;
  margin-top: auto;
  min-height: 28px;
}

.catalog-card__price{
  margin: 0;
  font-size: 18px;
  font-weight: 800;
  color: #111827;
  display: flex;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 8px;
}

.catalog-card__price-current{
  color: #111827;
}

.catalog-card__price-from{
  color: #111827;
}

.catalog-card__price-old{
  color: #64748b;
  font-weight: 700;
}

.catalog-card__price s{
  margin-right: 0;
  color: #64748b;
  font-weight: 700;
}

.shop-empty{
  margin-top: 14px;
  padding: 20px;
  text-align: center;
  border-radius: 14px;
  border: 1px solid #e6eaf2;
  background: #fff;
  color: #475569;
}

.shop-empty h3{
  margin: 0 0 6px;
  font-size: 20px;
  font-weight: 800;
  color: #111827;
}

.shop-empty p{ margin: 0; }

.catalog-card .favorite-btn{
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  box-shadow: 0 10px 20px rgba(15, 23, 42, .12);
}

.catalog-card .product-actions{
  position: static !important;
  z-index: 3;
  margin-top: auto !important;
  display: flex;
  align-items: stretch;
  gap: 8px;
}

.catalog-card__body > .product-actions{
  margin-top: auto !important;
}

.catalog-card .product-actions .buy-btn,
.catalog-card .product-actions .cart-btn{
  min-height: 44px;
}

.catalog-card .product-actions .cart-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding-top: 0;
  padding-bottom: 0;
}

.catalog-card .product-actions .cart-btn.is-active i,
.catalog-card .favorite-btn.is-active i{
  color: #e11d48;
}

.shop-pagination{
  margin-top: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  flex-wrap: wrap;
}

.shop-page-list{
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.shop-page-btn{
  min-width: 38px;
  height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  border: 1px solid #dbe2eb;
  background: #fff;
  border-radius: 10px;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
  padding: 0 10px;
  box-sizing: border-box;
}

.shop-page-btn.is-active{
  border-color: #fca5a5;
  color: #b91c1c;
  background: #fff1f2;
}

.shop-page-btn:disabled{
  opacity: .5;
  cursor: not-allowed;
}

.shop-page-btn.is-disabled{
  opacity: .5;
  pointer-events: none;
}

.customer-avatar{
  --customer-avatar-size: 48px;
  --customer-avatar-radius: 18px;
  --customer-avatar-ring-start: #e5e7eb;
  --customer-avatar-ring-end: #cbd5e1;
  --customer-avatar-ring-glow: rgba(148, 163, 184, 0.22);
  --customer-avatar-fill: linear-gradient(135deg, #111827 0%, #334155 100%);
  --customer-avatar-color: #f8fafc;
  --customer-avatar-shadow: 0 18px 34px rgba(15, 23, 42, 0.18);
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: var(--customer-avatar-size);
  height: var(--customer-avatar-size);
  flex: 0 0 auto;
  border-radius: var(--customer-avatar-radius);
  background: linear-gradient(135deg, var(--customer-avatar-ring-start) 0%, var(--customer-avatar-ring-end) 100%);
  box-shadow:
    0 8px 18px rgba(15, 23, 42, .08),
    0 0 0 1px rgba(255,255,255,.86) inset,
    0 0 8px var(--customer-avatar-ring-glow),
    0 0 14px var(--customer-avatar-ring-glow);
}

.customer-avatar__inner{
  width: calc(100% - 4px);
  height: calc(100% - 4px);
  border-radius: var(--customer-avatar-radius);
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 2px solid rgba(255,255,255,.92);
  background: var(--customer-avatar-fill);
  color: var(--customer-avatar-color);
  box-shadow: var(--customer-avatar-shadow);
  margin: auto;
}

.customer-avatar__image{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.customer-avatar__initials{
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
  padding: 4px;
  font-size: clamp(13px, calc(var(--customer-avatar-size) * 0.34), 28px);
  font-weight: 800;
  letter-spacing: .04em;
  line-height: 1;
  text-transform: uppercase;
}

.account-persona{
  display: grid;
  gap: 14px;
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 22px;
  background:
    radial-gradient(180px 120px at 0% 0%, rgba(255,255,255,.78), rgba(255,255,255,0) 70%),
    linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
  border: 1px solid rgba(251, 146, 60, 0.18);
}

.account-persona--top{
  margin-bottom: 18px;
}

.account-persona__header{
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.account-persona__avatar{
  display: flex;
  align-items: center;
  justify-content: center;
}

.account-persona__text{
  min-width: 0;
  display: grid;
  gap: 4px;
}

.account-persona__eyebrow{
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #b45309;
}

.account-persona__name{
  font-size: 18px;
  line-height: 1.1;
  color: #111827;
}

.account-persona__subtext{
  min-width: 0;
  color: #6b7280;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.account-persona__meta{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.account-persona__meta-card{
  display: grid;
  gap: 4px;
  padding: 10px 12px;
  border-radius: 16px;
  background: rgba(255,255,255,.8);
  border: 1px solid rgba(226, 232, 240, .9);
}

.account-persona__meta-card span{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #92400e;
}

.account-persona__meta-card strong{
  font-size: 14px;
  color: #111827;
  overflow-wrap: anywhere;
}

.account-persona__meta-card--action{
  width: 100%;
  text-align: left;
  appearance: none;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}

.account-persona__meta-card--action:hover{
  transform: translateY(-1px);
  border-color: rgba(249, 115, 22, .28);
  box-shadow: 0 14px 28px rgba(249, 115, 22, .1);
}

.account-persona__meta-card--action:focus-visible{
  outline: 0;
  border-color: #f97316;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, .16);
}

.account-persona__completion{
  display: grid;
  gap: 8px;
}

.account-persona__completion-head{
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  color: #475569;
  font-size: 13px;
}

.account-persona__completion-head strong{
  color: #111827;
  font-size: 14px;
}

.account-persona__progress{
  height: 10px;
  border-radius: 999px;
  background: #e5e7eb;
  overflow: hidden;
}

.account-persona__progress span{
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #f97316 0%, #ef4444 100%);
}

.account-persona__hint{
  color: #6b7280;
  line-height: 1.45;
}

.account-profile-overview{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 18px;
  flex-wrap: wrap;
}

.account-profile-overview__stat{
  min-width: 150px;
  display: grid;
  gap: 4px;
  justify-items: center;
  padding: 14px 16px;
  border-radius: 18px;
  background: #fff7ed;
  border: 1px solid rgba(251, 146, 60, .18);
  text-align: center;
}

.account-profile-overview__stat strong{
  font-size: 28px;
  line-height: 1;
  color: #111827;
}

.profile-avatar-card{
  display: grid;
  gap: 18px;
}

.profile-avatar-card__preview{
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.profile-avatar-card__avatar{
  flex: 0 0 auto;
}

.profile-avatar-card__content{
  min-width: 0;
  display: grid;
  gap: 8px;
}

.profile-avatar-card__hint,
.profile-avatar-card__meta{
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

.profile-avatar-card__actions{
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
}

.profile-avatar-card__upload{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .18s ease, box-shadow .18s ease, opacity .18s ease;
  box-shadow: 0 14px 28px rgba(17, 24, 39, .16);
}

.profile-avatar-card__upload:hover{
  transform: translateY(-1px);
}

.profile-avatar-card__upload.is-disabled{
  opacity: .68;
  pointer-events: none;
}

.review-item__head{
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.review-item__identity{
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.review-item__identity-text{
  min-width: 0;
}

.review-item__avatar{
  align-self: flex-start;
}

.review-item__author,
.review-item__date{
  overflow-wrap: anywhere;
}

.account-profile-overview__stat span{
  color: #6b7280;
  font-size: 13px;
}

.account-profile-overview__chips{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.account-profile-overview__chip{
  display: inline-flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #be123c;
  font-size: 12px;
  font-weight: 700;
}

.account-profile-overview__success{
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 16px;
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
  font-weight: 600;
}

.account-tier-card{
  display: grid;
  gap: 16px;
  padding: 20px;
  border-radius: 24px;
  color: #fff;
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.15);
}

.account-tier-card__head{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  flex-wrap: wrap;
}

.account-tier-card__eyebrow{
  font-size: 12px;
  opacity: .72;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.account-tier-card__title{
  margin-top: 4px;
  font-size: clamp(28px, 4vw, 34px);
  font-weight: 800;
  line-height: 1.05;
}

.account-tier-card__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,0.08);
  font-weight: 700;
  text-align: center;
}

.account-tier-card__stats{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.account-tier-card__stat{
  min-width: 0;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,0.08);
}

.account-tier-card__stat-label{
  margin-bottom: 6px;
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255,255,255,0.72);
}

.account-tier-card__stat strong{
  display: block;
  font-size: 16px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.account-tier-card__progress-wrap{
  display: grid;
  gap: 8px;
}

.account-tier-card__progress-head{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.8);
  font-size: 13px;
  line-height: 1.45;
}

.account-tier-card__progress-head span:last-child{
  text-align: right;
}

.account-tier-card__progress{
  height: 10px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  overflow: hidden;
}

.account-tier-card__progress div{
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, #facc15 0%, #fb7185 100%);
}

.saved-addresses-list{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 18px;
}

.saved-addresses-list--checkout{
  margin-top: 0;
  margin-bottom: 16px;
}

.saved-address-card{
  display: grid;
  gap: 12px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid #e2e8f0;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
}

.saved-address-card--select{
  width: 100%;
  text-align: left;
  appearance: none;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}

.saved-address-card--select:hover{
  transform: translateY(-1px);
  border-color: #fdba74;
  box-shadow: 0 14px 28px rgba(249, 115, 22, .12);
}

.saved-address-card--select:focus-visible{
  outline: 0;
  border-color: #f97316;
  box-shadow: 0 0 0 4px rgba(249, 115, 22, .18);
}

.saved-address-card.is-default{
  border-color: rgba(249, 115, 22, .26);
}

.saved-address-card.is-selected{
  border-color: #f97316;
  background: linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
  box-shadow: 0 18px 32px rgba(249, 115, 22, .15);
}

.saved-address-card__head{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: flex-start;
}

.saved-address-card__head strong{
  display: block;
  color: #111827;
  font-size: 15px;
  line-height: 1.35;
}

.saved-address-card__summary{
  margin-top: 4px;
  color: #475569;
  line-height: 1.45;
}

.saved-address-card__meta{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: #6b7280;
  font-size: 13px;
}

.saved-address-card__meta span{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(255,255,255,.86);
  border: 1px solid #e5e7eb;
}

.saved-address-card__actions{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}

.saved-address-card__badge{
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 999px;
  background: #fff7ed;
  border: 1px solid rgba(249, 115, 22, .24);
  color: #c2410c;
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.account-breadcrumbs{
  margin-top: 10px;
  margin-bottom: 0;
}

.account-breadcrumbs__item{
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.account-breadcrumbs__separator{
  color: #94a3b8;
}

.account-page .header-top > .container,
.account-page .header-bottom > .container{
  width: 100% !important;
  max-width: 100% !important;
  padding-left: clamp(16px, 2vw, 24px) !important;
  padding-right: clamp(16px, 2vw, 24px) !important;
}

.account-page .site-header{
  width: 100%;
}

.account-head-toggle{
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #dbe2eb;
  background: #ffffff;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: none;
}

.account-head-toggle__icon{
  width: 18px;
  height: 14px;
  display: grid;
  align-content: space-between;
}

.account-head-toggle__icon span{
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
}

.account-mobile-sidebar{
  display: none;
}

.account-sidebar-drawer{
  display: none;
}

.account-sidebar{
  display: grid;
  align-content: start;
  gap: 14px;
  top: calc(var(--site-header-height) + 14px);
}

.account-orders-mobile{
  display: none;
}

.account-order-card{
  display: grid;
  gap: 14px;
  min-width: 0;
  padding: 16px;
  border-radius: 18px;
  border: 1px solid rgba(226, 232, 240, .96);
  background:
    radial-gradient(140px 90px at 100% 0%, rgba(251, 191, 36, .10), rgba(251, 191, 36, 0) 70%),
    linear-gradient(180deg, #ffffff 0%, #fffaf5 100%);
  box-shadow: 0 14px 28px rgba(15, 23, 42, .05);
}

.account-order-card__head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.account-order-card__identity{
  min-width: 0;
  display: grid;
  gap: 4px;
}

.account-order-card__eyebrow{
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: #9a3412;
}

.account-order-card__number{
  font-size: 18px;
  line-height: 1.2;
  font-weight: 800;
  color: #111827;
  text-decoration: none;
  overflow-wrap: anywhere;
}

.account-order-card__number:hover{
  color: #b91c1c;
}

.account-order-card__status{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(17, 24, 39, .06);
  color: #111827;
  font-size: 12px;
  font-weight: 800;
  text-align: center;
}

.account-order-card__meta{
  display: grid;
  gap: 10px;
}

.account-order-card__meta-row{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
  padding: 10px 12px;
  border-radius: 14px;
  background: rgba(255,255,255,.86);
  border: 1px solid rgba(226, 232, 240, .92);
}

.account-order-card__meta-row span{
  color: #64748b;
  font-size: 13px;
}

.account-order-card__meta-row strong{
  min-width: 0;
  color: #111827;
  font-size: 14px;
  text-align: right;
  overflow-wrap: anywhere;
}

.account-order-card__actions{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.account-order-card__actions .btn{
  width: 100%;
}

.account-persona--inline{
  margin-bottom: 0;
}

.account-sidebar__nav{
  display: grid;
  gap: 10px;
}

.account-sidebar__logout{
  margin-top: auto;
}

.account-friend-card{
  background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
  border-color: rgba(251, 146, 60, .16) !important;
}

.account-friend-card__identity{
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 12px;
  align-items: center;
}

.account-friend-avatar{
  display: flex;
  align-items: center;
  justify-content: center;
}

.points-journal-hero{
  display: grid;
  gap: 18px;
  background:
    radial-gradient(220px 140px at 0% 0%, rgba(255,255,255,.84), rgba(255,255,255,0) 72%),
    linear-gradient(135deg, #111827 0%, #1f2937 50%, #9a3412 100%);
  color: #fff;
  border: 0;
  box-shadow: 0 24px 48px rgba(15, 23, 42, .18);
}

.points-journal-hero__content{
  display: grid;
  gap: 10px;
}

.points-journal-hero__eyebrow{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(255,255,255,.72);
}

.points-journal-hero__title{
  margin: 0;
  font-size: clamp(24px, 3vw, 34px);
  line-height: 1.08;
  font-weight: 800;
}

.points-journal-hero__text{
  margin: 0;
  max-width: 780px;
  color: rgba(255,255,255,.84);
  line-height: 1.6;
}

.points-journal-hero__stats{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.points-journal-stat{
  display: grid;
  gap: 8px;
  min-width: 0;
  padding: 14px;
  border-radius: 18px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}

.points-journal-stat span{
  font-size: 12px;
  line-height: 1.35;
  color: rgba(255,255,255,.72);
}

.points-journal-stat strong{
  font-size: 18px;
  line-height: 1.35;
  overflow-wrap: anywhere;
}

.points-journal-list{
  display: grid;
  gap: 14px;
}

.points-journal-entry{
  display: grid;
  gap: 12px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid #e5e7eb;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 14px 32px rgba(15, 23, 42, .05);
  position: relative;
  overflow: hidden;
}

.points-journal-entry::before{
  content: '';
  position: absolute;
  inset: 0 auto 0 0;
  width: 5px;
  border-radius: 999px;
}

.points-journal-entry.is-credit::before{
  background: linear-gradient(180deg, #22c55e 0%, #16a34a 100%);
}

.points-journal-entry.is-debit::before{
  background: linear-gradient(180deg, #f97316 0%, #ef4444 100%);
}

.points-journal-entry__head{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 12px;
  flex-wrap: wrap;
}

.points-journal-entry__title{
  font-size: 16px;
  font-weight: 800;
  color: #111827;
}

.points-journal-entry__description{
  margin-top: 4px;
  color: #64748b;
  line-height: 1.5;
}

.points-journal-entry__badge{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
}

.points-journal-entry__badge.is-credit{
  background: #dcfce7;
  color: #166534;
}

.points-journal-entry__badge.is-debit{
  background: #fff7ed;
  color: #c2410c;
}

.points-journal-entry__meta{
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  color: #64748b;
  font-size: 13px;
}

.points-journal-entry__date{
  color: #94a3b8;
  font-size: 12px;
}

.account-nav-link{
  display: block;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(17, 24, 39, 0.1);
  background: #fff;
  color: #111827;
  font-weight: 700;
  text-decoration: none;
  transition: background .2s ease, color .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.account-nav-link:hover{
  border-color: rgba(239, 68, 68, 0.22);
  color: #b91c1c;
  transform: translateY(-1px);
}

.account-nav-link.is-active{
  border-color: #111827;
  background: #111827;
  color: #fff;
  box-shadow: 0 18px 30px rgba(17, 24, 39, 0.12);
}

@media (max-width: 1099.98px){
  .shop-grid{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 991.98px){
  .account-head-toggle{
    display: inline-flex;
  }

  .account-mobile-sidebar__eyebrow{
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #b45309;
  }

  .account-sidebar-drawer{
    position: fixed;
    inset: 0;
    z-index: 1305;
    visibility: hidden;
    pointer-events: none;
    display: block;
  }

  .account-sidebar-drawer.is-open{
    visibility: visible;
    pointer-events: auto;
  }

  .account-sidebar-drawer__backdrop{
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(15, 23, 42, .42);
    opacity: 0;
    transition: opacity .22s ease;
  }

  .account-sidebar-drawer__panel{
    position: absolute;
    top: 0;
    right: 0;
    width: min(360px, calc(100vw - 24px));
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 18px 18px calc(92px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
    box-shadow: -24px 0 48px rgba(15, 23, 42, .18);
    transform: translateX(100%);
    transition: transform .24s ease;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
  }

  .account-sidebar-drawer__panel::-webkit-scrollbar{
    width: 10px;
  }

  .account-sidebar-drawer__panel::-webkit-scrollbar-track{
    background: transparent;
  }

  .account-sidebar-drawer__panel::-webkit-scrollbar-thumb{
    background: #cbd5e1;
    border-radius: 999px;
    border: 2px solid #fff7ed;
  }

  .account-sidebar-drawer.is-open .account-sidebar-drawer__backdrop{
    opacity: 1;
  }

  .account-sidebar-drawer.is-open .account-sidebar-drawer__panel{
    transform: translateX(0);
  }

  .account-sidebar-drawer__header{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }

  .account-sidebar-drawer__title{
    display: block;
    font-size: 22px;
    line-height: 1.1;
    color: #111827;
  }

  .account-sidebar-drawer__close{
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: 26px;
    line-height: 1;
  }

  .account-sidebar-drawer__current{
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(251, 146, 60, .18);
  }

  .account-sidebar-drawer__current span{
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #b45309;
  }

  .account-sidebar-drawer__current strong{
    color: #111827;
    font-size: 18px;
  }

  .account-sidebar-drawer__nav{
    display: grid;
    gap: 10px;
    align-content: start;
    flex: 1 1 auto;
  }

  .account-nav-link--drawer{
    background: rgba(255,255,255,.88);
  }

  .account-sidebar-drawer__meta{
    display: grid;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px dashed rgba(226, 232, 240, .95);
  }

  .account-sidebar-drawer__panel .account-sidebar__logout{
    margin-top: 0;
    min-height: 52px;
    padding: 12px 16px;
    border-radius: 18px;
    flex: 0 0 auto;
  }

  .account-sidebar{
    display: none;
  }
}

@media (max-width: 899.98px){
  .checkout-page,
  .checkout-shell,
  .checkout-layout,
  .checkout-form{
    width: 100%;
    max-width: 100%;
    min-width: 0;
    overflow-x: clip;
  }

  .checkout-layout{
    grid-template-columns: 1fr !important;
  }

  .checkout-layout > *,
  .checkout-form > *,
  .checkout-card,
  .account-persona,
  .account-tier-card{
    min-width: 0;
    max-width: 100%;
  }

  .account-persona,
  .account-tier-card,
  .checkout-card{
    overflow: hidden;
  }

  .checkout-card .row{
    --bs-gutter-x: 0.75rem;
    margin-right: 0;
    margin-left: 0;
  }

  .shop-layout{ grid-template-columns: 1fr; }
  .shop-filters{
    position: static;
    max-height: none;
    overflow-y: visible;
    overflow-x: visible;
    padding: 12px;
    display: none;
  }

  .shop-filters.is-open{
    display: block;
  }

  .shop-filters-mobile-actions{
    display: grid;
    gap: 8px;
  }

  .shop-filters-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 1px solid #dbe2eb;
    border-radius: 12px;
    background: #fff;
    color: #1f2937;
    font-size: 14px;
    font-weight: 700;
    padding: 10px 14px;
  }

  .shop-mobile-accordion{
    display: none;
  }

  .shop-mobile-accordion.is-open{
    display: block;
  }

  .shop-mobile-accordion .shop-categories{
    padding: 0 0 12px;
  }

  .shop-mobile-accordion .shop-search{
    display: none;
  }

  .shop-mobile-accordion .filters-form{
    padding: 0;
  }

  .account-head-toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid #dbe2eb;
    background: #ffffff;
    color: #334155;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: none;
  }

  .account-head-toggle__icon{
    width: 18px;
    height: 14px;
    display: grid;
    align-content: space-between;
  }

  .account-head-toggle__icon span{
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .account-mobile-sidebar{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 18px;
    padding: 16px;
    border-radius: 22px;
    background:
      radial-gradient(180px 120px at 0% 0%, rgba(255,255,255,.78), rgba(255,255,255,0) 70%),
      linear-gradient(180deg, #fff7ed 0%, #ffffff 100%);
    border: 1px solid rgba(251, 146, 60, 0.18);
    box-shadow: 0 12px 28px rgba(15, 23, 42, .06);
  }

  .account-mobile-sidebar__summary{
    min-width: 0;
    display: grid;
    gap: 4px;
  }

  .account-mobile-sidebar__summary strong{
    display: block;
    font-size: 18px;
    line-height: 1.2;
    color: #111827;
  }

  .account-mobile-sidebar__eyebrow{
    display: block;
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #b45309;
  }

  .account-mobile-sidebar__hint{
    margin: 0;
    color: #6b7280;
    font-size: 13px;
    line-height: 1.45;
  }

  .account-mobile-sidebar__toggle{
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(251, 146, 60, .18);
    background: rgba(255,255,255,.82);
    color: #9a3412;
    font-size: 14px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: 0 10px 22px rgba(249, 115, 22, .12);
  }

  .account-mobile-sidebar__toggle-icon{
    width: 18px;
    height: 14px;
    display: grid;
    align-content: space-between;
  }

  .account-mobile-sidebar__toggle-icon span{
    display: block;
    width: 100%;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
  }

  .account-sidebar-drawer{
    position: fixed;
    inset: 0;
    z-index: 1305;
    visibility: hidden;
    pointer-events: none;
    display: block;
  }

  .account-sidebar-drawer.is-open{
    visibility: visible;
    pointer-events: auto;
  }

  .account-sidebar-drawer__backdrop{
    position: absolute;
    inset: 0;
    border: 0;
    background: rgba(15, 23, 42, .42);
    opacity: 0;
    transition: opacity .22s ease;
  }

  .account-sidebar-drawer__panel{
    position: absolute;
    top: 0;
    right: 0;
    width: min(360px, calc(100vw - 24px));
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 18px 18px calc(92px + env(safe-area-inset-bottom, 0px));
    background: linear-gradient(180deg, #ffffff 0%, #fff7ed 100%);
    box-shadow: -24px 0 48px rgba(15, 23, 42, .18);
    transform: translateX(100%);
    transition: transform .24s ease;
    overflow-y: auto;
    overscroll-behavior: contain;
    scrollbar-width: thin;
    scrollbar-color: #cbd5e1 transparent;
  }

  .account-sidebar-drawer__panel::-webkit-scrollbar{
    width: 10px;
  }

  .account-sidebar-drawer__panel::-webkit-scrollbar-track{
    background: transparent;
  }

  .account-sidebar-drawer__panel::-webkit-scrollbar-thumb{
    background: #cbd5e1;
    border-radius: 999px;
    border: 2px solid #fff7ed;
  }

  .account-sidebar-drawer.is-open .account-sidebar-drawer__backdrop{
    opacity: 1;
  }

  .account-sidebar-drawer.is-open .account-sidebar-drawer__panel{
    transform: translateX(0);
  }

  .account-sidebar-drawer__header{
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
  }

  .account-sidebar-drawer__title{
    display: block;
    font-size: 22px;
    line-height: 1.1;
    color: #111827;
  }

  .account-sidebar-drawer__close{
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    font-size: 26px;
    line-height: 1;
  }

  .account-sidebar-drawer__current{
    display: grid;
    gap: 6px;
    padding: 14px 16px;
    border-radius: 18px;
    background: rgba(255,255,255,.9);
    border: 1px solid rgba(251, 146, 60, .18);
  }

  .account-sidebar-drawer__current span{
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #b45309;
  }

  .account-sidebar-drawer__current strong{
    color: #111827;
    font-size: 18px;
  }

  .account-sidebar-drawer__nav{
    display: grid;
    gap: 10px;
    align-content: start;
    flex: 1 1 auto;
  }

  .account-nav-link--drawer{
    background: rgba(255,255,255,.88);
  }

  .account-sidebar-drawer__meta{
    display: grid;
    gap: 10px;
    padding-top: 14px;
    border-top: 1px dashed rgba(226, 232, 240, .95);
  }

  .account-sidebar-drawer__panel .account-sidebar__logout{
    margin-top: 0;
    min-height: 52px;
    padding: 12px 16px;
    border-radius: 18px;
    flex: 0 0 auto;
  }

  .account-sidebar{
    display: none;
  }

  .points-journal-hero__stats{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .account-tier-card__stats{
    grid-template-columns: 1fr;
  }

  .account-tier-card__progress-head{
    flex-direction: column;
  }

  .account-tier-card__progress-head span:last-child{
    text-align: left;
  }

  .saved-addresses-list{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 767.98px){
  .account-orders-table{
    display: none;
  }

  .account-orders-mobile{
    display: grid;
    gap: 12px;
  }

  .account-order-card__head,
  .account-order-card__meta-row{
    flex-direction: column;
    align-items: flex-start;
  }

  .account-order-card__status{
    align-self: flex-start;
  }

  .account-order-card__meta-row strong{
    text-align: left;
  }

  .account-order-card__actions{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575.98px){
  .shop-shell{ padding-top: 12px; }
  .checkout-head{
    overflow-x: clip;
  }
  .shop-search{ max-width: none; }
  .shop-toolbar{
    flex-direction: column;
    align-items: flex-start;
  }
  .shop-grid{ grid-template-columns: 1fr; }
  .account-persona__header{
    grid-template-columns: 56px minmax(0, 1fr);
  }
  .account-persona__avatar{
    align-items: flex-start;
    justify-content: flex-start;
  }
  .account-persona__meta{
    grid-template-columns: 1fr;
  }
  .account-profile-overview__stat{
    width: 100%;
  }
  .account-friend-card__identity{
    grid-template-columns: 44px minmax(0, 1fr);
    gap: 10px;
  }
  .account-friend-avatar{
    align-items: flex-start;
    justify-content: flex-start;
  }
  .points-journal-hero{
    padding: 16px;
  }
  .points-journal-hero__stats{
    grid-template-columns: 1fr;
  }
  .points-journal-entry{
    padding: 16px;
    border-radius: 18px;
  }
  .points-journal-entry__head,
  .points-journal-entry__meta{
    flex-direction: column;
    align-items: flex-start;
  }
  .account-tier-card{
    padding: 16px;
    border-radius: 20px;
    gap: 14px;
  }
  .account-tier-card__head{
    flex-direction: column;
    align-items: stretch;
  }
  .account-tier-card__badge{
    width: 100%;
  }
  .account-tier-card__stats{
    grid-template-columns: 1fr;
  }
  .account-tier-card__progress-head{
    flex-direction: column;
  }
  .account-tier-card__progress-head span:last-child{
    text-align: left;
  }
  .account-mobile-sidebar{
    padding: 14px;
    border-radius: 18px;
    align-items: stretch;
    flex-direction: column;
  }
  .account-mobile-sidebar__toggle{
    width: 100%;
  }
  .account-sidebar-drawer__panel{
    width: calc(100vw - 12px);
    padding: 16px 16px calc(92px + env(safe-area-inset-bottom, 0px));
  }
  .saved-address-card{
    padding: 12px;
  }
  .saved-address-card__head{
    flex-direction: column;
  }
  .saved-address-card__actions{
    flex-direction: column;
    align-items: stretch;
  }
  .saved-address-card__actions .btn,
  .saved-address-card__actions .checkout-submit{
    width: 100%;
  }

  .account-persona,
  .account-tier-card{
    border-radius: 18px;
  }

  .account-order-card{
    padding: 14px;
    border-radius: 16px;
  }

  .profile-avatar-card__preview,
  .profile-avatar-card__actions,
  .review-item__head{
    flex-direction: row;
    align-items: flex-start;
  }
}

@media (max-width: 389.98px){
  .shop-shell{
    padding-top: 10px;
  }

  .shop-title{
    font-size: clamp(22px, 8vw, 28px);
  }

  .shop-subtitle{
    font-size: 13px;
  }

  .shop-search input{
    padding: 11px 14px;
    border-radius: 12px;
  }

  .shop-toolbar,
  .shop-sort{
    width: 100%;
  }

  .shop-sort{
    flex-wrap: wrap;
  }

  .shop-sort select{
    width: 100%;
  }

  .shop-grid{
    gap: 10px;
  }

  .top-sales__row .catalog-card{
    width: min(82vw, 248px);
    max-width: none;
    flex-basis: min(82vw, 248px);
    min-height: 0;
  }

  .product-related .top-sales__row .catalog-card{
    min-height: 0;
  }

  .account-breadcrumbs__item{
    flex-wrap: wrap;
    gap: 6px;
  }

  .account-head-toggle{
    width: 100%;
  }

  .account-persona__text,
  .saved-address-card__summary,
  .saved-address-card__meta span{
    overflow-wrap: anywhere;
  }

  .account-sidebar-drawer__close{
    width: 36px;
    height: 36px;
  }

  .account-nav-link{
    padding: 12px 14px;
    border-radius: 16px;
  }
}
.blog-shell {
  padding: 28px 0 64px;
  background:
    linear-gradient(180deg, #f8f8f8 0%, #ffffff 20%, #ffffff 100%);
}

.blog-breadcrumbs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  color: #6b7280;
  font-size: 14px;
}

.blog-breadcrumbs a {
  color: #1f2937;
  text-decoration: none;
}

.blog-breadcrumbs a:hover {
  color: #db000b;
}

.blog-hero,
.blog-article-hero {
  background: #fff;
  border: 1px solid rgba(17, 24, 39, 0.08);
  border-radius: 28px;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(15, 23, 42, 0.06);
  margin-bottom: 28px;
}

.blog-hero__eyebrow {
  margin: 0 0 10px;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #db000b;
  font-weight: 700;
}

.blog-hero__title,
.blog-article-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.12;
  color: #111827;
}

.blog-hero__subtitle,
.blog-article-hero p {
  margin: 0;
  max-width: 820px;
  font-size: 18px;
  line-height: 1.7;
  color: #4b5563;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e7e7e7;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.05);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.blog-card:hover {
  transform: translateY(-3px);
  border-color: rgba(219, 0, 11, 0.18);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.08);
}

.blog-card__image {
  aspect-ratio: 16 / 10;
  display: block;
  overflow: hidden;
  background: #f5f5f5;
}

.blog-card__image img,
.blog-article__cover img,
.blog-sidebar__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-card__body {
  display: grid;
  gap: 12px;
  padding: 16px 16px 18px;
  flex: 1;
}

.blog-card__meta,
.blog-article-hero__meta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  color: #6b7280;
  font-size: 14px;
}

.blog-card__title {
  margin: 0;
  font-size: 18px;
  line-height: 1.35;
}

.blog-card__title a,
.blog-card__link,
.blog-sidebar__item {
  text-decoration: none;
}

.blog-card__title a {
  color: #111827;
}

.blog-card__title a:hover,
.blog-card__link:hover,
.blog-sidebar__item:hover strong {
  color: #db000b;
}

.blog-card__excerpt {
  margin: 0;
  color: #4b5563;
  line-height: 1.6;
  font-size: 15px;
}

.blog-card__link {
  color: #db000b;
  font-weight: 700;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.blog-card__link::after {
  content: '>';
  font-size: 12px;
  line-height: 1;
}

.blog-pagination,
.blog-comment-pagination {
  margin-top: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.blog-pagination__pages {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.blog-pagination__page,
.blog-pagination__nav,
.blog-comment-pagination button {
  min-width: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid rgba(17, 24, 39, 0.12);
  background: #fff;
  color: #111827;
  text-decoration: none;
}

.blog-pagination__page.is-active {
  background: #111827;
  border-color: #111827;
  color: #fff;
}

.blog-pagination__nav.is-disabled,
.blog-comment-pagination button:disabled {
  opacity: 0.45;
  pointer-events: none;
}

.blog-article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 28px;
  align-items: start;
}

.blog-article {
  background: #fff;
  border-radius: 20px;
  border: 1px solid #e7e7e7;
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.05);
  overflow: hidden;
}

.blog-article__cover {
  aspect-ratio: 16 / 8;
  background: #f3f4f6;
}

.blog-article__content {
  padding: 28px;
  color: #1f2937;
  line-height: 1.85;
  font-size: 17px;
}

.blog-article__content h2,
.blog-article__content h3 {
  color: #111827;
  margin: 24px 0 12px;
}

.blog-article__content img {
  max-width: 100%;
  border-radius: 18px;
  height: auto;
}

.blog-article__content a {
  color: #db000b;
}

.blog-sidebar {
  position: sticky;
  top: var(--sticky-offset);
}

.blog-sidebar__card,
.blog-comments {
  background: #fff;
  border-radius: 18px;
  border: 1px solid #e7e7e7;
  padding: 24px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.05);
}

.blog-sidebar__card h2,
.blog-comments__head h2 {
  margin: 0 0 8px;
  font-size: 20px;
}

.blog-sidebar__list {
  display: grid;
  gap: 16px;
}

.blog-sidebar__item {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 14px;
  color: #111827;
}

.blog-sidebar__thumb {
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 16px;
  background: #f3f4f6;
}

.blog-sidebar__text {
  display: grid;
  gap: 6px;
}

.blog-sidebar__text strong {
  transition: color 0.2s ease;
}

.blog-sidebar__text small {
  color: #6b7280;
}

.blog-comments {
  margin: 0 28px 28px;
}

.blog-comments__head p {
  margin: 0 0 18px;
  color: #6b7280;
}

.blog-comment-form__grid,
.blog-comments__list {
  display: grid;
  gap: 16px;
}

.blog-comment-field {
  display: grid;
  gap: 8px;
}

.blog-comment-field span {
  font-weight: 600;
  color: #111827;
}

.blog-comment-field input,
.blog-comment-field textarea {
  width: 100%;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  padding: 14px 16px;
  font-size: 16px;
}

.blog-comment-field textarea {
  min-height: 140px;
  resize: vertical;
}

.blog-comment-field--full {
  grid-column: 1 / -1;
}

.blog-comment-captcha {
  padding: 10px;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
  overflow-x: auto;
}

.blog-comment-submit {
  margin-top: 16px;
  border: 0;
  border-radius: 999px;
  padding: 14px 22px;
  background: #db000b;
  color: #fff;
  font-weight: 700;
}

.blog-comments__list {
  margin-top: 22px;
}

.blog-comment-item {
  border: 1px solid #e8e8e8;
  border-radius: 16px;
  padding: 18px 20px;
  background: #fcfcfc;
}

.blog-comment-item__head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 10px;
  color: #6b7280;
  font-size: 14px;
}

.blog-comment-item__identity {
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.blog-comment-item__avatar {
  flex: 0 0 auto;
  align-self: flex-start;
}

.blog-comment-item__identity-text {
  min-width: 0;
  display: grid;
  gap: 2px;
}

.blog-comment-item__identity-text strong {
  color: #111827;
  overflow-wrap: anywhere;
}

.blog-comment-item__identity-text span {
  color: #6b7280;
  font-size: 13px;
  overflow-wrap: anywhere;
}

.blog-comment-item__text {
  margin: 0;
  color: #1f2937;
  line-height: 1.75;
  white-space: pre-line;
}

.blog-comment-message {
  margin-top: 14px;
  padding: 12px 14px;
  border-radius: 14px;
}

.blog-comment-message.is-success {
  background: #ecfdf3;
  color: #166534;
}

.blog-comment-message.is-error {
  background: #fef2f2;
  color: #b91c1c;
}

.blog-empty {
  padding: 42px 28px;
  text-align: center;
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(17, 24, 39, 0.08);
}

@media (max-width: 1199.98px) {
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-article-layout {
    grid-template-columns: 1fr;
  }

  .blog-sidebar {
    position: static;
  }
}

@media (max-width: 767.98px) {
  .blog-shell {
    padding: 18px 0 42px;
  }

  .blog-grid {
    grid-template-columns: 1fr;
  }

  .blog-hero,
  .blog-article-hero,
  .blog-sidebar__card,
  .blog-comments {
    padding: 20px;
    border-radius: 18px;
  }

  .blog-article__content {
    padding: 20px;
    font-size: 16px;
  }

  .blog-hero__title,
  .blog-article-hero h1 {
    font-size: 30px;
  }

  .blog-comments {
    margin: 0 20px 20px;
  }

  .blog-sidebar__item {
    grid-template-columns: 72px minmax(0, 1fr);
  }
}

@media (max-width: 389.98px) {
  .blog-shell {
    padding: 14px 0 34px;
  }

  .blog-hero,
  .blog-article-hero,
  .blog-sidebar__card,
  .blog-comments,
  .blog-empty {
    padding: 16px;
    border-radius: 16px;
  }

  .blog-hero__title,
  .blog-article-hero h1 {
    font-size: 26px;
  }

  .blog-hero__subtitle,
  .blog-article-hero p {
    font-size: 15px;
  }

  .blog-card__body {
    padding: 14px;
  }

  .blog-article__content {
    padding: 16px;
    font-size: 15px;
  }

  .blog-comments {
    margin: 0 16px 16px;
  }

  .blog-comment-item {
    padding: 14px 16px;
  }

  .blog-comment-item__head {
    flex-direction: row;
    align-items: flex-start;
  }

  .blog-pagination__page,
  .blog-pagination__nav,
  .blog-comment-pagination button {
    min-width: 40px;
    padding: 9px 12px;
  }

  .blog-sidebar__item {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 12px;
  }
}
.info-page{
  background:
    radial-gradient(1100px 360px at 0% -10%, #fff7ed 0%, transparent 58%),
    radial-gradient(900px 280px at 100% 0%, #eff6ff 0%, transparent 55%),
    #f7f8fc;
}

.info-shell{ padding: 22px 0 44px; }

.info-breadcrumbs{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 13px;
  color: #64748b;
}

.info-breadcrumbs a{
  color: #334155;
  text-decoration: none;
}

.info-breadcrumbs a:hover{ color: #db000b; }

.info-head{
  margin-bottom: 14px;
}

.info-title{
  margin: 0 0 6px;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.1;
  font-weight: 800;
}

.info-subtitle{
  margin: 0;
  color: #6b7280;
  font-size: 14px;
}

.info-card{
  padding: 18px;
  border: 1px solid #e6eaf2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
}

.info-card + .info-card{ margin-top: 12px; }

.info-card h2{
  margin: 0 0 10px;
  font-size: 22px;
  font-weight: 800;
}

.info-card h3{
  margin: 0 0 8px;
  font-size: 17px;
  font-weight: 800;
}

.info-card p{
  margin: 0;
  line-height: 1.55;
  color: #334155;
  font-size: 14px;
}

.info-list{
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
  color: #334155;
  font-size: 14px;
}

.faq-accordion-list{
  display: grid;
  gap: 12px;
}

.faq-accordion-loading{
  padding: 16px 18px;
  border: 1px dashed #dbe2eb;
  border-radius: 16px;
  background: #f8fafc;
  font-size: 14px;
  color: #64748b;
}

.faq-accordion{
  border: 1px solid #e2e8f0;
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 10px 24px rgba(15, 23, 42, .05);
  overflow: hidden;
  transition: border-color .18s ease, box-shadow .18s ease, transform .18s ease;
}

.faq-accordion.is-open{
  border-color: #fecaca;
  box-shadow: 0 14px 30px rgba(219, 0, 11, .08);
}

.faq-accordion__trigger{
  width: 100%;
  padding: 18px;
  border: 0;
  background: transparent;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  text-align: left;
  font: inherit;
  font-size: 16px;
  font-weight: 800;
  color: #111827;
  cursor: pointer;
}

.faq-accordion__icon{
  width: 34px;
  height: 34px;
  border-radius: 999px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dbe2eb;
  background: #fff;
  color: #475569;
  font-size: 22px;
  line-height: 1;
  transition: transform .18s ease, background-color .18s ease, color .18s ease, border-color .18s ease;
}

.faq-accordion.is-open .faq-accordion__icon{
  border-color: #111827;
  background: #111827;
  color: #fff;
  transform: rotate(45deg);
}

.faq-accordion__panel{
  padding: 0 18px 18px;
}

.faq-accordion__content{
  font-size: 14px;
  line-height: 1.65;
  color: #475569;
}

.faq-accordion__content p + p,
.faq-accordion__content ul,
.faq-accordion__content ol{
  margin-top: 10px;
}

.faq-accordion__content a{
  color: #db000b;
}

.size-grid{
  display: block;
  width: 100%;
  border-collapse: collapse;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  overflow-x: auto;
  white-space: nowrap;
}

.size-grid th,
.size-grid td{
  padding: 10px;
  text-align: center;
  border-bottom: 1px solid #e2e8f0;
  border-right: 1px solid #e2e8f0;
  font-size: 13px;
}

.size-grid th:last-child,
.size-grid td:last-child{ border-right: 0; }
.size-grid tr:last-child td{ border-bottom: 0; }
.size-grid th{
  background: #f8fafc;
  font-weight: 800;
}

.contact-grid{
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 12px;
}

.contact-item{
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 12px;
  background: #f8fafc;
}

.contact-item__label{
  margin-bottom: 4px;
  font-size: 12px;
  color: #64748b;
  font-weight: 700;
}

.contact-item__value{
  margin: 0;
  font-size: 15px;
  color: #111827;
  font-weight: 700;
}

.contact-item__value--stack{
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
}

.contact-item__value a{
  color: inherit;
  text-decoration: none;
}

.contact-socials{
  margin-top: 18px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.contact-social-link{
  width: 58px;
  height: 58px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #0f172a;
  text-decoration: none;
  border: 1px solid #dbe2eb;
  background: linear-gradient(180deg, #ffffff, #f8fafc);
  box-shadow: 0 12px 26px rgba(15, 23, 42, .08);
  font-size: 28px;
  transition: border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.contact-social-link:hover{
  border-color: #db000b;
  color: #db000b;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(219, 0, 11, .12);
}

.contact-form{
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.contact-form__row{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.contact-form input,
.contact-form textarea{
  width: 100%;
  border: 1px solid #dbe2eb;
  border-radius: 10px;
  padding: 10px 11px;
  font-size: 14px;
}

.contact-form textarea{
  min-height: 100px;
  resize: vertical;
}

.contact-submit{
  justify-self: start;
  border: 0;
  border-radius: 12px;
  padding: 10px 14px;
  background: #111827;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.steps{
  display: grid;
  gap: 10px;
}

.step{
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 12px;
  background: #f8fafc;
}

.step__title{
  margin: 0 0 4px;
  font-size: 15px;
  font-weight: 800;
  color: #111827;
}

.step__text{
  margin: 0;
  font-size: 14px;
  color: #475569;
}

@media (max-width: 749.98px){
  .info-shell{ padding-top: 12px; }
  .info-card{ padding: 14px; border-radius: 14px; }
  .faq-accordion{ border-radius: 14px; }
  .faq-accordion__trigger,
  .faq-accordion__panel{ padding-left: 14px; padding-right: 14px; }
  .faq-accordion__trigger{ padding-top: 14px; padding-bottom: 14px; font-size: 15px; }
  .faq-accordion__panel{ padding-bottom: 14px; }
  .contact-grid,
  .contact-form__row{ grid-template-columns: 1fr; }
  .contact-social-link{
    width: 50px;
    height: 50px;
    border-radius: 16px;
    font-size: 24px;
  }
}

@media (max-width: 389.98px){
  .info-shell{
    padding-top: 10px;
  }

  .info-title{
    font-size: clamp(22px, 8vw, 28px);
  }

  .info-card{
    padding: 12px;
    border-radius: 12px;
  }

  .info-card h2{
    font-size: 20px;
  }

  .info-card h3{
    font-size: 16px;
  }

  .faq-accordion__trigger{
    gap: 8px;
    font-size: 14px;
  }

  .faq-accordion__icon{
    width: 30px;
    height: 30px;
    font-size: 20px;
  }

  .size-grid th,
  .size-grid td{
    padding: 8px;
    font-size: 12px;
  }

  .contact-item{
    padding: 10px;
  }

  .contact-socials{
    gap: 10px;
  }

  .contact-submit{
    width: 100%;
  }
}
.promotions-shell{
  padding: 24px 0 44px;
  background:
    radial-gradient(1200px 420px at 0% -10%, rgba(254, 240, 138, .35) 0%, transparent 60%),
    radial-gradient(900px 320px at 100% 0%, rgba(251, 191, 36, .18) 0%, transparent 55%),
    #f8fafc;
}

.promotions-breadcrumbs{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  color: #64748b;
  font-size: 13px;
}

.promotions-breadcrumbs a{
  color: #334155;
  text-decoration: none;
}

.promotions-hero{
  display: grid;
  gap: 18px;
  margin-bottom: 18px;
  padding: 22px 24px;
  border-radius: 24px;
  border: 1px solid #fde68a;
  background: linear-gradient(135deg, #fff7d6 0%, #ffffff 58%, #fff2cc 100%);
  box-shadow: 0 20px 44px rgba(15, 23, 42, .08);
}

.promotions-hero__title{
  margin: 0 0 8px;
  font-size: clamp(30px, 4vw, 48px);
  line-height: 1.02;
  font-weight: 800;
  color: #0f172a;
}

.promotions-hero__text{
  margin: 0;
  max-width: 760px;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.promotions-hero__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.promotions-hero__link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

.promotions-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  align-items: stretch;
  grid-auto-rows: 1fr;
}

.promotions-card{
  --promotions-card-media-height: clamp(240px, 22vw, 300px);
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 22px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, .06);
}

.promotions-card--with-image{
  display: grid;
  grid-template-rows: var(--promotions-card-media-height) minmax(0, 1fr);
}

.promotions-card__image{
  position: relative;
  display: block;
  width: 100%;
  height: var(--promotions-card-media-height);
  flex-shrink: 0;
  overflow: hidden;
  line-height: 0;
  background: linear-gradient(135deg, #fef3c7 0%, #fff 100%);
}

.promotions-card__image img{
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.promotions-card__body{
  display: flex;
  flex: 1 1 auto;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  min-height: 0;
}

.promotions-card__meta{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: #64748b;
  font-size: 13px;
}

.promotions-pill{
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.promotions-card__title{
  margin: 0;
  min-height: calc(2 * 1.15em);
  font-size: 24px;
  line-height: 1.15;
  font-weight: 800;
}

.promotions-card__title a{
  display: -webkit-box;
  overflow: hidden;
  color: #0f172a;
  text-decoration: none;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  min-height: calc(2 * 1.15em);
}

.promotions-card__text{
  margin: 0;
  min-height: calc(4 * 1.6em);
  color: #475569;
  line-height: 1.6;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.promotions-linked-products{
  display: grid;
  gap: 8px;
}

.promotions-linked-products__label{
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.promotions-linked-products__list{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.promotions-linked-products__item{
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  max-width: 100%;
  padding: 4px 10px 4px 4px;
  border-radius: 999px;
  border: 1px solid #dbeafe;
  background: #eff6ff;
  color: #1d4ed8;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.promotions-linked-products__thumb{
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid #bfdbfe;
  background: #dbeafe;
  margin-right: 8px;
}

.promotions-linked-products__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promotions-linked-products__fallback{
  display: block;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 35% 30%, #93c5fd 0%, #60a5fa 45%, #3b82f6 100%);
}

.promotions-linked-products__name{
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.promotions-linked-products__item--more{
  padding-left: 10px;
  border-color: #e2e8f0;
  background: #f8fafc;
  color: #334155;
}

.promotions-card__actions{
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 4px;
}

.promotions-card__link{
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #111827;
  color: #111827;
  text-decoration: none;
  font-weight: 700;
}

.promotions-empty{
  padding: 40px 24px;
  border-radius: 22px;
  border: 1px dashed #cbd5e1;
  background: rgba(255, 255, 255, .85);
  color: #475569;
  text-align: center;
}

.promotions-pagination{
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 24px;
  flex-wrap: wrap;
}

.promotions-page-link{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  min-height: 42px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid #dbe2eb;
  background: #fff;
  color: #334155;
  text-decoration: none;
  font-weight: 700;
}

.promotions-page-link.is-active{
  border-color: #f59e0b;
  background: #fff7ed;
  color: #b45309;
}

.promotions-detail{
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(280px, .85fr);
  gap: 18px;
}

.promotions-detail__main,
.promotions-detail__aside{
  padding: 20px;
  border-radius: 22px;
  border: 1px solid #e2e8f0;
  background: #fff;
  box-shadow: 0 14px 32px rgba(15, 23, 42, .06);
}

.promotions-detail__cover{
  margin: 0 0 18px;
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
}

.promotions-detail__cover img{
  width: 100%;
  height: auto;
  display: block;
}

.promotions-detail__title{
  margin: 0 0 10px;
  font-size: clamp(28px, 3.4vw, 42px);
  line-height: 1.06;
  font-weight: 800;
  color: #0f172a;
}

.promotions-detail__teaser{
  margin: 0 0 18px;
  color: #475569;
  font-size: 16px;
  line-height: 1.6;
}

.promotions-detail__content{
  color: #334155;
  line-height: 1.7;
}

.promotions-detail__content h2,
.promotions-detail__content h3{
  margin-top: 24px;
  margin-bottom: 10px;
  color: #0f172a;
}

.promotions-detail__content p,
.promotions-detail__content li{
  line-height: 1.7;
}

.promotions-detail__aside-title{
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.promotions-countdown{
  display: grid;
  gap: 10px;
  padding: 14px;
  border-radius: 18px;
  border: 1px solid #fde68a;
  background: linear-gradient(135deg, #fffbeb 0%, #fff 100%);
}

.promotions-countdown.is-compact{
  padding: 12px;
}

.promotions-countdown__label{
  color: #92400e;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.promotions-countdown__grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 8px;
}

.promotions-countdown__grid span{
  display: grid;
  justify-items: center;
  gap: 4px;
  padding: 10px 8px;
  border-radius: 14px;
  background: rgba(255, 255, 255, .85);
  border: 1px solid #fde68a;
}

.promotions-countdown__grid strong{
  font-size: 24px;
  line-height: 1;
  color: #0f172a;
}

.promotions-countdown__grid small{
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}

.promotions-aside-meta{
  display: grid;
  gap: 12px;
  margin-bottom: 16px;
}

.promotions-aside-meta__row{
  display: grid;
  gap: 4px;
}

.promotions-aside-meta__row span{
  color: #64748b;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.promotions-aside-meta__row strong{
  color: #0f172a;
  line-height: 1.5;
}

.promotions-aside-products{
  display: grid;
  gap: 10px;
  margin-bottom: 16px;
}

.promotions-aside-products__title{
  margin: 0;
  color: #0f172a;
  font-size: 14px;
  font-weight: 800;
}

.promotions-aside-products__list{
  display: grid;
  gap: 8px;
}

.promotions-aside-products__item{
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr);
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #dbeafe;
  background: #f8fbff;
  text-decoration: none;
}

.promotions-aside-products__thumb{
  width: 54px;
  height: 54px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid #bfdbfe;
  background: #dbeafe;
}

.promotions-aside-products__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.promotions-aside-products__thumb-fallback{
  display: block;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 35% 30%, #93c5fd 0%, #60a5fa 45%, #3b82f6 100%);
}

.promotions-aside-products__info{
  display: grid;
  gap: 4px;
  min-width: 0;
}

.promotions-aside-products__info strong{
  color: #1e3a8a;
  font-size: 14px;
  line-height: 1.35;
}

.promotions-aside-products__info small{
  color: #475569;
  font-size: 12px;
}

.promotions-aside-button{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 48px;
  border-radius: 14px;
  background: #111827;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
}

@media (max-width: 991.98px){
  .promotions-grid,
  .promotions-detail{
    grid-template-columns: 1fr;
  }

  .promotions-card{
    --promotions-card-media-height: clamp(220px, 44vw, 320px);
  }
}

@media (max-width: 575.98px){
  .promotions-shell{
    padding: 16px 0 34px;
  }

  .promotions-hero,
  .promotions-detail__main,
  .promotions-detail__aside,
  .promotions-card{
    border-radius: 18px;
  }

  .promotions-hero{
    padding: 18px;
  }

  .promotions-hero__title{
    font-size: 32px;
  }

  .promotions-card{
    --promotions-card-media-height: 232px;
  }

  .promotions-countdown__grid{
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 389.98px){
  .promotions-hero,
  .promotions-detail__main,
  .promotions-detail__aside,
  .promotions-card{
    padding: 16px;
    border-radius: 16px;
  }

  .promotions-hero__title,
  .promotions-detail__title{
    font-size: clamp(24px, 8vw, 30px);
  }

  .promotions-hero__text,
  .promotions-detail__teaser{
    font-size: 14px;
  }

  .promotions-hero__link,
  .promotions-card__link{
    width: 100%;
  }

  .promotions-card__body{
    padding: 16px;
  }

  .promotions-card__title{
    font-size: 20px;
  }

  .promotions-card{
    --promotions-card-media-height: 208px;
  }

  .promotions-countdown__grid span{
    padding: 8px 6px;
  }

  .promotions-countdown__grid strong{
    font-size: 20px;
  }
}
.product-page{
  background:
    radial-gradient(1100px 380px at 0% -10%, #fff7ed 0%, transparent 60%),
    radial-gradient(900px 280px at 100% 0%, #eff6ff 0%, transparent 55%),
    #f7f8fc;
}

.product-shell{ padding: 22px 0 44px; }

.product-shell.has-mobile-buy-bar{
  padding-bottom: calc(44px + env(safe-area-inset-bottom, 0px));
}

.product-breadcrumbs{
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 13px;
  color: #64748b;
}

.product-breadcrumbs a{
  color: #334155;
  text-decoration: none;
}

.product-breadcrumbs a:hover{ color: #db000b; }

.product-layout{
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(0, 1fr);
  gap: 16px;
}

.product-hero{
  margin-bottom: 14px;
}

.product-hero__title{
  margin: 0 0 6px;
  font-size: clamp(26px, 2.6vw, 38px);
  line-height: 1.1;
  font-weight: 800;
  color: #0f172a;
}

.product-hero__meta{
  display: grid;
  gap: 4px;
  font-size: 13px;
  color: #64748b;
}

.product-gallery,
.product-info{
  background: #fff;
  border: 1px solid #e6eaf2;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
}

.product-gallery{ padding: 12px; }

.product-gallery__main{
  position: relative;
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
}

.product-gallery__main img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-gallery__main:focus-visible{
  outline: 2px solid #fca5a5;
  outline-offset: 2px;
}

.product-gallery__main-image{
  cursor: zoom-in;
}

.product-gallery__promo-badge{
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 6;
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 7px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
  color: #fff;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .02em;
  box-shadow: 0 10px 24px rgba(127, 29, 29, .35);
  border: 1px solid rgba(254, 202, 202, .35);
}

.product-gallery__thumbs{
  --thumb-size: calc((100% - (var(--thumb-gap) * 4)) / 5);
  --thumb-gap: 8px;
  margin-top: 10px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: var(--thumb-size);
  gap: var(--thumb-gap);
  width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  align-items: stretch;
  padding-bottom: 4px;
  scrollbar-gutter: stable;
  scroll-snap-type: x proximity;
  -webkit-overflow-scrolling: touch;
}

.product-thumb{
  border: 1px solid #dbe2eb;
  border-radius: 14px;
  padding: 3px;
  background: #fff;
  display: block;
  aspect-ratio: 1 / 1;
  width: 100%;
  height: auto;
  min-height: 0;
  overflow: hidden;
  flex: 0 0 auto;
}

.product-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
}

.product-thumb.is-active{
  border-color: #fca5a5;
  box-shadow: 0 0 0 2px rgba(252, 165, 165, .35) inset;
}

.product-thumb--show-all{
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 10px;
  text-align: center;
}

.product-thumb__plus{
  display: inline-block;
  font-size: 22px;
  line-height: 1;
  font-weight: 700;
}

.product-thumb__label{
  display: inline-block;
  max-width: 100%;
  font-size: 12px;
  line-height: 1.2;
  font-weight: 600;
  white-space: normal;
  overflow-wrap: anywhere;
}

.product-gallery__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 999px;
  background: rgba(255,255,255,.92);
  color: #0f172a;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 24px rgba(15, 23, 42, .14);
}

.product-gallery__nav--prev{ left: 12px; }
.product-gallery__nav--next{ right: 12px; }

.product-gallery-modal{
  position: fixed;
  inset: 0;
  z-index: 1900;
  background: rgba(2, 6, 23, .94);
  display: flex;
}

.product-gallery-modal__dialog{
  width: 100%;
  height: 100dvh;
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
}

.product-gallery-modal__topbar{
  position: relative;
  z-index: 4;
  min-height: 72px;
  padding: 14px clamp(12px, 2.4vw, 28px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: #f8fafc;
  background: linear-gradient(180deg, rgba(2, 6, 23, .75) 0%, rgba(2, 6, 23, 0) 100%);
}

.product-gallery-modal__counter{
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .04em;
  opacity: .88;
  white-space: nowrap;
}

.product-gallery-modal__actions{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-left: auto;
}

.product-gallery-modal__action-btn,
.product-gallery-modal__close{
  min-width: 42px;
  height: 42px;
  border: 1px solid rgba(226, 232, 240, .42);
  border-radius: 999px;
  background: rgba(15, 23, 42, .55);
  color: #f8fafc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.product-gallery-modal__action-btn:disabled{
  opacity: .42;
  cursor: not-allowed;
}

.product-gallery-modal__close{
  font-size: 28px;
  line-height: 1;
}

.product-gallery-modal__viewport{
  position: relative;
  overflow: hidden;
  touch-action: none;
}

.product-gallery-modal__track{
  height: 100%;
  display: flex;
  align-items: stretch;
  transition: transform .4s cubic-bezier(.22, .61, .36, 1);
  will-change: transform;
}

.product-gallery-modal__track.is-panning{
  transition: none;
}

.product-gallery-modal__slide{
  flex: 0 0 100%;
  height: 100%;
  display: grid;
  place-items: center;
  padding: clamp(12px, 3.5vw, 28px);
  overflow: hidden;
}

.product-gallery-modal__image{
  width: min(100%, 1500px);
  max-height: calc(100dvh - 184px);
  object-fit: contain;
  transform-origin: center center;
  transition: transform .22s ease;
  will-change: transform;
  user-select: none;
  touch-action: none;
  cursor: zoom-in;
}

.product-gallery-modal__image.is-zoomed{
  cursor: grab;
}

.product-gallery-modal__image.is-zoomed.is-panning{
  cursor: grabbing;
}

.product-gallery-modal__viewport.is-panning .product-gallery-modal__image{
  transition: none;
}

.product-gallery-modal__nav{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 999px;
  background: rgba(15, 23, 42, .62);
  color: #f8fafc;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 16px 28px rgba(2, 6, 23, .42);
}

.product-gallery-modal__nav--prev{ left: clamp(8px, 2.4vw, 24px); }
.product-gallery-modal__nav--next{ right: clamp(8px, 2.4vw, 24px); }

.product-gallery-modal__thumbs{
  min-height: 84px;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 10px clamp(10px, 2.4vw, 24px) calc(14px + env(safe-area-inset-bottom, 0px));
  background: linear-gradient(0deg, rgba(2, 6, 23, .82) 0%, rgba(2, 6, 23, .18) 100%);
}

.product-gallery-modal__thumb{
  flex: 0 0 auto;
  width: 58px;
  height: 58px;
  border-radius: 10px;
  border: 1px solid rgba(226, 232, 240, .42);
  overflow: hidden;
  padding: 0;
  background: rgba(15, 23, 42, .72);
}

.product-gallery-modal__thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-gallery-modal__thumb.is-active{
  border-color: #fff;
  box-shadow: 0 0 0 2px rgba(255, 255, 255, .34);
}

.product-info{ padding: 18px; }

.product-info__meta{
  display: grid;
  gap: 4px;
  font-size: 13px;
  color: #64748b;
}

.product-info__meta-item{
  display: block;
}

.product-info__meta span{
  color: #15803d;
  font-weight: 700;
}

.product-info__rating{
  display: flex;
  align-items: center;
  gap: 3px;
  color: #f59e0b;
  font-size: 14px;
}

.product-info__rating span{
  margin-left: 6px;
  color: #64748b;
  font-size: 13px;
}

.product-info__price{
  margin: 14px 0 14px;
  display: flex;
  align-items: baseline;
  gap: 10px;
}

.product-info__price strong{
  font-size: 30px;
  line-height: 1;
  font-weight: 800;
  color: #111827;
}

.product-info__price s{
  color: #94a3b8;
  font-size: 16px;
}

.product-option{ margin-bottom: 12px; }

.product-option__label{
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

.size-options,
.color-options{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.size-option{
  min-width: 42px;
  border: 1px solid #dbe2eb;
  border-radius: 10px;
  padding: 8px 10px;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  background: #fff;
}

.size-option.is-active{
  border-color: #fca5a5;
  color: #b91c1c;
  background: #fff1f2;
}

.size-option:disabled,
.color-option:disabled{
  opacity: .45;
  cursor: not-allowed;
  border-color: #e2e8f0;
}

.size-option:disabled{
  background: #f8fafc;
  color: #94a3b8;
}

.color-option{
  position: relative;
  width: 32px;
  height: 32px;
  border: 1px solid #dbe2eb;
  border-radius: 10px;
  padding: 0;
  background: transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  line-height: 0;
  color: transparent;
  overflow: hidden;
}

.color-option::before{
  content: "";
  width: 100%;
  height: 100%;
  border-radius: inherit;
  border: 0;
  background: var(--swatch, #cbd5e1);
}

.color-option::after{
  content: attr(data-color-label);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 8px);
  transform: translate(-50%, 4px);
  padding: 5px 8px;
  border-radius: 8px;
  background: rgba(15, 23, 42, .92);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.2;
  white-space: nowrap;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  transition: opacity .15s ease, transform .15s ease, visibility .15s ease;
  z-index: 6;
}

.color-option:hover::after,
.color-option:focus-visible::after{
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.color-option:disabled::after{
  display: none;
}

.color-option.is-active{
  border-color: #fca5a5;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, .16);
}

.color-option:focus-visible{
  outline: none;
  border-color: #f87171;
  box-shadow: 0 0 0 3px rgba(248, 113, 113, .22);
}

.product-buy-row{
  margin-top: 14px;
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 10px;
}

.product-buy-row .qty{
  height: 44px;
  display: inline-flex;
  align-items: center;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 12px rgba(15, 23, 42, .08);
}

.product-buy-row .qty button{
  width: 38px;
  height: 100%;
  border: 0;
  background: linear-gradient(180deg, #f8fafc 0%, #eef2f7 100%);
  color: #334155;
  font-size: 18px;
  font-weight: 800;
  cursor: pointer;
  transition: background-color .2s ease, color .2s ease;
}

.product-buy-row .qty button:hover{
  background: #e2e8f0;
  color: #0f172a;
}

.product-buy-row .qty span{
  min-width: 42px;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  color: #111827;
}

.product-buy-row .qty input{
  width: 64px;
  height: 100%;
  border: 0;
  text-align: center;
  font-size: 15px;
  font-weight: 800;
  color: #111827;
  background: #fff;
}

.product-buy-row .qty input:focus{
  outline: 0;
}

.product-buy-row .product-actions{
  margin-top: 0;
  min-width: 0;
  flex: 1 1 auto;
}

.product-buy-row .buy-btn:disabled,
.product-buy-row .cart-btn:disabled{
  opacity: .55;
  cursor: wait;
}

#productFavoriteBtn.is-active,
.product-actions .cart-btn.is-active{
  color: #dc2626;
}

.product-description{
  margin-top: 16px;
  padding: 16px 18px;
  border: 1px solid #e6eaf2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
}

.product-description__title{
  margin: 0 0 8px;
  font-size: 22px;
  font-weight: 800;
  color: #0f172a;
}

.product-description__body{
  font-size: 14px;
  color: #475569;
  line-height: 1.6;
}

.product-upsell-section{
  margin-top: 16px;
}

.product-upsell-section .top-sales{
  padding: 0;
  background: transparent;
}

.product-addon-block{
  margin-top: 12px;
  padding-top: 14px;
  border-top: 1px dashed #e2e8f0;
}

.product-addon-block__head{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.product-addon-block__sum{
  font-size: 13px;
  font-weight: 700;
  color: #0f172a;
}

.product-addon-list{
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(86px, 1fr));
  gap: 10px;
}

.product-addon-card{
  display: block;
  padding: 6px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #fff;
  cursor: pointer;
  transition: border-color .2s ease, box-shadow .2s ease, background-color .2s ease;
}

.product-addon-card:hover{
  border-color: #fecaca;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .06);
}

.product-addon-card.is-active{
  border-color: #fca5a5;
  background: #fff7f7;
}

.product-addon-card.is-disabled{
  opacity: .6;
  cursor: not-allowed;
  background: #f8fafc;
}

.product-addon-card__media{
  display: block;
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.product-addon-card__media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.product-addon-block__selected{
  margin-top: 10px;
  font-size: 13px;
  color: #334155;
}

.product-reviews{
  margin-top: 16px;
  padding: 16px;
  border: 1px solid #e6eaf2;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
}

.product-related{
  margin-top: 16px;
}

.product-related .top-sales{
  padding: 0;
}

.product-related .top-sales__row .catalog-card__body{
  min-height: auto;
}

.product-related .top-sales__row .catalog-card__content{
  gap: 4px;
}

.product-related .top-sales__row .catalog-card__name{
  min-height: 0;
}

.product-reviews__head{
  margin-bottom: 12px;
}

.product-reviews__tabs{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 14px;
}

.product-reviews__tab{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid #dbe2eb;
  border-radius: 999px;
  padding: 9px 14px;
  background: #fff;
  color: #334155;
  font-size: 14px;
  font-weight: 700;
}

.product-reviews__tab span{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #f1f5f9;
  color: #0f172a;
  font-size: 12px;
  font-weight: 800;
}

.product-reviews__tab.is-active{
  border-color: #fca5a5;
  background: #fff1f2;
  color: #b91c1c;
}

.product-reviews__tab.is-active span{
  background: rgba(220, 38, 38, .12);
  color: #991b1b;
}

.product-reviews__title{
  margin: 0 0 4px;
  font-size: 24px;
  font-weight: 800;
}

.product-reviews__subtitle{
  margin: 0;
  font-size: 14px;
  color: #64748b;
}

.review-form{
  padding: 14px;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  background: #f8fafc;
}

.review-form__grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.review-field{
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.review-field span{
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

.review-field input,
.review-field textarea{
  border: 1px solid #dbe2eb;
  border-radius: 10px;
  padding: 9px 10px;
  font-size: 14px;
  color: #0f172a;
  background: #fff;
}

.review-field textarea{
  min-height: 90px;
  resize: vertical;
}

.review-field--full{ grid-column: 1 / -1; }

.review-form__hint{
  min-height: 44px;
  border: 1px dashed #dbe2eb;
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
}

.review-sentiment{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.sentiment-option{
  cursor: pointer;
}

.sentiment-option input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.sentiment-option span{
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 1px solid #dbe2eb;
  border-radius: 999px;
  padding: 7px 10px;
  background: #fff;
  color: #334155;
  font-size: 13px;
}

.sentiment-option.is-positive:has(input:checked) span{
  border-color: #86efac;
  background: #f0fdf4;
  color: #166534;
}

.sentiment-option.is-negative:has(input:checked) span{
  border-color: #fca5a5;
  background: #fff1f2;
  color: #991b1b;
}

.review-submit{
  margin-top: 10px;
  border: 0;
  border-radius: 12px;
  padding: 10px 14px;
  background: #111827;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.review-captcha{
  min-height: 78px;
  border: 1px dashed #dbe2eb;
  border-radius: 14px;
  padding: 12px;
  background: #fff;
}

.review-media-upload{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.review-media-upload__button,
.review-media-upload__remove{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 12px;
  padding: 10px 14px;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.review-media-upload__button{
  border: 1px solid #dbe2eb;
  background: #fff;
  color: #0f172a;
}

.review-media-upload__button.is-disabled{
  opacity: .65;
  cursor: wait;
}

.review-media-upload__remove{
  border: 1px solid #fecaca;
  background: #fff5f5;
  color: #b91c1c;
}

.review-form__media-preview{
  margin-top: 12px;
  display: grid;
  gap: 10px;
}

.review-captcha--fallback{
  color: #64748b;
  font-size: 13px;
  line-height: 1.45;
}

.reviews-list{
  margin-top: 12px;
  display: grid;
  gap: 8px;
}

.review-pagination{
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.review-pagination button{
  min-width: 110px;
  min-height: 40px;
  border: 1px solid #dbe2eb;
  border-radius: 10px;
  background: #fff;
  color: #334155;
  font-size: 13px;
  font-weight: 700;
}

.review-pagination button:disabled{
  opacity: .45;
  cursor: not-allowed;
}

.review-item{
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  padding: 10px 12px;
  background: #fff;
}

.review-item__head{
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 6px;
}

.review-item__identity{
  min-width: 0;
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.review-item__identity-text{
  min-width: 0;
}

.review-item__avatar{
  flex: 0 0 auto;
  align-self: flex-start;
}

.review-item__author{
  font-size: 14px;
  font-weight: 800;
  color: #0f172a;
}

.review-item__date{
  margin-top: 2px;
  font-size: 12px;
  color: #64748b;
}

.review-badge{
  font-size: 12px;
  font-weight: 700;
  border-radius: 999px;
  padding: 4px 8px;
  background: #e2e8f0;
  color: #334155;
}

.review-badge.is-positive{
  background: #dcfce7;
  color: #166534;
}

.review-badge.is-negative{
  background: #fee2e2;
  color: #991b1b;
}

.review-item__text{
  margin: 0;
  font-size: 14px;
  color: #334155;
  line-height: 1.45;
}

.review-item__media{
  width: min(100%, 360px);
  max-height: 360px;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  background: #f8fafc;
  object-fit: cover;
  overflow: hidden;
}

.review-item__answer{
  display: grid;
  gap: 6px;
  padding: 12px 14px;
  border-radius: 14px;
  background: #f8fafc;
  border: 1px solid #dbe2eb;
}

.review-item__answer-title{
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #475569;
}

.review-item__answer p{
  margin: 0;
  color: #334155;
  line-height: 1.55;
}

.product-back-in-stock{
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px dashed #e2e8f0;
}

.product-back-in-stock__head{
  margin-bottom: 12px;
}

.product-back-in-stock__head h3{
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 800;
  color: #0f172a;
}

.product-back-in-stock__head p{
  margin: 0;
  color: #64748b;
  font-size: 13px;
  line-height: 1.5;
}

#productFavoriteBtn{
  top: 10px;
  right: 10px;
}

.product-toast{
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 9999;
  min-width: 0;
  width: min(320px, calc(100vw - 24px));
  max-width: 90vw;
}

.product-toast__inner{
  background: #111;
  border-radius: 12px;
  padding: 10px 14px;
  text-align: center;
  color: #fff;
  box-shadow: 0 8px 24px rgba(0,0,0,.35);
}

.product-toast__inner.is-error{
  color: #fca5a5;
}

.product-toast__inner.is-added{
  color: #22c55e;
}

.product-toast__inner.is-removed{
  color: #ef4444;
}

.product-page .top-sales{
  padding: 20px 0 44px;
}

.product-page .top-sales .container{
  max-width: 1320px;
}

.product-mobile-bar{
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 120;
  padding: 12px 12px calc(12px + env(safe-area-inset-bottom, 0px));
  background: rgba(247, 248, 252, 0.92);
  backdrop-filter: blur(14px);
  border-top: 1px solid rgba(226, 232, 240, 0.95);
  box-shadow: 0 -12px 28px rgba(15, 23, 42, .12);
}

.product-mobile-bar__content{
  max-width: 620px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}

.product-mobile-bar__meta{
  display: grid;
  min-width: 0;
  gap: 3px;
}

.product-mobile-bar__eyebrow{
  display: block;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-mobile-bar__meta strong{
  display: block;
  color: #0f172a;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.1;
}

.product-mobile-bar__meta small{
  display: block;
  color: #475569;
  font-size: 12px;
  line-height: 1.35;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-mobile-bar__button{
  min-width: 152px;
  min-height: 48px;
  padding: 10px 18px;
  border: 0;
  border-radius: 16px;
  background: linear-gradient(135deg, #dc2626, #991b1b);
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  box-shadow: 0 16px 28px rgba(220, 38, 38, .22);
}

.product-mobile-bar__button:disabled{
  opacity: .55;
  box-shadow: none;
}

@media (max-width: 991.98px){
  .product-layout{ grid-template-columns: 1fr; }
  .product-gallery__thumbs{
    --thumb-gap: 6px;
    padding-bottom: 2px;
  }
}

@media (max-width: 575.98px){
  .product-shell{ padding-top: 12px; }
  .product-shell.has-mobile-buy-bar{
    padding-bottom: calc(112px + env(safe-area-inset-bottom, 0px));
  }
  .product-gallery,
  .product-info{ border-radius: 14px; }
  .product-info__price strong{ font-size: 26px; }
  .product-gallery{ padding: 10px; }
  .product-mobile-bar{
    display: block;
  }
  .product-mobile-bar__content{
    grid-template-columns: minmax(0, 1fr);
    gap: 10px;
  }
  .product-mobile-bar__button{
    width: 100%;
    min-width: 0;
  }
  .product-buy-row{
    flex-wrap: wrap;
  }
  .product-buy-row .product-actions{ min-width: 100%; }
  .review-form__grid{ grid-template-columns: 1fr; }
  .product-reviews__title{ font-size: 22px; }
  .product-reviews__tabs{ gap: 8px; }
  .product-reviews__tab{
    width: 100%;
    justify-content: space-between;
  }
  .review-item__media{ width: 100%; }
  .review-media-upload{ align-items: stretch; }
  .review-media-upload__button,
  .review-media-upload__remove{ width: 100%; }
  .product-gallery__nav{
    width: 38px;
    height: 38px;
  }
  .product-gallery-modal__topbar{
    min-height: 62px;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  .product-gallery-modal__action-btn,
  .product-gallery-modal__close{
    min-width: 38px;
    height: 38px;
  }
  .product-gallery-modal__close{
    font-size: 24px;
  }
  .product-gallery-modal__nav{
    width: 40px;
    height: 40px;
  }
  .product-gallery-modal__thumbs{
    min-height: 72px;
    padding-bottom: calc(10px + env(safe-area-inset-bottom, 0px));
  }
  .product-gallery-modal__thumb{
    width: 52px;
    height: 52px;
  }
  .product-gallery-modal__image{
    max-height: calc(100dvh - 164px);
  }
  .product-gallery__thumbs{
    --thumb-gap: 6px;
  }
  .product-thumb--show-all{
    padding: 6px;
  }
  .product-thumb__label{
    display: none;
  }
  .product-thumb__plus{
    font-size: 24px;
  }
  .product-addon-block__head{
    display: grid;
  }
  .product-addon-card{
    padding: 5px;
  }
}

@media (max-width: 389.98px){
  .product-shell{
    padding-top: 10px;
    padding-bottom: 32px;
  }

  .product-shell.has-mobile-buy-bar{
    padding-bottom: calc(118px + env(safe-area-inset-bottom, 0px));
  }

  .product-hero__title{
    font-size: clamp(22px, 8vw, 28px);
  }

  .product-gallery{
    padding: 8px;
    border-radius: 12px;
  }

  .product-info{
    padding: 14px;
    border-radius: 12px;
  }

  .product-info__price{
    flex-wrap: wrap;
    gap: 6px;
  }

  .product-info__price strong{
    font-size: 24px;
  }

  .product-buy-row{
    flex-direction: column;
    align-items: stretch;
  }

  .product-buy-row .qty{
    width: 100%;
    justify-content: space-between;
  }

  .product-buy-row .qty input{
    width: 48px;
  }

  .product-buy-row .product-actions,
  .product-actions{
    width: 100%;
    flex-direction: column;
  }

  .buy-btn,
  .cart-btn{
    width: 100%;
    min-height: 44px;
  }

  .cart-btn{
    height: 44px;
  }

  .size-option{
    font-size: 12px;
    padding: 8px 9px;
  }

  .color-option{
    width: 30px;
    height: 30px;
  }

  .product-gallery__nav{
    width: 34px;
    height: 34px;
  }

  .product-gallery-modal__topbar{
    min-height: 58px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .product-gallery-modal__counter{
    font-size: 12px;
  }

  .product-gallery-modal__actions{
    gap: 6px;
  }

  .product-gallery-modal__action-btn,
  .product-gallery-modal__close{
    min-width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .product-gallery-modal__close{
    font-size: 22px;
  }

  .product-gallery-modal__nav{
    width: 34px;
    height: 34px;
  }

  .product-gallery-modal__thumbs{
    min-height: 64px;
    gap: 6px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .product-gallery-modal__thumb{
    width: 44px;
    height: 44px;
    border-radius: 8px;
  }

  .product-mobile-bar{
    padding: 10px 10px calc(10px + env(safe-area-inset-bottom, 0px));
  }

  .product-mobile-bar__meta strong{
    font-size: 16px;
  }

  .product-mobile-bar__button{
    min-width: 0;
  }
}

/* ========== Extra tweaks for 320px — product ========== */
@media (max-width: 359.98px) {
  .product-shell {
    padding-top: 8px;
    padding-bottom: 28px;
  }

  .product-shell.has-mobile-buy-bar {
    padding-bottom: calc(114px + env(safe-area-inset-bottom, 0px));
  }

  /* Hero title */
  .product-hero__title {
    font-size: clamp(20px, 8vw, 26px);
  }

  /* Gallery */
  .product-gallery {
    padding: 6px;
    border-radius: 10px;
  }

  .product-gallery__nav {
    width: 30px;
    height: 30px;
  }
  .product-gallery__nav--prev { left: 8px; }
  .product-gallery__nav--next { right: 8px; }

  /* Thumbnails */
  .product-gallery__thumbs {
    --thumb-gap: 5px;
  }

  /* Product info */
  .product-info {
    padding: 12px;
    border-radius: 10px;
  }

  .product-info__price {
    flex-wrap: wrap;
    gap: 4px;
    margin: 10px 0;
  }

  .product-info__price strong { font-size: 22px; }

  /* Buy row: full column on 320 */
  .product-buy-row {
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .product-buy-row .qty {
    width: 100%;
    justify-content: space-between;
  }

  .product-buy-row .qty input { width: 44px; }

  .product-buy-row .product-actions,
  .product-actions {
    width: 100%;
    flex-direction: column;
    gap: 8px;
  }

  .buy-btn, .cart-btn {
    width: 100%;
    min-height: 44px;
  }

  .cart-btn { height: 44px; }

  /* Size/color options */
  .size-option {
    font-size: 12px;
    padding: 7px 8px;
  }

  .color-option {
    width: 28px;
    height: 28px;
  }

  /* Mobile buy bar */
  .product-mobile-bar {
    padding: 8px 8px calc(8px + env(safe-area-inset-bottom, 0px));
  }

  .product-mobile-bar__meta strong { font-size: 15px; }

  .product-mobile-bar__button {
    min-height: 44px;
    font-size: 13px;
    padding: 8px 12px;
    border-radius: 12px;
  }

  /* Description */
  .product-description {
    padding: 12px;
    border-radius: 14px;
  }

  /* Reviews */
  .product-reviews { padding: 12px; border-radius: 14px; }
  .product-reviews__title { font-size: 20px; }
  .product-reviews__tabs { gap: 6px; }
  .product-reviews__tab {
    padding: 8px 12px;
    font-size: 13px;
    width: 100%;
    justify-content: space-between;
  }

  /* Breadcrumbs */
  .product-breadcrumbs { font-size: 12px; gap: 5px; }

  /* Addon cards */
  .product-addon-list {
    grid-template-columns: repeat(auto-fill, minmax(72px, 1fr));
    gap: 8px;
  }

  /* Review form */
  .review-form { padding: 10px; }
  .review-field input, .review-field textarea { padding: 8px 9px; }
}
.checkout-page{
  min-height: 100vh;
  overflow-x: clip;
  background:
    radial-gradient(1100px 380px at 0% -10%, #fef2f2 0%, transparent 60%),
    radial-gradient(900px 280px at 100% 0%, #eef2ff 0%, transparent 55%),
    #f6f8fc;
}

.checkout-shell{ padding: 26px 0 52px; }

.checkout-shell > .container{
  width: min(100%, 1320px);
}

.checkout-shell > .container,
.checkout-layout,
.checkout-layout > *{
  min-width: 0;
}

.checkout-page .site-header,
.checkout-page .site-header .container,
.checkout-page .header-grid,
.checkout-page .header-grid > *,
.checkout-page .checkout-shell,
.checkout-page .checkout-shell > .container,
.checkout-page .checkout-head,
.checkout-page .checkout-layout,
.checkout-page .checkout-layout > *,
.checkout-page .checkout-form,
.checkout-page .checkout-card,
.checkout-page .checkout-summary{
  min-width: 0;
  max-width: 100%;
}

.auth-page .site-header .container{
  width: min(100%, 1320px);
  max-width: 1320px;
}

.account-page .site-header,
.account-page .header-top,
.account-page .header-bottom{
  width: 100%;
}

.account-page .site-header .container,
.account-page .header-top > .container,
.account-page .header-bottom > .container{
  width: 100% !important;
  max-width: 100% !important;
  padding-left: clamp(16px, 2vw, 24px) !important;
  padding-right: clamp(16px, 2vw, 24px) !important;
}

.checkout-head{ margin-bottom: 16px; }

.checkout-title{
  margin: 0 0 6px;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.1;
}

.checkout-subtitle{
  margin: 0;
  color: #6b7280;
  font-size: 14px;
  line-height: 1.55;
  max-width: 720px;
}

.checkout-layout{
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(300px, .9fr);
  gap: 18px;
  align-items: start;
}

.checkout-form{
  display: grid;
  gap: 12px;
}

.checkout-card{
  padding: 18px;
  background: #fff;
  border: 1px solid #e6eaf2;
  border-radius: 18px;
  box-shadow: 0 8px 22px rgba(15, 23, 42, .05);
  overflow: clip;
}

.checkout-card__title{
  margin: 0 0 14px;
  font-size: 19px;
  font-weight: 800;
}

.checkout-card__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}

.checkout-card__head > *{
  min-width: 0;
}

.checkout-grid{
  display: grid;
  gap: 12px;
}

.checkout-grid--2{ grid-template-columns: repeat(2, minmax(0, 1fr)); }
.checkout-grid--3{ grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 12px; }

.field{
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.field--full{ grid-column: 1 / -1; }

.field__label{
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

.field__input{
  width: 100%;
  border: 1px solid #dbe2eb;
  border-radius: 12px;
  padding: 11px 12px;
  font-size: 14px;
  color: #0f172a;
  background: #fff;
}

.field__input:focus{
  outline: 0;
  border-color: #fca5a5;
  box-shadow: 0 0 0 3px rgba(239, 68, 68, .14);
}

.field__textarea{
  min-height: 90px;
  resize: vertical;
}

.check{
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #334155;
}

.check input{
  width: 16px;
  height: 16px;
  accent-color: #db000b;
}

.payment-options{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.checkout-delivery-row{
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 14px;
}

.payment-option{
  display: block;
  cursor: pointer;
}

.payment-option input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.payment-option__content{
  min-height: 88px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border: 1px solid #dbe2eb;
  border-radius: 14px;
  background: #fff;
  color: #1f2937;
  font-size: 13px;
  font-weight: 700;
  overflow-wrap: anywhere;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
}

.payment-option__content i{
  font-size: 18px;
  color: #334155;
}

.payment-option:has(input:checked) .payment-option__content{
  border-color: #fca5a5;
  background: #fff5f5;
}

.payment-option.is-selected .payment-option__content{
  border-color: #fca5a5;
  background: #fff5f5;
}

.checkout-delivery-row .payment-option__content{
  min-height: 84px;
}

.checkout-scroll-hint{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 38px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #e2e8f0;
  background: #fff;
  color: #475569;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(15, 23, 42, .04);
}

.checkout-saved-addresses{
  display: grid;
  gap: 10px;
  margin-bottom: 14px;
}

.checkout-saved-addresses__head{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.checkout-saved-addresses__head strong{
  font-size: 14px;
  color: #111827;
}

.saved-addresses-list--checkout{
  margin-top: 0;
  margin-bottom: 0;
}

.saved-addresses-list--checkout-scroll{
  display: flex;
  gap: 12px;
  overflow-x: auto;
  padding: 2px 2px 8px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
}

.saved-addresses-list--checkout-scroll::-webkit-scrollbar{
  display: none;
}

.saved-addresses-list--checkout-scroll .saved-address-card{
  flex: 0 0 min(320px, calc(100vw - 72px));
  scroll-snap-align: start;
}

.checkout-note--inline{
  margin-top: 0;
  margin-bottom: 14px;
  padding: 12px 14px;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
  border: 1px solid #e2e8f0;
}

.checkout-summary{
  position: sticky;
  top: var(--sticky-offset);
  padding: 18px;
  background: #fff;
  border: 1px solid #e6eaf2;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .06);
  overflow: clip;
}

.checkout-summary__title{
  margin: 0 0 12px;
  font-size: 20px;
  font-weight: 800;
}

.checkout-items{
  display: grid;
  gap: 10px;
  margin-bottom: 10px;
}

.checkout-item{
  display: grid;
  grid-template-columns: 54px 1fr auto;
  gap: 8px;
  align-items: center;
  padding: 8px;
  border: 1px solid #edf2f7;
  border-radius: 12px;
  background: #f8fafc;
}

.checkout-item__media{
  width: 54px;
  min-width: 54px;
}

.checkout-item--multiple{
  grid-template-columns: 84px 1fr auto;
}

.checkout-item--multiple .checkout-item__media{
  width: 84px;
  min-width: 84px;
}

.checkout-item img{
  width: 54px;
  height: 54px;
  border-radius: 10px;
  object-fit: contain;
  border: 1px solid #e5e7eb;
  background: #fff;
}

.checkout-item__media--multiple{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 4px;
  width: 100%;
}

.checkout-item__media--multiple img{
  width: 100%;
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 8px;
}

.checkout-item__media-tile{
  display: grid;
  gap: 3px;
}

.checkout-item__media-label{
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #9a3412;
  text-align: center;
}

.checkout-item__name{
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
}

.checkout-item__meta{
  margin-top: 3px;
  font-size: 12px;
  color: #64748b;
}

.checkout-row{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 0;
  border-bottom: 1px dashed #e2e8f0;
  font-size: 14px;
  color: #334155;
}

.checkout-row strong{
  color: #111827;
}

.checkout-row--total{
  border-bottom: 0;
  margin-top: 2px;
  padding-top: 12px;
  font-size: 18px;
  font-weight: 800;
  color: #111827;
}

.checkout-submit{
  width: 100%;
  margin-top: 8px;
  border: 0;
  border-radius: 14px;
  padding: 13px 16px;
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
}

.checkout-note{
  margin: 12px 0 0;
  font-size: 13px;
  color: #64748b;
  line-height: 1.4;
}

.field__label,
.checkout-item__name,
.checkout-note,
.checkout-note--inline,
.checkout-benefit-tip__text{
  overflow-wrap: anywhere;
}

.checkout-page .site-footer{
  margin-top: 8px;
}

.checkout-note i{
  color: #16a34a;
  margin-right: 6px;
}

.checkout-benefit-tip{
  margin-top: 14px;
  padding: 12px 14px;
  border: 1px solid #dbe2eb;
  border-radius: 14px;
  background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.checkout-benefit-tip.is-active{
  border-color: #fca5a5;
  background: linear-gradient(180deg, #fff5f5 0%, #ffffff 100%);
}

.checkout-benefit-tip__title{
  font-size: 13px;
  font-weight: 800;
  color: #111827;
}

.checkout-benefit-tip__text{
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.5;
  color: #475569;
}

.checkout-alert{
  margin-top: 10px;
  min-height: 20px;
  font-size: 13px;
  font-weight: 700;
}

.checkout-alert.is-error{ color: #b91c1c; }
.checkout-alert.is-success{ color: #15803d; }

@media (max-width: 991.98px){
  .checkout-page{
    overflow-x: hidden;
  }
  .checkout-page .site-header{
    overflow-x: clip;
  }
  .checkout-page .header-grid{
    grid-template-columns: minmax(52px, 1fr) auto minmax(52px, 1fr);
    gap: 8px;
    align-items: center;
  }
  .checkout-page .header-grid > .d-flex{
    min-width: 52px;
    justify-self: start;
  }
  .checkout-page .header-grid > .text-center{
    width: auto;
    display: grid;
    place-items: center;
    justify-self: center;
    text-align: center;
  }
  .checkout-page .header-grid > .text-center,
  .checkout-page .header-grid .logo,
  .checkout-page .header-grid .userMenu{
    min-width: 0;
  }
  .checkout-page .header-grid > .userMenu{
    min-width: 52px;
    justify-self: end;
  }
  .checkout-page .header-grid .logo.d-md-none{
    display: inline-flex !important;
    justify-content: center;
  }
  .checkout-page .header-grid .logo img{
    display: block;
    max-width: 35px;
    height: auto;
  }
  .checkout-page .menu{
    margin-right: 10px !important;
  }
  .checkout-page .userMenu{
    flex-shrink: 0;
  }
  .checkout-page .site-footer{
    padding-bottom: calc(104px + env(safe-area-inset-bottom, 0px));
  }
  .checkout-page .mobile-bottom-nav{
    z-index: 1200;
  }
  .auth-page .site-header .container{
    width: 90% !important;
    max-width: 90% !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
  .checkout-shell > .container{
    width: 100% !important;
    max-width: 100% !important;
    padding-left: 14px !important;
    padding-right: 14px !important;
  }
  .checkout-layout{
    width: 100%;
    grid-template-columns: minmax(0, 1fr) !important;
  }
  .checkout-form,
  .checkout-summary{
    width: 100%;
    max-width: 100%;
  }
  .checkout-shell{
    padding-bottom: calc(120px + env(safe-area-inset-bottom, 0px));
  }
  .checkout-layout{
    gap: 14px;
  }
  .checkout-form{
    gap: 10px;
  }
  .checkout-summary{ position: static; }
  .payment-options{ grid-template-columns: 1fr; }
  .checkout-delivery-row{
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    overflow: visible;
    padding: 0;
    margin-bottom: 14px;
    scroll-snap-type: none;
    scrollbar-width: auto;
  }
  .checkout-delivery-row .payment-option{
    width: 100%;
    flex: none;
    scroll-snap-align: none;
  }
  .checkout-scroll-hint{
    flex: 0 0 auto;
  }
}

@media (max-width: 749.98px){
  .checkout-shell{
    padding-top: 16px;
    padding-bottom: calc(116px + env(safe-area-inset-bottom, 0px));
  }
  .auth-page .site-header .container{
    width: 90% !important;
    max-width: 90% !important;
  }
  .checkout-shell > .container{
    padding-left: 12px !important;
    padding-right: 12px !important;
  }
  .checkout-grid--2,
  .checkout-grid--3{ grid-template-columns: 1fr; }
  .checkout-card,
  .checkout-summary{
    padding: 14px;
    border-radius: 16px;
  }
  .checkout-head{
    margin-bottom: 12px;
    gap: 10px;
  }
  .checkout-title{
    font-size: clamp(22px, 7vw, 30px);
  }
  .checkout-subtitle{
    font-size: 13px;
  }
  .checkout-card__head,
  .checkout-saved-addresses__head{
    align-items: flex-start;
  }
  .checkout-delivery-row{
    margin-inline: 0;
    padding-inline: 0;
  }
  .checkout-item{
    grid-template-columns: 48px minmax(0, 1fr);
    align-items: start;
  }
  .checkout-item--multiple{
    grid-template-columns: 76px minmax(0, 1fr);
  }
  .checkout-item img{
    width: 48px;
    height: 48px;
  }
  .checkout-item--multiple .checkout-item__media{
    width: 76px;
    min-width: 76px;
  }
  .checkout-item__media--multiple img{
    width: 100%;
    height: auto;
  }
  .checkout-item strong{
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
  }
  .checkout-row,
  .checkout-row--total{
    font-size: 13px;
  }
  .checkout-row--total{
    font-size: 17px;
  }
  .checkout-submit{
    min-height: 48px;
    padding: 12px 14px;
  }
  .checkout-summary__title{
    font-size: 18px;
  }
  .checkout-delivery-row .payment-option{
    width: 100%;
    flex-basis: auto;
  }
  .saved-addresses-list--checkout-scroll .saved-address-card{
    flex-basis: min(280px, calc(100vw - 56px));
  }
}

@media (max-width: 389.98px){
  .checkout-shell{
    padding-top: 12px;
    padding-bottom: calc(112px + env(safe-area-inset-bottom, 0px));
  }
  .auth-page .site-header .container{
    width: 94% !important;
    max-width: 94% !important;
  }
  .checkout-shell > .container{
    padding-left: 10px !important;
    padding-right: 10px !important;
  }

  .checkout-title{
    font-size: clamp(22px, 8vw, 28px);
  }

  .checkout-card,
  .checkout-summary{
    padding: 12px;
    border-radius: 14px;
  }

  .checkout-card__head,
  .checkout-saved-addresses__head{
    gap: 8px;
  }

  .checkout-scroll-hint{
    width: 100%;
  }

  .field__input{
    padding: 10px 11px;
  }

  .payment-option__content{
    min-height: 76px;
    padding: 10px;
  }

  .checkout-delivery-row .payment-option{
    width: 100%;
    flex-basis: auto;
  }

  .saved-addresses-list--checkout-scroll .saved-address-card{
    flex-basis: min(248px, calc(100vw - 44px));
  }

  .checkout-item{
    grid-template-columns: 44px minmax(0, 1fr);
  }
  .checkout-item--multiple{
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .checkout-item img{
    width: 44px;
    height: 44px;
  }
  .checkout-item--multiple .checkout-item__media{
    width: 72px;
    min-width: 72px;
  }
  .checkout-item__media--multiple img{
    width: 100%;
    height: auto;
  }

  .checkout-submit{
    min-height: 46px;
  }
}
.basket-page{
  background:
    radial-gradient(1200px 420px at 0% -10%, #fef2f2 0%, transparent 60%),
    radial-gradient(900px 320px at 100% 0%, #eff6ff 0%, transparent 55%),
    #f5f7fb;
}

.basket-shell{ padding: 28px 0 44px; }

.basket-hero{
  margin-bottom: 18px;
  padding: 22px 24px;
  border-radius: 20px;
  border: 1px solid #e6eaf2;
  background: linear-gradient(135deg, #fff 0%, #fff8f8 100%);
  box-shadow: 0 12px 30px rgba(15, 23, 42, .06);
}

.basket-hero__top{
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 8px;
}

.basket-title{
  margin: 0;
  font-size: clamp(24px, 3.2vw, 36px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: .01em;
}

.basket-count{
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 13px;
  color: #b91c1c;
  background: #fee2e2;
  border: 1px solid #fecaca;
  border-radius: 999px;
  padding: 8px 12px;
  white-space: nowrap;
}

.basket-subtitle{
  margin: 0;
  color: #6b7280;
  font-weight: 500;
}

.basket-layout{
  display: grid;
  grid-template-columns: minmax(0, 1.8fr) minmax(300px, .9fr);
  gap: 18px;
  align-items: start;
}

.basket-upsell{
  margin-top: 26px;
}

.basket-upsell .top-sales{
  padding: 0;
  background: transparent;
}

.basket-list{ display: grid; gap: 12px; }

.basket-item{
  display: grid;
  grid-template-columns: 122px 1fr auto;
  gap: 14px;
  padding: 14px;
  background: #fff;
  border: 1px solid #e6eaf2;
  border-radius: 18px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, .05);
}

.basket-item--individual{
  border-color: #f3d6c2;
  background:
    linear-gradient(135deg, rgba(255, 248, 240, .96) 0%, rgba(255, 255, 255, .98) 55%, rgba(255, 244, 244, .98) 100%);
  box-shadow: 0 12px 30px rgba(180, 83, 9, .08);
}

.basket-item__media{
  width: 100%;
  aspect-ratio: 1 / 1;
  border-radius: 14px;
  background: #f8fafc;
  overflow: hidden;
  border: 1px solid #edf2f7;
}

.basket-item__media img{
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.basket-item__media--multiple{
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  align-content: start;
  padding: 8px;
  aspect-ratio: auto;
}

.basket-item__media--multiple img{
  height: auto;
  aspect-ratio: 1 / 1;
  border-radius: 10px;
  border: 1px solid #edf2f7;
  background: #fff;
}

.basket-item__media-tile{
  display: grid;
  gap: 6px;
}

.basket-item__media-label{
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: #9a3412;
  text-align: center;
}

.basket-item__body{
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
  justify-content: center;
}

.basket-item__eyebrow{
  display: inline-flex;
  align-self: flex-start;
  padding: 6px 10px;
  border-radius: 999px;
  background: #111827;
  color: #fff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.basket-item__name{
  margin: 0;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.25;
}

.basket-item__name--individual{
  color: #0f172a;
}

.basket-item__name a{
  color: #111827;
  text-decoration: none;
  transition: color .18s ease;
}

.basket-item__name a:hover{
  color: #db000b;
}

.basket-item__meta{
  margin: 0;
  color: #6b7280;
  font-size: 13px;
  line-height: 1.4;
}

.basket-print-card{
  display: grid;
  gap: 8px;
  padding: 12px 14px;
  border: 1px solid #efd7c4;
  border-radius: 14px;
  background: rgba(255, 255, 255, .78);
}

.basket-print-card__row{
  display: grid;
  gap: 3px;
}

.basket-print-card__label{
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: #9a3412;
}

.basket-print-card__value{
  font-size: 13px;
  line-height: 1.45;
  color: #1f2937;
  font-weight: 600;
}

.basket-item__tags{
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.basket-gift-title{
  margin: 2px 0 6px;
  font-size: 13px;
  font-weight: 700;
  color: #334155;
}

.basket-gift-options{
  display: flex;
  align-items: center;
  flex-wrap: nowrap;
  gap: 8px;
  margin-top: 2px;
  overflow-x: auto;
}

.gift-option{
  display: flex;
  align-items: stretch;
  gap: 0;
  padding: 4px;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  background: #fff;
  cursor: pointer;
  transition: border-color .18s ease, background-color .18s ease, transform .18s ease;
  min-height: 0;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
}

.gift-option:has(input:checked){
  border-color: #fca5a5;
  background: #fff5f5;
}

.gift-option input{
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.gift-option__content{
  display: flex;
  align-items: stretch;
  justify-content: center;
  width: 100%;
  min-width: 0;
}

.gift-option__img{
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: contain;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.basket-tag{
  font-size: 12px;
  font-weight: 600;
  color: #334155;
  background: #f1f5f9;
  border: 1px solid #e2e8f0;
  border-radius: 999px;
  padding: 5px 10px;
}

.basket-item__side{
  display: grid;
  align-content: space-between;
  justify-items: end;
  gap: 10px;
  min-width: 128px;
}

.basket-price{
  text-align: right;
  line-height: 1.25;
}

.basket-price__current{
  display: block;
  font-size: 20px;
  font-weight: 800;
  color: #111827;
}

.basket-price__old{
  display: block;
  font-size: 13px;
  color: #94a3b8;
  text-decoration: line-through;
}

.qty{
  display: inline-flex;
  align-items: center;
  border: 1px solid #e6eaf2;
  border-radius: 12px;
  overflow: hidden;
  background: #fff;
}

.qty button{
  width: 34px;
  height: 34px;
  border: 0;
  background: #f8fafc;
  color: #334155;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.qty button:hover{ background: #edf2f7; }

.qty span{
  width: 40px;
  text-align: center;
  font-weight: 700;
  font-size: 14px;
  color: #111827;
}

.basket-remove{
  border: 0;
  background: transparent;
  color: #9ca3af;
  font-size: 13px;
  font-weight: 700;
  cursor: pointer;
}

.basket-remove:hover{ color: #db000b; }

.basket-summary{
  position: sticky;
  top: var(--sticky-offset);
  padding: 18px;
  background: #fff;
  border: 1px solid #e6eaf2;
  border-radius: 18px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, .06);
}

.basket-summary__title{
  margin: 0 0 14px;
  font-size: 20px;
  font-weight: 800;
}

.summary-row{
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 10px;
  padding: 10px 0;
  border-bottom: 1px dashed #e2e8f0;
  font-size: 14px;
  color: #334155;
}

.summary-row strong{
  color: #111827;
  font-weight: 700;
}

.summary-row--total{
  border-bottom: 0;
  padding-top: 14px;
  margin-top: 4px;
  font-size: 18px;
  font-weight: 800;
  color: #111827;
}

.checkout-btn{
  width: 100%;
  margin-top: 10px;
  border: 0;
  border-radius: 14px;
  padding: 13px 16px;
  background: linear-gradient(135deg, #111827 0%, #1f2937 100%);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  transition: transform .2s ease, box-shadow .2s ease;
}

.checkout-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(17, 24, 39, .28);
}

.basket-note{
  margin-top: 14px;
  font-size: 13px;
  color: #6b7280;
  line-height: 1.45;
}

.basket-note i{
  color: #0f9d58;
  margin-right: 6px;
}

.basket-empty{
  padding: 24px;
  text-align: center;
  background: #fff;
  border: 1px solid #e6eaf2;
  border-radius: 18px;
  color: #475569;
}

.basket-empty h3{
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 800;
  color: #111827;
}

.basket-empty a{
  display: inline-flex;
  margin-top: 12px;
  padding: 10px 14px;
  border-radius: 12px;
  text-decoration: none;
  background: #111827;
  color: #fff;
  font-weight: 700;
}

@media (max-width: 991.98px){
  .basket-layout{ grid-template-columns: 1fr; }
  .basket-summary{ position: static; }
}

@media (max-width: 749.98px){
  .basket-shell{ padding-top: 16px; }
  .basket-hero{ border-radius: 16px; padding: 16px; }
  .basket-hero__top{ flex-wrap: wrap; }
  .basket-item{ grid-template-columns: 88px 1fr; }
  .basket-print-card{ padding: 10px 12px; }
  .basket-item__side{
    grid-column: 1 / -1;
    grid-template-columns: 1fr auto auto;
    align-items: center;
    justify-items: stretch;
    min-width: 0;
  }
  .basket-price{ text-align: left; }
  .basket-remove{ justify-self: end; }
}

@media (max-width: 389.98px){
  .basket-shell{
    padding-top: 12px;
  }

  .basket-hero{
    padding: 14px;
    border-radius: 14px;
  }

  .basket-count{
    white-space: normal;
  }

  .basket-item{
    grid-template-columns: 1fr;
    padding: 12px;
    border-radius: 14px;
  }

  .basket-item__media{
    max-width: 88px;
  }

  .basket-item__side{
    grid-column: auto;
    grid-template-columns: 1fr;
    justify-items: stretch;
    gap: 8px;
  }

  .basket-price{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
  }

  .qty{
    width: 100%;
    justify-content: space-between;
  }

  .qty span,
  .qty input{
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
  }

  .basket-remove{
    justify-self: start;
  }

  .basket-summary{
    padding: 14px;
    border-radius: 14px;
  }

  .summary-row{
    font-size: 13px;
  }
}

/* ========== Extra tweaks for 320px — basket ========== */
@media (max-width: 359.98px) {
  .basket-shell { padding-top: 10px; }

  .basket-hero {
    padding: 12px;
    border-radius: 12px;
  }

  .basket-title { font-size: clamp(22px, 8vw, 28px); }

  .basket-hero__top { flex-wrap: wrap; gap: 8px; }

  .basket-count {
    font-size: 12px;
    padding: 6px 10px;
    white-space: normal;
  }

  /* Item: full column stack */
  .basket-item {
    grid-template-columns: 1fr;
    gap: 10px;
    padding: 10px;
    border-radius: 12px;
  }

  .basket-item__media {
    max-width: 80px;
  }

  .basket-item__name { font-size: 15px; }

  .basket-item__side {
    grid-column: auto;
    grid-template-columns: 1fr;
    justify-items: stretch;
    align-items: stretch;
    gap: 8px;
    min-width: 0;
  }

  .basket-price {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    text-align: left;
  }

  .basket-price__current { font-size: 18px; }

  .qty {
    width: 100%;
    justify-content: space-between;
  }

  .qty span, .qty input {
    width: auto;
    min-width: 0;
    flex: 1 1 auto;
  }

  .basket-remove { justify-self: start; }

  /* Summary */
  .basket-summary {
    padding: 12px;
    border-radius: 12px;
  }

  .basket-summary__title { font-size: 18px; }

  .summary-row { font-size: 13px; }
  .summary-row--total { font-size: 17px; }

  .checkout-btn {
    padding: 11px 14px;
    font-size: 14px;
  }

  /* Empty state */
  .basket-empty { padding: 18px; border-radius: 14px; }
}
.reviews-shell {
  padding: 36px 0 72px;
  background:
    radial-gradient(circle at top right, rgba(46, 139, 87, 0.08), transparent 30%),
    linear-gradient(180deg, #fffaf3 0%, #ffffff 24%, #f7fafc 100%);
}

.reviews-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: #6b7280;
  font-size: 14px;
}

.reviews-breadcrumbs a {
  color: inherit;
  text-decoration: none;
}

.reviews-breadcrumbs a:hover {
  color: #0f766e;
}

.reviews-empty,
.reviews-card {
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid rgba(226, 232, 240, 0.95);
  border-radius: 28px;
  box-shadow: 0 18px 50px rgba(15, 23, 42, 0.06);
}

.reviews-pagehead {
  margin-bottom: 10px;
}

.reviews-pagehead h1 {
  margin: 0;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.02;
  color: #0f172a;
}

.reviews-pagehead__count {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 28px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #cfe6e2;
  background: linear-gradient(180deg, #ffffff 0%, #f0fdfa 100%);
}

.reviews-pagehead__count strong {
  font-size: clamp(22px, 2.2vw, 28px);
  line-height: 1;
  color: #0f766e;
}

.reviews-pagehead__count span {
  color: #475569;
  font-size: 15px;
  font-weight: 600;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.reviews-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 24px;
}

.reviews-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.reviews-card__author {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.reviews-card__avatar {
  flex-shrink: 0;
}

.reviews-card__author-meta {
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-width: 0;
}

.reviews-card__author-meta h2 {
  margin: 0;
  font-size: 17px;
  line-height: 1.2;
  color: #0f172a;
}

.reviews-card__author-meta time {
  color: #64748b;
  font-size: 13px;
}

.reviews-card__sentiment-wrap {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 6px;
  flex-shrink: 0;
}

.reviews-card__sentiment-wrap small {
  margin: 0;
  color: #64748b;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reviews-card__sentiment {
  display: inline-flex;
  align-items: center;
  align-self: flex-start;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(22, 163, 74, 0.12);
  color: #166534;
  font-size: 12px;
  font-weight: 700;
}

.reviews-card__product {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px 14px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
  border: 1px solid #e2e8f0;
  color: inherit;
  text-decoration: none;
}

.reviews-card__product-thumb {
  flex: 0 0 72px;
  width: 72px;
  height: 72px;
  border-radius: 18px;
  overflow: hidden;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.reviews-card__product-thumb img,
.reviews-card__media-thumb {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.reviews-card__product-meta {
  display: flex;
  flex-direction: column;
  gap: 4px;
  min-width: 0;
}

.reviews-card__product-meta small {
  color: #0f766e;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.reviews-card__product-meta strong {
  color: #0f172a;
  font-size: 15px;
  line-height: 1.35;
}

.reviews-card__sentiment.is-negative {
  background: rgba(220, 38, 38, 0.1);
  color: #b91c1c;
}

.reviews-card__text,
.reviews-card__answer p,
.reviews-empty p {
  margin: 0;
  color: #334155;
  font-size: 16px;
  line-height: 1.7;
}

.reviews-card__media-row {
  display: flex;
  justify-content: flex-start;
}

.reviews-card__media-trigger {
  position: relative;
  width: min(156px, 100%);
  aspect-ratio: 16 / 11;
  padding: 0;
  border: 1px solid #dbe4ee;
  border-radius: 18px;
  overflow: hidden;
  background: #0f172a;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.reviews-card__media-trigger:hover {
  transform: translateY(-2px);
  border-color: rgba(15, 118, 110, 0.34);
  box-shadow: 0 16px 32px rgba(15, 23, 42, 0.16);
}

.reviews-card__media-badge {
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  color: #ffffff;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.reviews-card__answer {
  padding: 18px 20px;
  border-radius: 20px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
}

.reviews-card__answer strong {
  display: block;
  margin-bottom: 8px;
  color: #0f172a;
  font-size: 14px;
}

.reviews-empty {
  padding: 36px 28px;
  text-align: center;
}

.reviews-empty h2 {
  margin: 0 0 10px;
  color: #0f172a;
}

.reviews-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}

.reviews-pagination__nav,
.reviews-pagination__page {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  height: 44px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid #dbe4ee;
  background: #ffffff;
  color: #0f172a;
  text-decoration: none;
  font-weight: 600;
}

.reviews-pagination__page.is-active {
  background: #0f766e;
  border-color: #0f766e;
  color: #ffffff;
}

.reviews-pagination__nav.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

.reviews-pagination__pages {
  display: flex;
  align-items: center;
  gap: 10px;
}

.reviews-media-modal {
  position: fixed;
  inset: 0;
  z-index: 13010;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(15, 23, 42, 0.76);
  backdrop-filter: blur(10px);
}

.reviews-media-modal__dialog {
  position: relative;
  isolation: isolate;
  width: min(100%, 980px);
  max-height: calc(100dvh - 48px);
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.4);
}

.reviews-media-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 30;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 999px;
  background: rgba(15, 23, 42, 0.78);
  color: #ffffff;
  font-size: 28px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.36);
}

.reviews-media-modal__frame {
  position: relative;
  z-index: 1;
  overflow: hidden;
  border-radius: 22px;
  background: #0f172a;
}

.reviews-media-modal__asset {
  display: block;
  width: 100%;
  max-height: calc(100dvh - 120px);
  object-fit: contain;
}

@media (max-width: 991px) {
  .reviews-shell {
    padding: 28px 0 60px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .reviews-card,
  .reviews-empty {
    border-radius: 22px;
  }

  .reviews-card {
    padding: 20px;
  }

  .reviews-pagehead__count {
    width: 100%;
    margin-bottom: 20px;
    justify-content: space-between;
    gap: 8px;
  }

  .reviews-card__header {
    flex-direction: column;
    align-items: stretch;
  }

  .reviews-card__author {
    align-items: flex-start;
  }

  .reviews-card__sentiment-wrap {
    align-items: flex-start;
  }

  .reviews-card__product-thumb {
    flex-basis: 68px;
    width: 68px;
    height: 68px;
    border-radius: 18px;
  }

  .reviews-card__media-trigger {
    width: 100%;
  }

  .reviews-media-modal {
    padding: 12px;
  }

  .reviews-media-modal__dialog {
    padding: 14px;
    border-radius: 22px;
  }

  .reviews-media-modal__close {
    top: 10px;
    right: 10px;
  }

  .reviews-pagination {
    flex-wrap: wrap;
  }
}
