/* OOTD India — Figma-matched Homepage */
@import url('https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,400;0,9..40,500;0,9..40,600;1,9..40,400&family=Jost:wght@400;500&family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400&display=swap');

:root {
  --bg-cream: #faf6f2;
  --header-bg: #f5e8df;
  --primary: #8b5c47;
  --primary-hover: #7a5040;
  --text-dark: #3a2820;
  --text-green: #2c3e2b;
  --text-accent: #c4907a;
  --white: #ffffff;
  --beige-card: #e8ddd4;
  --women-media-bg: #c09e7f;
  --container: 1440px;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', sans-serif;
  --font-ui: 'Jost', sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg-cream);
  color: var(--text-dark);
  line-height: 1.5;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 20px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-body);
  font-weight: 500;
  border: none;
  cursor: pointer;
  transition: background 0.2s;
}

.btn--primary {
  background: var(--primary);
  color: var(--white);
  border-radius: 999px;
  padding: 10px 28px;
  font-size: 16px;
}

.btn--primary:hover {
  background: var(--primary-hover);
}

.btn--outline {
  background: var(--bg-cream);
  color: var(--text-dark);
  border-radius: 999px;
  padding: 10px 28px;
  font-size: 16px;
  border: 1px solid var(--text-dark);
}

.btn--outline:hover {
  background: #f0ebe5;
}

.btn--sm {
  padding: 5px 16px;
  font-size: 14px;
}

/* ========== HEADER ========== */
.header {
  position: relative;
  width: 100%;
  padding: 20px 20px 0;
  background: var(--bg-cream);
  z-index: 100;
}

.header.is-sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  padding: 10px 20px 0;
  background: var(--bg-cream);
  box-shadow: 0 2px 12px rgba(58, 40, 32, 0.06);
}

.header__inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  column-gap: 24px;
  background: #f5e8df;
  border-radius: 10px;
  padding: 0 16px 0 20px;
  height: 85px;
  width: 100%;
  max-width: none;
  margin: 0 auto;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 14px;
  grid-column: 1;
}

.header__logo img {
  width: 54px;
  height: 54px;
  object-fit: contain;
}

.header__brand h1 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  color: var(--text-dark);
}

.product-page .header__brand span,
.cart-page .header__brand span,
.header__brand .header__tagline {
  display: block;
  margin-top: 2px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  color: #8a7b72;
  line-height: 1.2;
}

.header__mobile-strip {
  display: none;
}

.header__nav-mobile-only {
  display: none;
}

.header__nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  grid-column: 2;
  white-space: nowrap;
}

.header__nav a {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 500;
  color: var(--text-dark);
  white-space: nowrap;
  transition: color 0.2s;
}

.header__nav a:hover {
  color: var(--primary);
}

.header__nav a.is-active {
  color: var(--primary);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 10px;
  grid-column: 3;
  justify-self: end;
}

.header__search {
  width: 200px;
  height: 35px;
  border: none;
  border-radius: 17.5px;
  padding: 0 16px;
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  background: #ffffff;
  outline: none;
  color: var(--text-dark);
  flex-shrink: 0;
  -webkit-appearance: none;
  appearance: none;
  box-shadow: none;
}

.header__search::-webkit-search-decoration,
.header__search::-webkit-search-cancel-button {
  -webkit-appearance: none;
  appearance: none;
}

.header__search::placeholder {
  color: #b0a59e;
  opacity: 1;
}

.header-search-results {
  position: absolute;
  top: calc(100% + 5px);
  right: 0;
  width: 280px;
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
  z-index: 1000;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.header-search-results__item {
  display: flex;
  padding: 10px;
  text-decoration: none;
  color: var(--text-dark);
  border-bottom: 1px solid #f0f0f0;
  transition: background 0.2s;
}

.header-search-results__item:hover {
  background: #f9f9f9;
}

.header-search-results__item:last-child {
  border-bottom: none;
}

.header-search-results__img {
  width: 40px;
  height: 50px;
  object-fit: cover;
  border-radius: 4px;
  margin-right: 12px;
}

.header-search-results__info {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.header-search-results__title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 4px;
}

.header-search-results__price {
  font-family: var(--font-ui);
  font-size: 12px;
  color: var(--primary);
  font-weight: 600;
}

.header-search-results__empty,
.header-search-results__error,
.header-search-results__loading {
  padding: 15px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 13px;
  color: #777;
}

.header__profile {
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #8b5c47;
  border: 0;
  padding: 0;
  cursor: pointer;
  text-decoration: none;
}

.header__profile svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

/* Flipkart-style account dropdown */
.header-account {
  position: relative;
  flex-shrink: 0;
}

.header-account__toggle {
  width: auto;
  min-width: 35px;
  height: 36px;
  gap: 6px;
  padding: 0 6px 0 4px;
  border-radius: 999px;
}

.header-account__toggle:hover,
.header-account.is-open .header-account__toggle {
  background: rgba(139, 92, 71, 0.1);
}

.header-account__avatar {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  flex-shrink: 0;
}

.header-account__name {
  display: none;
  max-width: 96px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-account__chevron {
  display: none;
  width: 16px;
  height: 16px;
  color: #8b5c47;
  transition: transform 0.15s ease;
}

.header-account__chevron svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.header-account.is-open .header-account__chevron {
  transform: rotate(180deg);
}

.header-account__menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  z-index: 1200;
  width: 280px;
  max-width: calc(100vw - 20px);
  padding: 0 0 8px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.14);
  border: 1px solid rgba(0, 0, 0, 0.06);
  overflow: hidden;
  animation: headerAccountIn 0.16s ease;
}

@keyframes headerAccountIn {
  from {
    opacity: 0;
    transform: translateY(-6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-account__menu[hidden] {
  display: none !important;
}

.header-account__head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  background: #faf7f4;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.header-account__head-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 700;
  flex-shrink: 0;
}

.header-account__head-text {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.header-account__head-text strong {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-account__head-text span {
  font-size: 12px;
  color: #777;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.header-account__title {
  margin: 0;
  padding: 12px 16px 6px;
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #8a8a8a;
}

.header-account__item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 11px 16px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: #212121;
  text-decoration: none;
  transition: background 0.15s ease;
}

.header-account__item:hover {
  background: #f5f0eb;
  color: var(--text-dark);
}

.header-account__item--logout {
  margin-top: 4px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.header-account__icon {
  width: 22px;
  height: 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: #5f5f5f;
}

.header-account__icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.header-account__item:hover .header-account__icon {
  color: var(--primary);
}

@media (min-width: 993px) {

  .header-account__name,
  .header-account__chevron {
    display: inline-flex;
  }

  .header-account__toggle {
    padding: 0 8px 0 4px;
    gap: 6px;
  }
}

.header__cart {
  position: relative;
  width: 35px;
  height: 35px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  color: #8b5c47;
}

.header__cart svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

.header__cart.is-active {
  color: #3a2820;
}

.header__cart-badge {
  position: absolute;
  top: -2px;
  right: -2px;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: #8b5c47;
  color: #fff;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 500;
  line-height: 18px;
  text-align: center;
}

.header__book-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  padding: 0 18px;
  border: none;
  border-radius: 17.5px;
  background: #8b5c47;
  color: #ffffff;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  flex-shrink: 0;
  cursor: pointer;
  transition: background 0.2s;
}

.header__book-btn:hover {
  background: #7a5040;
}

.header__menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: none;
  border-radius: 10px;
  background: transparent;
  cursor: pointer;
  flex-shrink: 0;
}

.header__menu-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text-dark);
  margin: 3px 0;
  border-radius: 1px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.header__menu-toggle.is-active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}

.header__menu-toggle.is-active span:nth-child(2) {
  opacity: 0;
}

.header__menu-toggle.is-active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

body.nav-open {
  overflow: hidden;
}

body.nav-open::before {
  content: '';
  position: fixed;
  inset: 0;
  background: rgba(58, 40, 32, 0.28);
  z-index: 90;
}

body.nav-open .header {
  z-index: 100;
}

/* ========== HERO ========== */
.hero {
  position: relative;
  width: 100%;
  height: 572px;
  overflow: hidden;
  background: #c09e7f;
  margin-top: 0;
}

.hero__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.65s ease, visibility 0.65s ease;
  pointer-events: none;
  background: #c09e7f;
}

.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-color: #c4a882;
  background-image: url('../uploads/hero-backdrop.png');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  pointer-events: none;
}

.hero__slide--banner .hero__backdrop {
  opacity: 0;
}

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

.hero__dots {
  position: absolute;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 8px;
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  padding: 0;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.hero__dot.is-active {
  background: var(--white);
  transform: scale(1.15);
}

.hero__visual {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(52%, 700px);
  z-index: 1;
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  pointer-events: none;
}

.hero__visual--banner {
  left: 0;
  width: 100%;
  max-width: none;
  align-items: stretch;
}

.hero__visual--banner .hero__model {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 78% 18%;
}

.hero__visual--model {
  left: 0;
  width: 100%;
  max-width: none;
  align-items: flex-end;
  justify-content: center;
  padding-left: clamp(320px, 38vw, 520px);
  padding-right: clamp(72px, 11vw, 180px);
  background: transparent;
}

.hero__visual--model .hero__model {
  width: auto;
  height: 100%;
  max-width: min(44vw, 520px);
  object-fit: contain;
  object-position: center bottom;
}

.hero__model {
  display: block;
  height: 100%;
  width: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center top;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: 93px 0 0 51px;
  max-width: 480px;
  margin-left: max(20px, calc((100% - 1400px) / 2 + 20px));
}

.hero__slide--model .hero__content {
  max-width: 620px;
}

.hero__slide--model .hero__subtitle {
  max-width: 600px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: 45px;
  font-weight: 700;
  line-height: 1.15;
  margin-bottom: 20px;
  color: var(--text-dark);
}

.hero__subtitle {
  font-family: var(--font-ui);
  font-size: 24px;
  font-weight: 400;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 28px;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero .btn--outline {
  background: var(--white);
  border: 1px solid var(--text-dark);
}

/* ========== SHOP BY CATEGORY ========== */
.shop-category {
  padding: 48px 0;
  background: var(--white);
}

.shop-category__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  text-align: center;
  margin-bottom: 40px;
  letter-spacing: 0.06em;
  color: var(--text-dark);
}

.shop-category__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  align-items: end;
  max-width: 1240px;
  margin: 0 auto;
}

.shop-category__item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-width: 0;
  transition: transform 0.2s;
}

.shop-category__item:hover {
  transform: translateY(-4px);
}

.shop-category__item.active span {
  color: var(--primary);
}

.shop-category__item img {
  width: 100%;
  object-fit: contain;
  object-position: bottom center;
  margin: 0 auto;
}

.shop-category__item:nth-child(1) img {
  max-width: 200px;
  height: 280px;
}

.shop-category__item:nth-child(2) img {
  max-width: 253px;
  height: 306px;
}

.shop-category__item:nth-child(3) img {
  max-width: 218px;
  height: 290px;
}

.shop-category__item:nth-child(4) img {
  max-width: 242px;
  height: 282px;
}

.shop-category__item:nth-child(5) img {
  max-width: 200px;
  height: 300px;
}

.shop-category__item span {
  margin-top: 14px;
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.06em;
  white-space: nowrap;
  min-height: 24px;
  display: block;
  color: var(--text-dark);
}

/* ========== STYLE FINDER ========== */
.style-finder {
  background: var(--header-bg);
  min-height: 447px;
  padding: 56px 0 72px;
  margin: 0;
  overflow: visible;
}

.style-finder__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 48px;
  max-width: 1200px;
}

.style-finder__left {
  max-width: 300px;
  padding-left: 20px;
}

.style-finder__label {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: var(--text-dark);
  letter-spacing: 0.06em;
  margin-bottom: 10px;
}

.style-finder__title {
  font-family: var(--font-display);
  font-size: 45px;
  font-weight: 700;
  line-height: 1.12;
  color: var(--text-dark);
  margin-bottom: 18px;
}

.style-finder__desc {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1.5;
  max-width: 270px;
}

.style-finder__quiz {
  width: 464px;
  max-width: 100%;
  justify-self: end;
}

.style-finder__quiz.quiz--result {
  width: 100%;
  max-width: 520px;
}

.style-finder__quiz.quiz--result .quiz__options {
  display: block;
}

.style-finder__quiz.quiz--result .quiz__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  margin-bottom: 10px;
}

.quiz__progress {
  height: 10px;
  background: rgba(58, 40, 32, 0.12);
  border-radius: 5px;
  margin-bottom: 22px;
  overflow: hidden;
}

.quiz__progress-bar {
  height: 100%;
  width: 20%;
  background: var(--text-dark);
  border-radius: 5px;
  transition: width 0.3s;
}

.quiz__title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-dark);
  text-align: left;
  margin-bottom: 18px;
}

.quiz__options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.quiz__option {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 64px;
  padding: 10px 12px;
  background: #e3d2c6;
  border: none;
  border-radius: 8px;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-body);
  color: var(--text-dark);
  transition: background 0.2s, box-shadow 0.2s;
}

.quiz__option:hover,
.quiz__option.active {
  background: #d9c4b5;
  box-shadow: inset 0 0 0 1.5px var(--text-dark);
}

.quiz__icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  color: var(--text-dark);
  display: flex;
  align-items: center;
  justify-content: center;
}

.quiz__icon svg {
  width: 22px;
  height: 22px;
}

.quiz__text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.quiz__text strong {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.2;
}

.quiz__text small {
  font-size: 12px;
  font-weight: 400;
  color: rgba(58, 40, 32, 0.75);
  line-height: 1.2;
}

.quiz__result {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
}

.quiz__result-subtitle {
  font-size: 13px;
  line-height: 1.45;
  color: rgba(58, 40, 32, 0.75);
  margin: 0;
}

.quiz__result-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.quiz__result-tag {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  background: #fff;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dark);
  border: 1px solid rgba(58, 40, 32, 0.1);
}

.quiz__result-cards {
  display: grid;
  grid-template-columns: repeat(3, 128px);
  gap: 8px;
  width: fit-content;
  max-width: 100%;
}

.quiz__result-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 4px;
  min-height: 64px;
  padding: 8px 10px;
  background: #e3d2c6;
  border-radius: 6px;
  text-decoration: none;
  color: inherit;
  transition: background 0.2s, box-shadow 0.2s;
}

.quiz__result-card:hover {
  background: #d9c4b5;
  box-shadow: inset 0 0 0 1.5px var(--text-dark);
}

.quiz__result-card-label {
  font-size: 10px;
  font-weight: 500;
  color: rgba(58, 40, 32, 0.6);
  line-height: 1.2;
}

.quiz__result-card-value {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.15;
  word-break: break-word;
}

.quiz__result-actions {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  gap: 10px;
  width: 100%;
  margin-top: 4px;
}

.quiz__result-actions .btn {
  width: auto;
  min-width: 0;
  padding: 10px 18px;
  font-size: 14px;
}

.quiz__result h4 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 600;
  color: var(--color-text);
  margin: 0;
}

.quiz__result p {
  font-size: 15px;
  line-height: 1.5;
  color: rgba(58, 40, 32, 0.85);
  margin: 0;
}

.quiz__cta {
  align-self: flex-start;
}

.quiz__retry {
  align-self: flex-start;
}

.quiz__loading {
  font-size: 15px;
  color: rgba(58, 40, 32, 0.75);
  margin: 0;
}

.quiz__result--error p {
  color: #8b3a3a;
}

/* ========== COLLECTIONS ========== */
.collections {
  padding: 140px 0 56px;
  background: var(--bg-cream);
  overflow: visible;
}

.collections__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
  overflow: visible;
}

