/* Designer Blouse — FrontTheme (custom CSS, no Bootstrap) */

@font-face {
  font-family: "Pretendard";
  src: url("/front_theme/font/Pretendard-Light.woff2") format("woff2");
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  src: url("/front_theme/font/Pretendard-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  src: url("/front_theme/font/Pretendard-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Pretendard";
  src: url("/front_theme/font/Pretendard-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

:root {
  --ft-brand: #a70d0a;
  --ft-brand-dark: #8a0a08;
  --ft-black: #111;
  --ft-white: #fff;
  --ft-grey-50: #f7f7f7;
  --ft-grey-100: #ececec;
  --ft-grey-400: #9a9a9a;
  --ft-grey-600: #666;
  --ft-green: #1a7f4b;
  --ft-offer-green: #166534;
  --ft-offer-green-bg: #ecfdf3;
  --ft-footer-bar: #4b4645;
  --ft-shell-max: 480px;
  --ft-header-h: 56px;
  --ft-offer-h: 36px;
  --ft-pdp-usp-h: 40px;
  --ft-bottom-nav-h: 62px;
  --ft-font: "Pretendard", system-ui, -apple-system, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  width: 100%;
}

body.ft-body {
  margin: 0;
  font-family: var(--ft-font);
  font-weight: 400;
  font-size: 14px;
  line-height: 1.45;
  color: var(--ft-black);
  background: var(--ft-grey-100);
  width: 100%;
  min-height: 100dvh;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

body.ft-body.ft-scroll-lock {
  overflow: hidden;
  touch-action: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  padding: 0;
}

/* Desktop centered mobile shell */
.desktop-bg {
  min-height: 100dvh;
  display: flex;
  justify-content: center;
  width: 100%;
  --tw-bg-opacity: 1;
  background-color: rgb(243 244 246 / var(--tw-bg-opacity, 1));
}

.mobile-shell {
  width: 100%;
  max-width: var(--ft-shell-max);
  min-width: 0;
  min-height: 100dvh;
  margin-inline: auto;
  background: var(--ft-white);
  position: relative;
  display: flex;
  flex-direction: column;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
  overflow-x: hidden;
  overflow-y: visible;
}

.ft-sticky-sentinel {
  height: 1px;
  margin: 0;
  padding: 0;
  flex-shrink: 0;
  pointer-events: none;
  visibility: hidden;
}

.mobile-main {
  flex: 1;
  min-width: 0;
  max-width: 100%;
  padding-bottom: var(--ft-bottom-nav-h);
}

/* Offer bar — horizontal marquee; scrolls away with page */
.ft-offer-bar {
  background: var(--ft-brand);
  color: var(--ft-white);
  min-height: var(--ft-offer-h);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  z-index: 42;
}

.ft-offer-bar__sr,
.ft-sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ft-offer-bar__viewport {
  width: 100%;
  overflow: hidden;
}

.ft-offer-bar__track {
  display: flex;
  width: max-content;
  align-items: center;
  min-height: var(--ft-offer-h);
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  -webkit-animation: ft-offer-scroll 22s linear infinite;
  animation: ft-offer-scroll 22s linear infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.ft-offer-bar__track.is-js-marquee {
  width: max-content;
  flex-wrap: nowrap;
  justify-content: flex-start;
  -webkit-animation: none !important;
  animation: none !important;
}

.ft-pdp__gallery-usp.is-js-rotator {
  height: var(--ft-pdp-usp-h);
  overflow: hidden;
}

@-webkit-keyframes ft-offer-scroll {
  from {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  to {
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0);
  }
}

.ft-offer-bar:hover .ft-offer-bar__track {
  animation-play-state: paused;
}

.ft-offer-bar__item {
  flex: 0 0 auto;
  display: inline-flex;
  align-items: center;
  gap: 0;
  padding: 8px 32px 8px 0;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.35;
  white-space: nowrap;
}

.ft-offer-bar__item strong {
  font-weight: 600;
  margin: 0 0.15em;
}

.ft-offer-bar__sep {
  margin: 0 8px;
  opacity: 0.85;
}

@keyframes ft-offer-scroll {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    transform: translate3d(-50%, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ft-offer-bar__track:not(.is-js-marquee) {
    -webkit-animation: none;
    animation: none;
    width: 100%;
    justify-content: center;
    flex-wrap: wrap;
  }

  .ft-offer-bar__track:not(.is-js-marquee) .ft-offer-bar__item:last-child {
    display: none;
  }

  .ft-offer-bar__track:not(.is-js-marquee) .ft-offer-bar__item {
    padding: 8px 12px;
    white-space: normal;
    text-align: center;
    justify-content: center;
  }
}

/* Header — fixed below offer bar once user scrolls (see initStickyChrome JS) */
.ft-header {
  position: relative;
  z-index: 41;
  width: 100%;
  flex-shrink: 0;
  background: var(--ft-white);
  border-bottom: 1px solid var(--ft-grey-100);
}

.ft-header.is-fixed {
  position: fixed;
  top: 0;
  z-index: 41;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

body.ft-chrome-fixed:not(.ft-body--product) .mobile-main {
  padding-top: var(--ft-header-h);
}

body.ft-chrome-fixed.ft-body--product .mobile-main {
  padding-top: calc(var(--ft-header-h) + var(--ft-pdp-usp-h));
}

.ft-header__shell {
  position: relative;
  height: var(--ft-header-h);
  overflow: hidden;
}

.ft-header__bar,
.ft-header__search {
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}

.ft-header__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  padding: 0 8px 0 2px;
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ft-header__start {
  display: flex;
  align-items: center;
  gap: 2px;
  min-width: 0;
  flex: 1;
}

.ft-icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  color: var(--ft-black);
  position: relative;
}

.ft-icon-img {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.ft-icon-img--menu {
  width: 24px;
  height: 18px;
}

.ft-icon-btn--cart .ft-badge {
  position: absolute;
  top: 6px;
  right: 4px;
  min-width: 16px;
  height: 16px;
  padding: 0 4px;
  border-radius: 2px;
  background: var(--ft-brand);
  color: var(--ft-white);
  font-size: 10px;
  font-weight: 600;
  line-height: 16px;
  text-align: center;
}

.ft-header__actions {
  display: flex;
  flex-shrink: 0;
  justify-content: flex-end;
}

.ft-header.is-search-open .ft-header__bar {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ft-header__search {
  display: grid;
  grid-template-columns: 44px 1fr;
  align-items: center;
  gap: 4px;
  padding: 0 10px 0 4px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.ft-header.is-search-open .ft-header__search {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.ft-header__search-label {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.ft-header__search-form {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
}

.ft-header__search-input {
  width: 100%;
  height: 40px;
  padding: 0 40px 0 12px;
  border: 1px solid var(--ft-grey-100);
  border-radius: 2px;
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  color: var(--ft-black);
  background: var(--ft-white);
  -webkit-appearance: none;
  appearance: none;
}

.ft-header__search-input::placeholder {
  color: var(--ft-grey-400);
}

.ft-header__search-input:focus {
  outline: none;
  border-color: var(--ft-grey-400);
}

.ft-header__search-submit {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  .ft-header__bar,
  .ft-header__search {
    transition: none;
  }
}

/* Logo */
.ft-logo {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
  text-decoration: none;
}

.ft-logo__img {
  display: block;
  height: 30px;
  width: auto;
  max-width: min(156px, 100%);
  object-fit: contain;
  object-position: left center;
}

.ft-logo__img--menu {
  height: 32px;
  max-width: min(168px, 100%);
}

.ft-logo__img--footer {
  height: 36px;
  max-width: 180px;
}

.ft-logo__mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 32px;
  background: var(--ft-brand);
  color: var(--ft-white);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.ft-logo__mark--lg {
  width: 52px;
  height: 40px;
  font-size: 16px;
}

.ft-logo__word {
  display: grid;
  grid-template-columns: auto auto;
  grid-template-rows: auto auto auto;
  column-gap: 2px;
  line-height: 1.05;
  color: var(--ft-black);
}

.ft-logo__word--footer {
  color: var(--ft-white);
}

.ft-logo__line {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  grid-column: 1;
}

.ft-logo__line--sm {
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.ft-logo__line--co {
  grid-column: 2;
  grid-row: 3;
  align-self: end;
}

/* Mobile menu */
.ft-menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 50;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.ft-menu-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.ft-menu-overlay[hidden] {
  display: none;
}

.ft-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: min(90%, var(--ft-shell-max));
  max-width: calc(var(--ft-shell-max) * 0.9);
  margin-left: max(0px, calc((100% - min(var(--ft-shell-max), 100%)) / 2));
  height: 100%;
  max-height: 100dvh;
  background: var(--ft-white);
  z-index: 60;
  display: flex;
  flex-direction: column;
  padding: 0;
  transform: translateX(-100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  will-change: transform;
  box-shadow: 2px 0 12px rgba(0, 0, 0, 0.08);
}

.ft-menu.is-open {
  transform: translateX(0);
}

.ft-menu[hidden] {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .ft-menu-overlay,
  .ft-menu {
    transition: none;
  }
}

.ft-menu__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-shrink: 0;
  padding: 12px 12px 12px 16px;
  border-bottom: 1px solid var(--ft-grey-100);
}

.ft-logo--menu {
  justify-self: auto;
  min-width: 0;
}

.ft-menu__body {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0 0 24px;
}

.ft-menu__primary,
.ft-menu__secondary {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ft-menu__primary .ft-menu__item {
  border-bottom: 1px solid var(--ft-grey-100);
}

.ft-menu__link,
.ft-menu__toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 16px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: left;
  color: var(--ft-black);
  background: transparent;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.ft-menu__toggle-label {
  flex: 1;
  min-width: 0;
}

.ft-menu__chevron {
  flex-shrink: 0;
  margin-left: 8px;
  transition: transform 0.25s ease;
}

.ft-menu__toggle.is-open .ft-menu__chevron {
  transform: rotate(180deg);
}

.ft-menu__sub {
  list-style: none;
  margin: 0;
  padding: 0;
  background: var(--ft-grey-50);
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.32s ease;
}

.ft-menu__sub.is-open {
  max-height: 360px;
}

.ft-menu__sub-link {
  display: block;
  padding: 12px 16px 12px 24px;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ft-black);
  border-bottom: 1px solid var(--ft-grey-100);
}

.ft-menu__sub li:last-child .ft-menu__sub-link {
  border-bottom: none;
}

.ft-menu__secondary {
  margin-top: 20px;
  padding: 0 16px;
}

.ft-menu__secondary .ft-menu__item {
  border-bottom: none;
}

.ft-menu__secondary-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 0;
  font-size: 14px;
  font-weight: 400;
  color: var(--ft-black);
}

.ft-menu__secondary-link--wa span {
  flex: 1;
}

.ft-menu__wa-icon {
  flex-shrink: 0;
  margin-left: 8px;
}

/* Category slider */
.ft-cat-slider {
  padding: 12px 0 8px;
  border-bottom: 1px solid var(--ft-grey-100);
  background: var(--ft-white);
  max-width: 100%;
}

.ft-cat-slider__track {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 16px 4px 16px;
  scroll-padding-inline: 16px;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  touch-action: pan-x;
  overscroll-behavior-x: contain;
  scrollbar-width: none;
  max-width: 100%;
}

.ft-cat-slider__track::-webkit-scrollbar {
  display: none;
}

.ft-cat-slider__item {
  flex: 0 0 auto;
  width: 72px;
  text-align: center;
  scroll-snap-align: start;
}

.ft-cat-slider__thumb {
  display: block;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid var(--ft-brand);
  margin-bottom: 6px;
}

.ft-cat-slider__swatch {
  box-sizing: border-box;
}

.ft-cat-slider__swatch--light {
  border-color: #d1d5db;
}

.ft-cat-slider__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ft-cat-slider__label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ft-black);
}

.ft-home {
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
}

/* Hero */
.ft-hero {
  position: relative;
  width: 100%;
  max-width: 100%;
  overflow: hidden;
  background: var(--ft-white);
}

.ft-hero__viewport {
  display: grid;
  width: 100%;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
  -webkit-user-select: none;
  user-select: none;
}

.ft-hero__viewport.is-dragging {
  cursor: grabbing;
}

.ft-hero__slide {
  grid-area: 1 / 1;
  width: 100%;
  opacity: 0;
  transition: opacity 0.45s ease;
  pointer-events: none;
  z-index: 0;
}

.ft-hero__slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}

.ft-hero__slide-inner {
  position: relative;
  display: block;
  width: 100%;
}

.ft-hero__img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block;
  vertical-align: top;
}

.ft-hero__fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.8) 0%,
    rgba(0, 0, 0, 0.55) 18%,
    rgba(0, 0, 0, 0.32) 35%,
    rgba(0, 0, 0, 0.15) 52%,
    rgba(0, 0, 0, 0.06) 68%,
    rgba(0, 0, 0, 0) 88%
  );
}

.ft-hero__actions {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 40px;
  z-index: 2;
  display: flex;
  justify-content: center;
  padding: 0 16px;
  pointer-events: none;
}

.ft-hero__slide.is-active .ft-hero__actions {
  pointer-events: auto;
}

.ft-hero__cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 160px;
  padding: 12px 28px;
  background: var(--ft-brand);
  color: var(--ft-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  box-sizing: border-box;
}

.ft-hero__cta:active {
  opacity: 0.92;
}

.ft-hero__dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 6px;
  z-index: 3;
}

.ft-hero__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  padding: 0;
}

.ft-hero__dot.is-active {
  background: var(--ft-white);
  width: 18px;
  border-radius: 3px;
}

/* Sections */
.ft-section {
  padding: 24px 12px;
}

.ft-section__title {
  margin: 0 0 16px;
  text-align: center;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.ft-section__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 20px;
  padding: 15px 16px;
  box-sizing: border-box;
  text-align: center;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--ft-black);
  background: var(--ft-white);
  border: 1px solid var(--ft-grey-100);
  border-radius: 0;
}

.ft-section__link:active {
  background: var(--ft-grey-50);
}

/* Home SEO content */
.ft-seo-content {
  border-top: 1px solid var(--ft-grey-100);
  border-bottom: 1px solid var(--ft-grey-100);
  background: var(--ft-white);
}

.ft-seo-content__toggle {
  display: block;
  width: 100%;
  padding: 16px 12px;
  text-align: left;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--ft-black);
  background: none;
  border: none;
  cursor: pointer;
  box-sizing: border-box;
}

.ft-seo-content__toggle:active {
  background: var(--ft-grey-50);
}

.ft-seo-content__body {
  padding: 0 12px 20px;
  font-size: 13px;
  line-height: 1.65;
  color: var(--ft-grey-600);
}

.ft-seo-content__body > :first-child {
  margin-top: 0;
}

.ft-seo-content__body h1,
.ft-seo-content__body h2,
.ft-seo-content__body h3,
.ft-seo-content__body h4 {
  margin: 16px 0 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ft-black);
  line-height: 1.4;
}

.ft-seo-content__body p,
.ft-seo-content__body ul,
.ft-seo-content__body ol {
  margin: 0 0 12px;
}

.ft-seo-content__body a {
  color: var(--ft-brand);
  text-decoration: underline;
}

.ft-seo-content--category {
  margin-top: 8px;
}

/* Product grid */
.ft-product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 10px;
}

.ft-product-card {
  min-width: 0;
}

.ft-product-card__media-wrap {
  position: relative;
}

.ft-product-card__media {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ft-grey-50);
}

.ft-product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ft-product-card__actions {
  position: absolute;
  right: 8px;
  bottom: 8px;
  z-index: 2;
  display: flex;
  gap: 6px;
}

