:root {
  --bg: #faf4ef;
  --bg-warm: #f6ece6;
  --bg-sand: #f1e0d6;
  --bg-bar: #7a4a3e;
  --brown: #8b5348;
  --brown-mid: #7a4a3e;
  --brown-dark: #5c322a;
  --brown-deep: #3f221c;
  --sun: #d48978;
  --sun-soft: #e8b5a8;
  --text: #2c221f;
  --muted: #8a7368;
  --muted-2: #a89084;
  --white: #ffffff;
  --border: #ead5ca;
  --border-soft: #f0e4dc;
  --star: #c97b6c;
  --shadow: 0 8px 24px rgba(92, 50, 42, 0.08);
  --shadow-soft: 0 4px 16px rgba(92, 50, 42, 0.06);
  --radius: 14px;
  --radius-sm: 8px;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-body: "Poppins", "Segoe UI", sans-serif;
  --font-script: "Great Vibes", "Segoe Script", cursive;
  --header-h: 74px;
  --announce-h: 32px;
  --container: 1180px;
  --transition: 250ms ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text);
  background: var(--bg);
  line-height: 1.65;
  overflow-x: hidden;
}

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

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

button,
input,
select {
  font-family: inherit;
}

.container-site {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.container-wide {
  width: min(100% - 32px, 1240px);
  margin-inline: auto;
}

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--brown-dark);
  letter-spacing: 0.01em;
  line-height: 1.15;
}

.section-heading {
  text-align: center;
}

.section-heading h2 {
  font-size: clamp(32px, 4vw, 44px);
  margin: 0 0 10px;
}

.section-kicker {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--brown);
  margin-bottom: 8px;
}

.ornament {
  width: 42px;
  height: 10px;
  background:
    radial-gradient(circle at 21px 5px, var(--brown) 1.4px, transparent 1.6px),
    linear-gradient(var(--brown), var(--brown)) center / 28px 1px no-repeat;
  opacity: 0.7;
}

.section-heading p {
  color: var(--muted);
  font-size: 13.5px;
  margin: 0;
  font-weight: 300;
}

/* Announcement */
.announce {
  background: var(--bg-bar);
  color: #f8efe9;
  min-height: var(--announce-h);
  display: flex;
  align-items: center;
  font-size: 11.5px;
  letter-spacing: 0.04em;
  position: relative;
  z-index: 30;
}

.announce-inner {
  width: min(100% - 28px, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 6px 0;
}

.announce-text {
  text-align: center;
  width: 100%;
  padding-left: 72px;
}

.announce-social {
  display: flex;
  gap: 10px;
  font-size: 13px;
}

.announce-social a {
  color: #f8efe9;
  opacity: 0.8;
  transition: opacity var(--transition);
}

.announce-social a:hover {
  opacity: 1;
}

/* Navbar */
.site-header {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 40;
}

.navbar-main {
  width: min(100% - 28px, 1280px);
  margin: 0 auto;
  min-height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 8px;
}

.brand img,
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  object-fit: cover;
  box-shadow: 0 0 0 2px #f3e0d6;
}

.brand-name {
  font-family: var(--font-serif);
  font-size: 18px;
  letter-spacing: 0.28em;
  line-height: 1.1;
  color: var(--brown-dark);
  font-weight: 600;
  text-transform: uppercase;
}

.nav-center {
  display: flex;
  justify-content: center;
  gap: 28px;
}

.nav-center a {
  font-size: 13.5px;
  color: var(--brown-dark);
  font-weight: 400;
  position: relative;
  padding: 6px 0;
}

.nav-center a.active::after,
.nav-center a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--brown);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
}

.icon-btn {
  background: none;
  border: 0;
  padding: 0;
  color: var(--brown-dark);
  font-size: 18px;
  position: relative;
  line-height: 1;
  cursor: pointer;
}

.icon-btn .badge {
  position: absolute;
  top: -7px;
  right: -8px;
  min-width: 16px;
  height: 16px;
  border-radius: 99px;
  background: var(--brown);
  color: #fff;
  font-size: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 500;
}

.menu-toggle,
.nav-mobile-only {
  display: none;
}

/* Search overlay */
.search-overlay {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
  padding: 16px 0 20px;
  box-shadow: var(--shadow-soft);
}

.search-overlay.open {
  display: block;
}