.collection-card {
  position: relative;
  height: 184px;
  border-radius: 10px;
  overflow: visible;
}

.collection-card__bg {
  position: absolute;
  inset: 0;
  border-radius: 10px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.collection-card--new .collection-card__bg,
.collection-card--best .collection-card__bg,
.collection-card--picked .collection-card__bg {
  background-color: transparent;
}

.collection-card__model {
  position: absolute;
  right: 4px;
  bottom: 0;
  width: auto;
  max-width: none;
  object-fit: contain;
  object-position: bottom center;
  z-index: 4;
  filter: drop-shadow(0 3px 6px rgba(0, 0, 0, 0.12));
  pointer-events: none;
}

.collection-card--new .collection-card__model {
  width: 200px;
  height: 300px;
}

.collection-card--best .collection-card__model {
  width: 217px;
  height: 268px;
}

.collection-card--picked .collection-card__model {
  width: 217px;
  height: 305px;
}

.collection-card__content {
  position: relative;
  z-index: 3;
  padding: 22px 20px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  color: var(--text-dark);
  width: 58%;
}

.collection-card__content h3 {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 6px;
  letter-spacing: 0.02em;
}

.collection-card__content p {
  font-family: var(--font-display);
  font-size: 16px;
  font-weight: 500;
  line-height: 1.3;
  margin-bottom: 14px;
}

.collection-card__shop {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--white);
  color: var(--text-accent);
  padding: 6px 16px;
  border-radius: 8px;
  font-size: 14px;
  width: fit-content;
  border: 1px solid var(--text-accent);
}

.collection-card__shop:hover {
  background: #fafafa;
}

/* ========== CUSTOM STITCHING ========== */
.custom-stitch {
  background: var(--bg-cream);
  padding: 0 0 50px;
  overflow: hidden;
}

.custom-stitch__wrap {
  position: relative;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  min-height: 419px;
}

.custom-stitch__banner-zone {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 299px;
  z-index: 1;
}

.custom-stitch__bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.custom-stitch__label {
  position: absolute;
  top: 28px;
  left: 25.35%;
  width: 20.35%;
  text-align: center;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: #3a2820;
  letter-spacing: 0;
  line-height: 27px;
  text-transform: uppercase;
  white-space: nowrap;
  z-index: 3;
  margin: 0;
}

.custom-stitch__inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(200px, 314px) minmax(260px, 1fr);
  align-items: end;
  gap: 20px;
  min-height: 419px;
  max-width: 1440px;
  padding: 0 45px;
}

.custom-stitch__panel {
  width: 100%;
  max-width: 100%;
  height: 176px;
  background: #f5e8df;
  border-radius: 10px;
  padding: 19px 16px;
  margin-bottom: 39px;
  display: flex;
  align-items: center;
}

.custom-stitch__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  width: 100%;
}

.custom-stitch__step {
  text-align: center;
  min-width: 0;
}

.custom-stitch__step-icon {
  width: 82px;
  height: 82px;
  background: #edd5c5;
  border-radius: 50%;
  margin: 0 auto 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #8b5c47;
}

.custom-stitch__step-icon img {
  width: 44px;
  height: 44px;
  object-fit: contain;
  display: block;
  image-rendering: -webkit-optimize-contrast;
  image-rendering: crisp-edges;
}

.custom-stitch__step h4 {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 4px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.custom-stitch__step p {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  line-height: 1.3;
  color: var(--text-dark);
}

.custom-stitch__model {
  width: 314px;
  height: 419px;
  max-width: 100%;
  object-fit: contain;
  object-position: bottom center;
  justify-self: center;
  align-self: end;
  margin-bottom: -5px;
  z-index: 4;
}

.custom-stitch__copy {
  align-self: start;
  padding-top: 157px;
  padding-left: 0;
}

.custom-stitch__copy h2 {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 400;
  color: var(--text-green);
  line-height: 1.35;
  margin-bottom: 30px;
  max-width: 295px;
}

.custom-stitch__copy p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-green);
  margin-bottom: 33px;
  max-width: 290px;
  line-height: 1.45;
}

.custom-stitch__btn {
  width: 200px;
  height: 45px;
  border-radius: 10px;
  padding: 0;
  font-size: 16px;
  font-weight: 500;
}

/* ========== GLOBAL FABRICS ========== */
.global-fabrics {
  padding: 50px 0 30px;
  text-align: center;
  background: var(--bg-cream);
}

.global-fabrics__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: var(--text-green);
  margin-bottom: 36px;
  letter-spacing: 0.04em;
}

.global-fabrics__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  max-width: 1240px;
  margin: 0 auto;
}

.fabric-swatch img {
  width: 185px;
  height: 185px;
  max-width: 100%;
  margin: 0 auto 12px;
  border-radius: 10px;
  object-fit: cover;
}

.fabric-swatch h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: var(--text-green);
  margin-bottom: 4px;
  letter-spacing: 0;
  text-transform: uppercase;
}

.fabric-swatch p {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 400;
  color: var(--text-green);
  line-height: 1.3;
}

/* ========== NEWSLETTER ========== */
.newsletter {
  padding: 20px 0 30px;
  background: var(--bg-cream);
}

.newsletter__banner {
  background: var(--header-bg);
  border-radius: 20px;
  height: 150px;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.newsletter__text h2 {
  font-family: var(--font-ui);
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 6px;
  letter-spacing: 0.04em;
}

.newsletter__text p {
  font-size: 16px;
  color: var(--text-dark);
}

.newsletter__form {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.newsletter__input {
  width: 449px;
  max-width: 42vw;
  height: 41px;
  border: 1px solid rgba(139, 92, 71, 0.5);
  border-radius: 10px;
  padding: 0 16px;
  font-family: var(--font-body);
  font-size: 14px;
  background: var(--bg-cream);
  outline: none;
  box-sizing: border-box;
}

.newsletter__input:focus {
  border-color: var(--primary);
}

.newsletter__submit {
  height: 41px;
  min-width: 103px;
  background: var(--text-dark);
  color: var(--white);
  border: 1px solid var(--white);
  border-radius: 10px;
  padding: 0 20px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  flex-shrink: 0;
  box-sizing: border-box;
}

.newsletter__submit:hover {
  background: #2a1e18;
}

.newsletter__message {
  margin: 10px 0 0;
  font-size: 14px;
  text-align: center;
}

.newsletter__message--success {
  color: #3d6b4f;
}

.newsletter__message--error {
  color: #8b3a3a;
}

/* ========== BOOK A CALL ========== */
.book-call-page {
  background: var(--bg-cream);
}

.book-call-page main {
  display: flex;
  align-items: center;
  justify-content: center;
}

.book-call {
  padding: 56px 0 64px;
  background: var(--bg-cream);
  width: 100%;
}

.book-call--page {
  padding: clamp(32px, 6vw, 56px) 0 clamp(40px, 8vw, 72px);
  min-height: calc(100vh - 88px);
}

.book-call__inner {
  max-width: 860px;
  margin: 0 auto;
}

.book-call__header {
  margin-bottom: 8px;
  padding-bottom: 24px;
  border-bottom: 1px solid #dfc8bb;
  text-align: center;
}

.book-call__label {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.12em;
  color: var(--text-accent);
  margin-bottom: 10px;
}

.book-call__title {
  font-family: var(--font-display);
  font-size: clamp(24px, 4.5vw, 34px);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-dark);
  max-width: 22ch;
  margin: 0 auto;
}

.book-call__form {
  background: var(--header-bg);
  border: 1px solid #d4b8a8;
  border-radius: 24px;
  padding: clamp(24px, 4vw, 36px);
  box-shadow: 0 8px 32px rgba(58, 40, 32, 0.08);
}

.book-call__section {
  padding-top: 24px;
}

.book-call__section:first-of-type {
  padding-top: 4px;
}

.book-call__section-title {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: rgba(58, 40, 32, 0.55);
  margin-bottom: 14px;
}

.book-call__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
}

.book-call__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-width: 0;
}

.book-call__field--full {
  grid-column: 1 / -1;
}

.book-call__field label {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
}

.book-call__field input,
.book-call__field select,
.book-call__field textarea {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid #dfc8bb;
  border-radius: 12px;
  background: var(--white);
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 16px;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.book-call__field input::placeholder,
.book-call__field textarea::placeholder {
  color: rgba(58, 40, 32, 0.42);
}

.book-call__field select {
  appearance: none;
  background-color: var(--white);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%238b5c47' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
  cursor: pointer;
}

.book-call__field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.5;
}

.book-call__field input:focus,
.book-call__field select:focus,
.book-call__field textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 92, 71, 0.12);
  background: var(--white);
}

.book-call__actions {
  margin-top: 28px;
  padding-top: 24px;
  border-top: 1px solid #dfc8bb;
}

.book-call__actions .btn--primary {
  width: 100%;
  min-height: 48px;
  font-size: 16px;
}

.book-call__message {
  margin-top: 14px;
  font-size: 14px;
  text-align: center;
}

.book-call__message--success {
  color: #3d6b4f;
}

.book-call__message--error {
  color: #8b3a3a;
}

/* ========== CUSTOMIZE FORM ========== */
.customize-page {
  background: var(--bg-cream);
}

.customize-page main {
  padding: 32px 0 56px;
}

.customize__inner {
  max-width: 860px;
  margin: 0 auto;
}

.customize__form {
  background: #f5e8df;
  border-radius: 16px;
  padding: 36px 32px 32px;
  box-shadow: 0 10px 28px rgba(58, 40, 32, 0.06);
}

.customize__header {
  text-align: center;
  margin-bottom: 28px;
}

.customize__title {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 36px);
  font-weight: 700;
  line-height: 1.2;
  color: var(--text-dark);
}

.customize__subtitle {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 16px;
  color: #8b5c47;
}

.customize__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
}

.customize__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.customize__field--full {
  grid-column: 1 / -1;
}

.customize__field label {
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 600;
  color: #8b5c47;
}

.customize__field input[type="text"],
.customize__field input[type="email"],
.customize__field input[type="tel"],
.customize__field input[type="date"],
.customize__field select,
.customize__field textarea {
  width: 100%;
  padding: 0 16px;
  border: none;
  border-radius: 10px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
}

.customize__field input[type="text"],
.customize__field input[type="email"],
.customize__field input[type="tel"],
.customize__field input[type="date"],
.customize__field select {
  height: 48px;
}

.customize__field textarea {
  min-height: 120px;
  padding: 12px 16px;
  resize: vertical;
}

.customize__field input::placeholder,
.customize__field textarea::placeholder {
  color: #b0a59e;
}

.customize__field input:focus,
.customize__field select:focus,
.customize__field textarea:focus {
  outline: 2px solid rgba(139, 92, 71, 0.35);
  outline-offset: 1px;
}

.customize__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath fill='%238b5c47' d='M1 1l4 4 4-4'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
}

.customize__field input[type="date"] {
  color-scheme: light;
  position: relative;
  min-height: 48px;
  line-height: normal;
  padding-right: 12px;
}

.customize__field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 1;
  width: 20px;
  height: 20px;
  margin-right: 2px;
}

.customize__schedule {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px 18px;
  margin-top: 16px;
}

.customize__field select:disabled {
  opacity: 0.75;
  cursor: not-allowed;
  background-color: #f7f2ee;
}

.customize__upload {
  position: relative;
  display: flex;
  align-items: center;
  height: 48px;
  border-radius: 10px;
  background: #fff;
  overflow: hidden;
}

.customize__upload input[type="file"] {
  position: absolute;
  inset: 0;
  opacity: 0;
  cursor: pointer;
  z-index: 2;
}

.customize__upload-trigger {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  color: #8b5c47;
}

.customize__upload-trigger svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.customize__file-names {
  margin: 8px 0 0;
  font-size: 13px;
  color: var(--text-muted);
}

.customize__services {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.customize__chip {
  display: inline-flex;
  cursor: pointer;
}

.customize__chip input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.customize__chip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid #8b5c47;
  border-radius: 999px;
  background: #fff;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 500;
  color: #8b5c47;
  transition: background 0.2s ease, color 0.2s ease;
}

.customize__chip input:checked+span {
  background: #8b5c47;
  color: #fff;
}

.customize__other-wrap {
  margin-top: 14px;
}

.customize__other-wrap[hidden] {
  display: none;
}

.customize__actions {
  margin-top: 28px;
}

.customize__submit {
  width: 100%;
  min-height: 52px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
}

.customize__message {
  margin-top: 16px;
  font-size: 14px;
  text-align: center;
}

.customize__message--success {
  color: #3d6b4f;
}

.customize__message--error {
  color: #8b3a3a;
}

@media (max-width: 640px) {
  .customize__form {
    padding: 28px 18px 24px;
  }

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

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

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

/* ========== BLOG CARDS ========== */
.blog-cards {
  padding: 20px 0 50px;
  background: var(--bg-cream);
}

.blog-cards__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
}

.blog-card {
  background: var(--header-bg);
  border-radius: 10px;
  padding: 10px;
  overflow: hidden;
}

.blog-card>img {
  width: 100%;
  height: 271px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.blog-card__body {
  padding: 14px 6px 8px;
}

.blog-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
  gap: 8px;
}

.blog-card__tag,
.blog-card__date {
  display: inline-flex;
  align-items: center;
  min-height: 19px;
  padding: 2px 10px;
  border-radius: 10px;
  background: #edd5c5;
  font-size: 10px;
  font-weight: 500;
  color: var(--text-dark);
}

.blog-card__body p {
  font-size: 14px;
  font-weight: 500;
  color: #000;
  line-height: 1.35;
}

/* ========== FOOTER ========== */
.footer {
  background: var(--bg-cream);
  color: var(--text-dark);
  --footer-col-gap: 56px;
}

.footer__main {
  background: #f5e8df;
  padding: 32px 0 20px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 270px var(--footer-col-gap) 447px 31px 447px 1fr;
  grid-template-rows: auto auto auto auto;
  column-gap: 0;
  row-gap: 0;
  align-items: start;
  padding-bottom: 0;
  width: 100%;
  max-width: 1360px;
  margin: 0 auto;
}

.footer__brand-head {
  grid-column: 1;
  grid-row: 1;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 0;
}

.footer__brand-head img {
  width: 50px;
  height: 50px;
  margin-bottom: 0;
  flex-shrink: 0;
}

.footer__brand-name {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
  color: var(--text-dark);
}

.footer__brand-tagline {
  grid-column: 1;
  grid-row: 2;
  font-family: var(--font-display);
  font-size: 12px;
  color: var(--text-green);
  line-height: 1.2;
  margin: 2px 0 8px 62px;
  padding: 0;
}

.footer__brand-desc {
  grid-column: 1;
  grid-row: 3;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
  max-width: 270px;
  color: var(--text-dark);
  margin: 0;
}