.ft-product-card__action {
  width: 32px;
  height: 32px;
  padding: 0;
  border: none;
  border-radius: 50%;
  background: var(--ft-white);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.14);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  cursor: pointer;
}

.ft-product-card__action img {
  width: 18px;
  height: 18px;
  display: block;
}

.ft-product-card__action:active {
  transform: scale(0.96);
}

.ft-product-card__action.is-active {
  background: #fff5f5;
}

.ft-product-card__action.is-active img {
  filter: brightness(0) saturate(100%) invert(24%) sepia(89%) saturate(2476%) hue-rotate(334deg) brightness(92%) contrast(96%);
}

.ft-product-card__body {
  padding: 8px 2px 0;
}

.ft-product-card__name {
  margin: 6px 0 0;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  overflow: hidden;
}

.ft-product-card__name a {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.ft-product-card__name a:hover {
  text-decoration: underline;
}

.ft-product-card__pricing {
  margin: 0;
}

.ft-product-card__price {
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 6px;
  font-size: 14px;
}

.ft-product-card__now {
  font-weight: 600;
  color: var(--ft-black);
}

.ft-product-card__was {
  color: var(--ft-grey-400);
  text-decoration: line-through;
  font-size: 12px;
  font-weight: 400;
}

.ft-product-card__off {
  color: var(--ft-offer-green);
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
}

.ft-product-card__best-offer {
  display: inline-block;
  margin: 6px 0 0;
  padding: 5px 36px 5px 10px;
  max-width: 100%;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ft-offer-green);
  background: linear-gradient(
    90deg,
    var(--ft-offer-green-bg) 0%,
    var(--ft-offer-green-bg) 45%,
    rgba(236, 253, 243, 0.65) 72%,
    rgba(255, 255, 255, 0) 100%
  );
  border: none;
  border-left: 1px solid var(--ft-offer-green);
  border-radius: 3px 0 0 3px;
  position: relative;
  isolation: isolate;
}

.ft-product-card__best-offer::before,
.ft-product-card__best-offer::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 1px;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    var(--ft-offer-green) 0%,
    var(--ft-offer-green) 38%,
    rgba(22, 101, 52, 0.35) 62%,
    transparent 100%
  );
}

.ft-product-card__best-offer::before {
  top: 0;
}

.ft-product-card__best-offer::after {
  bottom: 0;
}

/* Product card image badge */
.ft-product-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  z-index: 2;
  padding: 3px 6px;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.2;
}

.ft-product-card__badge--bestseller {
  background: #f5c518;
  color: var(--ft-black);
}

.ft-product-card__badge--price-dropped {
  background: #dc2626;
  color: var(--ft-white);
}

.ft-product-card__badge--trending {
  background: #7c3aed;
  color: var(--ft-white);
}

.ft-product-card__badge--hot-selling {
  background: #ea580c;
  color: var(--ft-white);
}

.ft-product-card__badge--limited-collection {
  background: #7b001c;
  color: var(--ft-white);
}

.ft-product-card__badge--highlight {
  background: var(--ft-brand);
  color: var(--ft-white);
}

.ft-product-card__colors {
  position: absolute;
  left: 0;
  bottom: 10px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  max-width: calc(100% - 56px);
  padding: 6px 11px 6px 8px;
  border-radius: 0 999px 999px 0;
  background: linear-gradient(135deg, rgba(167, 13, 10, 0.94) 0%, rgba(120, 8, 6, 0.94) 100%);
  color: var(--ft-white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.03em;
  line-height: 1;
  box-shadow: 0 4px 14px rgba(167, 13, 10, 0.22);
  backdrop-filter: blur(4px);
}

.ft-product-card__colors-dot {
  flex-shrink: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b6b 0%, #c084fc 34%, #60a5fa 68%, #4ade80 100%);
  border: 1.5px solid rgba(255, 255, 255, 0.72);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
}

/* Category product card extras */
.ft-product-card__dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 4px;
  pointer-events: none;
}

.ft-product-card__dots span {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
}

.ft-product-card__dots span.is-active {
  width: 14px;
  border-radius: 2px;
  background: var(--ft-white);
}

.ft-product-card__meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  margin-top: 6px;
}

.ft-product-card__rating {
  margin: 0;
  display: inline-flex;
  align-items: center;
  gap: 3px;
  font-size: 11px;
  font-weight: 500;
  color: var(--ft-black);
}

.ft-product-card__star {
  color: #f5c518;
  font-size: 12px;
  line-height: 1;
}

.ft-product-card__reviews {
  color: var(--ft-grey-400);
  font-weight: 400;
}

.ft-product-card__reviews::before {
  content: "|";
  margin: 0 4px 0 2px;
  color: var(--ft-grey-100);
}

.ft-product-card__swatches {
  display: inline-flex;
  align-items: center;
  gap: 3px;
  flex-shrink: 0;
}

.ft-product-card__swatch {
  width: 12px;
  height: 12px;
  border-radius: 1px;
  box-sizing: border-box;
}

.ft-product-card__swatch--light {
  border: 1px solid var(--ft-grey-100);
}

/* Category page */
.ft-category {
  padding-bottom: 88px;
}

.ft-category__head {
  padding: 16px 12px 12px;
}

.ft-category__title {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ft-category__promo {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  margin: 0 12px 12px;
  padding: 14px 12px 18px;
  border: 1px solid var(--ft-grey-100);
  background: var(--ft-white);
}

.ft-category__promo-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2px;
  padding: 0 8px;
  text-align: center;
}

.ft-category__promo-col + .ft-category__promo-col {
  border-left: 1px solid var(--ft-grey-100);
}

.ft-category__promo-off {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.1;
  color: var(--ft-brand);
}

.ft-category__promo-sub {
  font-size: 11px;
  line-height: 1.3;
  color: var(--ft-black);
}

.ft-category__promo-tnc {
  position: absolute;
  right: 8px;
  bottom: 4px;
  font-size: 9px;
  color: var(--ft-grey-400);
}

.ft-category__toolbar {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 8px;
  padding: 0 12px 10px;
}

.ft-category__toolbar-start {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ft-category__view-btn,
.ft-category__sort-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--ft-grey-600);
}

.ft-category__view-btn.is-active {
  color: var(--ft-black);
}

.ft-category__sort-btn.is-active {
  color: var(--ft-brand);
}

.ft-category__count {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ft-grey-600);
  text-align: center;
}

.ft-category__sort-btn {
  justify-self: end;
}

.ft-category__filters {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  padding: 0 12px 14px;
}

.ft-category__filter-pill {
  padding: 11px 8px;
  border: 1px solid var(--ft-grey-100);
  background: var(--ft-white);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ft-black);
}

.ft-category__filter-pill:disabled {
  opacity: 0.55;
  cursor: default;
}

.ft-category__filter-pill.is-active {
  border-color: var(--ft-brand);
  color: var(--ft-brand);
}

/* Category filter / sort sheets */
.ft-cat-sheet-overlay {
  position: fixed;
  inset: 0;
  z-index: 85;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.ft-cat-sheet-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.ft-cat-sheet-overlay[hidden] {
  display: none;
}

.ft-cat-sheet {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  pointer-events: none;
}

.ft-cat-sheet.is-open {
  pointer-events: auto;
}

.ft-cat-sheet[hidden] {
  display: none;
}

.ft-cat-sheet__wrap {
  position: relative;
  width: min(100%, var(--ft-shell-max, 480px));
  max-height: 85vh;
  padding-top: 28px;
  overflow: visible;
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
}

.ft-cat-sheet.is-open .ft-cat-sheet__wrap {
  transform: translateY(0);
}

.ft-cat-sheet__panel {
  position: relative;
  max-height: calc(85vh - 28px);
  overflow-x: hidden;
  overflow-y: auto;
  padding: 28px 16px 24px;
  border-radius: 16px 16px 0 0;
  background: var(--ft-white);
}

.ft-cat-sheet__close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--ft-grey-600);
}

.ft-cat-sheet__title {
  margin: 0 0 16px;
  padding-right: 36px;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ft-cat-sheet__colors {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.ft-cat-sheet__color {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid var(--ft-grey-100);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  color: var(--ft-black);
}

.ft-cat-sheet__color.is-active {
  border-color: var(--ft-brand);
  color: var(--ft-brand);
  background: rgba(167, 13, 10, 0.04);
}

.ft-cat-sheet__color--disabled {
  opacity: 0.45;
  cursor: default;
}

.ft-cat-sheet__empty {
  margin: 0;
  font-size: 13px;
  color: var(--ft-grey-600);
}

.ft-cat-sheet__sort-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ft-cat-sheet__sort {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 14px 0;
  border: none;
  border-bottom: 1px solid var(--ft-grey-100);
  background: transparent;
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  color: var(--ft-black);
  font-family: inherit;
  cursor: pointer;
}

.ft-cat-sheet__sort-list li:last-child .ft-cat-sheet__sort {
  border-bottom: none;
}

.ft-cat-sheet__sort.is-active {
  color: var(--ft-brand);
  font-weight: 600;
}

@media (prefers-reduced-motion: reduce) {
  .ft-cat-sheet-overlay,
  .ft-cat-sheet__wrap {
    transition: none;
  }
}

.ft-product-grid--category {
  padding: 0 12px;
}

.ft-product-grid--category.ft-product-grid--list {
  grid-template-columns: 1fr;
  gap: 12px 10px;
}

/* Floating view cart bar */
.ft-cart-float {
  position: fixed;
  left: 50%;
  bottom: calc(var(--ft-bottom-nav-h) + 10px + env(safe-area-inset-bottom, 0px));
  z-index: 44;
  transform: translateX(-50%);
  width: auto;
  max-width: min(calc(100vw - 48px), calc(var(--ft-shell-max) - 48px));
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 12px 8px 8px;
  border: none;
  border-radius: 999px;
  background: var(--ft-brand);
  color: var(--ft-white);
  box-shadow: 0 4px 16px rgba(167, 13, 10, 0.35);
  cursor: pointer;
}

.ft-cart-float[hidden] {
  display: none;
}

.ft-cart-float__thumb {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--ft-white) center / cover no-repeat;
  border: 2px solid rgba(255, 255, 255, 0.85);
}

.ft-cart-float__copy {
  flex: 0 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1px;
  text-align: left;
  white-space: nowrap;
}

.ft-cart-float__label {
  font-size: 13px;
  font-weight: 600;
  line-height: 1.2;
}

.ft-cart-float__save {
  font-size: 11px;
  font-weight: 400;
  opacity: 0.9;
  line-height: 1.2;
}

.ft-cart-float__arrow {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
}

/* Floating WhatsApp */
.ft-whatsapp-float {
  position: fixed;
  right: max(14px, calc((100vw - min(var(--ft-shell-max), 100vw)) / 2 + 14px));
  bottom: calc(var(--ft-bottom-nav-h) + 14px + env(safe-area-inset-bottom, 0px));
  z-index: 46;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #255047;
  color: #fff;
  box-shadow:
    0 4px 14px rgba(37, 80, 71, 0.38),
    0 2px 6px rgba(0, 0, 0, 0.12);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

.ft-whatsapp-float__icon {
  display: block;
  width: 26px;
  height: 26px;
}

.ft-whatsapp-float:active {
  transform: scale(0.94);
  box-shadow:
    0 2px 8px rgba(37, 80, 71, 0.3),
    0 1px 4px rgba(0, 0, 0, 0.1);
}

.ft-whatsapp-float.is-no-bottom-nav {
  bottom: calc(14px + env(safe-area-inset-bottom, 0px));
}

.ft-whatsapp-float.is-above-sticky {
  bottom: calc(var(--ft-bottom-nav-h) + 56px + 14px + env(safe-area-inset-bottom, 0px));
}

.ft-whatsapp-float.is-above-checkout-foot {
  bottom: calc(var(--ft-checkout-foot-h, 108px) + 14px + env(safe-area-inset-bottom, 0px));
}

/* Collection grid */
.ft-collection-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ft-collection-card {
  position: relative;
  display: block;
  aspect-ratio: 2 / 3;
  overflow: hidden;
  background: var(--ft-grey-50);
}

.ft-collection-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.ft-collection-card__fade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.7) 0%,
    rgba(0, 0, 0, 0.4) 20%,
    rgba(0, 0, 0, 0.15) 40%,
    rgba(0, 0, 0, 0.04) 58%,
    rgba(0, 0, 0, 0) 72%
  );
}

.ft-collection-card__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 0 10px 14px;
  text-align: center;
  color: var(--ft-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

/* Deal banner */
.ft-deal-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 140px;
  margin: 0 12px 8px;
}

.ft-deal-banner__copy {
  background: var(--ft-brand);
  color: var(--ft-white);
  padding: 20px 14px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ft-deal-banner__tag {
  margin: 0 0 6px;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.9;
}

.ft-deal-banner__title {
  margin: 0 0 12px;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.02em;
}

.ft-deal-banner__btn {
  display: inline-block;
  align-self: flex-start;
  padding: 8px 14px;
  border: 1px solid var(--ft-white);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ft-deal-banner__visual {
  overflow: hidden;
}

.ft-deal-banner__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.ft-footer {
  background: var(--ft-black);
  color: var(--ft-white);
  margin-top: 8px;
}

.ft-footer__top {
  padding: 28px 16px 20px;
}

.ft-footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 24px;
}

.ft-trust {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
}

.ft-trust__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
  padding: 0 4px;
  position: relative;
}

.ft-trust__item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: rgba(255, 255, 255, 0.2);
}

.ft-trust__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.ft-trust__icon-img {
  width: 32px;
  height: 32px;
  display: block;
}

.ft-social {
  display: flex;
  justify-content: center;
  gap: 16px;
}

.ft-social__link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.ft-social__icon {
  width: 26px;
  height: 26px;
  display: block;
}

.ft-footer__toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background: var(--ft-footer-bar);
  color: var(--ft-white);
  font-size: 13px;
  font-weight: 500;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.ft-footer__toggle[aria-expanded="true"] .ft-footer__chevron {
  transform: rotate(180deg);
}

.ft-footer__chevron {
  transition: transform 0.2s ease;
}

.ft-footer__details {
  padding: 0 16px 24px;
}

.ft-footer__details[hidden] {
  display: none !important;
}

.ft-footer__block {
  padding: 16px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.ft-footer__heading {
  margin: 0 0 10px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ft-footer__text,
.ft-footer__links {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.88);
}

.ft-footer__text a,
.ft-footer__links a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ft-footer__links span[aria-hidden] {
  margin: 0 6px;
  opacity: 0.5;
}

.ft-footer__story .ft-footer__text {
  opacity: 0.8;
}

/* Bottom nav */
.ft-bottom-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  max-width: var(--ft-shell-max);
  margin-inline: auto;
  height: var(--ft-bottom-nav-h);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  background: var(--ft-grey-50);
  border-top: 1px solid var(--ft-grey-100);
  z-index: 45;
  padding-bottom: env(safe-area-inset-bottom, 0);
}

.ft-bottom-nav__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  color: var(--ft-grey-400);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  position: relative;
  padding-top: 6px;
}

.ft-bottom-nav__indicator {
  position: absolute;
  top: 0;
  left: 20%;
  right: 20%;
  height: 2px;
  background: transparent;
  border-radius: 0 0 2px 2px;
}

.ft-bottom-nav__item.is-active {
  color: var(--ft-brand);
}

.ft-bottom-nav__item.is-active .ft-bottom-nav__indicator {
  background: var(--ft-brand);
}

/* Info page */
.ft-page {
  padding: 24px 16px 32px;
}