.search-overlay form {
  width: min(100% - 40px, 640px);
  margin: 0 auto;
  display: flex;
  gap: 8px;
}

.search-overlay input {
  flex: 1;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 6px;
  padding: 10px 14px;
  font-size: 14px;
  outline: none;
  color: var(--text);
}

.search-overlay button {
  background: var(--brown);
  color: #fff;
  border: 0;
  border-radius: 6px;
  padding: 10px 18px;
}

/* Hero */
.hero {
  position: relative;
  background: var(--bg);
  overflow: hidden;
  min-height: 640px;
}

.hero-inner {
  width: min(100%, 1280px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  min-height: 640px;
  position: relative;
  z-index: 2;
}

.hero-copy {
  padding: 64px 32px 48px 56px;
  position: relative;
  z-index: 3;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 18px;
  font-size: 12px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sun);
  font-weight: 500;
}

.hero-kicker span {
  font-family: "Noto Serif Devanagari", var(--font-serif);
  font-size: 18px;
  letter-spacing: 0;
  text-transform: none;
  color: var(--brown-dark);
  background: linear-gradient(180deg, #f8e4dc, #f1d2c6);
  border: 1px solid #ead0c4;
  border-radius: 999px;
  padding: 4px 12px 6px;
  line-height: 1;
}

.hero-copy h1 {
  font-size: clamp(42px, 5.6vw, 70px);
  font-weight: 500;
  margin: 0 0 18px;
  color: var(--brown-dark);
  letter-spacing: -0.02em;
  line-height: 1.08;
}

.hero-copy h1 em {
  font-style: italic;
  font-weight: 500;
  color: var(--brown-mid);
  background: linear-gradient(90deg, var(--sun), var(--brown-mid));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  max-width: 440px;
  margin: 0 0 28px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.7;
  font-weight: 300;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 14px;
}

.btn-brown {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--brown-mid);
  color: #fff !important;
  border: 1px solid var(--brown-mid);
  border-radius: 8px;
  padding: 12px 22px;
  font-size: 13.5px;
  font-weight: 400;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 8px 20px rgba(122, 74, 62, 0.18);
}

.btn-brown:hover {
  background: var(--brown-dark);
  transform: translateY(-1px);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--brown-dark);
  font-size: 13.5px;
  letter-spacing: 0.04em;
  border-bottom: 1px solid var(--sun);
  padding-bottom: 2px;
}

.btn-ghost:hover {
  color: var(--brown-mid);
}

.hero-pills {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--brown);
  font-size: 14px;
  margin-bottom: 26px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.hero-pills span {
  opacity: 0.45;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: transparent;
  color: var(--brown-dark);
  border: 1px solid var(--brown);
  border-radius: 8px;
  padding: 8px 16px;
  font-size: 13px;
  transition: background var(--transition), color var(--transition);
}

.btn-outline:hover {
  background: var(--brown-mid);
  color: #fff;
  border-color: var(--brown-mid);
}

.hero-benefits {
  display: flex;
  gap: 28px;
  margin-top: 42px;
}

.hero-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--brown);
  font-size: 12.5px;
  line-height: 1.25;
}

.hero-benefit i {
  font-size: 22px;
  opacity: 0.85;
}

.hero-strip {
  position: relative;
  z-index: 4;
  background: #fff9f5;
  border-top: 1px solid var(--border);
}

.hero-strip-inner {
  width: min(100% - 40px, 1080px);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: stretch;
}

.hero-value {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  text-align: center;
  gap: 8px;
  padding: 28px 28px 30px;
  position: relative;
  min-height: 148px;
}

.hero-value:not(:last-child)::after {
  content: "";
  position: absolute;
  right: 0;
  top: 28px;
  bottom: 28px;
  width: 1px;
  background: linear-gradient(180deg, transparent, #e0bfb2 18%, #e0bfb2 82%, transparent);
}

.hero-value-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(180deg, #fff, #f8e9e2);
  color: var(--brown-mid);
  display: grid;
  place-items: center;
  font-size: 20px;
  box-shadow: 0 0 0 1px #f0d8ce, var(--shadow-soft);
  margin-bottom: 6px;
}

.hero-value strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--brown-dark);
  line-height: 1.25;
  min-height: 1.25em;
}