.footer__social {
  grid-column: 1;
  grid-row: 4;
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer__nav {
  grid-column: 3 / 6;
  grid-row: 1 / span 4;
  display: flex;
  align-items: flex-start;
  gap: 40px;
  flex-shrink: 0;
  margin-left: 0;
  padding-top: 8px;
  align-self: start;
}

.footer__col {
  flex: 0 0 auto;
  min-width: 108px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer__social a {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: transparent;
  border: 1.5px solid #8b5c47;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s;
}

.footer__social a:hover {
  background: rgba(139, 92, 71, 0.08);
  border-color: #7a5040;
}

.footer__social a:hover svg {
  fill: #7a5040;
}

.footer__social svg {
  width: 20px;
  height: 20px;
  fill: #8b5c47;
  transition: fill 0.2s;
}

.footer__col h4 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  color: #3a2820;
  line-height: 1.2;
  margin: 0 0 8px;
}

.footer__col h4::after {
  content: '';
  display: block;
  width: 100%;
  max-width: 110px;
  height: 1px;
  background: #3a2820;
  opacity: 0.25;
  margin-top: 6px;
}

.footer__col ul li {
  margin-bottom: 4px;
}

.footer__col ul a {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  color: #8b5c47;
  opacity: 1;
  transition: opacity 0.2s;
}

.footer__col ul a:hover {
  opacity: 0.75;
}

.footer__cta-row {
  display: grid;
  grid-template-columns: 270px var(--footer-col-gap) 447px 31px 447px 1fr;
  align-items: end;
  width: 100%;
  max-width: 1360px;
  margin: 8px auto 0;
}

.footer__cta-row>.footer__offer-box {
  grid-column: 1;
}

.footer__cta-row>.footer__partner-box:nth-child(2) {
  grid-column: 3;
  margin-top: 0;
}

.footer__cta-row>.footer__partner-box:nth-child(3) {
  grid-column: 5;
  margin-top: 0;
}

.footer__offer-box,
.footer__partner-box {
  background: #edd5c5;
  border-radius: 10px;
  box-sizing: border-box;
}

.footer__offer-box {
  width: 100%;
  max-width: 270px;
  min-height: 98px;
  height: auto;
  padding: 10px 12px 8px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.footer__partner-box {
  width: 100%;
  max-width: 447px;
  min-height: 122px;
  height: auto;
  padding: 14px 18px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-left: 0;
}

.footer__partner-box>div:last-child {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
  height: 100%;
}

.footer__partner-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 128px;
  height: 31px;
  padding: 0 14px;
  border-radius: 10px;
  background: #8b5c47;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
  align-self: flex-end;
  margin-top: auto;
}

.footer__partner-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.footer__partner-icon svg {
  width: 20px;
  height: 20px;
  fill: var(--primary);
}

.footer__offer-box h5,
.footer__partner-box h5 {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
  color: var(--text-dark);
}

.footer__offer-box h5 {
  margin-bottom: 2px;
  line-height: 1.2;
  width: 100%;
}

.footer__offer-box p,
.footer__partner-box p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
  margin-bottom: 8px;
  color: var(--text-dark);
}

.footer__offer-box p {
  margin-bottom: 0;
  line-height: 1.3;
  width: 100%;
  flex: 1;
}

.footer__partner-box p {
  margin-bottom: 0;
  flex: 1;
}

.footer__claim-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  min-width: 72px;
  height: 31px;
  padding: 0;
  border-radius: 10px;
  background: #8b5c47;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: background 0.2s;
  flex-shrink: 0;
}

.footer__offer-box .footer__claim-btn {
  margin-top: auto;
  align-self: center;
}

.footer__claim-btn:hover {
  background: var(--primary-hover);
}

.footer__partner-btn:hover {
  background: var(--primary-hover);
}

/* Align Shop column + boutique CTA with Figma */
@media (min-width: 1441px) {
  .footer__nav {
    display: grid;
    grid-template-columns: auto auto auto;
    column-gap: 64px;
    gap: 64px;
    width: max-content;
  }

  .footer__nav .footer__col:first-child {
    margin-left: 32px;
  }

  .footer__nav .footer__col:nth-child(2),
  .footer__nav .footer__col:nth-child(3) {
    margin-left: 0;
  }

  .footer__cta-row>.footer__partner-box:nth-child(2) {
    margin-left: 32px;
    width: calc(100% - 32px);
    max-width: 415px;
  }
}

.footer__bottom {
  width: 100%;
  min-height: 45px;
  height: 45px;
  padding: 0;
  box-sizing: border-box;
  background: #3a2820;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer__bottom p {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0;
  margin: 0;
  color: #ffffff;
}

/* ========== ABOUT PAGE (FIGMA 2628-364) ========== */
.about-page {
  background: var(--bg-cream);
}

.about-main {
  background: var(--bg-cream);
}

.about-content {
  width: 100%;
  max-width: 1204px;
  margin: 0 auto;
  padding: 0 clamp(20px, 8.2vw, 118px);
}

.about-section__eyebrow {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: #8a7b72;
  margin-bottom: 8px;
}

.about-section__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 36px);
  font-weight: 500;
  line-height: 1.2;
  color: var(--text-dark);
  margin-bottom: 24px;
}

.about-content {
  width: 100%;
  max-width: 1204px;
  margin: 0 auto;
  padding: 0 clamp(20px, 8.2vw, 118px);
}

.about-content--center {
  text-align: center;
}

/* Hero */
.about-hero {
  padding: 40px 0 64px;
}

.about-hero>.about-content {
  max-width: var(--container);
  padding: 0 20px;
}

.about-hero__eyebrow {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  font-style: normal;
  color: var(--text-dark);
  background: #fff6ec;
  border: 1px solid #e8dfd6;
  border-radius: 20px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.about-hero__title {
  font-family: var(--font-display);
  font-size: clamp(30px, 3.8vw, 44px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-dark);
  max-width: 712px;
  margin: 0 auto 16px;
}

.about-hero__lead {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.45;
  color: #3a2820;
  max-width: 712px;
  margin: 0 auto 32px;
}

.about-hero__banner {
  margin: 0 auto 20px;
  width: 660px;
  max-width: 100%;
}

.about-hero__banner img {
  width: 660px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 660 / 396;
  object-fit: cover;
  border-radius: 25px;
  display: block;
  margin: 0 auto;
}

.about-hero__badges {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 660px;
  max-width: 100%;
  margin: 0 auto;
  padding-bottom: 18px;
  list-style: none;
}

.about-hero__rule {
  position: relative;
  width: min(1218px, 100%);
  height: 1px;
  margin: 0 auto;
  background: rgba(196, 144, 122, 0.25);
}

.about-hero__badges li {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  min-height: 28px;
  padding: 5px 16px;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 500;
  color: var(--text-dark);
  background: #fff6ec;
  border: 1px solid #e8dfd6;
  border-radius: 20px;
  white-space: nowrap;
}

.about-hero__badges li::after {
  display: none;
}

/* Story */
.about-story {
  padding: 0 0 64px;
}

.about-story__label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  margin-bottom: 12px;
}

.about-story__heading {
  font-family: var(--font-display);
  font-size: clamp(26px, 2.8vw, 32px);
  font-weight: 500;
  line-height: 1.25;
  color: var(--text-dark);
  max-width: 596px;
  margin-bottom: 20px;
}

.about-story__text {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  color: #3a2820;
  max-width: 596px;
  margin-bottom: 28px;
}

.about-story__quote {
  width: 100%;
  max-width: 596px;
  min-height: 150px;
  padding: 28px 32px 24px 28px;
  border-radius: 0 12px 12px 0;
  border-left: 4px solid #3a2820;
  background: #f5e8df;
  display: flex;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
}

.about-story__quote p {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  font-style: normal;
  line-height: 1.45;
  color: #3a2820;
  max-width: 527px;
  margin-bottom: 14px;
}

.about-story__quote cite {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  font-style: normal;
  color: #8b5c47;
}

/* Journey */
.about-journey {
  padding: 0 0 80px;
}

.about-journey .about-content {
  max-width: 1360px;
  padding-left: clamp(20px, 3vw, 48px);
  padding-right: clamp(20px, 3vw, 48px);
}

.about-journey__inner {
  display: grid;
  grid-template-columns: minmax(0, 721px) 415px;
  grid-template-rows: auto auto;
  column-gap: 48px;
  row-gap: 32px;
  align-items: start;
  justify-content: space-between;
}

.about-journey__intro {
  grid-column: 1;
  grid-row: 1;
  max-width: 721px;
}

.about-journey__intro .about-section__eyebrow {
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 400;
  font-style: italic;
  color: #8a7b72;
  margin-bottom: 8px;
}

.about-journey__intro .about-section__title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 0;
}

.about-timeline {
  grid-column: 1;
  grid-row: 2;
  list-style: none;
  position: relative;
  padding-left: 0;
  max-width: 721px;
  width: 100%;
  margin: 0;
}

.about-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 650px;
  width: 3px;
  background: rgba(196, 144, 122, 0.5);
  border-radius: 5px;
  z-index: 0;
}

.about-timeline li {
  position: relative;
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  column-gap: 10px;
  align-items: start;
  padding: 0 0 40px 0;
  z-index: 1;
}

.about-timeline li:last-child {
  padding-bottom: 0;
}

.about-timeline li::before {
  content: '';
  grid-column: 1;
  grid-row: 1;
  position: relative;
  top: 7px;
  left: auto;
  width: 10px;
  height: 10px;
  margin-left: auto;
  margin-right: 0;
  border-radius: 50%;
  background: rgba(139, 92, 71, 0.5);
  z-index: 2;
}

.about-timeline__year {
  grid-column: 2;
  grid-row: 1;
  display: block;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 2px;
}

.about-timeline h3 {
  grid-column: 2;
  grid-row: 2;
  display: block;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  color: #8b5c47;
  margin-bottom: 4px;
}

.about-timeline p {
  grid-column: 2;
  grid-row: 3;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
  color: #c4907a;
  margin-top: 0;
  width: 706px;
  max-width: 100%;
}

.about-journey__media {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  width: 415px;
  max-width: 100%;
  align-self: start;
  justify-self: end;
}

.about-journey__media img {
  width: 415px;
  max-width: 100%;
  height: 573px;
  object-fit: cover;
  border-radius: 20px;
  display: block;
}

/* Founder */
.about-founder {
  padding: 0 0 80px;
}

.about-founder__inner {
  max-width: 921px;
  margin-left: auto;
  margin-right: auto;
}

.about-founder__heading {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: #2a2828;
  text-align: left;
  margin-bottom: 24px;
}

.about-founder__profile {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.about-founder__card {
  width: 294px;
  height: 360px;
  margin: 0 auto 20px;
  border-radius: 10px;
  overflow: hidden;
  background: #f0e4da;
  display: flex;
  flex-direction: column;
}

.about-founder__photo {
  flex: 1;
  width: 100%;
  min-height: 0;
  background: #d9d9d9;
}

.about-founder__badge {
  flex-shrink: 0;
  padding: 12px 16px 14px;
  background: #f0e4da;
}

.about-founder__badge h3 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.08em;
  color: #2a2828;
  margin-bottom: 2px;
}

.about-founder__badge p {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  color: #8a7b72;
  margin: 0;
}

.about-founder__bio {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 1.55;
  color: #c4907a;
  max-width: 520px;
  margin: 0 auto;
  text-align: center;
}

/* Stats */
.about-stats {
  padding: 0 0 64px;
}

.about-stats .about-section__eyebrow {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  font-style: normal;
  color: #3a2820;
  margin-bottom: 6px;
}

.about-stats .about-section__title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 500;
  color: #3a2820;
  margin-bottom: 24px;
}

.about-stats__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
  max-width: 1054px;
}

.about-stats__card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  min-height: 88px;
  padding: 18px 22px;
  border-radius: 10px;
  background: #f5e6e0;
}

.about-stats__card strong {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  color: #000000;
  line-height: normal;
  letter-spacing: 0;
  margin-bottom: 4px;
}

.about-stats__card span {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
  color: #000000;
}

.about-stats__card:nth-child(1),
.about-stats__card:nth-child(2),
.about-stats__card:nth-child(3) {
  grid-column: span 2;
}

.about-stats__card:nth-child(4) {
  grid-column: 2 / span 2;
}

.about-stats__card:nth-child(5) {
  grid-column: 4 / span 2;
}

/* Highlights */
.about-highlights {
  padding: 0 0 56px;
}

.about-highlights>.about-content {
  max-width: var(--container);
  padding: 0 20px;
  margin: 0 auto;
}

.about-highlights__grid {
  display: grid;
  grid-template-columns: repeat(3, 401px);
  gap: 20px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.about-highlight-card {
  width: 401px;
  max-width: 100%;
  min-height: 387px;
  background: #f5e8df;
  border-radius: 10px;
  padding: 11px 11px 16px;
  display: flex;
  flex-direction: column;
}

.about-highlight-card>img {
  width: 380px;
  max-width: 100%;
  height: 271px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}

.about-highlight-card__body {
  padding: 12px 0 0;
  flex: 1;
}

.about-highlight-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin-bottom: 8px;
}

.about-highlight-card__meta span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 19px;
  padding: 2px 10px;
  border-radius: 10px;
  background: #edd5c5;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
  color: #000000;
}

.about-highlight-card__meta time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 19px;
  min-width: 55px;
  padding: 2px 10px;
  border-radius: 10px;
  background: #edd5c5;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
  color: #000000;
  white-space: nowrap;
}

.about-highlight-card__body p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0;
  color: #000000;
  max-width: 369px;
  width: 100%;
}

@media (max-width: 1100px) {
  .about-journey__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    gap: 28px;
  }

  .about-journey__intro {
    max-width: 100%;
  }

  .about-journey__intro .about-section__title {
    font-size: clamp(28px, 5vw, 36px);
  }

  .about-timeline {
    grid-column: 1;
    grid-row: 2;
    max-width: 100%;
  }

  .about-timeline::before {
    height: auto;
    top: 0;
    bottom: 0;
  }

  .about-journey__media {
    grid-column: 1;
    grid-row: 3;
    width: 100%;
    justify-self: center;
    max-width: 415px;
  }

  .about-journey__media img {
    height: auto;
    aspect-ratio: 415 / 573;
  }

  .about-timeline p {
    font-size: 16px;
  }

  .about-hero__badges {
    width: 100%;
    gap: 8px;
    padding-bottom: 14px;
  }

  .about-hero__badges li {
    min-width: auto;
    flex: 1 1 calc(50% - 8px);
    white-space: normal;
    text-align: center;
  }

  .about-stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-stats__card:nth-child(1),
  .about-stats__card:nth-child(2),
  .about-stats__card:nth-child(3),
  .about-stats__card:nth-child(4),
  .about-stats__card:nth-child(5) {
    grid-column: auto;
  }

  .about-stats__card:nth-child(5):last-child:nth-child(odd) {
    grid-column: 1 / -1;
    max-width: 50%;
    justify-self: center;
  }

  .about-highlights__grid {
    grid-template-columns: repeat(2, minmax(0, 401px));
    width: 100%;
    max-width: 100%;
  }

  .about-highlight-card {
    width: 100%;
  }

  .about-highlight-card>img {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .about-hero {
    padding: 28px 0 40px;
  }

  .about-hero__badges li {
    flex: 1 1 100%;
  }

  .about-highlights__grid {
    grid-template-columns: 1fr;
  }

  .about-stats__grid {
    grid-template-columns: 1fr;
  }

  .about-stats__card:nth-child(5):last-child:nth-child(odd) {
    max-width: 100%;
  }

  .about-founder__inner {
    max-width: 100%;
  }
}

/* ========== WOMEN CATEGORY PAGE ========== */
.women-main {
  padding: 28px 0 48px;
  background: var(--bg-cream);
}

.women-main__container {
  max-width: var(--container);
}

.women-main__content {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.women-filters {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
  flex-wrap: wrap;
}

.women-filter-pill {
  position: relative;
  display: block;
  min-width: 148px;
}

.women-filter-pill::after {
  content: '';
  position: absolute;
  right: 18px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--text-dark);
  border-bottom: 1.5px solid var(--text-dark);
  transform: translateY(-65%) rotate(45deg);
  pointer-events: none;
}

.women-filter-pill select.women-filter-native {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.women-filter-trigger {
  appearance: none;
  width: 100%;
  height: 42px;
  border: 1px solid #e3d2c6;
  border-radius: 24px;
  background: #faf6f2;
  padding: 0 40px 0 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-dark);
  cursor: pointer;
  outline: none;
  text-align: left;
}