.ft-page__title {
  margin: 0 0 16px;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
}

.ft-page__content {
  font-size: 14px;
  line-height: 1.65;
  color: var(--ft-grey-600);
}

.ft-page__content > :first-child {
  margin-top: 0;
}

.ft-page__content h1,
.ft-page__content h2,
.ft-page__content h3,
.ft-page__content h4 {
  margin: 20px 0 10px;
  font-size: 15px;
  font-weight: 600;
  color: var(--ft-black);
  line-height: 1.4;
}

.ft-page__content p,
.ft-page__content ul,
.ft-page__content ol {
  margin: 0 0 12px;
}

.ft-page__content ul,
.ft-page__content ol {
  padding-left: 20px;
}

.ft-page__content a {
  color: var(--ft-brand);
  text-decoration: underline;
}

.ft-page__content strong {
  color: var(--ft-black);
  font-weight: 600;
}

/* Contact page */
.ft-contact {
  padding: 20px 16px 32px;
}

.ft-contact__head {
  margin-bottom: 20px;
  text-align: center;
}

.ft-contact__title {
  margin: 0 0 8px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ft-contact__lead {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ft-grey-600);
}

.ft-contact__cards {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.ft-contact-card {
  padding: 16px 14px;
  border: 1px solid var(--ft-grey-100);
  border-radius: 8px;
  background: var(--ft-grey-50);
  text-align: center;
}

.ft-contact-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-bottom: 10px;
  border-radius: 50%;
  background: var(--ft-white);
  color: var(--ft-brand);
  border: 1px solid var(--ft-grey-100);
}

.ft-contact-card__title {
  margin: 0 0 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ft-contact-card__text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ft-grey-600);
}

.ft-contact-card__text a {
  color: var(--ft-black);
  text-decoration: none;
}

.ft-contact-card__text a:hover {
  color: var(--ft-brand);
}

.ft-contact__form-wrap {
  padding-top: 8px;
  border-top: 1px solid var(--ft-grey-100);
}

.ft-contact__form-title {
  margin: 0 0 16px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
}

.ft-contact__alert {
  margin: 0 0 14px;
  padding: 12px 14px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.5;
}

.ft-contact__alert--success {
  background: #ecfdf3;
  color: #166534;
  border: 1px solid #bbf7d0;
}

.ft-contact__alert--top {
  margin-bottom: 18px;
}

.ft-contact__alert--error {
  background: #fef2f2;
  color: #991b1b;
  border: 1px solid #fecaca;
}

.ft-contact__form {
  display: grid;
  gap: 12px;
}

.ft-contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ft-contact__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ft-contact__field--full {
  grid-column: 1 / -1;
}

.ft-contact__label {
  font-size: 12px;
  font-weight: 500;
  color: var(--ft-black);
}

.ft-contact__input,
.ft-contact__textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--ft-grey-100);
  border-radius: 6px;
  background: var(--ft-white);
  font: inherit;
  font-size: 14px;
  color: var(--ft-black);
  box-sizing: border-box;
}

.ft-contact__input:focus,
.ft-contact__textarea:focus {
  outline: none;
  border-color: var(--ft-brand);
  box-shadow: 0 0 0 2px rgba(167, 13, 10, 0.12);
}

.ft-contact__textarea {
  min-height: 120px;
  resize: vertical;
}

.ft-contact__input--captcha {
  max-width: 120px;
}

.ft-contact__submit {
  justify-self: start;
  min-width: 160px;
  padding: 14px 24px;
  border: none;
  border-radius: 6px;
  background: var(--ft-black);
  color: var(--ft-white);
  font: inherit;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.ft-contact__submit:active {
  opacity: 0.9;
}

/* Placeholder page */
.ft-page-placeholder {
  padding: 48px 20px;
  text-align: center;
}

.ft-page-placeholder h1 {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin: 0 0 8px;
}

.ft-account {
  min-height: calc(100dvh - var(--ft-header-h) - var(--ft-offer-h) - var(--ft-bottom-nav-h));
  display: flex;
  flex-direction: column;
  background: var(--ft-white);
}

.ft-account__hero {
  padding: 20px 16px 16px;
  background: #f3efe6;
}

.ft-account__greeting {
  margin: 0 0 4px;
  font-size: 22px;
  font-weight: 700;
  line-height: 1.2;
  color: var(--ft-black);
}

.ft-account__login-via {
  margin: 0 0 18px;
  font-size: 13px;
  color: var(--ft-grey-600);
}

.ft-account__quick {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ft-account__quick-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 88px;
  padding: 12px 8px;
  border-radius: 10px;
  background: var(--ft-white);
  color: var(--ft-black);
  text-decoration: none;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.04);
}

.ft-account__quick-card[aria-current="page"] {
  border: 1px solid var(--ft-grey-100);
}

.ft-account__quick-icon {
  display: inline-flex;
  color: var(--ft-black);
  line-height: 0;
}

.ft-account__quick-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ft-account__menu {
  flex: 1;
  padding: 8px 0 0;
}

.ft-account__menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
  padding: 16px;
  border: none;
  border-bottom: 1px solid var(--ft-grey-100);
  background: var(--ft-white);
  color: var(--ft-black);
  font-size: 14px;
  font-weight: 500;
  text-align: left;
  text-decoration: none;
}

.ft-account__menu-item--toggle {
  cursor: pointer;
}

.ft-account__menu-left {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.ft-account__menu-icon {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--ft-black);
  line-height: 0;
}

.ft-account__menu-wa {
  display: inline-flex;
  margin-left: auto;
  line-height: 0;
}

.ft-account__menu-chevron {
  flex-shrink: 0;
  color: var(--ft-grey-600);
}

.ft-account__menu-chevron--down {
  transition: transform 0.2s ease;
}

.ft-account__accordion.is-open .ft-account__menu-chevron--down {
  transform: rotate(180deg);
}

.ft-account__accordion-panel {
  padding: 0 16px 8px 48px;
  border-bottom: 1px solid var(--ft-grey-100);
  background: var(--ft-white);
}

.ft-account__sub-link {
  display: block;
  padding: 10px 0;
  font-size: 13px;
  color: var(--ft-grey-600);
  text-decoration: none;
}

.ft-account__sub-link + .ft-account__sub-link {
  border-top: 1px solid var(--ft-grey-50);
}

.ft-account__footer {
  padding: 20px 16px 24px;
  margin-top: auto;
}

.ft-account__logout-btn {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--ft-black);
  border-radius: 8px;
  background: var(--ft-white);
  color: var(--ft-black);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ft-account__guest {
  padding: 32px 16px;
  text-align: center;
}

.ft-account__hint {
  margin: 0 0 20px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ft-grey-600);
}

.ft-account__login {
  width: 100%;
  max-width: 280px;
  padding: 12px 16px;
  border: none;
  border-radius: 8px;
  background: var(--ft-brand);
  color: var(--ft-white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ft-profile {
  padding: 0 0 88px;
  background: var(--ft-grey-50);
  min-height: calc(100vh - 120px);
}

.ft-profile__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 12px;
  background: var(--ft-white);
  border-bottom: 1px solid var(--ft-grey-100);
}

.ft-profile__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--ft-black);
}

.ft-profile__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ft-profile__card {
  margin: 12px;
  padding: 16px;
  background: var(--ft-white);
  border: 1px solid var(--ft-grey-100);
  border-radius: 8px;
}

.ft-profile__alert {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.45;
}

.ft-profile__alert--success {
  background: #e8f5e9;
  color: #2e7d32;
}

.ft-profile__alert--error {
  background: #ffebee;
  color: #c62828;
}

.ft-profile__form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.ft-profile__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.ft-profile__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ft-grey-600);
}

.ft-profile__input {
  width: 100%;
  padding: 12px;
  border: 1px solid var(--ft-grey-100);
  border-radius: 6px;
  background: var(--ft-white);
  font: inherit;
  color: var(--ft-black);
}

.ft-profile__input:focus {
  outline: none;
  border-color: var(--ft-brand);
}

.ft-profile__input--readonly {
  background: var(--ft-grey-50);
  color: var(--ft-grey-600);
}

.ft-profile__hint {
  font-size: 11px;
  line-height: 1.4;
  color: var(--ft-grey-500);
}

.ft-profile__submit {
  margin-top: 4px;
  width: 100%;
  padding: 14px 16px;
  border: none;
  border-radius: 8px;
  background: var(--ft-brand);
  color: var(--ft-white);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
}

.ft-profile__submit:active {
  transform: scale(0.99);
}

.ft-orders {
  padding: 0 0 88px;
  background: var(--ft-grey-50);
  min-height: calc(100vh - 120px);
}

.ft-orders__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 12px;
  background: var(--ft-white);
  border-bottom: 1px solid var(--ft-grey-100);
}

.ft-orders__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--ft-black);
}

.ft-orders__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ft-orders__section {
  margin: 16px 12px 10px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ft-black);
}

.ft-orders__list {
  list-style: none;
  margin: 0 12px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ft-orders__item {
  margin: 0;
}

.ft-orders__card {
  display: block;
  padding: 14px;
  background: var(--ft-white);
  border: 1px solid var(--ft-grey-100);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
}

.ft-orders__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ft-orders__row--top {
  margin-bottom: 6px;
}

.ft-orders__row--bottom {
  margin-top: 12px;
}

.ft-orders__id {
  font-size: 14px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ft-black);
  word-break: break-all;
}

.ft-orders__badge {
  flex-shrink: 0;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.ft-orders__badge--pending {
  background: #fff3e0;
  color: #e65100;
}

.ft-orders__badge--shipped {
  background: #f3e5f5;
  color: #6a1b9a;
}

.ft-orders__badge--delivered {
  background: #e8f5e9;
  color: #2e7d32;
}

.ft-orders__badge--cancelled {
  background: #ffebee;
  color: #c62828;
}

.ft-orders__datetime {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--ft-grey-600);
}

.ft-orders__amount {
  font-size: 15px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ft-black);
}

.ft-orders__view {
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ft-black);
  white-space: nowrap;
}

.ft-orders__empty {
  margin: 48px 16px 0;
  text-align: center;
}

.ft-orders__empty-text {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ft-grey-600);
}

.ft-orders__empty-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  background: var(--ft-brand);
  color: var(--ft-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.ft-order-view {
  padding: 0 0 88px;
  background: var(--ft-grey-50);
  min-height: calc(100vh - 120px);
}

.ft-order-view__head {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 12px;
  background: var(--ft-white);
  border-bottom: 1px solid var(--ft-grey-100);
}

.ft-order-view__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--ft-black);
}

.ft-order-view__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ft-order-view__summary,
.ft-order-view__section {
  margin: 10px 12px 0;
  padding: 14px;
  background: var(--ft-white);
  border: 1px solid var(--ft-grey-100);
  border-radius: 8px;
}

.ft-order-view__summary-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ft-order-view__summary-item {
  min-width: 0;
}

.ft-order-view__label {
  display: block;
  margin-bottom: 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ft-grey-600);
}

.ft-order-view__value {
  display: block;
  font-size: 14px;
  line-height: 1.35;
  color: var(--ft-black);
}

.ft-order-view__section-title {
  margin: 0 0 10px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ft-black);
}

.ft-order-view__address p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ft-grey-700);
}

.ft-order-view__address-name {
  margin-bottom: 4px !important;
  font-weight: 600;
  color: var(--ft-black) !important;
}

.ft-order-view__address-mobile {
  margin-top: 6px !important;
  font-weight: 600;
  color: var(--ft-black) !important;
}

.ft-order-view__status-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.ft-order-view__status-item {
  min-width: 0;
}

.ft-order-view__pill {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.2;
}

.ft-order-view__pill--online {
  background: #2e7d32;
  color: var(--ft-white);
}

.ft-order-view__pill--cod {
  background: #1565c0;
  color: var(--ft-white);
}

.ft-order-view__pill--pending {
  background: #fff3e0;
  color: #e65100;
}

.ft-order-view__pill--shipped {
  background: #f3e5f5;
  color: #6a1b9a;
}

.ft-order-view__pill--delivered {
  background: #e8f5e9;
  color: #2e7d32;
}

.ft-order-view__pill--cancelled {
  background: #c62828;
  color: var(--ft-white);
}

.ft-order-view__items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ft-order-view__item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 12px;
  padding: 12px 0;
}

.ft-order-view__item + .ft-order-view__item {
  border-top: 1px solid var(--ft-grey-100);
}

.ft-order-view__item-thumb {
  width: 88px;
  height: 88px;
  overflow: hidden;
  background: var(--ft-grey-50);
  border: 1px solid var(--ft-grey-100);
  border-radius: 4px;
}

.ft-order-view__item-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ft-order-view__item-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--ft-grey-400);
}

.ft-order-view__item-name {
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ft-black);
}

.ft-order-view__item-price {
  margin: 0 0 8px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ft-black);
}

.ft-order-view__item-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: var(--ft-grey-600);
}

.ft-order-view__pricing-note {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.4;
  color: var(--ft-grey-600);
}

.ft-order-view__pricing {
  margin: 0;
}

.ft-order-view__pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0;
  font-size: 13px;
  color: var(--ft-grey-700);
}

.ft-order-view__pricing-row + .ft-order-view__pricing-row {
  border-top: 1px solid var(--ft-grey-100);
}

.ft-order-view__pricing-row dt,
.ft-order-view__pricing-row dd {
  margin: 0;
}

.ft-order-view__pricing-row--total {
  padding-top: 12px;
  font-size: 15px;
  font-weight: 700;
  color: var(--ft-black);
}

.ft-order-view__tracking-grid {
  display: grid;
  gap: 14px;
}

.ft-order-view__tracking-item {
  display: grid;
  gap: 6px;
}

.ft-order-view__tracking-value {
  font-size: 15px;
  font-weight: 700;
  color: var(--ft-black);
  word-break: break-word;
}

.ft-order-view__tracking-empty {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ft-grey-600);
}

.ft-order-view__tracking-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 14px;
  padding: 12px 16px;
  border: 1px solid var(--ft-black);
  border-radius: 6px;
  background: var(--ft-white);
  color: var(--ft-black);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.ft-order-view__tracking-link:active {
  opacity: 0.9;
}

.ft-order-view__live-tracking {
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid var(--ft-grey-100);
}

.ft-order-view__live-summary {
  display: grid;
  gap: 14px;
}