.hero-value > span:not(.hero-value-icon) {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.45;
  max-width: 220px;
}

.hero-value-words {
  justify-content: flex-end;
  gap: 10px;
  color: var(--brown);
  font-family: var(--font-script);
  font-size: 22px;
}

.hero-value-words em {
  font-style: normal;
}

.hero-value-words .dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sun);
  display: inline-block;
}

.hero-visual {
  position: relative;
  height: 100%;
  min-height: 640px;
}

.hero-visual img.hero-model {
  position: absolute;
  inset: 0 0 0 auto;
  width: min(100%, 560px);
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
  mask-image: linear-gradient(to right, transparent 0%, #000 18%, #000 100%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, #000 18%, #000 100%);
}

.hero-script {
  position: absolute;
  right: 48px;
  top: 56px;
  font-family: var(--font-script);
  font-size: 34px;
  line-height: 1.15;
  color: var(--brown);
  text-align: right;
  z-index: 3;
}

.hero-script i {
  display: block;
  font-size: 16px;
  margin-top: 4px;
}

.cotton-deco {
  position: absolute;
  pointer-events: none;
  z-index: 1;
}

.cotton-deco.left {
  left: -20px;
  top: 70px;
  width: 210px;
}

.cotton-deco.bottom-left {
  left: 90px;
  bottom: 20px;
  width: 150px;
  opacity: 0.9;
}

.cotton-deco.right {
  right: 8%;
  bottom: 18px;
  width: 120px;
  opacity: 0.85;
}

/* Shop by category */
.section {
  padding: 72px 0;
}

.section-tight {
  padding: 56px 0;
}

.category-row,
.carousel-track {
  display: flex;
  gap: 28px;
}

.category-section .carousel-track {
  justify-content: space-between;
  overflow: visible;
}

.category-item {
  flex: 1;
  min-width: 0;
  text-align: center;
}

.category-item a {
  display: block;
}

.category-avatar {
  width: min(100%, 168px);
  aspect-ratio: 1;
  margin: 0 auto 16px;
  border-radius: 50%;
  overflow: hidden;
  border: 3px solid #fff;
  box-shadow: var(--shadow);
  background: var(--bg-sand);
}

.category-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.category-item a:hover .category-avatar img {
  transform: scale(1.06);
}

.category-item h3 {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 400;
  margin: 0;
  color: var(--brown-dark);
}

/* Peek carousels */
.peek-carousel {
  position: relative;
}

.carousel-viewport {
  overflow: visible;
}

.carousel-btn {
  display: none;
  position: absolute;
  top: 38%;
  transform: translateY(-50%);
  z-index: 4;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--brown-dark);
  box-shadow: var(--shadow-soft);
  align-items: center;
  justify-content: center;
}

.carousel-btn.prev { left: -6px; }
.carousel-btn.next { right: -6px; }