.women-filter-trigger:focus-visible,
.women-filter-trigger[aria-expanded="true"] {
  border-color: var(--primary);
}

.women-filter-trigger:focus-visible {
  box-shadow: 0 0 0 2px rgba(139, 92, 71, 0.2);
}

.women-filter-menu {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 100%;
  z-index: 30;
  margin: 0;
  padding: 6px 0;
  list-style: none;
  background: #faf6f2;
  border: 1px solid #e3d2c6;
  border-radius: 12px;
  box-shadow: 0 8px 24px rgba(58, 40, 32, 0.1);
}

.women-filter-menu li {
  padding: 10px 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.women-filter-menu li.is-selected {
  background: var(--header-bg);
  color: var(--primary);
  font-weight: 500;
}

.women-filter-menu li:hover {
  background: #edd5c5;
  color: var(--text-dark);
}

.women-filter-menu li.is-selected:hover {
  background: #edd5c5;
  color: var(--text-dark);
  font-weight: 500;
}

.women-category-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 75px;
  min-height: 30px;
  padding: 4px 14px;
  margin-bottom: 20px;
  background: #fff6ec;
  border: 1px solid #e8f0d9;
  border-radius: 20px;
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--text-dark);
}

.women-category-tag[hidden] {
  display: none;
}

.women-grid {
  display: grid;
  grid-template-columns: repeat(4, 250px);
  gap: 24px;
  justify-content: center;
}

.women-card {
  width: 250px;
  height: 400px;
  background: var(--white);
  border-radius: 16px;
  padding: 10px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.women-card__media {
  position: relative;
  display: block;
  width: 230px;
  height: 300px;
  flex-shrink: 0;
  margin: 0 auto;
  border-radius: 8px;
  overflow: hidden;
  background-color: var(--women-media-bg);
  background-image: url('../uploads/image_32.png');
  background-size: cover;
  background-position: center;
}

.women-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  border-radius: 8px;
}

.women-card__badge {
  position: absolute;
  top: 8px;
  left: 8px;
  padding: 3px 8px;
  border-radius: 8px;
  background: #edd5c5;
  color: #000;
  font-family: var(--font-body);
  font-size: 8px;
  font-weight: 600;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.women-card__body {
  flex: 1;
  padding: 10px 4px 0;
  min-height: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.women-card__type {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--text-dark);
  margin-bottom: 2px;
}

.women-card__type a {
  color: inherit;
  text-decoration: none;
}

.women-card__type a:hover {
  color: var(--primary);
}

.women-card__meta {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
  color: rgba(0, 0, 0, 0.5);
  margin-bottom: 6px;
}

.women-card__prices {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.women-card__price {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 600;
  line-height: 20px;
  color: var(--text-dark);
}

.women-card__original {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 600;
  line-height: 17px;
  color: rgba(0, 0, 0, 0.5);
  text-decoration: line-through;
}

.women-card__discount {
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 600;
  line-height: 13px;
  color: #c4907a;
  background: #f5e8df;
  padding: 3px 8px;
  border-radius: 10px;
}

.women-empty {
  text-align: center;
  padding: 48px 20px;
  color: var(--text-green);
  font-size: 16px;
}

.women-load-error {
  grid-column: 1 / -1;
  text-align: center;
  padding: 48px 20px;
  color: var(--text-muted);
  font-size: 15px;
}

.women-card--skeleton {
  pointer-events: none;
}

.women-skeleton {
  background: linear-gradient(90deg, #f0e8e2 25%, #faf6f2 50%, #f0e8e2 75%);
  background-size: 200% 100%;
  animation: women-skeleton-shimmer 1.2s ease-in-out infinite;
  border-radius: 8px;
}

.women-card--skeleton .women-card__media.women-skeleton {
  width: 230px;
  height: 300px;
  margin: 0 auto;
}

.women-skeleton--line {
  height: 14px;
  margin-bottom: 8px;
}

.women-skeleton--line-short {
  width: 70%;
}

.women-skeleton--line-price {
  width: 55%;
  height: 12px;
  margin-top: 4px;
}

@keyframes women-skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 1440px) {
  .global-fabrics__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .collections__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    max-width: 100%;
    gap: 14px;
  }

  .collections {
    padding: 80px 0 44px;
    overflow: hidden;
  }

  .collection-card {
    height: 168px;
    min-height: 168px;
    overflow: hidden;
  }

  .collection-card__model {
    max-height: 168px;
    max-width: 46%;
    height: 100%;
    right: 0;
  }

  .collection-card--new .collection-card__model,
  .collection-card--best .collection-card__model,
  .collection-card--picked .collection-card__model {
    width: auto;
    height: 100%;
    max-height: 168px;
  }

  .collection-card__content {
    width: 54%;
    padding: 16px 12px;
  }

  .collection-card__content h3 {
    font-size: 14px;
    margin-bottom: 4px;
  }

  .collection-card__content p {
    font-size: 13px;
    margin-bottom: 10px;
    line-height: 1.25;
  }

  .collection-card__shop {
    font-size: 13px;
    padding: 5px 12px;
  }

  .footer__inner {
    grid-template-columns: 270px var(--footer-col-gap) minmax(0, 447px) 31px minmax(0, 447px) 1fr;
  }

  .footer {
    --footer-col-gap: clamp(40px, 5vw, 56px);
  }

  .footer__cta-row {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: stretch;
    margin-top: 12px;
  }

  .footer__cta-row>.footer__partner-box:nth-child(2),
  .footer__cta-row>.footer__partner-box:nth-child(3) {
    margin-top: 0;
  }

  .footer__cta-row>.footer__offer-box,
  .footer__cta-row>.footer__partner-box:nth-child(2),
  .footer__cta-row>.footer__partner-box:nth-child(3) {
    grid-column: 1;
    width: 100%;
    max-width: 100%;
    min-height: 0;
  }

  .footer__partner-box {
    width: 100%;
    max-width: 100%;
  }

  .footer__offer-box {
    width: 100%;
    max-width: 100%;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    row-gap: 20px;
  }

  .footer__nav {
    gap: 36px;
  }

  .footer__nav .footer__col:first-child {
    margin-left: 0;
  }

  .footer__cta-row>.footer__partner-box:nth-child(2) {
    margin-left: 0;
  }

  .women-grid {
    grid-template-columns: repeat(3, 250px);
  }
}

/* Below large desktop: stacked custom stitching */
@media (max-width: 1440px) {
  .custom-stitch {
    padding: 28px 0 0;
    overflow: hidden;
  }

  .custom-stitch__wrap {
    display: grid;
    grid-template-areas:
      "title"
      "steps"
      "showcase"
      "copy";
    grid-template-columns: 1fr;
    min-height: 0;
    padding-bottom: 0;
  }

  .custom-stitch__wrap::before {
    content: 'CUSTOM STITCHING FOR YOU';
    grid-area: title;
    display: block;
    padding: 0 16px 12px;
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: 0.06em;
    line-height: 1.35;
    color: #3a2820;
    text-transform: uppercase;
    text-align: center;
  }

  .custom-stitch__inner {
    display: contents;
  }

  .custom-stitch__inner::before {
    display: none;
  }

  .custom-stitch__banner-zone {
    grid-area: showcase;
    position: relative;
    left: auto;
    right: auto;
    bottom: auto;
    height: clamp(180px, 48vw, 220px);
    z-index: 1;
    overflow: hidden;
  }

  .custom-stitch__bg {
    object-fit: cover;
    object-position: center top;
  }

  .custom-stitch__label {
    display: none;
  }

  .custom-stitch__panel {
    grid-area: steps;
    width: calc(100% - 32px);
    max-width: calc(100% - 32px);
    height: auto;
    margin: 0 16px 16px;
    padding: 16px 14px;
    background: #f5e8df;
    border-radius: 12px;
    overflow: visible;
  }

  .custom-stitch__steps {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 12px;
    width: 100%;
  }

  .custom-stitch__step-icon {
    width: 68px;
    height: 68px;
    margin-bottom: 6px;
  }

  .custom-stitch__step-icon img {
    width: 34px;
    height: 34px;
  }

  .custom-stitch__step h4 {
    font-size: 11px;
    margin-bottom: 3px;
  }

  .custom-stitch__step p {
    font-size: 9px;
    line-height: 1.3;
  }

  .custom-stitch__model {
    grid-area: showcase;
    justify-self: center;
    align-self: end;
    width: auto;
    max-width: min(240px, 68vw);
    height: auto;
    max-height: clamp(260px, 62vw, 320px);
    margin: 0 auto;
    z-index: 2;
    pointer-events: none;
  }

  .custom-stitch__copy {
    grid-area: copy;
    align-self: start;
    padding: 20px 16px 32px;
    text-align: center;
    width: 100%;
    max-width: none;
    background: var(--bg-cream);
  }

  .custom-stitch__copy h2 {
    font-size: 22px;
    margin-bottom: 10px;
    max-width: 100%;
    line-height: 1.3;
  }

  .custom-stitch__copy p {
    font-size: 15px;
    margin-bottom: 18px;
    max-width: 100%;
    line-height: 1.45;
  }

  .custom-stitch__btn {
    display: inline-flex;
    width: 100%;
    max-width: 240px;
    height: 44px;
    margin: 0 auto;
    font-size: 15px;
    border-radius: 10px;
  }
}

/* iPad / tablet: wider stacked section, 4 steps in one row */
@media (max-width: 1440px) and (min-width: 768px) {
  .custom-stitch__wrap::before {
    font-size: 20px;
    padding-bottom: 16px;
  }

  .custom-stitch__panel {
    max-width: min(860px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
    padding: 18px 16px;
  }

  .custom-stitch__steps {
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
  }

  .custom-stitch__step-icon {
    width: 72px;
    height: 72px;
  }

  .custom-stitch__step h4 {
    font-size: 12px;
  }

  .custom-stitch__banner-zone {
    height: clamp(240px, 26vw, 340px);
    max-width: min(860px, calc(100% - 48px));
    margin-left: auto;
    margin-right: auto;
    border-radius: 10px;
  }

  .custom-stitch__model {
    max-width: min(360px, 34vw);
    max-height: min(440px, 46vw);
  }

  .custom-stitch__copy {
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    padding: 28px 24px 44px;
  }

  .custom-stitch__copy h2 {
    font-size: clamp(24px, 2.8vw, 28px);
    margin-bottom: 12px;
  }

  .custom-stitch__copy p {
    font-size: 17px;
    margin-bottom: 24px;
  }

  .custom-stitch__btn {
    max-width: 280px;
    height: 46px;
    font-size: 16px;
  }
}

/* Tablet / mobile: Figma-style header */
@media (max-width: 1320px) {
  .header {
    padding: 12px 12px 0;
  }

  .header__inner {
    display: grid;
    grid-template-columns: 44px minmax(0, 1fr) auto;
    grid-template-areas:
      "menu logo actions"
      "strip strip strip";
    align-items: center;
    column-gap: 10px;
    row-gap: 0;
    height: auto;
    min-height: 72px;
    padding: 10px 14px 0;
    position: relative;
    z-index: 2;
  }

  .header__inner.is-menu-open {
    border-radius: 10px 10px 0 0;
  }

  .header__menu-toggle {
    grid-area: menu;
    display: flex;
    justify-self: start;
    color: #8b5c47;
  }

  .header__menu-toggle span {
    background: #8b5c47;
  }

  .header__logo {
    grid-area: logo;
    justify-self: center;
    gap: 10px;
    min-width: 0;
  }

  .header__logo img {
    width: 42px;
    height: 42px;
  }

  .header__brand h1 {
    font-size: 20px;
    font-weight: 500;
  }

  .header__brand span,
  .header__brand .header__tagline {
    display: block;
    font-size: 9px;
    letter-spacing: 0.01em;
  }

  .header__actions {
    grid-area: actions;
    justify-self: end;
    gap: 6px;
  }

  .header__mobile-strip {
    grid-area: strip;
    display: block;
    padding: 10px 0 14px;
  }

  .header__promo {
    margin: 0 0 10px;
    padding: 8px 12px;
    border-radius: 4px;
    background: #8b5c47;
    color: #fff;
    text-align: center;
    font-family: var(--font-ui);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.3;
  }

  .header__mobile-search {
    display: flex;
    align-items: center;
    gap: 8px;
    height: 44px;
    padding: 0 16px 0 18px;
    border: 1px solid #3a2820;
    border-radius: 999px;
    background: #fff;
  }

  .header__mobile-search-input {
    flex: 1;
    border: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 15px;
    color: var(--text-dark);
    outline: none;
    min-width: 0;
  }

  .header__mobile-search-input::placeholder {
    color: #b0a59e;
  }

  .header__mobile-search-icon {
    display: inline-flex;
    color: #3a2820;
    flex-shrink: 0;
  }

  .header__mobile-search-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
  }

  .header__nav {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 12;
    grid-column: auto;
    background: #faf6f2;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 12px;
    margin: 0;
    border: 1px solid rgba(58, 40, 32, 0.08);
    border-top: none;
    border-radius: 0 0 12px 12px;
    box-shadow: 0 16px 32px rgba(58, 40, 32, 0.12);
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translateY(-6px);
    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
  }

  .header__nav a {
    font-size: 16px;
    font-weight: 500;
    padding: 14px 20px;
    border-bottom: 1px solid rgba(58, 40, 32, 0.08);
    color: var(--text-dark);
  }

  .header__nav a:hover,
  .header__nav a.is-active {
    color: var(--primary);
    background: rgba(139, 92, 71, 0.06);
  }

  .header__nav a:last-child {
    border-bottom: none;
  }

  .header__nav a[hidden] {
    display: none;
  }

  .header__nav-mobile-only {
    display: block;
  }

  .header__nav-cta {
    margin: 8px 16px 0;
    padding: 12px 16px !important;
    border: none !important;
    border-radius: 999px;
    background: #8b5c47;
    color: #ffffff !important;
    text-align: center;
    font-size: 15px !important;
    font-weight: 600;
  }

  .header__nav-cta:hover {
    background: #7a5040;
    color: #ffffff !important;
  }

  .header__nav.open {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
  }

  .header__search,
  .header__profile {
    display: none;
  }

  .header__book-btn {
    display: none;
  }

  .header__cart {
    display: inline-flex;
  }
}

@media (max-width: 480px) {
  .header__brand h1 {
    font-size: 18px;
  }

  .header__logo img {
    width: 38px;
    height: 38px;
  }
}

@media (max-width: 992px) {
  .shop-category__grid {
    display: flex;
    flex-wrap: nowrap;
    overflow-x: auto;
    gap: 8px;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scroll-snap-type: x proximity;
    scrollbar-width: none;
  }

  .shop-category__grid::-webkit-scrollbar {
    display: none;
  }

  .shop-category__item {
    flex: 0 0 calc((100% - 16px) / 3);
    min-width: calc((100% - 16px) / 3);
    scroll-snap-align: start;
  }

  .shop-category__item img {
    width: 100% !important;
    max-width: none !important;
    height: auto !important;
    max-height: 118px;
    object-fit: contain;
    object-position: bottom center;
  }

  .shop-category__item span {
    margin-top: 8px;
    font-size: 11px;
    letter-spacing: 0.04em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
  }

  .style-finder__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 0 10px;
  }

  .style-finder__left {
    padding-left: 0;
    max-width: 100%;
  }

  .style-finder__desc {
    max-width: 100%;
  }

  .style-finder__quiz {
    justify-self: stretch;
    width: 100%;
  }

  .style-finder__quiz.quiz--result {
    max-width: 100%;
  }

  .quiz__result-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .quiz__result-actions {
    justify-content: stretch;
  }

  .quiz__result-actions .btn {
    flex: 1 1 auto;
  }

  .collections__grid {
    grid-template-columns: 1fr;
    max-width: min(520px, 100%);
    margin-left: auto;
    margin-right: auto;
    gap: 16px;
  }

  .collections {
    padding: 48px 0 40px;
    overflow: hidden;
  }

  .blog-cards__grid,
  .footer__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    column-gap: 0;
    row-gap: 20px;
  }

  .collection-card {
    height: 220px;
    min-height: 220px;
    overflow: hidden;
  }

  .collection-card__model {
    right: 0;
    bottom: 0;
    height: 100%;
    max-height: 220px;
    max-width: 48%;
  }

  .collection-card--new .collection-card__model,
  .collection-card--best .collection-card__model,
  .collection-card--picked .collection-card__model {
    width: auto;
    height: 100%;
    max-height: 220px;
  }

  .collection-card__content {
    width: 54%;
    padding: 18px 16px;
  }

  .collection-card__content p {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .footer__brand-head,
  .footer__brand-tagline,
  .footer__brand-desc,
  .footer__social,
  .footer__nav {
    grid-column: 1;
    grid-row: auto;
  }

  .footer__brand-tagline {
    margin-left: 0;
    margin-bottom: 0;
  }

  .footer__brand-desc {
    max-width: 100%;
  }

  .footer__nav {
    flex-wrap: wrap;
    gap: 28px 48px;
    width: 100%;
  }

  .footer__nav .footer__col:first-child {
    margin-left: 0;
  }

  .footer__cta-row {
    grid-template-columns: 1fr;
    gap: 12px;
    align-items: stretch;
  }

  .footer__cta-row>.footer__offer-box,
  .footer__cta-row>.footer__partner-box:nth-child(2),
  .footer__cta-row>.footer__partner-box:nth-child(3) {
    grid-column: 1;
    width: 100%;
    max-width: 100%;
    margin-left: 0;
  }

  .women-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-items: center;
  }

  .women-main__content {
    width: 100%;
  }

  .women-card {
    width: 100%;
    max-width: 250px;
  }

  .newsletter__banner {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
    height: auto;
    min-height: 0;
    padding: 28px 20px;
    gap: 20px;
  }

  .newsletter__text {
    width: 100%;
  }

  .newsletter__text h2 {
    margin-bottom: 8px;
  }

  .newsletter__form {
    width: 100%;
    max-width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
  }

  .newsletter__input {
    width: 100%;
    max-width: 100%;
    height: 44px;
    border-radius: 10px;
  }

  .newsletter__submit {
    width: 100%;
    max-width: 100%;
    height: 44px;
    min-width: 0;
    border-radius: 10px;
  }

  .book-call {
    padding: 40px 0 48px;
  }

  .book-call--page {
    min-height: auto;
    padding: 28px 0 40px;
  }

  .book-call__inner {
    max-width: 100%;
  }

  .book-call__header {
    text-align: left;
    padding-bottom: 20px;
  }

  .book-call__title {
    max-width: none;
    margin: 0;
    font-size: clamp(22px, 6vw, 28px);
  }

  .book-call__form {
    padding: 20px 16px;
    border-radius: 18px;
  }

  .book-call__section {
    padding-top: 20px;
  }

  .book-call__grid,
  .book-call__grid--schedule {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .book-call__actions {
    margin-top: 22px;
    padding-top: 20px;
  }
}