.ft-order-view__live-status {
  padding: 16px;
  border-radius: 10px;
  border: 1px solid var(--ft-grey-200);
  background: linear-gradient(135deg, #fafafa 0%, #f3f3f3 100%);
}

.ft-order-view__live-status--delivered {
  border-color: #81c784;
  background: linear-gradient(135deg, #f1f8f2 0%, #e8f5e9 100%);
}

.ft-order-view__live-status--transit {
  border-color: #64b5f6;
  background: linear-gradient(135deg, #f3f9ff 0%, #e3f2fd 100%);
}

.ft-order-view__live-status--pending {
  border-color: #ffb74d;
  background: linear-gradient(135deg, #fffaf2 0%, #fff3e0 100%);
}

.ft-order-view__live-status--issue {
  border-color: #e57373;
  background: linear-gradient(135deg, #fff5f5 0%, #ffebee 100%);
}

.ft-order-view__live-status-value {
  display: block;
  margin-top: 8px;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: 0.01em;
  color: var(--ft-black);
}

.ft-order-view__live-status--delivered .ft-order-view__live-status-value {
  color: #1b5e20;
}

.ft-order-view__live-status--transit .ft-order-view__live-status-value {
  color: #0d47a1;
}

.ft-order-view__live-status--pending .ft-order-view__live-status-value {
  color: #e65100;
}

.ft-order-view__live-status--issue .ft-order-view__live-status-value {
  color: #b71c1c;
}

.ft-order-view__live-status .ft-order-view__label {
  color: var(--ft-grey-600);
}

.ft-order-view__live-detail {
  margin: 10px 0 0;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ft-grey-800);
}

.ft-order-view__live-meta {
  margin: 6px 0 0;
  font-size: 13px;
  line-height: 1.45;
  color: var(--ft-grey-700);
}

.ft-order-view__live-route {
  display: grid;
  gap: 12px;
}

.ft-order-view__live-route-item strong {
  display: block;
  margin-top: 4px;
  font-size: 14px;
  font-weight: 600;
  color: var(--ft-black);
}

.ft-order-view__timeline-title {
  margin: 18px 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ft-black);
}

.ft-order-view__tracking-timeline {
  list-style: none;
  margin: 0;
  padding: 0;
}

.ft-order-view__tracking-event {
  position: relative;
  padding: 0 0 16px 18px;
  border-left: 2px solid var(--ft-grey-200);
}

.ft-order-view__tracking-event:last-child {
  padding-bottom: 0;
  border-left-color: transparent;
}

.ft-order-view__tracking-event::before {
  content: '';
  position: absolute;
  top: 4px;
  left: -6px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--ft-black);
}

.ft-order-view__tracking-event-head {
  display: grid;
  gap: 4px;
}

.ft-order-view__tracking-event-time {
  font-size: 12px;
  color: var(--ft-grey-600);
}

.ft-order-view__tracking-event-status {
  font-size: 14px;
  font-weight: 700;
  color: var(--ft-black);
}

.ft-order-view__tracking-event-location,
.ft-order-view__tracking-event-note {
  margin: 4px 0 0;
  font-size: 12px;
  line-height: 1.45;
  color: var(--ft-grey-700);
}

.ft-order-view--embedded {
  padding: 0 12px 24px;
}

.ft-order-view--embedded .ft-order-view__summary,
.ft-order-view--embedded .ft-order-view__section {
  margin-top: 12px;
}

.ft-track-order {
  padding: 0 0 88px;
  background: var(--ft-grey-50);
  min-height: calc(100vh - 120px);
}

.ft-track-order__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 12px;
  background: var(--ft-white);
  border-bottom: 1px solid var(--ft-grey-100);
}

.ft-track-order__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--ft-black);
  text-decoration: none;
}

.ft-track-order__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ft-track-order__card {
  margin: 12px;
  padding: 16px;
  background: var(--ft-white);
  border: 1px solid var(--ft-grey-100);
  border-radius: 8px;
}

.ft-track-order__intro {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ft-grey-600);
}

.ft-track-order__alert {
  margin: 0 0 14px;
  padding: 10px 12px;
  border-radius: 6px;
  font-size: 13px;
  line-height: 1.45;
}

.ft-track-order__alert--error {
  background: #ffebee;
  color: #c62828;
}

.ft-track-order__form {
  display: grid;
  gap: 14px;
}

.ft-track-order__field {
  display: grid;
  gap: 6px;
}

.ft-track-order__label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ft-grey-600);
}

.ft-track-order__input {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--ft-grey-200);
  border-radius: 6px;
  font-size: 15px;
  color: var(--ft-black);
  background: var(--ft-white);
}

.ft-track-order__input:focus {
  outline: none;
  border-color: var(--ft-black);
}

.ft-track-order__submit {
  margin-top: 4px;
  width: 100%;
  padding: 14px 16px;
  border: 0;
  border-radius: 6px;
  background: var(--ft-black);
  color: var(--ft-white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  cursor: pointer;
}

.ft-track-order__submit:active {
  opacity: 0.9;
}

.ft-track-order__submit--link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.ft-track-order__results-title {
  margin: 8px 12px 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ft-black);
}

.ft-wishlist-page {
  padding: 0 0 88px;
  background: var(--ft-grey-50);
  min-height: calc(100vh - 120px);
}

.ft-wishlist-page__head {
  padding: 16px 12px 10px;
  background: var(--ft-white);
  border-bottom: 1px solid var(--ft-grey-100);
}

.ft-wishlist-page__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ft-wishlist-page__meta {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--ft-grey-600);
}

.ft-wishlist-page .ft-product-grid--category {
  margin: 12px;
}

.ft-wishlist-page__empty {
  margin: 48px 16px 0;
  text-align: center;
}

.ft-wishlist-page__empty-text {
  margin: 0 0 16px;
  font-size: 14px;
  line-height: 1.5;
  color: var(--ft-grey-600);
}

.ft-wishlist-page__empty-btn {
  display: inline-block;
  padding: 12px 20px;
  border-radius: 8px;
  background: var(--ft-brand);
  color: var(--ft-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
}

.ft-search-form {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-align: left;
  max-width: 280px;
  margin-left: auto;
  margin-right: auto;
}

.ft-search-form input {
  padding: 12px;
  border: 1px solid var(--ft-grey-100);
  font: inherit;
}

.ft-search-form button {
  padding: 12px;
  background: var(--ft-brand);
  color: var(--ft-white);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
}

/* Search results page */
.ft-search-page {
  padding-bottom: 88px;
}

.ft-search-page__head {
  padding: 16px 12px 10px;
}

.ft-search-page__title {
  margin: 0 0 8px;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ft-search-page__meta {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ft-grey-600);
}

.ft-search-page__meta strong {
  color: var(--ft-black);
  font-weight: 600;
}

.ft-search-page__categories {
  margin: 0 12px 14px;
  padding: 14px 12px;
  border: 1px solid var(--ft-grey-100);
  background: var(--ft-white);
}

.ft-search-page__categories-title {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ft-grey-600);
}

.ft-search-page__category-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.ft-search-page__category-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 10px;
  border: 1px solid var(--ft-grey-100);
  font-size: 13px;
  font-weight: 600;
  color: var(--ft-black);
  text-decoration: none;
  background: var(--ft-grey-50, #fafafa);
}

.ft-search-page__category-link:hover {
  border-color: var(--ft-brand);
  color: var(--ft-brand);
}

.ft-search-page__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 0 12px 12px;
}

.ft-search-page__count {
  margin: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ft-grey-600);
}

.ft-search-page__sort-form {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.ft-search-page__sort-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ft-grey-600);
}

.ft-search-page__sort-select {
  padding: 8px 10px;
  border: 1px solid var(--ft-grey-100);
  background: var(--ft-white);
  font: inherit;
  font-size: 12px;
  color: var(--ft-black);
}

.ft-search-page__empty {
  margin: 8px 12px 16px;
  padding: 20px 14px;
  border: 1px solid var(--ft-grey-100);
  background: var(--ft-white);
  text-align: center;
}

.ft-search-page__empty-title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 600;
}

.ft-search-page__empty-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.55;
  color: var(--ft-grey-600);
}

.ft-search-page__suggestions {
  padding: 8px 12px 0;
}

.ft-search-page__suggestions-title {
  margin: 0 0 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ft-grey-600);
}

.ft-search-page__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ft-search-page__chip {
  display: inline-flex;
  align-items: center;
  padding: 9px 12px;
  border: 1px solid var(--ft-grey-100);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ft-black);
  text-decoration: none;
  background: var(--ft-white);
}

.ft-search-page__chip:hover {
  border-color: var(--ft-brand);
  color: var(--ft-brand);
}

.ft-search-page__hint {
  margin: 16px 12px 0;
  font-size: 11px;
  line-height: 1.5;
  color: var(--ft-grey-400);
}

/* Cart drawer */
.ft-cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 65;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.32s ease;
}

.ft-cart-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.ft-cart-overlay[hidden] {
  display: none;
}

.ft-cart {
  position: fixed;
  top: 0;
  right: 0;
  width: min(100%, var(--ft-shell-max));
  margin-right: max(0px, calc((100% - min(var(--ft-shell-max), 100%)) / 2));
  height: 100%;
  max-height: 100dvh;
  background: var(--ft-white);
  z-index: 70;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.32, 0.72, 0, 1);
  will-change: transform;
  box-shadow: -2px 0 12px rgba(0, 0, 0, 0.08);
}

.ft-cart.is-open {
  transform: translateX(0);
}

.ft-cart[hidden] {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .ft-cart-overlay,
  .ft-cart {
    transition: none;
  }
}

.ft-cart__head {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 12px 12px 16px;
  border-bottom: 1px solid var(--ft-grey-100);
}

.ft-cart__title-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}

.ft-cart__title {
  margin: 0;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ft-cart__count {
  font-size: 12px;
  color: var(--ft-grey-600);
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.ft-cart__sale {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 9px 16px;
  background: #fce8ea;
  color: var(--ft-brand);
  font-size: 12px;
  font-weight: 400;
  line-height: 1.2;
  border-bottom: 1px solid #f5d5d8;
  text-align: center;
}

.ft-cart__sale-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}

.ft-cart__sale-icon img {
  width: 16px;
  height: 16px;
  display: block;
}

.ft-cart__sale-text {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 4px;
}

.ft-cart__sale-timer {
  display: inline-flex;
  align-items: center;
  gap: 2px;
  font-variant-numeric: tabular-nums;
}

.ft-cart__sale-timer strong {
  font-weight: 700;
}

.ft-cart__body {
  flex: 1;
  min-height: 0;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  padding: 12px 12px 16px;
}

.ft-cart__empty {
  padding: 32px 8px;
  text-align: center;
}

.ft-cart__empty p {
  margin: 0 0 16px;
  color: var(--ft-grey-600);
  font-size: 14px;
}

.ft-cart__empty-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border: 1px solid var(--ft-grey-100);
  background: var(--ft-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ft-cart-item {
  display: grid;
  grid-template-columns: 88px 1fr;
  gap: 10px;
  padding: 12px 0;
  border-bottom: 1px solid var(--ft-grey-100);
}

.ft-cart-item__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--ft-grey-50);
}

.ft-cart-item__media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.ft-cart-item__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ft-cart-item__price {
  margin: 0 0 4px;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 6px;
  font-size: 14px;
}

.ft-cart-item__now {
  font-weight: 600;
}

.ft-cart-item__was {
  color: var(--ft-grey-400);
  text-decoration: line-through;
  font-size: 12px;
}

.ft-cart-item__off {
  color: var(--ft-offer-green);
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
}

.ft-cart-item__name {
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 400;
  line-height: 1.35;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ft-cart-item__meta {
  margin: 0 0 10px;
  font-size: 11px;
  color: var(--ft-grey-600);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ft-cart-item__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}

.ft-cart-item__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ft-grey-100);
}

.ft-cart-item__qty-btn {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  color: var(--ft-black);
}

.ft-cart-item__qty-val {
  min-width: 28px;
  text-align: center;
  font-size: 13px;
  font-weight: 500;
}

.ft-cart-item__remove {
  font-size: 11px;
  font-weight: 500;
  color: var(--ft-grey-600);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ft-cart__promo-bar {
  position: relative;
  margin: 12px 0;
  padding: 10px 12px;
  overflow: hidden;
  background: #fdf8f0;
  border-top: 1px solid #d4b896;
  border-bottom: 1px solid #d4b896;
}

.ft-cart__promo-bar-shimmer {
  position: absolute;
  inset: -40% -60%;
  pointer-events: none;
  background: linear-gradient(
    115deg,
    transparent 42%,
    rgba(255, 255, 255, 0.15) 46%,
    rgba(255, 255, 255, 0.65) 50%,
    rgba(255, 255, 255, 0.15) 54%,
    transparent 58%
  );
  -webkit-animation: ft-cart-promo-shimmer 2.8s ease-in-out infinite;
  animation: ft-cart-promo-shimmer 2.8s ease-in-out infinite;
}

.ft-cart__promo-bar-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--ft-black);
  text-align: center;
}

.ft-cart__promo-bar-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  line-height: 0;
}

.ft-cart__promo-bar-icon img {
  width: 18px;
  height: 18px;
  display: block;
}

@-webkit-keyframes ft-cart-promo-shimmer {
  0% {
    -webkit-transform: translateX(-35%);
    transform: translateX(-35%);
  }
  100% {
    -webkit-transform: translateX(35%);
    transform: translateX(35%);
  }
}

@keyframes ft-cart-promo-shimmer {
  0% {
    transform: translateX(-35%);
  }
  100% {
    transform: translateX(35%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ft-cart__promo-bar-shimmer {
    -webkit-animation: none;
    animation: none;
    display: none;
  }
}

.ft-cart__pricing {
  margin-top: 8px;
  border: 1px solid var(--ft-grey-100);
}

.ft-cart__pricing-toggle {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
}

.ft-cart__pricing-total {
  font-weight: 600;
  letter-spacing: 0;
  text-transform: none;
}

.ft-cart__pricing-right {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.ft-cart__pricing-chevron {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
  transition: transform 0.2s ease;
}

.ft-cart__pricing-chevron img {
  width: 14px;
  height: 14px;
  display: block;
}

.ft-cart__pricing-toggle[aria-expanded="true"] .ft-cart__pricing-chevron {
  transform: rotate(180deg);
}

.ft-cart__pricing-details {
  padding: 0 12px 12px;
  border-top: 1px solid var(--ft-grey-100);
}

.ft-cart__pricing-details[hidden] {
  display: none;
}

.ft-cart__pricing-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 8px 0 0;
  font-size: 12px;
}

.ft-cart__pricing-row--save {
  color: var(--ft-offer-green);
  font-weight: 500;
}

.ft-cart__pricing-row--sub {
  margin-top: 8px;
  padding-top: 10px;
  border-top: 1px solid var(--ft-grey-100);
  font-weight: 600;
  font-size: 13px;
}

.ft-cart__savings {
  margin-top: 10px;
  padding: 10px 12px;
  background: var(--ft-offer-green-bg);
  color: var(--ft-offer-green);
  font-size: 12px;
  font-weight: 500;
  text-align: center;
}

.ft-cart__trust {
  list-style: none;
  margin: 16px 0 0;
  padding: 14px 8px 12px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
  background: var(--ft-grey-50);
  border-radius: 4px;
}

.ft-cart__trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  position: relative;
  padding: 0 4px;
}

.ft-cart__trust-item:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 10%;
  height: 80%;
  width: 1px;
  background: var(--ft-grey-100);
}

.ft-cart__trust-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.ft-cart__trust-icon img {
  width: 32px;
  height: 32px;
  display: block;
}

.ft-cart__trust-label {
  font-size: 9px;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: 0.02em;
  color: var(--ft-black);
}

.ft-cart__foot {
  flex-shrink: 0;
  padding: 0 0 env(safe-area-inset-bottom, 0);
  border-top: 1px solid var(--ft-grey-100);
  background: var(--ft-white);
}

.ft-cart__foot-banner {
  position: relative;
  height: 36px;
  overflow: hidden;
  background: var(--ft-grey-50);
}

.ft-cart__foot-banner-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  opacity: 0;
  -webkit-animation: ft-cart-foot-banner 8s infinite;
  animation: ft-cart-foot-banner 8s infinite;
}

.ft-cart__foot-banner-item--trust {
  -webkit-animation-delay: 4s;
  animation-delay: 4s;
}

.ft-cart__foot-banner-text {
  font-size: 11px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--ft-black);
  white-space: nowrap;
}

.ft-cart__pay-icons {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
  line-height: 0;
}

.ft-cart__pay-icons img,
.ft-cart__pay-marker {
  height: 18px;
  width: auto;
  max-width: 80px;
  display: block;
}