.carousel-track {
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.carousel-track::-webkit-scrollbar {
  display: none;
}

/* Bestsellers */
.bestsellers-head {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  margin-bottom: 28px;
  gap: 16px;
}

.bestsellers-head .section-heading {
  text-align: left;
}

.product-grid,
.bestsellers-track {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.product-card {
  background: transparent;
}

.product-media {
  position: relative;
  display: block;
  border-radius: 16px;
  overflow: hidden;
  background: var(--bg-sand);
  aspect-ratio: 4 / 5.05;
  box-shadow: var(--shadow-soft);
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.product-card:hover .product-media img {
  transform: scale(1.04);
}

.wish-btn,
.wa-icon {
  position: absolute;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 252, 248, 0.92);
  color: var(--brown-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-soft);
  cursor: pointer;
  z-index: 2;
}

.wish-btn {
  top: 12px;
  right: 12px;
}

.wish-btn.active {
  color: #b42318;
}

.wa-icon {
  top: 12px;
  left: 12px;
  color: #25d366;
  font-size: 16px;
}

.product-body {
  padding: 14px 4px 0;
}

.product-body h3 {
  font-family: var(--font-body);
  font-size: 14.5px;
  font-weight: 400;
  margin: 0 0 4px;
  color: var(--text);
}

.product-price {
  color: var(--brown);
  font-size: 15px;
  font-weight: 500;
  margin-bottom: 4px;
}

.product-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}

.product-rating .stars {
  color: var(--star);
  letter-spacing: 1px;
  font-size: 12px;
}

.btn-add {
  width: 100%;
  border: 1px solid var(--brown);
  background: transparent;
  color: var(--brown-dark);
  border-radius: 8px;
  padding: 8px 12px;
  font-size: 13px;
  transition: background var(--transition), color var(--transition);
}

.btn-add:hover {
  background: var(--brown-mid);
  color: #fff;
}

.wa-link {
  display: none;
  align-items: center;
  gap: 6px;
  margin-top: 8px;
  font-size: 12px;
  color: #1f7a46;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

/* Benefits */
.benefits {
  background: var(--bg);
  padding: 28px 0 64px;
}

.benefits-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  text-align: center;
}

.benefit-item i {
  font-size: 28px;
  color: var(--brown);
  display: block;
  margin-bottom: 10px;
}

.benefit-item h3 {
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  margin: 0 0 4px;
}

.benefit-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

/* Story */
.story {
  padding: 20px 0 72px;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.story-visual {
  position: relative;
  min-height: 420px;
  border-radius: 8px;
  overflow: hidden;
  background:
    radial-gradient(circle at 18% 25%, #fff8f4 0 7%, transparent 7.5%),
    radial-gradient(circle at 28% 18%, #f3e0d6 0 8%, transparent 8.5%),
    radial-gradient(circle at 36% 29%, #fff 0 7%, transparent 7.5%),
    linear-gradient(135deg, #d48978, #f1e0d6 52%, #8b5348);
}

.story-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../assets/svg/cotton.svg") left -8% bottom -12% / 48% no-repeat,
    url("../assets/svg/cotton.svg") right -4% top 3% / 38% no-repeat;
  opacity: 0.92;
}

.pack-box {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -46%);
  width: min(70%, 280px);
  aspect-ratio: 1.15 / 1;
  background: #f6ece6;
  border: 1px solid #ead5ca;
  box-shadow: 0 18px 40px rgba(92, 50, 42, 0.18);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
  padding: 24px;
}

.pack-box img {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: 10px;
  box-shadow: 0 6px 18px rgba(92, 50, 42, 0.18);
}

.pack-box strong {
  font-family: var(--font-serif);
  letter-spacing: 0.18em;
  font-size: 14px;
  font-weight: 600;
}

.pack-box span {
  margin-top: 10px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--brown);
}

.story-copy h2 {
  font-size: clamp(32px, 4vw, 46px);
  margin: 0 0 18px;
}

.story-copy p {
  color: var(--muted);
  font-size: 14.5px;
  max-width: 520px;
  margin-bottom: 26px;
}

.story-wrap {
  position: relative;
}

.story-script {
  position: absolute;
  right: 0;
  top: 24px;
  font-family: var(--font-script);
  font-size: 28px;
  line-height: 1.25;
  color: var(--brown);
  text-align: right;
  opacity: 0.85;
}

/* Journey */
.journey-track {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
  margin-top: 28px;
}

.journey-item {
  border-radius: 12px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-sand);
}

.journey-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.journey-item:hover img {
  transform: scale(1.05);
}

.journey-tile {
  background: var(--bg-sand);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 16px;
}

.journey-tile p {
  font-family: var(--font-script);
  font-size: 28px;
  line-height: 1.2;
  color: var(--brown);
  margin: 0;
}

/* Newsletter */
.newsletter {
  padding: 10px 0 72px;
}

.newsletter-box {
  background: var(--bg-sand);
  border-radius: 28px;
  padding: 42px 48px;
  display: grid;
  grid-template-columns: 90px 1fr 90px;
  align-items: center;
  gap: 12px;
  position: relative;
  overflow: hidden;
}

.newsletter-copy {
  text-align: center;
}

.newsletter-copy h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 0 0 8px;
}

.newsletter-copy p {
  color: var(--muted);
  margin: 0 0 22px;
  font-size: 13.5px;
}

.newsletter-form {
  display: flex;
  justify-content: center;
  gap: 10px;
  max-width: 520px;
  margin: 0 auto;
}

.newsletter-form input {
  flex: 1;
  border: 0;
  background: #fff;
  border-radius: 8px;
  padding: 12px 16px;
  outline: none;
  font-size: 13.5px;
}

.newsletter-form button {
  background: var(--brown-mid);
  color: #fff;
  border: 0;
  border-radius: 8px;
  padding: 12px 22px;
  min-width: 120px;
}

.newsletter-success {
  display: none;
  color: var(--brown-mid);
  font-size: 14px;
  margin-top: 12px;
}

.newsletter-success.show {
  display: block;
}

.newsletter-side {
  opacity: 0.9;
}

.newsletter-side img {
  width: 88px;
  margin: 0 auto;
}

.stay {
  text-align: center;
  color: var(--brown);
  font-size: 12px;
}

/* Footer */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border-soft);
  padding-top: 48px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 32px;
  padding-bottom: 36px;
}