/* Tablet / iPad: hero overlay — full image, text on left */
@media (max-width: 1440px) and (min-width: 993px) {
  .hero {
    display: block;
    height: clamp(440px, 50vw, 520px);
    min-height: 440px;
    overflow: hidden;
  }

  .hero__visual {
    position: absolute;
    inset: 0;
    width: 100%;
    align-items: flex-end;
    justify-content: center;
  }

  .hero__visual--banner .hero__model {
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 75% 20%;
  }

  .hero__visual--model {
    justify-content: center;
    padding-left: clamp(280px, 34vw, 440px);
    padding-right: clamp(48px, 8vw, 120px);
  }

  .hero__visual--model .hero__model {
    max-width: min(48vw, 500px);
    object-fit: contain;
    object-position: center bottom;
  }

  .hero__content {
    position: relative;
    z-index: 2;
    display: block;
    padding: clamp(56px, 8vw, 80px) 28px 0;
    margin-left: 24px;
    max-width: min(440px, 48%);
    background: transparent;
  }

  .hero__title {
    font-size: clamp(32px, 3.8vw, 40px);
  }

  .hero__subtitle {
    font-size: clamp(17px, 2vw, 21px);
    margin-bottom: 24px;
  }
}

/* Phone / large phone: full-width image on top, copy below */
@media (max-width: 992px) {
  .hero {
    display: block;
    height: auto;
    min-height: 0;
    background: #c09e7f;
  }

  .hero__track {
    height: auto;
  }

  .hero__slide {
    position: relative;
    inset: auto;
    display: none;
    opacity: 1;
    visibility: visible;
    pointer-events: none;
  }

  .hero__slide.is-active {
    display: block;
    pointer-events: auto;
  }

  .hero__slide--model .hero__backdrop {
    display: none;
  }

  .hero__visual {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    left: 0;
    width: 100%;
    max-width: none;
    inset: auto;
  }

  .hero__visual--banner {
    left: 0;
    width: 100%;
    position: relative;
    min-height: clamp(260px, 52vw, 360px);
  }

  .hero__visual--banner .hero__model {
    object-fit: cover;
    object-position: 70% 22%;
  }

  .hero__visual--model {
    width: 100%;
    left: 0;
    position: relative;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    min-height: clamp(260px, 52vw, 360px);
    height: clamp(260px, 52vw, 360px);
    padding: 0;
    overflow: hidden;
    background-color: #c4a882;
    background-image: url('../uploads/hero-backdrop.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
  }

  .hero__visual--model .hero__model {
    position: relative;
    inset: auto;
    width: auto;
    height: 100%;
    max-width: 92%;
    max-height: 100%;
    object-fit: contain;
    object-position: center bottom;
  }

  .hero__visual--banner .hero__model {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    object-position: 70% 22%;
  }

  .hero__content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 28px 20px 32px;
    margin: 0;
    max-width: none;
    background: #c09e7f;
  }

  .hero__title {
    font-size: 32px;
  }

  .hero__subtitle {
    font-size: 16px;
    margin-bottom: 20px;
  }

  .hero__cta {
    justify-content: center;
  }
}

@media (max-width: 600px) {
  .global-fabrics__grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .hero__title {
    font-size: 28px;
  }

  .hero__subtitle {
    font-size: 15px;
  }

  .hero__visual {
    min-height: 240px;
  }

  .hero__visual--model {
    min-height: 240px;
    height: clamp(240px, 58vw, 320px);
  }

  .style-finder__title {
    font-size: 32px;
  }

  .collections {
    padding: 28px 0 32px;
  }

  .collection-card {
    height: 200px;
    min-height: 200px;
  }

  .collection-card__model,
  .collection-card--new .collection-card__model,
  .collection-card--best .collection-card__model,
  .collection-card--picked .collection-card__model {
    max-height: 200px;
    max-width: 44%;
  }

  .collection-card__content {
    width: 56%;
    padding: 16px 14px;
  }

  .collection-card__content h3 {
    font-size: 14px;
  }

  .collection-card__content p {
    font-size: 13px;
    line-height: 1.25;
  }

  .collection-card__shop {
    font-size: 13px;
    padding: 5px 14px;
  }

  .newsletter {
    padding: 16px 0 24px;
  }

  .newsletter__banner {
    padding: 24px 16px;
    gap: 16px;
    border-radius: 16px;
  }

  .newsletter__text h2 {
    font-size: 18px;
  }

  .newsletter__text p {
    font-size: 14px;
    line-height: 1.4;
  }

  .newsletter__input,
  .newsletter__submit {
    height: 42px;
    font-size: 14px;
  }

  .women-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .women-main__content {
    width: 100%;
  }

  .women-card {
    width: 100%;
    max-width: none;
    height: auto;
    padding: 8px;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
  }

  .women-card__media {
    width: 100%;
    height: auto;
    aspect-ratio: 230 / 300;
  }

  .women-card__body {
    padding: 8px 4px 4px;
  }

  .women-card__type {
    font-size: 14px;
    margin-bottom: 2px;
  }

  .women-card__meta {
    font-size: 11px;
    margin-bottom: 6px;
  }

  .women-card__prices {
    gap: 6px;
  }

  .women-card__price {
    font-size: 13px;
  }

  .women-card__original {
    font-size: 11px;
  }

  .women-card__discount {
    font-size: 10px;
  }

  .women-filters {
    gap: 10px;
  }

  .women-filter-pill {
    min-width: 100%;
  }

  .product-detail {
    grid-template-columns: 1fr;
  }

  .product-gallery {
    flex-direction: column-reverse;
    max-width: 100%;
  }

  .product-gallery__thumbs {
    flex-direction: row;
    width: 100%;
  }

  .product-measurements-grid {
    grid-template-columns: 1fr;
  }

  .product-related__grid {
    grid-template-columns: minmax(0, 250px);
    justify-content: center;
  }

  .product-gallery__thumb {
    width: 80px;
    height: 126px;
  }

  .product-gallery__thumbs {
    width: 80px;
  }

  .product-gallery__main {
    max-width: 100%;
    height: auto;
    aspect-ratio: 419 / 635;
  }

  .footer__main {
    padding: 24px 0 16px;
  }

  .footer__cta-row {
    gap: 10px;
    margin-top: 16px;
  }

  .footer__offer-box {
    padding: 14px 16px;
    align-items: flex-start;
    text-align: left;
  }

  .footer__partner-box {
    flex-wrap: wrap;
    padding: 14px 16px;
    gap: 10px;
  }

  .footer__partner-box>div:last-child {
    flex: 1 1 calc(100% - 48px);
    min-width: 0;
  }

  .footer__partner-box h5 {
    font-size: 15px;
    line-height: 1.3;
  }

  .footer__partner-box p {
    font-size: 13px;
    line-height: 1.4;
  }

  .footer__partner-btn,
  .footer__claim-btn {
    margin-top: 10px;
    align-self: flex-start;
  }

  .footer__offer-box .footer__claim-btn {
    margin-top: 10px;
  }
}

/* ========== PRODUCT DETAIL PAGE ========== */
.product-main {
  padding: 28px 0 72px;
  background: var(--bg-cream);
}

.product-main__container {
  max-width: var(--container);
  padding: 0 20px;
}

.product-page-layout {
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.product-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
  letter-spacing: 0;
  text-transform: uppercase;
  color: #c4907a;
  margin-bottom: 8px;
}

.product-breadcrumb a {
  color: #c4907a;
}

.product-breadcrumb a:hover {
  opacity: 0.8;
}

.product-breadcrumb span:last-child {
  color: #c4907a;
}

.product-breadcrumb__dot {
  opacity: 1;
  font-size: 16px;
  color: #c4907a;
}

.product-detail {
  display: grid;
  grid-template-columns: auto 461px;
  gap: 64px;
  align-items: start;
  justify-content: center;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto 64px;
}

.product-gallery {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: flex-start;
  width: auto;
  flex-shrink: 0;
}

.product-gallery__thumbs {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex-shrink: 0;
  width: 130px;
}

.product-gallery__thumb {
  width: 130px;
  height: 205px;
  padding: 0;
  border: 2px solid transparent;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  background-color: var(--women-media-bg);
  background-image: url('../uploads/image_32.png');
  background-size: cover;
  background-position: center;
  flex-shrink: 0;
}

.product-gallery__thumb.is-active {
  border-color: #c4907a;
}

.product-gallery__thumb img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.product-gallery__main {
  width: 419px;
  height: 635px;
  flex-shrink: 0;
  border-radius: 10px;
  overflow: hidden;
  background-color: var(--women-media-bg);
  background-image: url('../uploads/image_32.png');
  background-size: cover;
  background-position: center;
}

.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: bottom center;
}

.product-info {
  padding-top: 4px;
}

.product-info__title {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 600;
  line-height: 48px;
  color: #000;
  margin-bottom: 8px;
  max-width: 461px;
}

.product-info__meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 12px;
}

.product-info__features {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  color: #c4907a;
}

.product-info__fabric {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 16px;
  border-radius: 20px;
  background: #fff6ec;
  border: 1px solid #e8e0d9;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: rgba(58, 40, 32, 0.75);
}

.product-info__prices {
  display: flex;
  align-items: baseline;
  gap: 10px;
  margin-bottom: 16px;
}

.product-info__price {
  font-family: var(--font-body);
  font-size: 36px;
  font-weight: 500;
  line-height: 47px;
  color: #000;
}

.product-info__original {
  font-family: var(--font-body);
  font-size: 22px;
  font-weight: 500;
  line-height: 29px;
  color: rgba(139, 92, 71, 0.5);
  text-decoration: line-through;
}

.product-info__divider {
  border: none;
  border-top: 1px solid rgba(196, 144, 122, 0.5);
  margin: 0 0 20px;
  max-width: 461px;
}

.product-purchase-box {
  max-width: 461px;
  min-height: 399px;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.product-option {
  margin-bottom: 16px;
}

.product-option--compact {
  margin-bottom: 14px;
}

.product-option--compact:last-of-type {
  margin-bottom: 12px;
}

.product-option--inline {
  display: flex;
  align-items: center;
  gap: 16px;
}

.product-option--inline .product-option__label {
  margin-bottom: 0;
}

.product-fulfillment {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.product-fulfillment__opt {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 10px;
  min-height: 66px;
  padding: 10px 12px;
  border: 1px solid rgba(196, 144, 122, 0.5);
  border-radius: 10px;
  background: #fff6ec;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s;
}

.product-fulfillment__opt.is-active {
  border-color: #c4907a;
  background: #edd5c5;
}

.product-fulfillment__icon {
  display: flex;
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  align-items: center;
  justify-content: center;
  color: #8b5c47;
}

.product-fulfillment__icon svg {
  width: 24px;
  height: 24px;
  fill: #8b5c47;
}

.product-fulfillment__icon svg[fill="none"] {
  fill: none;
  stroke: #8b5c47;
}

.product-fulfillment__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.product-fulfillment__title {
  font-family: var(--font-ui);
  font-size: 18px;
  font-weight: 400;
  line-height: 26px;
  color: #3a2820;
}

.product-fulfillment__sub {
  font-family: var(--font-ui);
  font-size: 12px;
  font-weight: 400;
  line-height: 17px;
  color: #3a2820;
}

.product-option__label {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  color: #3a2820;
  margin-bottom: 10px;
}

.product-option__label--muted {
  font-family: var(--font-ui);
  font-weight: 400;
  line-height: 23px;
  color: rgba(139, 92, 71, 0.5);
}

.product-sizes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.product-size {
  width: 50px;
  height: 50px;
  min-width: 50px;
  padding: 10px;
  box-sizing: border-box;
  border: 1px solid #c4907a;
  border-radius: 10px;
  background: #faf6f2;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  color: #3a2820;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.15s, border-color 0.15s;
}

.product-size.is-active {
  border-color: #c4907a;
  background: rgba(196, 144, 122, 0.45);
  color: #3a2820;
  font-weight: 500;
}

.product-size.is-disabled {
  color: rgba(196, 144, 122, 0.25);
  background: #faf6f2;
  border-color: rgba(196, 144, 122, 0.25);
  cursor: not-allowed;
}

.product-size.is-disabled::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 12%;
  width: 76%;
  height: 1px;
  background: rgba(196, 144, 122, 0.35);
  transform: rotate(-32deg);
  pointer-events: none;
}

.product-stock-note {
  margin-top: 8px;
  font-family: var(--font-ui);
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: rgba(139, 92, 71, 0.5);
}

.product-size-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 10px;
}