.ft-cart__avatars {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.ft-cart__trust-users-img {
  display: block;
  width: auto;
  height: 22px;
}

@-webkit-keyframes ft-cart-foot-banner {
  0%,
  100%,
  50% {
    opacity: 0;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  4%,
  46% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}

@keyframes ft-cart-foot-banner {
  0%,
  100%,
  50% {
    opacity: 0;
    transform: translateY(4px);
  }
  4%,
  46% {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ft-cart__foot-banner {
    height: auto;
  }

  .ft-cart__foot-banner-item {
    position: static;
    opacity: 1;
    -webkit-animation: none;
    animation: none;
    padding: 8px 12px;
    transform: none;
  }

  .ft-cart__foot-banner-item--trust {
    border-top: 1px solid var(--ft-grey-100);
  }
}

.ft-cart__foot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 12px 8px;
}

.ft-cart__ships {
  font-size: 12px;
  font-weight: 400;
  color: var(--ft-black);
}

.ft-cart__ships strong {
  font-weight: 600;
}

.ft-cart__total {
  font-size: 16px;
  font-weight: 700;
  color: var(--ft-black);
}

.ft-cart__checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 14px 16px;
  background: var(--ft-brand);
  color: var(--ft-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  border-radius: 0;
}

.ft-cart__checkout.is-disabled {
  opacity: 0.45;
  pointer-events: none;
}

/* Login modal */
.ft-login-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 75;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.ft-login-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.ft-login-overlay[hidden] {
  display: none;
}

.ft-login {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  pointer-events: none;
}

.ft-login.is-open {
  pointer-events: auto;
}

.ft-login[hidden] {
  display: none;
}

.ft-login__shell {
  position: relative;
  width: min(100%, calc(var(--ft-shell-max) - 32px));
  max-width: 360px;
  background: var(--ft-brand);
  border-radius: 16px;
  padding: 14px 14px 16px;
  transform: scale(0.96);
  opacity: 0;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

.ft-login.is-open .ft-login__shell {
  transform: scale(1);
  opacity: 1;
}

@media (prefers-reduced-motion: reduce) {
  .ft-login-overlay,
  .ft-login__shell {
    transition: none;
  }
}

.ft-login__close {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.ft-login__close .ft-icon-img {
  filter: brightness(0) invert(1);
}

.ft-login__hero {
  padding: 8px 8px 14px;
  text-align: center;
}

.ft-login__trust {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin: 0;
  padding: 6px 18px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.18);
  color: var(--ft-white);
  font-size: 12px;
  font-weight: 500;
  max-width: calc(100% - 16px);
}

.ft-login__trust-star {
  color: #ffd54a;
  font-size: 13px;
  line-height: 1;
  flex-shrink: 0;
}

.ft-login__trust-rotator {
  position: relative;
  display: inline-block;
  min-width: 28ch;
  height: 1.2em;
  text-align: left;
  overflow: visible;
}

.ft-login__trust-msg {
  position: absolute;
  left: 0;
  top: 0;
  white-space: nowrap;
  opacity: 0;
  -webkit-animation: ft-login-trust-cycle 9s infinite;
  animation: ft-login-trust-cycle 9s infinite;
}

.ft-login__trust-msg:nth-child(2) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.ft-login__trust-msg:nth-child(3) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

@-webkit-keyframes ft-login-trust-cycle {
  0%,
  100% {
    opacity: 0;
    -webkit-transform: translateY(4px);
    transform: translateY(4px);
  }
  4%,
  29% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  33%,
  100% {
    opacity: 0;
    -webkit-transform: translateY(-4px);
    transform: translateY(-4px);
  }
}

@keyframes ft-login-trust-cycle {
  0%,
  100% {
    opacity: 0;
    transform: translateY(4px);
  }
  4%,
  29% {
    opacity: 1;
    transform: translateY(0);
  }
  33%,
  100% {
    opacity: 0;
    transform: translateY(-4px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ft-login__trust-rotator {
    min-width: 0;
    height: auto;
  }

  .ft-login__trust-msg {
    position: static;
    -webkit-animation: none;
    animation: none;
    opacity: 0;
    display: none;
  }

  .ft-login__trust-msg:first-child {
    opacity: 1;
    display: inline;
  }
}

.ft-login__card {
  background: var(--ft-white);
  border-radius: 14px;
  padding: 20px 16px 16px;
}

.ft-login__title {
  margin: 0 0 4px;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.25;
  color: #1a2744;
}

.ft-login__sub {
  margin: 0 0 18px;
  font-size: 13px;
  color: var(--ft-grey-600);
}

.ft-login__label {
  display: block;
  margin: 0 0 8px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ft-grey-600);
}

.ft-login__phone {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--ft-grey-100);
  border-radius: 8px;
  overflow: hidden;
  background: var(--ft-white);
}

.ft-login__dial {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 0 10px;
  border-right: 1px solid var(--ft-grey-100);
  background: var(--ft-grey-50);
  font-size: 14px;
  font-weight: 500;
  color: var(--ft-black);
}

.ft-login__flag {
  width: 20px;
  height: 14px;
  display: block;
  border-radius: 1px;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.ft-login__code {
  letter-spacing: 0.02em;
}

.ft-login__input {
  flex: 1;
  min-width: 0;
  border: none;
  padding: 12px 10px;
  font: inherit;
  font-size: 14px;
  color: var(--ft-black);
  background: transparent;
}

.ft-login__input::placeholder {
  color: var(--ft-grey-400);
}

.ft-login__input:focus {
  outline: none;
}

.ft-login__notify {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 12px 0 16px;
  font-size: 12px;
  color: var(--ft-grey-600);
  line-height: 1.35;
}

.ft-login__notify input {
  margin-top: 2px;
  flex-shrink: 0;
}

.ft-login__submit {
  width: 100%;
  padding: 13px 16px;
  border: none;
  border-radius: 8px;
  background: var(--ft-brand);
  color: var(--ft-white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ft-login__submit:active {
  opacity: 0.92;
}

.ft-login__submit:disabled {
  opacity: 0.55;
  pointer-events: none;
}

.ft-login__otp {
  margin-bottom: 12px;
}

.ft-login__name {
  margin-bottom: 12px;
}

.ft-login__name .ft-login__input {
  width: 100%;
  margin-top: 6px;
}

.ft-login__input--otp {
  width: 100%;
  margin-top: 6px;
}

.ft-login__error {
  margin: 0 0 12px;
  font-size: 12px;
  line-height: 1.4;
  color: #b42318;
}

.ft-login__or {
  position: relative;
  margin: 16px 0;
  text-align: center;
  font-size: 11px;
  font-weight: 500;
  color: var(--ft-grey-400);
  letter-spacing: 0.08em;
}

.ft-login__or::before,
.ft-login__or::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 24px);
  height: 1px;
  background: var(--ft-grey-100);
}

.ft-login__or::before {
  left: 0;
}

.ft-login__or::after {
  right: 0;
}

.ft-login__alt {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 11px 16px;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
}

.ft-login__alt--wa {
  border: 1px solid #25d366;
  color: #128c41;
}

.ft-login__alt-icon {
  display: block;
}

.ft-login__legal {
  margin: 14px 0 0;
  font-size: 10px;
  line-height: 1.45;
  color: var(--ft-grey-600);
  text-align: center;
}

.ft-login__legal a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* Product detail page */
body.ft-body--product .mobile-main {
  padding-bottom: calc(var(--ft-bottom-nav-h) + 72px);
}

.ft-pdp {
  padding-bottom: 8px;
  max-width: 100%;
  min-width: 0;
  overflow-x: hidden;
}

.ft-pdp__gallery {
  display: flex;
  flex-direction: column;
  background: var(--ft-grey-50);
}

.ft-pdp__gallery-usp {
  position: relative;
  flex-shrink: 0;
  height: var(--ft-pdp-usp-h);
  overflow: hidden;
  background: #f9f6ee;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

body.ft-body--product .ft-pdp__gallery-usp {
  position: relative;
  z-index: 40;
  flex-shrink: 0;
}

body.ft-body--product .ft-pdp__gallery-usp.is-fixed {
  position: fixed;
  top: var(--ft-header-h);
  z-index: 40;
  box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.ft-pdp__gallery-media {
  position: relative;
  flex-shrink: 0;
}

.ft-pdp__gallery-viewport {
  position: relative;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  touch-action: pan-y;
  cursor: zoom-in;
}

.ft-pdp__gallery-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 4;
  pointer-events: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
}

.ft-pdp__gallery-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
  pointer-events: none;
}

.ft-pdp__gallery-slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.ft-pdp__gallery-slide img,
.ft-pdp__gallery-slide video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ft-pdp__gallery-video {
  background: #111;
}

.ft-pdp__gallery-play {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--ft-white);
  background: rgba(0, 0, 0, 0.45);
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ft-pdp__gallery-slide.is-active .ft-pdp__gallery-play {
  opacity: 0;
  transition: opacity 0.25s ease;
}

.ft-pdp__gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  margin-top: -18px;
  padding: 0;
  border-radius: 50%;
  color: var(--ft-grey-900);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.12);
}

.ft-pdp__gallery-nav--prev {
  left: 10px;
}

.ft-pdp__gallery-nav--next {
  right: 10px;
}

.ft-pdp__gallery-dots {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 12px;
  z-index: 2;
  display: flex;
  justify-content: center;
  gap: 5px;
  pointer-events: auto;
}

.ft-pdp__gallery-dot {
  width: 6px;
  height: 6px;
  padding: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
}

.ft-pdp__gallery-dot.is-active {
  width: 18px;
  border-radius: 3px;
  background: var(--ft-white);
}

/* PDP gallery lightbox */
.ft-pdp-lightbox {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: stretch;
  justify-content: center;
}

.ft-pdp-lightbox[hidden] {
  display: none !important;
}

.ft-pdp-lightbox.is-open {
  display: flex;
}

.ft-pdp-lightbox__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
}

.ft-pdp-lightbox__panel {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 480px;
  height: 100%;
  margin: 0 auto;
}

.ft-pdp-lightbox__toolbar {
  position: absolute;
  top: max(12px, env(safe-area-inset-top));
  right: 12px;
  z-index: 4;
  display: flex;
  gap: 8px;
}

.ft-pdp-lightbox__tool {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border-radius: 50%;
  color: var(--ft-white);
  background: rgba(255, 255, 255, 0.12);
}

.ft-pdp-lightbox__tool--close {
  background: rgba(255, 255, 255, 0.2);
}

.ft-pdp-lightbox__stage {
  position: relative;
  flex: 1;
  min-height: 0;
  margin-top: max(48px, env(safe-area-inset-top));
  overflow: hidden;
}

.ft-pdp-lightbox__slide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}

.ft-pdp-lightbox__slide.is-active {
  opacity: 1;
  pointer-events: auto;
}

.ft-pdp-lightbox__img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  transform-origin: center center;
  transition: transform 0.2s ease;
}

.ft-pdp-lightbox__video {
  width: 100%;
  max-height: 100%;
  object-fit: contain;
  background: #000;
}

.ft-pdp-lightbox__nav {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin-top: -20px;
  padding: 0;
  border-radius: 50%;
  color: var(--ft-white);
  background: rgba(255, 255, 255, 0.15);
}

.ft-pdp-lightbox__nav--prev {
  left: 8px;
}

.ft-pdp-lightbox__nav--next {
  right: 8px;
}

.ft-pdp-lightbox__thumbs {
  flex-shrink: 0;
  display: flex;
  gap: 8px;
  padding: 12px 12px max(16px, env(safe-area-inset-bottom));
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ft-pdp-lightbox__thumbs::-webkit-scrollbar {
  display: none;
}

.ft-pdp-lightbox__thumb {
  position: relative;
  flex-shrink: 0;
  width: 56px;
  height: 56px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 4px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.08);
}

.ft-pdp-lightbox__thumb.is-active {
  border-color: #c9a227;
}

.ft-pdp-lightbox__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ft-pdp-lightbox__thumb-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ft-white);
  background: rgba(0, 0, 0, 0.35);
  pointer-events: none;
}

/* USP rotator items — absolute only inside .ft-pdp__gallery-usp bar */
.ft-pdp__gallery-usp-item {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  opacity: 0;
  -webkit-transform: translate3d(0, 4px, 0);
  transform: translate3d(0, 4px, 0);
  -webkit-animation: ft-pdp-gallery-usp 12s infinite;
  animation: ft-pdp-gallery-usp 12s infinite;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.ft-pdp__gallery-usp.is-js-rotator .ft-pdp__gallery-usp-item {
  -webkit-animation: none;
  animation: none;
  opacity: 0;
  -webkit-transform: translate3d(0, 4px, 0);
  transform: translate3d(0, 4px, 0);
  -webkit-transition: opacity 0.35s ease, -webkit-transform 0.35s ease;
  transition: opacity 0.35s ease, transform 0.35s ease;
}

.ft-pdp__gallery-usp.is-js-rotator .ft-pdp__gallery-usp-item.is-active {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.ft-pdp__gallery-usp-text {
  font-size: 12px;
  font-weight: 500;
  color: var(--ft-black);
  line-height: 1.3;
  text-align: center;
}

.ft-pdp__gallery-usp-text strong {
  font-weight: 700;
}

.ft-pdp__gallery-usp-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ft-black);
  color: var(--ft-white);
  line-height: 0;
}

.ft-pdp__gallery-usp-icon--price {
  background: transparent;
  color: var(--ft-black);
  width: auto;
  height: auto;
}

.ft-pdp__gallery-usp-avatars {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
}

.ft-pdp__gallery-usp-trust-img {
  display: block;
  width: auto;
  height: 20px;
}

@-webkit-keyframes ft-pdp-gallery-usp {
  0%,
  100%,
  25% {
    opacity: 0;
    -webkit-transform: translate3d(0, 4px, 0);
    transform: translate3d(0, 4px, 0);
  }
  2%,
  23% {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes ft-pdp-gallery-usp {
  0%,
  100%,
  25% {
    opacity: 0;
    transform: translate3d(0, 4px, 0);
  }
  2%,
  23% {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ft-pdp__gallery-usp:not(.is-js-rotator) {
    height: auto;
  }

  .ft-pdp__gallery-usp:not(.is-js-rotator) .ft-pdp__gallery-usp-item {
    position: static;
    opacity: 1;
    -webkit-animation: none;
    animation: none;
    transform: none;
    padding: 10px 12px;
  }

  .ft-pdp__gallery-usp:not(.is-js-rotator) .ft-pdp__gallery-usp-item:not(:first-child) {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
  }
}

.ft-pdp__info {
  padding: 14px 12px 10px;
}

.ft-pdp__price-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ft-pdp__price {
  margin: 0;
  flex: 1;
  min-width: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 6px 8px;
  font-size: 22px;
}

.ft-pdp__share {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: -4px -4px 0 0;
  padding: 0;
  border-radius: 50%;
  background: transparent;
}

.ft-pdp__share:active {
  background: var(--ft-grey-50);
}

.ft-pdp__share-icon {
  display: block;
  width: 20px;
  height: auto;
}

.ft-pdp__now {
  font-weight: 700;
  color: var(--ft-black);
}

.ft-pdp__was {
  font-size: 14px;
  color: var(--ft-grey-400);
  text-decoration: line-through;
  font-weight: 400;
}

.ft-pdp__off {
  font-size: 13px;
  font-weight: 600;
  color: var(--ft-offer-green);
}

.ft-pdp__title-row {
  margin-top: 14px;
}

.ft-pdp__best {
  margin: 8px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  background: var(--ft-offer-green-bg);
  color: var(--ft-offer-green);
  font-size: 12px;
  font-weight: 500;
  border-radius: 4px;
}

.ft-pdp__subtitle {
  margin: 10px 0 4px;
  font-size: 12px;
  color: var(--ft-grey-600);
}

.ft-pdp__title {
  margin: 0;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.4;
}

.ft-pdp__delivery {
  margin: 12px 0 0;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  font-weight: 500;
  color: var(--ft-black);
}

.ft-pdp__delivery-icon {
  display: inline-flex;
  color: var(--ft-grey-600);
  line-height: 0;
}

.ft-pdp__alerts {
  margin-top: 10px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
}

.ft-pdp__alert {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 8px 8px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
  border-radius: 4px;
}

.ft-pdp__alert-icon {
  flex-shrink: 0;
  display: inline-flex;
  line-height: 0;
}

.ft-pdp__alert-icon svg {
  width: 16px;
  height: 16px;
  display: block;
}

.ft-pdp__alert--stock {
  background: #fce8ea;
  color: #8a0a08;
}

.ft-pdp__alert--stock .ft-pdp__alert-icon {
  color: #e57373;
}

.ft-pdp__fire-badge .ft-pdp__alert-icon svg {
  -webkit-animation: ft-pdp-lightning-pulse 1.4s ease-in-out infinite;
  animation: ft-pdp-lightning-pulse 1.4s ease-in-out infinite;
  transform-origin: center center;
}

@keyframes ft-pdp-lightning-pulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.12);
    opacity: 0.75;
  }
}