.footer-brand .brand img {
  width: 52px;
  height: 52px;
}

.footer-brand .brand-name {
  font-size: 20px;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  margin: 0 0 14px;
}

.footer-col a,
.footer-col p {
  display: block;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 8px;
}

.footer-col a:hover {
  color: var(--brown-dark);
}

.made-in {
  text-align: right;
}

.made-in h3 {
  font-size: 28px;
  margin: 0;
  line-height: 1.2;
}

.made-in .heart {
  color: var(--brown);
  margin: 8px 0 16px;
}

.made-in .socials {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  font-size: 16px;
  color: var(--brown);
}

.footer-bar {
  background: var(--brown-mid);
  color: #f4eadf;
  font-size: 12.5px;
  padding: 14px 0;
}

.footer-bar-inner {
  width: min(100% - 40px, var(--container));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 12px;
}

/* Floating */
.float-wa {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #25d366;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.35);
  z-index: 50;
  transition: transform var(--transition);
}

.float-wa:hover {
  transform: translateY(-2px);
}

.to-top {
  position: fixed;
  right: 26px;
  bottom: 86px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: #fff;
  color: var(--brown-dark);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 50;
  box-shadow: var(--shadow-soft);
}

.to-top.show {
  display: flex;
}

/* Page heads */
.page-hero {
  padding: 48px 0 20px;
  text-align: center;
}

.page-hero h1 {
  font-size: clamp(34px, 4vw, 48px);
  margin-bottom: 8px;
}

.page-hero p {
  color: var(--muted);
  margin: 0;
}

.toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0 28px;
}

.toolbar input,
.toolbar select {
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 8px;
  padding: 10px 12px;
  color: var(--text);
  outline: none;
  min-height: 42px;
}

.toolbar input {
  flex: 1;
  min-width: 180px;
}

.toolbar select {
  min-width: 180px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  width: 100%;
}

.chip {
  border: 1px solid var(--border);
  background: #fff;
  color: var(--brown-dark);
  border-radius: 999px;
  padding: 6px 12px;
  font-size: 12.5px;
}

.chip.active {
  background: var(--brown-mid);
  color: #fff;
  border-color: var(--brown-mid);
}

.empty-note {
  text-align: center;
  color: var(--muted);
  padding: 40px 0;
}

/* Product detail */
.pdp {
  padding: 36px 0 72px;
}

.pdp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}

.pdp-image {
  background: var(--bg-sand);
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
}

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

.thumbs {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.thumbs button {
  width: 72px;
  height: 90px;
  padding: 0;
  border: 1px solid transparent;
  border-radius: 8px;
  overflow: hidden;
  background: var(--bg-sand);
}

.thumbs button.active,
.thumbs button:hover {
  border-color: var(--brown);
}

.thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pdp-cat {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brown);
  margin-bottom: 8px;
}

.pdp h1 {
  font-size: clamp(30px, 3.6vw, 42px);
  margin: 0 0 10px;
}

.pdp .product-price {
  font-size: 22px;
  margin: 8px 0 14px;
}

.pdp-desc {
  color: var(--muted);
  margin-bottom: 22px;
}

.size-row,
.qty-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
  align-items: center;
}

.size-row span,
.qty-row span {
  width: 84px;
  font-size: 13px;
  color: var(--muted);
}

.size-row button {
  min-width: 42px;
  height: 38px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 6px;
}

.size-row button.active {
  border-color: var(--brown);
  background: var(--bg-sand);
}

.qty-row input {
  width: 72px;
  height: 38px;
  text-align: center;
  border: 1px solid var(--border);
  border-radius: 6px;
}

.pdp-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 8px 0 28px;
}