.product-size-header__title {
  margin-bottom: 4px;
}

.product-size-header__measure {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 13px;
  line-height: 18px;
  color: rgba(58, 40, 32, 0.65);
}

.product-size-chart-link {
  border: none;
  background: none;
  padding: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  color: #8b5c47;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.product-size-chart-link:hover,
.product-size-chart-link:focus {
  text-decoration: none;
  color: #6f4a38;
}

.product-custom-measurements__hint {
  margin: -6px 0 12px;
  font-family: var(--font-ui);
  font-size: 13px;
  line-height: 18px;
  color: rgba(139, 92, 71, 0.75);
}

.product-custom-measurements {
  margin-bottom: 14px;
  padding: 14px;
  background: #faf6f2;
  border: 1px solid rgba(196, 144, 122, 0.5);
  border-radius: 10px;
}

.product-custom-measurements__label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: #3a2820;
  margin-bottom: 12px;
}

.product-measurements-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 16px;
}

.product-measurements-field label {
  display: block;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #3a2820;
  margin-bottom: 4px;
}

.product-measurements-field input {
  width: 100%;
  height: 40px;
  padding: 8px 12px;
  border: none;
  border-radius: 10px;
  background: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  color: #3a2820;
  box-sizing: border-box;
}

.product-qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid #c4907a;
  border-radius: 10px;
  background: #faf6f2;
  overflow: hidden;
  height: 50px;
  min-width: 200px;
}

.product-qty__btn {
  width: 50px;
  height: 50px;
  border: none;
  background: rgba(225, 200, 188, 0.25);
  font-size: 18px;
  cursor: pointer;
  color: #8b5c47;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-qty__value {
  flex: 1;
  min-width: 40px;
  text-align: center;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
  color: #3a2820;
}

.product-actions {
  display: flex;
  align-items: stretch;
  gap: 10px;
  margin-top: 16px;
}

.product-add-btn {
  flex: 1;
  height: 50px;
  border: none;
  border-radius: 10px;
  background: rgba(139, 92, 71, 0.9);
  color: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
  cursor: pointer;
  transition: background 0.2s;
}

.product-add-btn:hover {
  background: #8b5c47;
}

.product-whatsapp-btn {
  width: 68px;
  min-width: 68px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 10px;
  background: rgba(139, 92, 71, 0.9);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.product-whatsapp-btn:hover {
  background: #8b5c47;
}

.product-whatsapp-btn svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
}

.product-related {
  margin-top: 48px;
  width: 1060px;
  max-width: 100%;
}

.product-related__title {
  font-family: var(--font-ui);
  font-size: 16px;
  font-weight: 400;
  line-height: 23px;
  text-align: left;
  margin: 0 0 18px;
  color: #3a2820;
}

.product-related__grid {
  display: grid;
  grid-template-columns: repeat(4, 250px);
  gap: 24px;
  justify-content: flex-start;
}

@media (max-width: 1200px) {
  .product-main__container {
    padding: 0 40px;
  }

  .product-detail {
    gap: 48px;
  }
}

@media (max-width: 992px) {
  .product-main__container {
    padding: 0 20px;
  }

  .product-detail {
    grid-template-columns: 1fr;
    gap: 32px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .product-gallery {
    flex-direction: row;
    justify-content: center;
    width: 100%;
    max-width: 511px;
    margin: 0 auto;
  }

  .product-gallery__main {
    width: 100%;
    max-width: 419px;
    height: auto;
    aspect-ratio: 419 / 635;
  }

  .product-info__title,
  .product-purchase-box {
    max-width: 100%;
  }

  .product-related {
    width: 100%;
  }

  .product-related__grid {
    grid-template-columns: repeat(2, minmax(0, 250px));
    justify-content: center;
  }

  .product-fulfillment {
    grid-template-columns: 1fr;
  }
}

.product-not-found {
  text-align: center;
  padding: 48px 20px;
  font-size: 16px;
}

/* ========== B2B SERVICES PAGE ========== */
.b2b-page {
  background: var(--bg-cream);
}

.b2b-main {
  padding: 24px 0 64px;
}

.b2b-wrap {
  width: 100%;
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}

.b2b-hero {
  text-align: center;
  padding: 16px 0 32px;
}

.b2b-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  margin-bottom: 20px;
  background: #fff6ec;
  border: 1px solid #e8e0d9;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: var(--text-dark);
}

.b2b-hero__title {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 600;
  line-height: 1.33;
  color: #000;
  max-width: 520px;
  margin: 0 auto 16px;
}

.b2b-hero__lead {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  color: #000;
  max-width: 720px;
  margin: 0 auto 24px;
}

.b2b-hero__trust {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

.b2b-hero__trust span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background: #fff6ec;
  border: 1px solid #e8e0d9;
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: var(--text-dark);
  white-space: nowrap;
}

.b2b-divider {
  border: none;
  border-top: 1px solid rgba(196, 144, 122, 0.25);
  margin: 40px 0;
}

.b2b-service-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 610px));
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 24px;
}

.b2b-service-tab {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  width: 100%;
  max-width: 610px;
  height: 91px;
  min-height: 91px;
  padding: 16px 24px;
  background: #f5e8df;
  border: none;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  transition: background 0.2s;
  overflow: hidden;
}

.b2b-service-tab.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 3px;
  background: #3a2820;
}

.b2b-service-tab__text {
  flex: 1;
  min-width: 0;
}

.b2b-service-tab__icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.b2b-service-tab__icon svg {
  width: 50px;
  height: 50px;
  fill: #c4907a;
}

.b2b-service-tab__text strong {
  display: block;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  line-height: 23px;
  color: #000;
  margin-bottom: 2px;
}

.b2b-service-tab__text span {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  color: #000;
}

.b2b-panel {
  padding: 32px 0 0;
}

.b2b-panel__title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  line-height: 35px;
  color: var(--text-dark);
  margin-bottom: 16px;
}

.b2b-panel__desc {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 23px;
  color: var(--text-dark);
  max-width: 1000px;
  margin-bottom: 32px;
}

.b2b-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.b2b-stat {
  box-sizing: border-box;
  min-height: 86px;
  padding: 16px;
  background: #f5e8df;
  border: 1px solid rgba(196, 144, 122, 0.25);
  border-radius: 10px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.b2b-stat strong {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: #000;
  margin-bottom: 4px;
}

.b2b-stat span {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  color: #000;
}

.b2b-audience__title {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  text-align: center;
  color: var(--text-dark);
  margin-bottom: 20px;
}

.b2b-audience__pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
}

.b2b-audience__pills span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 14px;
  background: #edd5c5;
  border: 1px solid rgba(196, 144, 122, 0.25);
  border-radius: 20px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  line-height: 18px;
  color: var(--text-dark);
}

.b2b-faq__heading {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  color: var(--text-dark);
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.b2b-faq__list {
  border-top: 1px solid rgba(196, 144, 122, 0.25);
}

.b2b-faq__item {
  border-bottom: 1px solid rgba(196, 144, 122, 0.25);
}

.b2b-faq__item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 500;
  line-height: 26px;
  color: var(--text-dark);
  cursor: pointer;
}

.b2b-faq__item summary::-webkit-details-marker {
  display: none;
}

.b2b-faq__item summary::after {
  content: '+';
  flex-shrink: 0;
  font-size: 24px;
  font-weight: 400;
  color: var(--text-dark);
  line-height: 1;
}

.b2b-faq__item[open] summary::after {
  content: '−';
}

.b2b-faq__item p {
  padding: 0 0 18px;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 21px;
  color: #8b5c47;
  max-width: 800px;
}

.b2b-gallery {
  padding: 8px 0 48px;
}

.b2b-gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 401px);
  gap: 20px;
  width: fit-content;
  max-width: 100%;
  margin: 0 auto;
}

.b2b-gallery-card {
  width: 401px;
  max-width: 100%;
  min-height: 387px;
  background: #f5e8df;
  border-radius: 10px;
  padding: 10px 10px 16px;
  display: flex;
  flex-direction: column;
}

.b2b-gallery-card img {
  width: 100%;
  max-width: 380px;
  height: 270px;
  object-fit: cover;
  border-radius: 10px;
  display: block;
  margin: 0 auto;
}

.b2b-gallery-card__meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  margin: 12px 0 8px;
  padding: 0 2px;
}

.b2b-gallery-card__meta span,
.b2b-gallery-card__meta time {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 19px;
  padding: 2px 10px;
  border-radius: 10px;
  background: #edd5c5;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 500;
  color: #000;
}

.b2b-gallery-card p {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: #000;
  padding: 0 2px;
}

.b2b-quote {
  max-width: 1070px;
  margin: 0 auto;
  padding: 40px clamp(20px, 4vw, 48px) 48px;
  background: #f5e8df;
  border-radius: 10px;
}

.b2b-quote__head {
  text-align: center;
  margin-bottom: 28px;
}

.b2b-quote__head h2 {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
  color: var(--text-dark);
  margin-bottom: 8px;
}

.b2b-quote__head p {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  color: rgba(58, 40, 32, 0.5);
}

.b2b-quote-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 28px;
}

.b2b-quote-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 62px;
  padding: 10px 16px;
  background: #edd5c5;
  border: 1px solid transparent;
  border-radius: 10px;
  cursor: pointer;
  text-align: left;
  transition: border-color 0.2s, background 0.2s;
}

.b2b-quote-tab.is-active {
  border-color: #c4907a;
}

.b2b-quote-tab__icon svg {
  width: 50px;
  height: 50px;
  fill: #c4907a;
  flex-shrink: 0;
}

.b2b-quote-tab>span:not(.b2b-quote-tab__icon) {
  flex: 1;
  min-width: 0;
}

.b2b-quote-tab strong {
  display: block;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  line-height: 23px;
  color: #000;
}

.b2b-quote-tab>span:not(.b2b-quote-tab__icon)>span {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 21px;
  color: #000;
}

.b2b-form__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 40px;
  margin-bottom: 20px;
}

.b2b-form__field {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.b2b-form__field label {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #000;
}

.b2b-form__field input,
.b2b-form__field textarea {
  width: 100%;
  padding: 10px 14px;
  background: var(--bg-cream);
  border: none;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-dark);
}

.b2b-form__field input {
  height: 40px;
}

.b2b-form__field input[type="date"] {
  color-scheme: light;
  position: relative;
  min-height: 40px;
  line-height: normal;
  padding-right: 12px;
}

.b2b-form__field input[type="date"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  opacity: 1;
  width: 18px;
  height: 18px;
  margin-right: 2px;
}

.b2b-form__field--full {
  grid-column: 1 / -1;
}

.b2b-form__field textarea {
  min-height: 123px;
  resize: vertical;
}

.b2b-form__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 8px;
}

.b2b-form__btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 46px;
  border: none;
  border-radius: 10px;
  background: #8b5c47;
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 21px;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s;
}

.b2b-form__btn:hover {
  background: var(--primary-hover);
}

.b2b-form__message {
  margin-top: 16px;
  font-family: var(--font-body);
  font-size: 14px;
  text-align: center;
  border-radius: 8px;
  padding: 10px;
}

.b2b-form__message--success {
  background-color: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

.b2b-form__message--error {
  background-color: #ffebee;
  color: #c62828;
  border: 1px solid #ffcdd2;
}

@media (max-width: 1280px) {
  .b2b-gallery__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    width: 100%;
  }

  .b2b-gallery-card {
    width: 100%;
  }
}

@media (max-width: 992px) {

  .b2b-service-tabs,
  .b2b-quote-tabs {
    grid-template-columns: 1fr;
    justify-content: stretch;
  }

  .b2b-service-tab {
    max-width: 100%;
    height: auto;
    min-height: 91px;
  }

  .b2b-stats {
    grid-template-columns: 1fr;
  }

  .b2b-form__grid {
    grid-template-columns: 1fr;
  }

  .b2b-gallery__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .b2b-service-tab {
    flex-direction: column;
    min-height: auto;
    padding: 14px;
  }

  .b2b-quote-tab {
    flex-direction: column;
    text-align: center;
  }

  .b2b-hero__trust span {
    white-space: normal;
    text-align: center;
  }
}

/* ========== CART PAGE ========== */
.cart-main {
  background: #faf6f2;
  padding: 40px 0 80px;
  min-height: calc(100vh - 85px - 488px);
}

.cart-main__container {
  max-width: 1240px;
}

.cart-layout[hidden] {
  display: none !important;
}

.cart-summary:empty {
  display: none;
  min-height: 0;
  background: none;
}

.cart-main.is-empty .cart-main__container {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 420px;
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 630px) minmax(0, 582px);
  gap: 24px;
  align-items: start;
  justify-content: space-between;
}

.cart-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cart-item {
  display: grid;
  grid-template-columns: 110px minmax(0, 1fr) auto;
  gap: 10px 15px;
  padding: 15px 15px 12px;
  background: #f5e8df;
  border-radius: 10px;
  min-height: 189px;
  box-sizing: border-box;
}

.cart-item__image {
  width: 110px;
  height: 162px;
  object-fit: cover;
  border-radius: 7px;
  grid-row: 1 / 3;
}

.cart-item__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 6px;
  min-width: 0;
}

.cart-item__title {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 600;
  line-height: 29px;
  color: #3a2820;
  margin: 0;
}

.cart-item__meta {
  display: inline-flex;
  align-items: center;
  padding: 6px 8px;
  margin: 0;
  background: #edd5c5;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 18px;
  color: #000;
}

.cart-item__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 6px;
  border-radius: 10px;
  font-family: var(--font-body);
  font-size: 10px;
  font-weight: 400;
  line-height: 13px;
}

.cart-item__badge--ready {
  background: #98d894;
  color: #000;
}

.cart-item__badge--custom {
  background: #f7ea73;
  color: #3a2820;
}

.cart-item__qty {
  margin-top: auto;
  height: 40px;
  min-width: 120px;
}

.cart-item__qty .product-qty__btn {
  width: 40px;
  height: 40px;
}

.cart-item__pricing {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  justify-content: flex-start;
  text-align: right;
  gap: 4px;
}