@media (prefers-reduced-motion: reduce) {
  .ft-pdp__fire-badge .ft-pdp__alert-icon svg {
    -webkit-animation: none;
    animation: none;
  }
}

.ft-pdp__alert--cart {
  background: #fff8e1;
  color: #7a5c00;
}

.ft-pdp__alert--cart .ft-pdp__alert-icon {
  color: #f5c518;
}

@media (max-width: 360px) {
  .ft-pdp__alerts {
    grid-template-columns: 1fr;
  }
}

.ft-pdp__section-label {
  margin: 0 0 10px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ft-pdp__coupons {
  padding: 0 12px 12px;
  max-width: 100%;
  min-width: 0;
  overflow-x: clip;
  box-sizing: border-box;
}

.ft-pdp__coupons .ft-pdp__section-label {
  margin: 0 0 12px;
  padding: 0;
}

.ft-pdp__coupon-track {
  display: flex;
  gap: 10px;
  padding: 0 0 2px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-snap-type: x mandatory;
  scroll-padding-inline: 0;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  max-width: 100%;
  box-sizing: border-box;
}

.ft-pdp__coupon-track::-webkit-scrollbar {
  display: none;
}

.ft-pdp__coupon-card {
  flex: 0 0 calc(100% - 28px);
  width: calc(100% - 28px);
  max-width: calc(100% - 28px);
  scroll-snap-align: start;
  scroll-snap-stop: always;
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  box-sizing: border-box;
  padding: 12px 14px;
  border: 1px solid #e8e4dc;
  border-radius: 2px;
  background: #f9f6ee;
}

.ft-pdp__coupon-icon {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 33px;
}

.ft-pdp__coupon-icon img {
  display: block;
  width: 32px;
  height: auto;
}

.ft-pdp__coupon-body {
  flex: 1;
  min-width: 0;
}

.ft-pdp__coupon-headline {
  margin: 0;
  font-size: 13px;
  line-height: 1.35;
  color: var(--ft-black);
}

.ft-pdp__coupon-headline strong {
  font-size: 14px;
  font-weight: 700;
  color: #008040;
}

.ft-pdp__coupon-desc {
  margin: 4px 0 0;
  font-size: 11px;
  line-height: 1.4;
  color: var(--ft-grey-600);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.ft-pdp__coupon-details {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  gap: 1px;
  margin-left: 4px;
  padding: 0;
  border: 0;
  color: var(--ft-brand);
  font-size: 12px;
  font-weight: 600;
  background: transparent;
  white-space: nowrap;
}

.ft-pdp__coupon-details-chevron {
  flex-shrink: 0;
  -webkit-animation: ft-pdp-details-chevron 1.2s ease-in-out infinite;
  animation: ft-pdp-details-chevron 1.2s ease-in-out infinite;
}

.ft-pdp__coupon-details.is-copied .ft-pdp__coupon-details-chevron {
  -webkit-animation: none;
  animation: none;
}

@keyframes ft-pdp-details-chevron {
  0%,
  100% {
    transform: translateX(0);
  }

  50% {
    transform: translateX(3px);
  }
}

@media (prefers-reduced-motion: reduce) {
  .ft-pdp__coupon-details-chevron {
    -webkit-animation: none;
    animation: none;
  }
}

.ft-pdp__coupon-details.is-copied {
  color: #008040;
}

/* Coupon details bottom sheet */
.ft-coupon-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 85;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.ft-coupon-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.ft-coupon-modal-overlay[hidden] {
  display: none;
}

.ft-coupon-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  pointer-events: none;
}

.ft-coupon-modal.is-open {
  pointer-events: auto;
}

.ft-coupon-modal[hidden] {
  display: none;
}

.ft-coupon-modal__wrap {
  position: relative;
  width: min(100%, var(--ft-shell-max, 480px));
  max-height: 85vh;
  padding-top: 28px;
  overflow: visible;
  transform: translateY(100%);
  transition: transform 0.32s cubic-bezier(0.32, 0.72, 0, 1);
}

.ft-coupon-modal.is-open .ft-coupon-modal__wrap {
  transform: translateY(0);
}

.ft-coupon-modal__sheet {
  position: relative;
  max-height: calc(85vh - 28px);
  overflow-x: visible;
  overflow-y: auto;
  padding: 32px 20px 28px;
  border-radius: 16px 16px 0 0;
  background: var(--ft-white);
}

@media (prefers-reduced-motion: reduce) {
  .ft-coupon-modal-overlay,
  .ft-coupon-modal__wrap {
    transition: none;
  }
}

.ft-coupon-modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  color: var(--ft-black);
  background: transparent;
}

.ft-coupon-modal__badge {
  position: absolute;
  top: 0;
  left: 50%;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 50px;
  transform: translate(-50%, -50%);
  pointer-events: none;
}

.ft-coupon-modal__badge img {
  display: block;
  width: 48px;
  height: 50px;
  filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.15));
}

.ft-coupon-modal__hero {
  margin: 8px 0 20px;
  text-align: center;
}

.ft-coupon-modal__title {
  margin: 0 0 8px;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ft-black);
}

.ft-coupon-modal__price {
  margin: 0;
  font-size: 13px;
  color: var(--ft-grey-600);
}

.ft-coupon-modal__body {
  text-align: left;
}

.ft-coupon-modal__save {
  margin: 0 0 6px;
  font-size: 14px;
  color: var(--ft-black);
}

.ft-coupon-modal__save strong {
  font-weight: 700;
  color: #008040;
}

.ft-coupon-modal__save-desc {
  margin: 0 0 20px;
  font-size: 12px;
  line-height: 1.45;
  color: var(--ft-grey-600);
}

.ft-coupon-modal__terms-head {
  margin: 0 0 10px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ft-black);
}

.ft-coupon-modal__terms {
  margin: 0;
  padding: 0 0 0 18px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ft-grey-600);
}

.ft-coupon-modal__terms li + li {
  margin-top: 6px;
}

.benefits-strip {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 6px;
  margin: 0;
  padding: 14px 10px;
  background: var(--ft-grey-50);
  border-top: 1px solid var(--ft-grey-100);
  border-bottom: 1px solid var(--ft-grey-100);
}

.benefit-item {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 6px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.3;
  color: var(--ft-grey-600);
  text-align: center;
}

.benefit-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--ft-grey-700);
}

.benefit-item span {
  display: block;
  max-width: 100%;
}

.ft-pdp__colors {
  padding: 14px 12px 4px;
}

.ft-pdp__color-title {
  margin: 0 0 12px;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
  color: var(--ft-black);
}

.ft-pdp__color-list {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding-bottom: 4px;
}

.ft-pdp__color-list::-webkit-scrollbar {
  display: none;
}

.ft-pdp__color-item {
  position: relative;
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid transparent;
  background: var(--ft-grey-50);
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

a.ft-pdp__color-item {
  display: block;
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}

a.ft-pdp__color-item:active {
  transform: scale(0.96);
}

.ft-pdp__color-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ft-pdp__color-item.is-selected {
  border-color: var(--ft-black);
  box-shadow: 0 0 0 1px var(--ft-black);
}

.ft-pdp__color-item.is-disabled {
  opacity: 0.55;
}

.ft-pdp__color-check {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.28);
  color: var(--ft-white);
  pointer-events: none;
}

.ft-pdp__sizes {
  padding: 14px 12px;
}

.ft-pdp__sizes-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
}

.ft-pdp__sizes-head .ft-pdp__section-label {
  margin: 0;
}

.ft-pdp__size-guide {
  font-size: 11px;
  font-weight: 500;
  color: var(--ft-brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ft-pdp__size-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.ft-pdp__size {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 44px;
  min-height: 44px;
  padding: 0 12px;
  border: 1px solid var(--ft-grey-100);
  border-radius: 8px;
  font-size: 13px;
  font-weight: 500;
  background: var(--ft-white);
  color: var(--ft-black);
}

.ft-pdp__size.is-selected {
  border-color: var(--ft-black);
  background: var(--ft-black);
  color: var(--ft-white);
}

.ft-pdp__size.is-disabled,
.ft-pdp__size:disabled {
  border-color: var(--ft-grey-100);
  background: var(--ft-grey-100);
  color: var(--ft-grey-400);
  cursor: not-allowed;
  opacity: 0.85;
  text-decoration: line-through;
}

.ft-pdp__size.is-disabled.is-selected,
.ft-pdp__size:disabled.is-selected {
  border-color: var(--ft-grey-100);
  background: var(--ft-grey-100);
  color: var(--ft-grey-400);
}

.ft-pdp__highlights {
  padding: 0 12px 14px;
}

.ft-pdp__highlights-title {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: left;
  color: var(--ft-black);
}

.ft-pdp__highlights-box {
  background: var(--ft-white);
}

.ft-pdp__highlight-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0 20px;
  padding: 14px 0;
}

.ft-pdp__highlight-row + .ft-pdp__highlight-row::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 1px;
  background: var(--ft-grey-100);
}

.ft-pdp__highlight-cell {
  min-width: 0;
}

.ft-pdp__highlight-cell--empty {
  visibility: hidden;
}

.ft-pdp__highlight-label {
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  color: var(--ft-grey-500);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.ft-pdp__highlight-value {
  margin: 5px 0 0;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--ft-black);
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.ft-pdp__accordions {
  margin: 0 12px;
  border-top: 1px solid var(--ft-grey-100);
}

.ft-pdp__accordion {
  border-bottom: 1px solid var(--ft-grey-100);
}

.ft-pdp__accordion-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  list-style: none;
}

.ft-pdp__accordion-head::-webkit-details-marker {
  display: none;
}

.ft-pdp__accordion-icon::before {
  content: "+";
  font-size: 18px;
  font-weight: 400;
  line-height: 1;
  color: var(--ft-grey-600);
}

.ft-pdp__accordion[open] .ft-pdp__accordion-icon::before {
  content: "−";
}

.ft-pdp__accordion-body {
  padding: 0 0 14px;
  font-size: 12px;
  line-height: 1.5;
  color: var(--ft-grey-600);
}

.ft-pdp__accordion-body p {
  margin: 0;
}

.ft-pdp__trust-badges {
  list-style: none;
  margin: 16px 12px;
  padding: 14px 8px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  text-align: center;
  background: var(--ft-grey-50);
  border-radius: 4px;
}

.ft-pdp__trust-badges li {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 9px;
  font-weight: 500;
  line-height: 1.3;
}

.ft-pdp__trust-badges img {
  width: 32px;
  height: 32px;
}

.ft-pdp__story {
  position: relative;
  margin: 0 12px 16px;
  overflow: hidden;
  border-radius: 4px;
  background: #2a3238;
  color: var(--ft-white);
}

.ft-pdp__story::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58%;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(
    to top,
    rgba(0, 0, 0, 0.92) 0%,
    rgba(0, 0, 0, 0.78) 18%,
    rgba(0, 0, 0, 0.52) 38%,
    rgba(0, 0, 0, 0.28) 58%,
    rgba(0, 0, 0, 0.1) 78%,
    transparent 100%
  );
}

.ft-pdp__story-media {
  display: block;
  line-height: 0;
}

.ft-pdp__story-img {
  width: 100%;
  height: auto;
  display: block;
}

.ft-pdp__story-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px 16px 16px;
}

.ft-pdp__story-quote {
  margin: 0;
  font-size: 13px;
  line-height: 1.45;
  font-weight: 600;
  text-shadow:
    0 1px 2px rgba(0, 0, 0, 0.65),
    0 2px 10px rgba(0, 0, 0, 0.45),
    0 4px 18px rgba(0, 0, 0, 0.25);
}

.ft-pdp__story-link {
  color: var(--ft-white);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ft-pdp__reviews {
  padding: 0 12px 16px;
}

.ft-pdp__reviews-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.ft-pdp__reviews-head .ft-pdp__section-label {
  margin: 0;
}

.ft-pdp__reviews-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.ft-pdp__review-view-all {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ft-black);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ft-pdp__review-write {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ft-brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ft-pdp__reviews-summary {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 8px 16px;
  align-items: start;
}

.ft-pdp__reviews-score {
  margin: 0;
  grid-row: span 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
}

.ft-pdp__reviews-num {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
}

.ft-pdp__reviews-star {
  color: #f5c518;
  font-size: 14px;
}

.ft-pdp__reviews-count {
  margin: 0;
  font-size: 11px;
  color: var(--ft-grey-600);
}

.ft-pdp__reviews-bars {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 10px;
  color: var(--ft-grey-600);
}

.ft-pdp__reviews-bar-row {
  display: grid;
  grid-template-columns: 12px 1fr;
  align-items: center;
  gap: 6px;
}

.ft-pdp__reviews-bar {
  height: 4px;
  background: var(--ft-grey-100);
  border-radius: 2px;
  overflow: hidden;
}

.ft-pdp__reviews-bar span {
  display: block;
  height: 100%;
  background: #f5a623;
  border-radius: 2px;
}

.ft-pdp__review-track {
  display: flex;
  gap: 8px;
  margin: 10px -12px 0;
  padding: 0 12px 2px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.ft-pdp__review-track::-webkit-scrollbar {
  display: none;
}

.ft-pdp__review-card {
  flex: 0 0 148px;
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--ft-grey-100);
  border-radius: 4px;
  background: var(--ft-white);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
}

.ft-pdp__review-card--view-all {
  align-items: center;
  justify-content: center;
  min-height: 168px;
  text-decoration: none;
  color: inherit;
  background: var(--ft-grey-50);
}

.ft-pdp__review-view-all-slide {
  display: grid;
  gap: 8px;
  justify-items: center;
  padding: 16px 12px;
  text-align: center;
}

.ft-pdp__review-view-all-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--ft-white);
  color: var(--ft-black);
  border: 1px solid var(--ft-grey-200);
}

.ft-pdp__review-view-all-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  text-decoration: underline;
  text-underline-offset: 2px;
  color: var(--ft-black);
}

.ft-pdp__review-view-all-count {
  font-size: 10px;
  line-height: 1.35;
  color: var(--ft-grey-600);
}

.ft-pdp__review-media {
  flex-shrink: 0;
  height: 96px;
  overflow: hidden;
  background: var(--ft-grey-50);
}