.pdp-actions .wish-btn {
  position: relative;
  top: auto;
  right: auto;
  width: 46px;
  height: 46px;
}

.pdp-actions .btn-brown,
.pdp-actions .btn-wa-full {
  min-height: 46px;
  padding: 12px 18px;
}

.btn-wa-full {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #25d366;
  color: #fff !important;
  border: 0;
  border-radius: 8px;
  padding: 11px 18px;
}

.accordion-item {
  background: transparent;
  border-color: var(--border) !important;
}

.accordion-button {
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--brown-dark);
  background: var(--bg) !important;
  box-shadow: none !important;
}

.accordion-button:not(.collapsed) {
  color: var(--brown-dark);
}

.accordion-body {
  color: var(--muted);
  font-size: 14px;
}

/* Cart */
.cart-layout {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr;
  gap: 28px;
  padding-bottom: 72px;
}

.cart-item {
  display: grid;
  grid-template-columns: 96px 1fr auto;
  gap: 16px;
  padding: 16px 0;
  border-bottom: 1px solid var(--border);
  align-items: center;
}

.cart-item img {
  width: 96px;
  height: 120px;
  object-fit: cover;
  border-radius: 10px;
}

.cart-item h3 {
  font-family: var(--font-body);
  font-size: 15px;
  margin: 0 0 4px;
}

.qty-controls {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 8px;
}

.qty-controls button {
  width: 28px;
  height: 28px;
  border: 1px solid var(--border);
  background: #fff;
  border-radius: 6px;
}

.cart-summary {
  background: var(--bg-sand);
  border-radius: 16px;
  padding: 22px;
  height: fit-content;
}

.cart-summary h2 {
  font-size: 28px;
  margin-bottom: 16px;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  color: var(--muted);
}

.summary-row.total {
  color: var(--brown-dark);
  font-size: 16px;
  font-weight: 500;
  border-top: 1px solid var(--border);
  padding-top: 12px;
  margin-top: 12px;
}

.link-remove {
  color: var(--muted);
  font-size: 12px;
  background: none;
  border: 0;
  padding: 0;
  cursor: pointer;
}

.mobile-menu {
  display: none;
}

.sustain-block {
  text-align: center;
  max-width: 640px;
  margin: 0 auto;
  color: var(--muted);
}

.sustain-block h2 {
  margin-bottom: 12px;
}

.contact-mini {
  text-align: center;
  color: var(--muted);
}

.contact-mini a {
  color: var(--brown);
}

/* Offcanvas override */
.offcanvas {
  background: var(--bg);
}

.offcanvas a {
  display: block;
  padding: 10px 0;
  border-bottom: 1px solid var(--border-soft);
  color: var(--brown-dark);
}

.breadcrumb {
  background: transparent;
  padding: 0;
  font-size: 12.5px;
}

.breadcrumb-item a {
  color: var(--muted);
}

.breadcrumb-item.active {
  color: var(--brown-dark);
}

@media (max-width: 1199px) {
  .hero-copy {
    padding-left: 32px;
  }
  .hero-script {
    right: 24px;
    font-size: 28px;
  }
  .hero-strip-inner {
    grid-template-columns: repeat(3, 1fr);
    width: min(100% - 24px, 1080px);
  }
  .hero-value {
    padding: 22px 16px 24px;
    min-height: 0;
  }
}