.cart-item__prices {
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.cart-item__price {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  color: #000;
}

.cart-item__original {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
  line-height: 21px;
  color: #c4907a;
  text-decoration: line-through;
}

.cart-item__ship {
  margin: 0;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  color: #000;
}

.cart-summary {
  background: #f5e8df;
  border-radius: 10px;
  min-height: 587px;
}

.cart-summary__inner {
  padding: 33px 24px 40px;
}

.cart-summary__promo {
  width: 100%;
  height: 42px;
  padding: 0 20px;
  margin-bottom: 25px;
  border: 1px solid rgba(139, 92, 71, 0.5);
  border-radius: 30px;
  background: #faf6f2;
  font-family: var(--font-body);
  font-size: 14px;
  color: #3a2820;
  box-sizing: border-box;
  outline: none;
}

.cart-summary__lines {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.cart-summary__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}

.cart-summary__label {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 700;
  line-height: 23px;
  color: #3a2820;
}

.cart-summary__value {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  color: #000;
  white-space: nowrap;
}

.cart-summary__divider {
  border: none;
  border-top: 2px solid #edd5c5;
  margin: 28px 0 10px;
}

.cart-summary__row--total {
  margin-bottom: 28px;
}

.cart-summary__checkout {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 50px;
  border: none;
  border-radius: 10px;
  background: rgba(139, 92, 71, 0.9);
  color: #fff;
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 500;
  line-height: 23px;
  cursor: pointer;
  transition: background 0.2s;
}

.cart-summary__checkout:hover {
  background: #8b5c47;
}

.cart-summary__checkout:disabled {
  opacity: 0.55;
  cursor: not-allowed;
}

.cart-summary__checkout:disabled:hover {
  background: rgba(139, 92, 71, 0.9);
}

.cart-summary__count {
  margin: 12px 0 0;
  text-align: center;
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 300;
  line-height: 16px;
  color: #000;
}

.cart-item__measurements {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(58, 40, 32, 0.75);
}

.cart-checkout-modal {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.cart-checkout-modal[hidden] {
  display: none !important;
}

.cart-checkout-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(58, 40, 32, 0.45);
}

.cart-checkout-modal__panel {
  position: relative;
  width: min(100%, 540px);
  max-height: 90vh;
  overflow: auto;
  background: #faf6f2;
  border-radius: 16px;
  padding: 28px 24px 24px;
  box-shadow: 0 20px 60px rgba(58, 40, 32, 0.18);
}

.cart-checkout-modal__close {
  position: absolute;
  top: 12px;
  right: 14px;
  border: 0;
  background: transparent;
  font-size: 28px;
  line-height: 1;
  color: #8b5c47;
  cursor: pointer;
}

.cart-checkout-modal__title {
  margin: 0 0 8px;
  font-family: var(--font-display);
  font-size: 26px;
  color: #3a2820;
}

.cart-checkout-modal__lead {
  margin: 0 0 18px;
  font-size: 14px;
  color: rgba(58, 40, 32, 0.8);
}

.cart-checkout-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.cart-checkout-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 13px;
  font-weight: 500;
  color: #3a2820;
}

.cart-checkout-form input,
.cart-checkout-form textarea {
  width: 100%;
  border: 1px solid rgba(139, 92, 71, 0.25);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
  color: #3a2820;
}

.cart-checkout-form__error {
  margin: 0;
  font-size: 13px;
  color: #8b3a3a;
  min-height: 18px;
}

.checkout-email-field {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid rgba(139, 92, 71, 0.12);
}

.checkout-email-field input[type="email"] {
  width: 100%;
  border: 1px solid rgba(139, 92, 71, 0.25);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  background: #fff;
  color: #3a2820;
}

.checkout-email-field input[type="email"]:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 92, 71, 0.12);
}

.cart-checkout-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.cart-checkout-form select {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(139, 92, 71, 0.25);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  background: var(--white);
}

.checkout-panel__hint,
.checkout-panel__section-title {
  font-size: 13px;
  color: rgba(58, 40, 32, 0.65);
  margin: 0 0 12px;
}

.checkout-panel__hint a {
  color: var(--primary);
  font-weight: 500;
}

.checkout-panel__section-title {
  font-family: var(--font-ui);
  font-weight: 600;
  color: var(--text-dark);
}

.checkout-address-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 14px;
}

.checkout-address-empty {
  font-size: 14px;
  color: rgba(58, 40, 32, 0.65);
  padding: 12px 0;
}

.checkout-address-card {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 2px solid rgba(139, 92, 71, 0.18);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
  background: #fff;
}

.checkout-address-card.is-selected {
  border-color: var(--primary);
  background: #fffaf7;
  box-shadow: 0 0 0 1px rgba(139, 92, 71, 0.08);
}

.checkout-address-card input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-address-card__radio {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 2px solid rgba(139, 92, 71, 0.45);
  border-radius: 50%;
  position: relative;
}

.checkout-address-card.is-selected .checkout-address-card__radio {
  border-color: var(--primary);
}

.checkout-address-card.is-selected .checkout-address-card__radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--primary);
}

.checkout-address-card__body {
  flex: 1;
  min-width: 0;
}

.checkout-address-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 4px;
}

.checkout-address-card__badge {
  font-size: 11px;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(139, 92, 71, 0.12);
  color: var(--primary);
}

.checkout-address-card__name,
.checkout-address-card__phone,
.checkout-address-card__text {
  font-size: 13px;
  color: rgba(58, 40, 32, 0.78);
  margin: 0 0 2px;
  line-height: 1.45;
}

.checkout-address-card__name {
  font-weight: 600;
  color: var(--text-dark);
}

.checkout-address-empty-state {
  text-align: center;
  padding: 20px 12px;
  background: #fff;
  border: 1px dashed rgba(139, 92, 71, 0.25);
  border-radius: 12px;
}

.checkout-first-address-btn {
  width: 100%;
  margin-top: 12px;
}

.checkout-back-link {
  border: none;
  background: none;
  padding: 0 0 10px;
  font-size: 13px;
  color: var(--primary);
  cursor: pointer;
  font-weight: 500;
}

.checkout-back-link:hover {
  text-decoration: underline;
}

.checkout-payment {
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid rgba(139, 92, 71, 0.12);
}

.checkout-payment__options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.checkout-payment__option {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border: 2px solid rgba(139, 92, 71, 0.18);
  border-radius: 12px;
  padding: 14px 16px;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.2s, background 0.2s;
}

.checkout-payment__option.is-selected {
  border-color: var(--primary);
  background: #fffaf7;
}

.checkout-payment__option input[type="radio"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.checkout-payment__radio {
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-top: 2px;
  border: 2px solid rgba(139, 92, 71, 0.45);
  border-radius: 50%;
  position: relative;
}

.checkout-payment__option.is-selected .checkout-payment__radio {
  border-color: var(--primary);
}

.checkout-payment__option.is-selected .checkout-payment__radio::after {
  content: '';
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: var(--primary);
}

.checkout-payment__copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.checkout-payment__copy strong {
  font-size: 14px;
  color: var(--text-dark);
}

.checkout-payment__copy small {
  font-size: 12px;
  color: rgba(58, 40, 32, 0.62);
}

.checkout-address-card__edit,
.account-address-card__delete {
  border: none;
  background: none;
  padding: 0;
  font-size: 13px;
  color: var(--primary);
  cursor: pointer;
  font-weight: 500;
}

.account-address-card__delete {
  color: #8b3a3a;
}

.checkout-add-address {
  width: 100%;
  border: 1px dashed rgba(139, 92, 71, 0.35);
  background: #faf6f2;
  color: var(--primary);
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 14px;
}

.checkout-default-check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  margin-top: 4px;
}

.checkout-form-actions {
  display: flex;
  gap: 10px;
  margin-top: 8px;
}

.checkout-form-actions .btn {
  flex: 1;
}

/* ========== ACCOUNT DASHBOARD (Flipkart-style) ========== */
.account-dashboard-page {
  background: #f5f0eb;
  min-height: 100vh;
}

.account-dash {
  padding: 16px 0 48px;
}

.account-dash__container {
  max-width: 720px;
}

.account-dash__hero {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  margin-bottom: 14px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 71, 0.1);
}

.account-dash__avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1.35rem;
  flex-shrink: 0;
}

.account-dash__hello {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 500;
  color: var(--text-dark);
  margin: 0 0 2px;
}

.account-dash__email {
  margin: 0;
  font-size: 0.88rem;
  color: #666;
}

.account-menu-card {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 71, 0.1);
  margin-bottom: 14px;
  overflow: hidden;
}

.account-menu-card__label {
  margin: 0;
  padding: 12px 16px 4px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: #888;
}

.account-menu__item {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 16px;
  border: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: transparent;
  text-align: left;
  cursor: pointer;
  color: inherit;
  font: inherit;
  text-decoration: none;
}

.account-menu-card>.account-menu>.account-menu__item:first-child,
.account-menu-card--actions>.account-menu__item:first-child {
  border-top: 0;
}

.account-menu__item:hover {
  background: rgba(139, 92, 71, 0.05);
}

.account-menu__item--danger .account-menu__text strong {
  color: #a33;
}

.account-menu__icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(139, 92, 71, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.account-menu__icon svg {
  width: 18px;
  height: 18px;
  fill: var(--primary);
}

.account-menu__text {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.account-menu__text strong {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text-dark);
}

.account-menu__text small {
  font-size: 0.78rem;
  color: #777;
}

.account-menu__chevron {
  font-size: 1.4rem;
  color: #999;
  line-height: 1;
}

.account-panel[hidden],
#accountAddressListView[hidden],
#accountAddressFormView[hidden],
#accountProfileView[hidden],
#accountProfileFormView[hidden],
.account-form[hidden],
.account-address-form[hidden] {
  display: none !important;
}

/* Professional profile sheet */
.profile-sheet {
  background: var(--white);
  border: 1px solid rgba(139, 92, 71, 0.12);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(58, 40, 32, 0.05);
}

.profile-sheet__hero {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 20px 18px;
  background: linear-gradient(135deg, #f7f1eb 0%, #fff 70%);
  border-bottom: 1px solid rgba(139, 92, 71, 0.1);
}

.profile-sheet__avatar {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-ui);
  font-size: 1.35rem;
  font-weight: 700;
  flex-shrink: 0;
  box-shadow: 0 2px 8px rgba(139, 92, 71, 0.25);
}

.profile-sheet__hero-text {
  flex: 1;
  min-width: 0;
}

.profile-sheet__name {
  margin: 0 0 4px;
  font-family: var(--font-ui);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--text-dark);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-sheet__email {
  margin: 0;
  font-size: 0.88rem;
  color: #6b6b6b;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.profile-sheet__edit {
  flex-shrink: 0;
  padding: 9px 16px;
  font-size: 0.88rem;
  border-radius: 999px;
  white-space: nowrap;
}

.profile-sheet__section {
  padding: 4px 0 8px;
}

.profile-sheet__section+.profile-sheet__section {
  border-top: 8px solid #f5f0eb;
}

.profile-sheet__section-title {
  margin: 0;
  padding: 14px 18px 6px;
  font-family: var(--font-ui);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #8a8a8a;
}

.profile-sheet__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.profile-sheet__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 18px;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.profile-sheet__row:first-child {
  border-top: 0;
}

.profile-sheet__label {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: #555;
  flex-shrink: 0;
}

.profile-sheet__icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: rgba(139, 92, 71, 0.1);
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.profile-sheet__icon svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.profile-sheet__value {
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-dark);
  text-align: right;
  word-break: break-word;
}

.profile-sheet__value.is-muted {
  color: #999;
  font-weight: 500;
}

.profile-sheet__row--note {
  display: block;
  padding-top: 0;
  border-top: 0;
}

.profile-sheet__row--note p {
  margin: 0;
  padding: 0 18px 14px 60px;
  font-size: 0.82rem;
  line-height: 1.45;
  color: #777;
}

.profile-edit-form {
  gap: 14px;
  padding: 0;
  background: transparent;
  border: 0;
}

.profile-edit-form__block {
  background: var(--white);
  border: 1px solid rgba(139, 92, 71, 0.12);
  border-radius: 12px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 2px 10px rgba(58, 40, 32, 0.04);
}

.profile-edit-form__title {
  margin: 0;
  font-family: var(--font-ui);
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
}

.profile-edit-form__hint {
  margin: -4px 0 0;
}

.profile-edit-form .account-form__actions {
  margin-top: 4px;
}

@media (max-width: 560px) {
  .profile-sheet__hero {
    flex-wrap: wrap;
  }

  .profile-sheet__edit {
    width: 100%;
  }

  .profile-sheet__row {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .profile-sheet__value {
    text-align: left;
    padding-left: 42px;
  }

  .profile-sheet__row--note p {
    padding-left: 18px;
  }
}

.account-panel__bar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 4px 16px;
  position: sticky;
  top: 0;
  z-index: 2;
  background: #f5f0eb;
}

.account-panel__back {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 50%;
  background: var(--white);
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-dark);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}

.account-panel__title {
  flex: 1;
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--text-dark);
}

.account-panel__action {
  border: 0;
  background: transparent;
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  padding: 8px 4px;
}

.account-empty {
  text-align: center;
  padding: 40px 20px;
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 71, 0.1);
}

.account-empty p {
  margin: 0 0 16px;
  color: #666;
}

/* Flipkart-style order list */
.fk-orders {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 71, 0.1);
  overflow: hidden;
}

.fk-order {
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.fk-order:last-child {
  border-bottom: 0;
}

.fk-order__row {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 0;
  background: transparent;
  text-align: left;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.fk-order__row:hover {
  background: rgba(139, 92, 71, 0.04);
}

.fk-order__thumb {
  width: 56px;
  height: 56px;
  object-fit: cover;
  border-radius: 8px;
  background: #f5f0eb;
  flex-shrink: 0;
}

.fk-order__body {
  flex: 1;
  min-width: 0;
}

.fk-order__status {
  margin: 0 0 4px;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--text-dark);
}

.fk-order__status--delivered,
.fk-order__status--shipped,
.fk-order__status--confirmed {
  color: #1a7f37;
}

.fk-order__status--cancelled,
.fk-order__status--refunded {
  color: #b42318;
}

.fk-order__status--pending,
.fk-order__status--processing {
  color: #9a6700;
}

.fk-order__title {
  margin: 0 0 2px;
  font-size: 0.88rem;
  color: #555;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fk-order__more {
  color: #888;
}

.fk-order__meta {
  margin: 0;
  font-size: 0.78rem;
  color: #888;
}

.fk-order__chevron {
  font-size: 1.35rem;
  color: #aaa;
  transition: transform 0.15s ease;
}

.fk-order.is-open .fk-order__chevron {
  transform: rotate(90deg);
}

.fk-order__detail {
  padding: 0 16px 14px 84px;
  background: #faf8f6;
}

.fk-order__items {
  list-style: none;
  margin: 0;
  padding: 0;
}

.fk-order__item {
  display: flex;
  gap: 10px;
  padding: 10px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.fk-order__item img {
  width: 44px;
  height: 52px;
  object-fit: cover;
  border-radius: 6px;
  background: #eee;
}

.fk-order__item-title {
  margin: 0 0 2px;
  font-size: 0.88rem;
  font-weight: 500;
}

.fk-order__item-meta {
  margin: 0 0 2px;
  font-size: 0.78rem;
  color: #777;
}

.fk-order__item-price {
  margin: 0;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
}

.fk-order__foot {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-top: 8px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  font-size: 0.85rem;
  color: #666;
}

/* Forms */
.account-form {
  background: var(--white);
  border-radius: 12px;
  border: 1px solid rgba(139, 92, 71, 0.1);
  padding: 18px 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.account-form__field label {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--text-dark);
}

.account-form__field input,
.account-form__field select {
  width: 100%;
  padding: 11px 12px;
  border: 1px solid rgba(139, 92, 71, 0.25);
  border-radius: 8px;
  font: inherit;
  font-size: 0.95rem;
  background: #fff;
}

.account-form__field input:disabled {
  background: #f3f1ef;
  color: #666;
}

.account-form__hint {
  margin: 4px 0 0;
  font-size: 0.75rem;
  color: #888;
}

.account-form__group {
  padding-top: 8px;
  border-top: 1px dashed rgba(139, 92, 71, 0.2);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.account-form__group-title {
  margin: 0;
  font-size: 0.88rem;
  font-weight: 600;
}

.account-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.account-form__check {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
}

.account-form__error {
  margin: 0;
  color: #a33;
  font-size: 0.85rem;
  min-height: 1.2em;
}

.account-form__submit {
  width: 100%;
  margin-top: 4px;
}

.account-form__actions {
  display: flex;
  gap: 10px;
}

.account-form__actions .btn {
  flex: 1;
}

.account-address-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 14px;
}

.account-address-card {
  background: var(--white);
  border: 1px solid rgba(139, 92, 71, 0.12);
  border-radius: 12px;
  padding: 14px 16px;
}

.account-address-card__head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.account-address-card__badge {
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 2px 8px;
  border-radius: 999px;
  background: rgba(139, 92, 71, 0.12);
  color: var(--primary);
}

.account-address-card__name {
  margin: 0 0 4px;
  font-size: 0.88rem;
  color: #444;
}

.account-address-card__text {
  margin: 0;
  font-size: 0.88rem;
  color: #666;
  line-height: 1.45;
  white-space: pre-line;
}

.account-address-card__actions {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.account-address-card__actions button {
  border: 0;
  background: transparent;
  padding: 0;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary);
  cursor: pointer;
}

.account-address-card__actions button.is-danger {
  color: #a33;
}

.account-address-form {
  margin-top: 4px;
}

@media (max-width: 480px) {
  .account-form__row {
    grid-template-columns: 1fr;
  }

  .fk-order__detail {
    padding-left: 16px;
  }
}

.cart-checkout-modal__panel {
  max-height: 90vh;
  overflow-y: auto;
}

.order-confirmation {
  max-width: 640px;
  margin: 40px auto 80px;
}

.order-confirmation__card {
  background: #f5e8df;
  border-radius: 16px;
  padding: 32px 28px;
  text-align: center;
}

.order-confirmation__badge {
  display: inline-block;
  margin: 0 0 12px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #8b5c47;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.order-confirmation__card h2 {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 28px;
  color: #3a2820;
}

.order-confirmation__lead {
  margin: 0 0 20px;
  color: rgba(58, 40, 32, 0.85);
  line-height: 1.5;
}

.order-confirmation__meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-bottom: 16px;
  text-align: left;
}

.order-confirmation__meta span {
  display: block;
  font-size: 12px;
  color: rgba(58, 40, 32, 0.65);
  margin-bottom: 4px;
}

.order-confirmation__meta strong {
  font-size: 15px;
  color: #3a2820;
}

.order-confirmation__payment {
  margin: 0 0 20px;
  font-size: 14px;
  color: #3a2820;
}

.order-confirmation__items {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  text-align: left;
  border-top: 1px solid rgba(139, 92, 71, 0.2);
}

.order-confirmation__item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(139, 92, 71, 0.15);
  font-size: 14px;
}