.ft-pdp__review-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.ft-pdp__review-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 6px 8px 8px;
}

.ft-pdp__review-stars {
  display: flex;
  gap: 0;
  line-height: 1;
}

.ft-pdp__review-star {
  font-size: 9px;
  color: var(--ft-grey-200);
}

.ft-pdp__review-star.is-filled {
  color: #f5a623;
}

.ft-pdp__review-name {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 3px;
  font-size: 10px;
  font-weight: 700;
  line-height: 1.25;
  color: var(--ft-black);
}

.ft-pdp__review-verified {
  display: inline-flex;
  flex-shrink: 0;
  color: var(--ft-grey-800);
}

.ft-pdp__review-verified svg {
  width: 10px;
  height: 10px;
}

.ft-pdp__review-text {
  margin: 0;
  font-size: 9px;
  line-height: 1.35;
  color: var(--ft-grey-600);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ft-pdp__review-list {
  display: grid;
  gap: 12px;
  padding: 0;
}

.ft-pdp__review-card--list {
  width: 100%;
  min-height: 0;
  flex-direction: row;
  align-items: stretch;
}

.ft-pdp__review-card--list .ft-pdp__review-media {
  width: 120px;
  min-width: 120px;
  height: auto;
  min-height: 120px;
}

.ft-pdp__review-card--list .ft-pdp__review-img {
  height: 100%;
  min-height: 120px;
  object-fit: cover;
}

.ft-pdp__review-card--list .ft-pdp__review-body {
  padding: 12px;
  justify-content: flex-start;
}

.ft-pdp__review-card--list .ft-pdp__review-text {
  font-size: 13px;
  line-height: 1.5;
  display: block;
  -webkit-line-clamp: unset;
  overflow: visible;
}

.ft-reviews-page {
  padding: 0 0 88px;
  background: var(--ft-grey-50);
  min-height: calc(100vh - 120px);
}

.ft-reviews-page__head {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 12px;
  background: var(--ft-white);
  border-bottom: 1px solid var(--ft-grey-100);
}

.ft-reviews-page__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ft-black);
  cursor: pointer;
}

.ft-reviews-page__title {
  margin: 0;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.ft-reviews-page__product {
  padding: 12px;
  background: var(--ft-white);
  border-bottom: 1px solid var(--ft-grey-100);
}

.ft-reviews-page__product-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: inherit;
}

.ft-reviews-page__product-img {
  width: 72px;
  height: 96px;
  object-fit: cover;
  border-radius: 4px;
  border: 1px solid var(--ft-grey-100);
  background: var(--ft-grey-50);
}

.ft-reviews-page__product-name {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.45;
  color: var(--ft-black);
}

.ft-reviews-page__summary {
  margin: 12px;
  padding: 16px;
  background: var(--ft-white);
  border: 1px solid var(--ft-grey-100);
  border-radius: 8px;
}

.ft-reviews-page__summary .ft-pdp__reviews-summary {
  gap: 10px 18px;
}

.ft-reviews-page__summary .ft-pdp__reviews-num {
  font-size: 42px;
}

.ft-reviews-page__summary .ft-pdp__review-star,
.ft-reviews-page__summary .ft-pdp__reviews-star {
  font-size: 22px;
}

.ft-reviews-page__summary .ft-pdp__reviews-count {
  font-size: 14px;
}

.ft-reviews-page__list {
  padding: 0 12px 16px;
}

.ft-reviews-page__list-title {
  margin: 0 0 12px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ft-black);
}

.ft-reviews-page__empty {
  margin: 12px;
  padding: 24px 16px;
  text-align: center;
  background: var(--ft-white);
  border: 1px solid var(--ft-grey-100);
  border-radius: 8px;
}

.ft-reviews-page__empty p {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--ft-grey-600);
}

.ft-reviews-page__back-link {
  font-size: 13px;
  font-weight: 600;
  color: var(--ft-brand);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ft-write-review-modal__sheet {
  text-align: center;
}

.ft-write-review-modal__title {
  margin: 0 0 10px;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ft-black);
}

.ft-write-review-modal__text {
  margin: 0 0 18px;
  font-size: 15px;
  line-height: 1.5;
  color: var(--ft-grey-700);
}

.ft-write-review-modal__whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 16px;
  border-radius: 6px;
  background: #25d366;
  color: var(--ft-white);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
}

.ft-write-review-modal__whatsapp:active {
  opacity: 0.92;
}

.ft-pdp__review-media--open {
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.ft-pdp__review-card .ft-pdp__review-media--open {
  flex-shrink: 0;
}

.ft-pdp__review-media--open:focus-visible {
  outline: 2px solid var(--ft-black);
  outline-offset: 2px;
}

.ft-review-modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 85;
  background: rgba(0, 0, 0, 0.55);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.28s ease;
}

.ft-review-modal-overlay.is-open {
  opacity: 1;
  pointer-events: auto;
}

.ft-review-modal-overlay[hidden] {
  display: none;
}

.ft-review-modal {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: visible;
  pointer-events: none;
}

.ft-review-modal.is-open {
  pointer-events: auto;
}

.ft-review-modal[hidden] {
  display: none;
}

.ft-review-modal__wrap {
  position: relative;
  width: min(100%, var(--ft-shell-max, 480px));
  max-height: 88vh;
  padding-top: 28px;
  overflow: visible;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.ft-review-modal.is-open .ft-review-modal__wrap {
  transform: translateY(0);
}

.ft-review-modal__close {
  position: absolute;
  top: 0;
  right: 12px;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: var(--ft-white);
  color: var(--ft-black);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.12);
  cursor: pointer;
}

.ft-review-modal__sheet {
  display: grid;
  gap: 12px;
  max-height: 88vh;
  padding: 16px 16px calc(16px + env(safe-area-inset-bottom));
  overflow: auto;
  background: var(--ft-white);
  border-radius: 16px 16px 0 0;
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.12);
}

.ft-review-modal__media {
  width: 100%;
  overflow: hidden;
  border-radius: 8px;
  background: var(--ft-grey-50);
}

.ft-review-modal__img {
  display: block;
  width: 100%;
  max-height: 52vh;
  object-fit: contain;
  background: var(--ft-grey-50);
}

.ft-review-modal__stars {
  margin-top: 4px;
}

.ft-review-modal__name {
  margin: 0;
  font-size: 15px;
  font-weight: 700;
  color: var(--ft-black);
}

.ft-review-modal__text {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--ft-grey-700);
  white-space: pre-wrap;
}

.ft-pdp__section {
  padding-top: 8px;
}

.ft-pdp__section .ft-product-grid {
  padding: 0 12px;
}

.ft-pdp__breadcrumbs {
  padding: 12px 12px 20px;
  font-size: 11px;
  color: var(--ft-grey-600);
  line-height: 1.5;
}

.ft-pdp__breadcrumbs a {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ft-pdp__crumb-sep {
  margin: 0 4px;
  opacity: 0.6;
}

.ft-pdp__sticky {
  position: fixed;
  left: 0;
  right: 0;
  bottom: calc(var(--ft-bottom-nav-h) + env(safe-area-inset-bottom, 0px));
  z-index: 43;
  width: 100%;
  max-width: var(--ft-shell-max);
  margin-inline: auto;
  padding: 8px 12px;
  background: var(--ft-white);
  border-top: 1px solid var(--ft-grey-100);
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.06);
}

.ft-pdp__add-cart {
  width: 100%;
  padding: 14px 16px;
  background: var(--ft-brand);
  color: var(--ft-white);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-align: center;
}

.ft-pdp__add-cart:active {
  background: var(--ft-brand-dark);
}

.ft-pdp__add-cart--oos,
.ft-pdp__add-cart:disabled {
  background: var(--ft-grey-400);
  color: var(--ft-white);
  cursor: not-allowed;
  opacity: 1;
}

.ft-pdp__add-cart--oos:active,
.ft-pdp__add-cart:disabled:active {
  background: var(--ft-grey-400);
}

.ft-pdp__coupon-details.is-copied .ft-pdp__coupon-details-chevron {
  display: none;
}

.ft-header--minimal .ft-header__bar--minimal {
  justify-content: center;
}

.ft-header--minimal .ft-logo--center {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.ft-body--checkout .ft-header {
  position: sticky;
  top: 0;
  z-index: 20;
}

.ft-body--checkout .mobile-main {
  padding-bottom: env(safe-area-inset-bottom, 0px);
  padding-top: 12px;
  scroll-padding-top: calc(var(--ft-header-h) + 12px);
}

.ft-body--cart-page .mobile-main {
  padding-bottom: calc(var(--ft-bottom-nav-h) + env(safe-area-inset-bottom, 0px));
}

.ft-body--checkout.ft-chrome-fixed .mobile-main {
  padding-top: calc(var(--ft-header-h) + 12px);
}

.ft-cart-page,
.ft-checkout {
  display: flex;
  flex-direction: column;
  min-height: calc(100dvh - var(--ft-header-h));
}

.ft-cart-page {
  background: var(--ft-white);
}

.ft-checkout {
  --ft-checkout-foot-h: 108px;
  background: var(--ft-grey-50);
}

.ft-checkout__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--ft-grey-100);
  background: var(--ft-white);
  position: sticky;
  top: 0;
  z-index: 2;
}

.ft-checkout__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--ft-black);
  cursor: pointer;
}

.ft-checkout__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ft-cart-page__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-bottom: 1px solid var(--ft-grey-100);
  background: var(--ft-white);
  position: sticky;
  top: 0;
  z-index: 2;
}

.ft-cart-page__back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  color: var(--ft-black);
  text-decoration: none;
}

.ft-cart-page__title-wrap {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}

.ft-cart-page__title {
  margin: 0;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.ft-cart-page__count {
  font-size: 12px;
  color: var(--ft-grey-600);
}

.ft-cart-page__sale {
  flex-shrink: 0;
}

.ft-cart-page__body,
.ft-checkout__form {
  flex: 1;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.ft-cart-page__body {
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
}

.ft-cart-page__foot {
  position: sticky;
  bottom: calc(var(--ft-bottom-nav-h) + env(safe-area-inset-bottom, 0px));
  z-index: 40;
  flex-shrink: 0;
  border-top: 1px solid var(--ft-grey-100);
  background: var(--ft-white);
  padding-bottom: calc(12px + env(safe-area-inset-bottom, 0px));
  box-shadow: 0 -4px 16px rgba(0, 0, 0, 0.05);
}

.ft-checkout__foot {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 40;
  width: 100%;
  max-width: var(--ft-shell-max);
  margin-inline: auto;
  flex-shrink: 0;
  border-top: 1px solid var(--ft-grey-100);
  background: var(--ft-white);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.06);
}

.ft-checkout {
  padding-bottom: 0;
}

.ft-checkout__banner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  margin-bottom: 4px;
  background: #fff8e8;
  border-bottom: 1px solid #f0e4c8;
  font-size: 11px;
  font-weight: 600;
  color: #5c4a2a;
  text-align: center;
}

.ft-checkout__banner-icon {
  display: inline-flex;
  flex-shrink: 0;
}

.ft-checkout__form {
  padding: 8px 0 calc(var(--ft-checkout-foot-h) + env(safe-area-inset-bottom, 0px) + 16px);
  scroll-padding-top: 12px;
}

.ft-checkout__section {
  padding: 0 12px 12px;
}

.ft-checkout__section:first-child {
  padding-top: 4px;
}

.ft-checkout__card {
  padding: 16px;
  border: 1px solid var(--ft-grey-100);
  border-radius: 8px;
  background: var(--ft-white);
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.ft-checkout__section-title {
  margin: 0 0 14px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ft-black);
}

.ft-checkout__summary-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 0;
  padding-bottom: 14px;
}

.ft-checkout__summary-head.is-expanded {
  margin-bottom: 0;
}

.ft-checkout__summary-head .ft-checkout__section-title {
  margin-bottom: 0;
}

.ft-checkout__summary-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.ft-checkout__summary-count {
  font-size: 11px;
  color: var(--ft-grey-600);
}

.ft-checkout__summary-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid var(--ft-grey-100);
  border-radius: 8px;
  background: var(--ft-white);
  color: var(--ft-black);
  cursor: pointer;
}

.ft-checkout__summary-toggle:active {
  background: var(--ft-grey-50);
}

.ft-checkout__summary-toggle-icon {
  display: block;
}

.ft-checkout__summary-toggle-icon[hidden] {
  display: none !important;
}

.ft-checkout__items-panel[hidden] {
  display: none !important;
}

.ft-checkout__items-panel {
  margin-bottom: 14px;
}

.ft-checkout__field {
  display: grid;
  gap: 6px;
  margin-bottom: 12px;
}

.ft-checkout__field--last {
  margin-bottom: 0;
}

.ft-checkout__label {
  font-size: 11px;
  font-weight: 600;
  color: var(--ft-grey-700);
}

.ft-checkout__optional {
  font-weight: 400;
  color: var(--ft-grey-500);
}

.ft-checkout__input,
.ft-checkout__textarea,
.ft-checkout__select {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--ft-grey-100);
  border-radius: 6px;
  font: inherit;
  font-size: 16px;
  color: var(--ft-black);
  background: var(--ft-white);
  box-sizing: border-box;
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ft-checkout__input:focus,
.ft-checkout__textarea:focus,
.ft-checkout__select:focus {
  outline: none;
  border-color: var(--ft-black);
  box-shadow: 0 0 0 1px var(--ft-black);
}

.ft-checkout__textarea {
  resize: vertical;
  min-height: 88px;
  line-height: 1.45;
}