@media (max-width: 991.98px) {
  .nav-center {
    display: none;
  }

  .nav-desktop-only {
    display: none !important;
  }

  .menu-toggle,
  .nav-mobile-only {
    display: inline-flex;
  }

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

  .nav-right {
    justify-self: end;
  }

  .announce-text {
    padding-left: 0;
    font-size: 10.5px;
  }

  .hero {
    min-height: 0;
  }

  .hero-inner {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .hero-copy {
    padding: 36px 18px 20px;
    text-align: left;
  }

  .hero-copy h1 {
    font-size: 38px;
  }

  .hero-sub {
    font-size: 14px;
    max-width: none;
  }

  .hero-kicker {
    font-size: 11px;
    letter-spacing: 0.1em;
    flex-wrap: wrap;
  }

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn-brown,
  .hero-actions .btn-ghost {
    justify-content: center;
  }

  .hero-strip-inner {
    grid-template-columns: 1fr;
    width: min(100% - 24px, 1080px);
  }

  .hero-value {
    flex-direction: row;
    align-items: center;
    justify-content: flex-start;
    text-align: left;
    gap: 14px;
    padding: 16px 6px;
    min-height: 0;
  }

  .hero-value-icon {
    width: 42px;
    height: 42px;
    margin-bottom: 0;
  }

  .hero-value strong {
    font-size: 18px;
    min-height: 0;
  }

  .hero-value > span:not(.hero-value-icon) {
    max-width: none;
    text-align: left;
  }

  .hero-value:not(:last-child)::after {
    top: auto;
    bottom: 0;
    left: 12%;
    right: 12%;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0bfb2, transparent);
  }

  .hero-visual {
    min-height: 0;
    height: auto;
    margin-top: 10px;
  }

  .hero-visual img.hero-model {
    position: relative;
    inset: auto;
    width: 100%;
    height: auto;
    max-height: none;
    aspect-ratio: 1176 / 1337;
    object-fit: contain;
    object-position: center center;
    mask-image: none;
    -webkit-mask-image: none;
  }

  .hero-script {
    display: none;
  }

  .cotton-deco.left {
    width: 120px;
    top: 24px;
  }

  .cotton-deco.bottom-left,
  .cotton-deco.right {
    display: none;
  }

  .section {
    padding: 48px 0;
  }

  .bestsellers-head {
    grid-template-columns: 1fr;
  }

  .bestsellers-head .section-heading {
    text-align: center;
  }

  .bestsellers-head .btn-outline {
    justify-self: center;
  }

  .carousel-btn {
    display: flex;
  }

  .category-section .carousel-viewport,
  .bestsellers .carousel-viewport,
  .journey .carousel-viewport {
    overflow: visible;
  }

  .category-section .carousel-track,
  .bestsellers-track,
  .journey-track {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 14px;
    padding: 4px 2px 10px;
  }

  .category-item {
    flex: 0 0 52%;
    scroll-snap-align: start;
  }

  .bestsellers-track .product-card,
  .product-card.carousel-card {
    flex: 0 0 88%;
    max-width: 88%;
    scroll-snap-align: start;
  }

  .journey-item {
    flex: 0 0 88%;
    min-width: 88%;
    scroll-snap-align: start;
  }

  .wa-link {
    display: inline-flex;
  }

  .benefits-row {
    grid-template-columns: 1fr 1fr;
    row-gap: 24px;
  }

  .story-grid,
  .pdp-grid,
  .cart-layout,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .story-visual {
    min-height: 320px;
  }

  .story-script {
    position: static;
    margin-top: 18px;
    text-align: left;
    font-size: 24px;
  }

  .newsletter-box {
    grid-template-columns: 1fr;
    padding: 28px 18px;
    text-align: center;
  }

  .newsletter-side {
    display: none;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .made-in {
    text-align: left;
  }

  .made-in .socials {
    justify-content: flex-start;
  }

  .footer-bar-inner {
    flex-direction: column;
    text-align: center;
  }

  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }
}

@media (max-width: 575.98px) {
  .container-site,
  .container-wide {
    width: min(100% - 24px, var(--container));
  }

  .announce-social {
    display: none;
  }

  .announce-inner {
    grid-template-columns: 1fr;
  }

  .announce-text {
    font-size: 10px;
    line-height: 1.35;
  }

  .brand-name {
    font-size: 16px;
    letter-spacing: 0.18em;
  }

  .hero-copy h1 {
    font-size: 32px;
  }

  .hero-visual,
  .hero-visual img.hero-model {
    min-height: 0;
    height: auto;
  }

  .category-item {
    flex: 0 0 62%;
  }

  .bestsellers-track .product-card {
    flex: 0 0 88%;
    max-width: 88%;
  }

  .journey-item {
    flex: 0 0 88%;
    min-width: 88%;
  }

  .product-grid {
    gap: 12px;
  }

  .product-body h3 {
    font-size: 13px;
  }

  .pdp-actions .btn-brown,
  .pdp-actions .btn-wa-full {
    width: 100%;
    justify-content: center;
  }

  .cart-item {
    grid-template-columns: 72px 1fr;
  }

  .cart-item > div:last-child {
    grid-column: 2;
  }
}

@media (min-width: 992px) and (max-width: 1100px) {
  .nav-center {
    gap: 18px;
  }
}