.order-confirmation__item span:last-of-type {
  grid-column: 1;
  font-size: 12px;
  color: rgba(58, 40, 32, 0.7);
}

.order-confirmation__item strong {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: center;
}

.order-confirmation__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.order-confirmation--error {
  text-align: center;
  padding: 60px 20px;
}

.order-confirmation__loading {
  text-align: center;
  padding: 60px 20px;
  color: rgba(58, 40, 32, 0.75);
}

.cart-empty {
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 60px 20px;
  width: 100%;
}

.cart-main.is-empty .cart-empty {
  display: flex;
}

.cart-empty[hidden] {
  display: none !important;
}

.cart-empty h2 {
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 600;
  color: #3a2820;
  margin: 0 0 12px;
}

.cart-empty p {
  font-family: var(--font-body);
  font-size: 16px;
  color: #8b5c47;
  margin: 0 0 24px;
}

.cart-empty__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 24px;
  border-radius: 10px;
  background: #8b5c47;
  color: #fff;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 500;
}

@media (max-width: 1200px) {
  .cart-layout {
    grid-template-columns: 1fr;
    max-width: 630px;
    margin: 0 auto;
  }

  .cart-summary {
    min-height: auto;
  }
}

@media (max-width: 768px) {
  .cart-item {
    grid-template-columns: 90px minmax(0, 1fr);
    grid-template-rows: auto auto;
  }

  .cart-item__image {
    width: 90px;
    height: 130px;
    grid-row: 1 / 2;
  }

  .cart-item__pricing {
    grid-column: 1 / -1;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding-top: 8px;
    border-top: 1px solid rgba(139, 92, 71, 0.15);
  }

  .cart-item__title {
    font-size: 18px;
    line-height: 1.3;
  }
}

/* Size chart modal */
.size-chart-modal {
  position: fixed;
  inset: 0;
  z-index: 1200;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}

.size-chart-modal[hidden] {
  display: none;
}

.size-chart-modal__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(26, 18, 14, 0.45);
}

.size-chart-modal__panel {
  position: relative;
  width: min(100%, 560px);
  max-height: 92vh;
  background: #fdf8f4;
  border-radius: 18px 18px 0 0;
  display: flex;
  flex-direction: column;
  box-shadow: 0 -8px 32px rgba(58, 40, 32, 0.18);
}

.size-chart-modal__header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 16px;
  border-bottom: 1px solid rgba(196, 144, 122, 0.35);
}

.size-chart-modal__back {
  width: 36px;
  height: 36px;
  border: none;
  border-radius: 50%;
  background: #faf6f2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #3a2820;
}

.size-chart-modal__back svg {
  width: 22px;
  height: 22px;
  fill: currentColor;
}

.size-chart-modal__title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 600;
  color: #3a2820;
}

.size-chart-modal__body {
  flex: 1;
  overflow: auto;
  padding: 16px;
}

.size-chart-modal__footer {
  padding: 12px 16px 18px;
  border-top: 1px solid rgba(196, 144, 122, 0.35);
  background: #fdf8f4;
}

.size-chart-modal__apply {
  width: 100%;
}

.size-chart-product-card {
  display: flex;
  gap: 12px;
  padding: 12px;
  background: #fff;
  border: 1px solid rgba(196, 144, 122, 0.35);
  border-radius: 12px;
  margin-bottom: 16px;
}

.size-chart-product-card img {
  width: 72px;
  height: 96px;
  object-fit: cover;
  border-radius: 8px;
  flex-shrink: 0;
}

.size-chart-product-card__brand {
  margin: 0 0 4px;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #3a2820;
}

.size-chart-product-card__title {
  margin: 0 0 6px;
  font-family: var(--font-ui);
  font-size: 13px;
  line-height: 18px;
  color: rgba(58, 40, 32, 0.7);
}

.size-chart-product-card__price {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  color: #3a2820;
}

.size-chart-product-card__price del {
  margin-left: 6px;
  font-weight: 400;
  color: rgba(58, 40, 32, 0.45);
}

.size-chart-tabs {
  display: flex;
  gap: 24px;
  border-bottom: 1px solid rgba(196, 144, 122, 0.35);
  margin-bottom: 14px;
}

.size-chart-tabs button {
  border: none;
  background: none;
  padding: 0 0 10px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: rgba(58, 40, 32, 0.55);
  cursor: pointer;
  position: relative;
}

.size-chart-tabs button.is-active {
  color: #3a2820;
  font-weight: 600;
}

.size-chart-tabs button.is-active::after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 3px;
  background: #8b5c47;
  border-radius: 3px 3px 0 0;
}

.size-chart-unit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
  font-family: var(--font-ui);
  font-size: 14px;
  color: #3a2820;
}

.size-chart-unit-toggle {
  display: inline-flex;
  padding: 3px;
  border-radius: 999px;
  background: #efe4dc;
}

.size-chart-unit-toggle button {
  border: none;
  background: transparent;
  padding: 6px 14px;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  color: rgba(58, 40, 32, 0.65);
  cursor: pointer;
}

.size-chart-unit-toggle button.is-active {
  background: #3a2820;
  color: #fff;
}

.size-chart-table-wrap {
  overflow-x: auto;
  border: 1px solid rgba(196, 144, 122, 0.35);
  border-radius: 10px;
  background: #fff;
  margin-bottom: 12px;
}

.size-chart-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
  font-family: var(--font-ui);
  font-size: 13px;
}

.size-chart-table th:first-child,
.size-chart-table td:first-child {
  position: sticky;
  left: 0;
  z-index: 1;
  background: #fff;
}

.size-chart-table thead th:first-child {
  background: #faf6f2;
}

.size-chart-table tr.is-selected td:first-child {
  background: #fff;
}

.size-chart-table th,
.size-chart-table td {
  padding: 10px 8px;
  text-align: center;
  border-bottom: 1px solid rgba(196, 144, 122, 0.2);
  white-space: nowrap;
}

.size-chart-table th {
  font-weight: 600;
  color: rgba(58, 40, 32, 0.75);
  background: #faf6f2;
}

.size-chart-table tr.is-selected td {
  font-weight: 600;
  color: #3a2820;
}

.size-chart-table tr {
  cursor: pointer;
}

.size-chart-table input[type="radio"] {
  accent-color: #8b5c47;
}

.size-chart-seller {
  padding: 10px 14px;
  border: 1px solid rgba(196, 144, 122, 0.35);
  border-radius: 10px;
  background: #fff;
  font-family: var(--font-ui);
  font-size: 13px;
  color: rgba(58, 40, 32, 0.75);
  margin-bottom: 16px;
}

.size-chart-guide p {
  margin: 0 0 12px;
  font-family: var(--font-ui);
  font-size: 14px;
  line-height: 1.5;
  color: rgba(58, 40, 32, 0.8);
}

@media (min-width: 768px) {
  .size-chart-modal {
    align-items: center;
    padding: 24px;
  }

  .size-chart-modal__panel {
    border-radius: 16px;
    max-height: 88vh;
  }
}

/* ========== AUTH (Login / Register) ========== */
.auth-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px 16px 40px;
  background: var(--bg-cream);
}

.auth-page__wrap {
  width: 100%;
  max-width: 440px;
}

.auth-page__back {
  display: inline-block;
  margin-bottom: 16px;
  font-family: var(--font-ui);
  font-size: 14px;
  color: var(--primary);
}

.auth-page__back:hover {
  text-decoration: underline;
}

.auth-card {
  background: var(--white);
  border: 1px solid rgba(139, 92, 71, 0.15);
  border-radius: 16px;
  padding: 36px 28px 32px;
  box-shadow: 0 8px 32px rgba(58, 40, 32, 0.08);
}

.auth-card__brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 28px;
}

.auth-card__brand img {
  width: 64px;
  height: 64px;
  margin-bottom: 12px;
}

.auth-card__brand h1 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 500;
  color: var(--primary);
  margin: 0;
}

.auth-card__brand p {
  margin: 8px 0 0;
  font-size: 14px;
  color: rgba(58, 40, 32, 0.65);
  line-height: 1.5;
}

.auth-card__error {
  background: #fdecea;
  color: #8b3a3a;
  border: 1px solid #ffcdd2;
  border-radius: 8px;
  padding: 12px 14px;
  font-size: 13px;
  margin-bottom: 16px;
}

.auth-form {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.auth-form label {
  font-family: var(--font-ui);
  font-size: 13px;
  font-weight: 500;
  color: var(--text-dark);
  margin-top: 6px;
}

.auth-form input[type="text"],
.auth-form input[type="email"],
.auth-form input[type="password"] {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid rgba(139, 92, 71, 0.25);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text-dark);
  background: var(--white);
}

.auth-form input:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(139, 92, 71, 0.12);
}

.auth-field-password {
  position: relative;
}

.auth-field-password input {
  padding-right: 44px;
}

.auth-toggle-password {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: transparent;
  cursor: pointer;
  padding: 6px;
  color: rgba(58, 40, 32, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.auth-toggle-password svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.auth-form__hint {
  font-size: 12px;
  color: rgba(58, 40, 32, 0.55);
  margin: -2px 0 4px;
}

.auth-form__submit {
  width: 100%;
  margin-top: 12px;
  padding: 13px 20px;
  font-size: 15px;
}

.auth-divider {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 22px 0 18px;
  color: rgba(58, 40, 32, 0.45);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.auth-divider::before,
.auth-divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: rgba(139, 92, 71, 0.2);
}

.auth-google-wrap {
  width: 100%;
}

.auth-google-error {
  margin: 10px 0 0;
  font-size: 13px;
  color: #8b3a3a;
  text-align: center;
}

.auth-google-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 12px 16px;
  border: 1px solid rgba(139, 92, 71, 0.25);
  border-radius: 999px;
  background: var(--white);
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s;
}

.auth-google-btn:hover {
  background: #faf6f2;
  border-color: rgba(139, 92, 71, 0.4);
}

.auth-google-btn.is-loading,
.auth-google-btn:disabled {
  opacity: 0.65;
  cursor: wait;
}

.auth-google-btn svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.auth-page__switch {
  text-align: center;
  margin-top: 20px;
  font-size: 14px;
  color: rgba(58, 40, 32, 0.7);
}

.auth-page__switch a {
  color: var(--primary);
  font-weight: 500;
}

.auth-page__switch a:hover {
  text-decoration: underline;
}

.auth-account {
  text-align: center;
}

.auth-account__name {
  font-family: var(--font-display);
  font-size: 1.4rem;
  color: var(--primary);
  margin-bottom: 6px;
}

.auth-account__email {
  font-size: 14px;
  color: rgba(58, 40, 32, 0.65);
  margin-bottom: 24px;
}

.auth-account__actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.auth-account__actions .btn--outline {
  width: 100%;
}

/* Product detail page description styles */
.product-left-col {
  display: flex;
  flex-direction: column;
  gap: 32px;
  width: 100%;
  max-width: 561px;
  margin: 0 auto;
}

.product-description {
  margin-top: 12px;
  padding: 0 4px;
}

.product-description__title {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 500;
  color: var(--text-dark);
  margin-bottom: 16px;
  border-bottom: 2px solid var(--text-accent);
  padding-bottom: 6px;
  display: inline-block;
}

.product-description__content {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-dark);
  opacity: 0.85;
  white-space: pre-line;
}

/* ========== MOBILE STYLING OVERRIDES (<= 600px) ========== */
@media (max-width: 600px) {

  /* Fix product gallery placement & sub-images stack */
  .product-gallery {
    flex-direction: column-reverse !important;
    width: 100% !important;
    max-width: 100% !important;
    gap: 16px !important;
    margin: 0 auto !important;
  }

  .product-gallery__thumbs {
    flex-direction: row !important;
    width: 100% !important;
    justify-content: flex-start !important;
    overflow-x: auto !important;
    gap: 10px !important;
    padding-bottom: 6px !important;
    display: flex !important;
  }

  .product-gallery__thumb {
    width: 70px !important;
    height: 100px !important;
    flex-shrink: 0 !important;
  }

  .product-gallery__main {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    aspect-ratio: 419 / 635 !important;
  }

  /* Fix You May Also Like Section cards alignment & sizing */
  .product-related__grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .product-related__grid .women-card {
    width: 100% !important;
    height: auto !important;
    max-width: none !important;
    padding: 8px !important;
    border-radius: 12px !important;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06) !important;
  }

  .product-related__grid .women-card__media {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 230 / 300 !important;
  }

  .product-related__grid .women-card__body {
    padding: 8px 4px 4px !important;
  }

  .product-related__grid .women-card__type {
    font-size: 14px !important;
    margin-bottom: 2px !important;
  }

  .product-related__grid .women-card__meta {
    font-size: 11px !important;
    margin-bottom: 6px !important;
  }

  .product-related__grid .women-card__prices {
    gap: 6px !important;
  }

  .product-related__grid .women-card__price {
    font-size: 13px !important;
  }

  .product-related__grid .women-card__original {
    font-size: 11px !important;
  }

  .product-related__grid .women-card__discount {
    font-size: 10px !important;
  }

  /* Fix Size Chart Modal Table responsiveness */
  .size-chart-table {
    min-width: 100% !important;
  }

  .size-chart-table th,
  .size-chart-table td {
    padding: 8px 4px !important;
    font-size: 11px !important;
  }

  /* Keep first and second columns sticky for side-by-side scrolls */
  .size-chart-table th:nth-child(2),
  .size-chart-table td:nth-child(2) {
    position: sticky;
    left: 28px;
    z-index: 1;
    background: #fff;
  }

  .size-chart-table thead th:nth-child(2) {
    background: #faf6f2;
  }

  .size-chart-table tr.is-selected td:nth-child(2) {
    background: #fff;
  }
}