.ft-checkout__phone {
  display: flex;
  align-items: stretch;
  border: 1px solid var(--ft-grey-100);
  border-radius: 6px;
  overflow: hidden;
  background: var(--ft-white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ft-checkout__phone:focus-within {
  border-color: var(--ft-black);
  box-shadow: 0 0 0 1px var(--ft-black);
}

.ft-checkout__phone .ft-checkout__input {
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.ft-checkout__phone .ft-checkout__input:focus {
  box-shadow: none;
}

.ft-checkout__dial {
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  background: var(--ft-grey-50);
  border-right: 1px solid var(--ft-grey-100);
  font-size: 16px;
  font-weight: 600;
  color: var(--ft-grey-700);
}

.ft-checkout__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ft-checkout__coupon-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 12px;
}

.ft-checkout__coupon-card {
  margin: 0;
  padding: 14px;
  border: 1px solid #c9ead4;
  border-radius: 10px;
  background: linear-gradient(180deg, #f8fdf9 0%, #f1faf4 100%);
}

.ft-checkout__coupon-card.is-applied {
  border-color: #86d8a0;
  background: linear-gradient(180deg, #f3fbf5 0%, #eaf8ee 100%);
  box-shadow: 0 0 0 1px rgba(22, 101, 52, 0.06);
}

.ft-checkout__coupon-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.ft-checkout__coupon-main {
  min-width: 0;
  flex: 1;
}

.ft-checkout__coupon-code-wrap {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.85);
  border: 1px dashed #9ed9b3;
}

.ft-checkout__coupon-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--ft-offer-green-bg);
  color: var(--ft-offer-green);
  flex-shrink: 0;
}

.ft-checkout__coupon-code {
  display: block;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1.2;
  color: var(--ft-offer-green);
}

.ft-checkout__coupon-btn {
  flex-shrink: 0;
  min-width: 88px;
  padding: 9px 14px;
  border: 1px solid var(--ft-offer-green);
  border-radius: 8px;
  background: var(--ft-white);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ft-offer-green);
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.ft-checkout__coupon-btn:active:not(:disabled) {
  background: var(--ft-offer-green-bg);
  box-shadow: inset 0 0 0 1px rgba(22, 101, 52, 0.08);
}

.ft-checkout__coupon-btn:disabled:not(.is-applied) {
  border-color: #c5c5c5;
  background: #f5f5f5;
  color: #a3a3a3;
  cursor: not-allowed;
  opacity: 1;
}

.ft-checkout__coupon-btn.is-applied {
  border-color: #9ed9b3;
  background: var(--ft-offer-green-bg);
  color: var(--ft-offer-green);
  cursor: default;
  opacity: 1;
}

.ft-checkout__coupon-empty {
  margin: 0;
  font-size: 12px;
  color: var(--ft-grey-600);
}

.ft-checkout__coupon-msg {
  margin: 8px 0 0;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.35;
}

.ft-checkout__coupon-msg.is-success {
  color: var(--ft-offer-green);
}

.ft-checkout__coupon-msg.is-error {
  color: #c62828;
}

.ft-checkout__coupon-hint {
  margin: 12px 0 0;
  padding-top: 12px;
  border-top: 1px solid rgba(22, 101, 52, 0.1);
  font-size: 11px;
  line-height: 1.5;
  color: #4b6b57;
}

.ft-checkout__coupon-hint strong,
.ft-checkout__coupon-card.is-applied .ft-checkout__coupon-hint {
  color: var(--ft-offer-green);
}

.ft-checkout__coupon-card.is-applied .ft-checkout__coupon-hint {
  border-top-color: rgba(22, 101, 52, 0.16);
}

.ft-checkout__coupon-card.is-applied .ft-checkout__coupon-code-wrap {
  border-color: #86d8a0;
  background: rgba(255, 255, 255, 0.95);
}

.ft-checkout__payments {
  display: grid;
  gap: 10px;
}

.ft-checkout__payment {
  display: block;
  cursor: pointer;
}

.ft-checkout__payment input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.ft-checkout__payment-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px;
  border: 1px solid var(--ft-grey-100);
  border-radius: 8px;
  background: var(--ft-white);
  transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.ft-checkout__payment-radio {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 1px;
  border: 1.5px solid var(--ft-grey-400);
  border-radius: 50%;
  position: relative;
}

.ft-checkout__payment-radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: transparent;
  transition: background 0.15s ease;
}

.ft-checkout__payment input:checked + .ft-checkout__payment-card {
  border-color: var(--ft-brand);
  box-shadow: 0 0 0 1px var(--ft-brand);
}

.ft-checkout__payment input:checked + .ft-checkout__payment-card .ft-checkout__payment-radio {
  border-color: var(--ft-brand);
}

.ft-checkout__payment input:checked + .ft-checkout__payment-card .ft-checkout__payment-radio::after {
  background: var(--ft-brand);
}

.ft-checkout__payment-copy {
  min-width: 0;
}

.ft-checkout__payment--disabled {
  opacity: 0.65;
  cursor: not-allowed;
}

.ft-checkout__payment-title {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 13px;
  font-weight: 700;
  color: var(--ft-black);
}

.ft-checkout__payment-desc {
  display: block;
  margin-top: 4px;
  font-size: 11px;
  line-height: 1.45;
  color: var(--ft-grey-600);
}

.ft-checkout__payment-amount {
  display: block;
  margin-top: 6px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  color: var(--ft-black);
}

.ft-checkout__payment input:checked + .ft-checkout__payment-card .ft-checkout__payment-amount {
  color: #2e7d32;
}

.ft-checkout__badge {
  display: inline-block;
  padding: 2px 7px;
  border-radius: 999px;
  background: var(--ft-grey-100);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ft-grey-600);
}

.ft-checkout__badge--save {
  background: #e8f5e9;
  color: #2e7d32;
}

.ft-checkout__badge--discount {
  background: #fdecea;
  color: #b42318;
  border: 1px solid #f5c2c0;
}

.ft-checkout__payment input:checked + .ft-checkout__payment-card .ft-checkout__badge--discount {
  background: #b42318;
  color: #fff;
  border-color: #b42318;
}

.ft-checkout__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px;
}

.ft-checkout__item {
  display: flex;
  gap: 12px;
  padding: 10px;
  border: 1px solid var(--ft-grey-100);
  border-radius: 8px;
  background: var(--ft-grey-50);
}

.ft-checkout__item-media {
  flex-shrink: 0;
  width: 64px;
  height: 85px;
  overflow: hidden;
  border-radius: 6px;
  background: var(--ft-white);
}

.ft-checkout__item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ft-checkout__item-body {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.ft-checkout__item-name {
  margin: 0;
  font-size: 12px;
  line-height: 1.4;
  color: var(--ft-black);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.ft-checkout__item-meta {
  margin: 0;
  font-size: 11px;
  color: var(--ft-grey-600);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

.ft-checkout__item-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 8px;
}

.ft-checkout__item-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--ft-grey-100);
  border-radius: 4px;
  background: var(--ft-white);
}

.ft-checkout__item-qty-btn {
  width: 30px;
  height: 30px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 1;
  color: var(--ft-black);
  background: transparent;
  border: 0;
  cursor: pointer;
}

.ft-checkout__item-qty-val {
  min-width: 30px;
  text-align: center;
  font-size: 13px;
  font-weight: 600;
}

.ft-checkout__item-remove {
  font-size: 11px;
  font-weight: 500;
  color: var(--ft-grey-600);
  text-decoration: underline;
  text-underline-offset: 2px;
  background: transparent;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.ft-checkout__item-dot {
  margin: 0 2px;
}

.ft-checkout__item-price {
  margin: 8px 0 0;
  font-size: 13px;
  font-weight: 700;
  color: var(--ft-black);
}

.ft-checkout__pricing {
  display: grid;
  gap: 10px;
  padding-top: 14px;
  border-top: 1px solid var(--ft-grey-100);
}

.ft-checkout__pricing-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 12px;
  color: var(--ft-grey-700);
}

.ft-checkout__pricing-row[hidden] {
  display: none !important;
}

.ft-checkout__pricing-row--save {
  color: var(--ft-offer-green);
  font-weight: 600;
}

.ft-checkout__pricing-free {
  font-weight: 700;
  color: var(--ft-offer-green);
}

.ft-checkout__pricing-row--total {
  padding-top: 12px;
  margin-top: 2px;
  border-top: 1px dashed var(--ft-grey-100);
  font-size: 15px;
  font-weight: 700;
  color: var(--ft-black);
}

.ft-checkout__savings {
  margin: 14px 0 0;
  padding: 11px 12px;
  border-radius: 8px;
  background: var(--ft-offer-green-bg);
  border: 1px solid #bbf7d0;
  font-size: 12px;
  font-weight: 600;
  color: var(--ft-offer-green);
  text-align: center;
}

.ft-checkout__alert {
  margin: 0 12px 12px;
  padding: 11px 12px;
  border-radius: 8px;
  font-size: 12px;
}

.ft-checkout__alert--error {
  background: #ffebee;
  border: 1px solid #ffcdd2;
  color: #c62828;
}

.ft-checkout__foot-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 14px 8px;
}

.ft-checkout__ships {
  font-size: 12px;
  font-weight: 400;
  color: var(--ft-black);
}

.ft-checkout__ships strong {
  font-weight: 600;
}

.ft-checkout__foot-total {
  font-size: 13px;
  font-weight: 700;
  color: var(--ft-black);
  text-align: right;
  line-height: 1.3;
}

.ft-checkout__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin: 0;
  padding: 14px 16px;
  border: 0;
  border-radius: 0;
  background: var(--ft-brand);
  color: var(--ft-white);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.15s ease;
}

.ft-checkout__submit:active:not(:disabled) {
  background: var(--ft-brand-dark);
}

.ft-checkout__submit:disabled {
  opacity: 0.7;
  cursor: wait;
}

.ft-body--thank-you .mobile-main {
  padding-bottom: env(safe-area-inset-bottom, 0px);
}

.ft-thank-you {
  padding: 16px 12px calc(24px + env(safe-area-inset-bottom, 0px));
  background: var(--ft-grey-50);
  min-height: calc(100dvh - var(--ft-header-h));
}

.ft-thank-you__hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px 20px;
}

.ft-thank-you__icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  margin-bottom: 16px;
  border-radius: 50%;
  background: var(--ft-offer-green-bg);
  color: var(--ft-offer-green);
}

.ft-thank-you__title {
  margin: 0 0 8px;
  font-size: 28px;
  font-weight: 700;
  color: var(--ft-black);
}

.ft-thank-you__subtitle {
  margin: 0;
  font-size: 14px;
  color: var(--ft-grey-600);
}

.ft-thank-you__card,
.ft-thank-you__items-card,
.ft-thank-you__address-card {
  margin-bottom: 12px;
  padding: 16px;
  background: var(--ft-white);
  border: 1px solid var(--ft-grey-100);
  border-radius: 10px;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.03);
}

.ft-thank-you__meta-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ft-thank-you__meta-label {
  display: block;
  margin-bottom: 4px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ft-grey-600);
}

.ft-thank-you__meta-value {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--ft-black);
}

.ft-thank-you__status-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: 16px;
  padding-top: 14px;
  border-top: 1px dashed var(--ft-grey-100);
}

.ft-thank-you__pill {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  background: var(--ft-offer-green-bg);
  color: var(--ft-offer-green);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.ft-thank-you__ships {
  font-size: 12px;
  color: var(--ft-black);
}

.ft-thank-you__ships strong {
  font-weight: 700;
}

.ft-thank-you__payment-note {
  margin: 14px 0 0;
  padding: 10px 12px;
  border-radius: 8px;
  background: #fff8e8;
  border: 1px solid #f0e4c8;
  font-size: 12px;
  line-height: 1.5;
  color: #5c4a2a;
}

.ft-thank-you__section-title {
  margin: 0 0 12px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ft-black);
}

.ft-thank-you__items {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.ft-thank-you__item {
  display: grid;
  grid-template-columns: 56px minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.ft-thank-you__item-thumb {
  width: 56px;
  height: 56px;
  border-radius: 8px;
  overflow: hidden;
  background: var(--ft-grey-50);
  border: 1px solid var(--ft-grey-100);
}

.ft-thank-you__item-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ft-thank-you__item-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: var(--ft-grey-400);
}

.ft-thank-you__item-name {
  margin: 0 0 4px;
  font-size: 13px;
  font-weight: 600;
  color: var(--ft-black);
  line-height: 1.35;
}

.ft-thank-you__item-meta {
  margin: 0;
  font-size: 11px;
  color: var(--ft-grey-600);
}

.ft-thank-you__item-price {
  font-size: 12px;
  font-weight: 700;
  color: var(--ft-black);
  white-space: nowrap;
}

.ft-thank-you__items-more {
  margin: 12px 0 0;
  font-size: 12px;
  font-weight: 600;
  color: var(--ft-grey-600);
}

.ft-thank-you__address-name {
  margin: 0 0 4px;
  font-size: 14px;
  font-weight: 700;
  color: var(--ft-black);
}

.ft-thank-you__address-line,
.ft-thank-you__address-mobile {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: var(--ft-grey-700);
}

.ft-thank-you__address-mobile {
  margin-top: 6px;
  font-weight: 600;
  color: var(--ft-black);
}

.ft-thank-you__note {
  margin: 4px 4px 16px;
  font-size: 12px;
  line-height: 1.5;
  text-align: center;
  color: var(--ft-grey-600);
}

.ft-thank-you__actions {
  display: grid;
  gap: 10px;
}

.ft-thank-you__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 16px;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
}

.ft-thank-you__btn--primary {
  background: var(--ft-brand);
  color: var(--ft-white);
}

.ft-thank-you__btn--primary:active {
  background: var(--ft-brand-dark);
}

.ft-thank-you__btn--secondary {
  background: var(--ft-white);
  color: var(--ft-black);
  border: 1px solid var(--ft-grey-100);
}

.ft-thank-you__btn--secondary:active {
  background: var(--ft-grey-50);
}

.ft-thank-you__btn--whatsapp {
  gap: 8px;
  background: #25d366;
  color: var(--ft-white);
  border: 0;
}

.ft-thank-you__btn--whatsapp:active {
  opacity: 0.92;
}

.ft-thank-you__btn-icon {
  flex-shrink: 0;
}

/* ── Error / 404 page ─────────────────────────────────────────────── */

.ft-body--error .mobile-main--error {
  padding-bottom: calc(72px + env(safe-area-inset-bottom, 0px));
}

.ft-error-page {
  display: flex;
  flex-direction: column;
  align-items: center;
  min-height: calc(100dvh - var(--ft-header-h));
  padding: 20px 16px calc(24px + env(safe-area-inset-bottom, 0px));
  background:
    radial-gradient(ellipse 120% 80% at 50% -20%, rgba(167, 13, 10, 0.08), transparent 55%),
    var(--ft-grey-50);
}

.ft-error-page__card {
  width: 100%;
  max-width: 420px;
  margin-top: 12px;
  padding: 28px 20px 24px;
  border-radius: 16px;
  background: var(--ft-white);
  border: 1px solid var(--ft-grey-100);
  box-shadow: 0 12px 40px rgba(17, 17, 17, 0.06);
  text-align: center;
}

.ft-error-page__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 88px;
  height: 88px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: rgba(167, 13, 10, 0.08);
  color: var(--ft-brand);
  position: relative;
}

.ft-error-page__badge::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px dashed rgba(167, 13, 10, 0.18);
}

.ft-error-page__badge--warn {
  background: rgba(234, 179, 8, 0.12);
  color: #b45309;
}

.ft-error-page__badge--warn::after {
  border-color: rgba(180, 83, 9, 0.2);
}

.ft-error-page__code {
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.ft-error-page__title {
  margin: 0 0 10px;
  font-size: 24px;
  font-weight: 700;
  color: var(--ft-black);
}

.ft-error-page__text {
  margin: 0 auto 22px;
  max-width: 320px;
  font-size: 14px;
  line-height: 1.6;
  color: var(--ft-grey-600);
}

.ft-error-page__actions {
  display: grid;
  gap: 10px;
}

.ft-error-page__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 14px 16px;
  border: 0;
  border-radius: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  font-family: inherit;
}

.ft-error-page__btn--primary {
  background: var(--ft-brand);
  color: var(--ft-white);
}

.ft-error-page__btn--primary:active {
  background: var(--ft-brand-dark);
}

.ft-error-page__btn--secondary {
  background: var(--ft-white);
  color: var(--ft-black);
  border: 1px solid var(--ft-grey-100);
}

.ft-error-page__btn--secondary:active {
  background: var(--ft-grey-50);
}

.ft-error-page__hint {
  margin: 18px 8px 0;
  font-size: 13px;
  line-height: 1.5;
  text-align: center;
  color: var(--ft-grey-600);
}

.ft-error-page__hint a {
  color: var(--ft-brand);
  font-weight: 600;
  text-decoration: none;
}

.ft-error-page__hint a:active {
  opacity: 0.85;
}

.ft-error-page__colors {
  width: 100%;
  max-width: 420px;
  margin-top: 16px;
  border-radius: 16px;
  overflow: hidden;
  background: var(--ft-white);
  border: 1px solid var(--ft-grey-100);
  box-shadow: 0 8px 24px rgba(17, 17, 17, 0.04);
}

.ft-error-page__colors-title {
  margin: 0;
  padding: 16px 16px 6px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-align: center;
  color: var(--ft-grey-600);
}

.ft-error-page__colors .ft-cat-slider {
  border-bottom: 0;
  padding-bottom: 14px;
}

