:root {
  --cream: #f6f1e7;
  --cream-soft: #faf7f0;
  --cream-deep: #efe8da;
  --green-dark: #2e3b26;
  --green-deeper: #242f1e;
  --green-mid: #48583c;
  --orange: #f39a2b;
  --ink: #24291f;
  --ink-soft: #5c6353;
  --line: #e3dccb;
  --white: #ffffff;
  --radius: 14px;
  --radius-lg: 22px;
  --shadow-sm: 0 4px 16px rgba(36, 41, 31, 0.07);
  --shadow-md: 0 14px 38px rgba(36, 41, 31, 0.13);
  --font-head: "Cormorant Garamond", Georgia, serif;
  --font-body: "Jost", "Segoe UI", sans-serif;
  --container: 1240px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }

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

.section { padding: 84px 0; }
.section-sm { padding: 36px 0; }

h1, h2, h3 { font-family: var(--font-head); font-weight: 600; line-height: 1.15; color: var(--ink); }

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #8a5e1c;
  margin-bottom: 14px;
}
.eyebrow.light { color: #e8c98e; }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 14px 28px;
  border-radius: 8px;
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.03em;
  border: 1.5px solid transparent;
  transition: all 0.28s ease;
  white-space: nowrap;
}
.btn svg { width: 17px; height: 17px; fill: currentColor; }
.btn i { font-style: normal; transition: transform 0.28s ease; }
.btn:hover i { transform: translateX(4px); }

.btn-dark { background: var(--green-dark); color: #f4f1e8; }
.btn-dark:hover { background: var(--green-deeper); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline { background: transparent; color: var(--ink); border-color: #c9c0aa; }
.btn-outline:hover { border-color: var(--green-dark); background: var(--green-dark); color: #f4f1e8; transform: translateY(-2px); }

.btn-light { background: var(--cream); color: var(--green-dark); }
.btn-light:hover { background: var(--white); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(0,0,0,0.25); }
.header-actions .btn-light {
  border: 1px solid #e2dac4;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
  font-weight: 600;
  letter-spacing: 0.2px;
}
.header-actions .btn-light:hover { border-color: var(--orange); box-shadow: var(--shadow-md); }

.btn-bulk { display: inline-flex; align-items: center; gap: 8px; font-weight: 600; }
.btn-bulk svg { width: 17px; height: 17px; fill: #ffffff; flex-shrink: 0; transition: transform 0.28s ease; }
.btn-bulk:hover svg { transform: translateY(-1px) scale(1.12) rotate(-4deg); }

.btn-sm { padding: 7px 6px; font-size: 0.85rem; }
.btn-block { width: 100%; justify-content: center; }

.topbar {
  background: var(--green-deeper);
  color: #cfd6c4;
  font-size: 0.78rem;
  padding: 8px 0;
}
.topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.topbar-item { display: inline-flex; align-items: center; gap: 7px; }
.topbar-item svg { width: 14px; height: 14px; fill: var(--orange); flex-shrink: 0; }
.topbar-item a { color: #eef0e6; }
.topbar-item a:hover { color: var(--orange); }

.topbar-social { display: inline-flex; align-items: center; gap: 13px; }
.topbar-social a { display: inline-flex; }
.topbar-social svg { width: 15px; height: 15px; fill: #cfd6c4; transition: fill 0.2s ease; }
.topbar-social a:hover svg { fill: var(--orange); }

.header {
  background: var(--cream-soft);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); }
.header.scrolled .header-inner { height: 60px; }
.header.scrolled .brand img { height: 40px; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 70px;
  transition: height 0.3s ease;
}

.brand img { height: 45px; width: auto; transition: height 0.3s ease; }

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

.nav-link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 10px 14px;
  font-size: 0.93rem;
  font-weight: 500;
  color: var(--ink);
  border-radius: 6px;
  position: relative;
  transition: color 0.25s ease;
}
.nav-link svg { width: 16px; height: 16px; fill: currentColor; transition: transform 0.25s ease; }
.nav-link:hover { color: #a4762a; }

.nav-link.active::after {
  content: "";
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 4px;
  height: 2px;
  background: var(--orange);
  border-radius: 2px;
}

.nav-item { position: relative; }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  min-width: 240px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 12px;
  box-shadow: var(--shadow-md);
  padding: 10px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s ease;
}
.nav-item:hover .dropdown,
.nav-item.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.nav-item:hover .nav-link svg { transform: rotate(180deg); }

.dropdown a {
  display: block;
  padding: 9px 14px;
  font-size: 0.9rem;
  border-radius: 8px;
  color: var(--ink);
}
.dropdown a:hover { background: var(--cream); color: #a4762a; }

.header-actions { display: flex; align-items: center; gap: 10px; }

.nav-close {
  display: none;
  position: absolute;
  top: 22px;
  right: 24px;
  width: 42px;
  height: 42px;
  border: 1.5px solid #c9c0aa;
  border-radius: 8px;
  background: transparent;
  place-items: center;
  transition: all 0.25s ease;
}
.nav-close svg { width: 20px; height: 20px; fill: var(--ink); }
.nav-close:hover { background: var(--green-dark); border-color: var(--green-dark); }
.nav-close:hover svg { fill: #f4f1e8; }

.menu-toggle {
  display: none;
  position: relative;
  z-index: 110;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 42px;
  height: 42px;
  background: transparent;
  border: 1.5px solid #c9c0aa;
  border-radius: 8px;
  padding: 0 9px;
}
.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: all 0.3s ease;
}
.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
/* When the mobile menu is open, hide the hamburger toggle so only the in-panel close (X) shows */
.menu-toggle.active { display: none; }

.hero {
  background:
    radial-gradient(ellipse at 85% 20%, rgba(243, 154, 43, 0.09), transparent 55%),
    linear-gradient(180deg, var(--cream-soft) 0%, var(--cream) 100%);
  overflow: hidden;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 48px;
  padding-top: 64px;
  padding-bottom: 84px;
}

.hero-content h1 { margin-bottom: 18px; }
.hero-content p {
  font-size: 1.12rem;
  font-weight: 300;
  color: var(--ink-soft);
  margin-bottom: 34px;
  letter-spacing: 0.02em;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-media {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-img-frame {
  width: min(340px, 70%);
  aspect-ratio: 848 / 1168;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 6px solid var(--white);
  position: relative;
  z-index: 2;
  transform: rotate(2deg);
}
.hero-img-frame img { width: 100%; height: 100%; object-fit: cover; }

.hero-img-back {
  position: absolute;
  width: min(250px, 52%);
  right: 2%;
  top: 14%;
  z-index: 1;
  transform: rotate(-6deg);
  opacity: 0.95;
}

.hero-slider { position: relative; }

.hero-slider .hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease, visibility 0.6s;
  pointer-events: none;
}
.hero-slider .hero-slide.is-active {
  position: relative;
  opacity: 1;
  visibility: visible;
  transform: translateX(0);
  pointer-events: auto;
}
.hero-slider .hero-slide.is-leaving {
  transform: translateX(-40px);
}

.hero-full {
  display: block;
  width: 100%;
  aspect-ratio: 1897 / 829;
  overflow: hidden;
  background: var(--cream-deep);
}
.hero-full .hero-slide { display: block; }
.hero-full .hero-slide picture { display: block; width: 100%; height: 100%; }
.hero-full .hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-full .hero-slide.is-active { position: absolute; }

.hero-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 1.5px solid #c9c0aa;
  background: rgba(250, 247, 240, 0.85);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  transition: all 0.25s ease;
}
.hero-arrow svg { width: 22px; height: 22px; fill: var(--ink); }
.hero-arrow:hover { background: var(--green-dark); border-color: var(--green-dark); }
.hero-arrow:hover svg { fill: #f4f1e8; }
.hero-arrow-prev { left: 22px; transform: translate(-10px, -50%); }
.hero-arrow-next { right: 22px; transform: translate(10px, -50%); }

/* Arrows reveal on slider hover */
.hero-slider .hero-arrow { opacity: 0; pointer-events: none; }
.hero-slider:hover .hero-arrow { opacity: 1; pointer-events: auto; }
.hero-slider:hover .hero-arrow-prev,
.hero-slider:hover .hero-arrow-next { transform: translate(0, -50%); }

.hero-dots {
  position: absolute;
  bottom: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  display: flex;
  gap: 2px;
}
.hero-dot {
  width: 24px;
  height: 24px;
  border-radius: 100px;
  border: none;
  background: transparent;
  padding: 0;
  cursor: pointer;
  position: relative;
  -webkit-tap-highlight-color: transparent;
}
.hero-dot::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 100px;
  background: #c9c0aa;
  transition: all 0.3s ease;
}
.hero-dot.active::before { width: 26px; background: var(--green-dark); }
.hero-dot:hover:not(.active)::before { background: #a4762a; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 44px;
  flex-wrap: wrap;
}

.slider-nav { display: flex; gap: 10px; }
.slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1.5px solid #c9c0aa;
  background: transparent;
  display: grid;
  place-items: center;
  transition: all 0.25s ease;
}
.slider-btn svg { width: 20px; height: 20px; fill: var(--ink); }
.slider-btn:hover { background: var(--green-dark); border-color: var(--green-dark); }
.slider-btn:hover svg { fill: #f4f1e8; }

.collections { background: var(--cream); }

.collection-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 5 * 20px) / 6);
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 12px;
  scrollbar-width: none;
}
.collection-track::-webkit-scrollbar { display: none; }

.collection-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.collection-card {
  scroll-snap-align: start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 10px 10px 18px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.collection-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.collection-thumb {
  aspect-ratio: 848 / 1000;
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 14px;
  background: var(--cream-deep);
}
.collection-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.collection-card:hover .collection-thumb img { transform: scale(1.06); }

.collection-card h3 {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.link-more {
  font-size: 0.8rem;
  color: var(--ink-soft);
  transition: color 0.25s ease;
}
.link-more i { font-style: normal; display: inline-block; transition: transform 0.25s ease; }
.collection-card:hover .link-more { color: #a4762a; }
.collection-card:hover .link-more i { transform: translateX(3px); }

.stats-strip {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 30px 36px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 22px;
  box-shadow: var(--shadow-sm);
}

.stat {
  display: flex;
  align-items: center;
  gap: 12px;
  justify-content: center;
}
.stat svg { width: 30px; height: 30px; fill: var(--green-mid); flex-shrink: 0; }
.stat strong {
  display: block;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.2;
}
.stat span { font-size: 0.78rem; color: var(--ink-soft); }

.featured { background: var(--cream); }

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.product-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }
.pc-cover { position: absolute; inset: 0; z-index: 1; border-radius: inherit; }
.pc-btn { position: relative; z-index: 2; }

.product-thumb {
  position: relative;
  aspect-ratio: 848 / 1168;
  overflow: hidden;
  background: var(--cream-deep);
}
.product-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.product-card:hover .product-thumb img { transform: scale(1.05); }

.product-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(46, 59, 38, 0.88);
  color: #f0ead9;
  font-size: 0.6rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 4px 10px;
  white-space: nowrap;
  border-radius: 100px;
  backdrop-filter: blur(4px);
}

.product-body {
  padding: 18px 18px 20px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-body h3, .pc-title {
  font-family: var(--font-body);
  font-size: 1.02rem;
  font-weight: 600;
  margin-bottom: 12px;
  line-height: 1.3;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.pc-foot {
  --d: 40px; --g: 8px; --b: 40px;
  position: relative; overflow: hidden; margin-top: auto;
  height: calc(var(--d) + var(--g) + var(--b));
}
.pc-foot-inner {
  display: flex; flex-direction: column; gap: var(--g);
  transition: transform 0.42s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative; z-index: 3;
}
.pc-desc {
  height: var(--d); margin: 0; font-size: 0.82rem; color: var(--ink-soft); line-height: 1.4;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.pc-btn {
  height: var(--b); flex-shrink: 0; width: 100%;
  display: flex; align-items: center; justify-content: center; gap: 8px;
  border: none; border-radius: 9px; cursor: pointer;
  font-family: var(--font-body); font-size: 0.84rem; font-weight: 600;
  text-decoration: none; transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}
.pc-btn .ic { width: 18px; height: 18px; fill: currentColor; flex-shrink: 0; }
.pc-btn-view { background: var(--green-dark); color: #f4f1e8; }
.pc-btn-view:hover { background: var(--green-deeper); }
.pc-btn-enq { background: #eef1e6; color: var(--green-dark); border: 1px solid #d9ddca; }
.pc-btn-enq:hover { background: #e7ecd9; border-color: #c7cdb2; }
.pc-btn-enq .ic-wa { fill: #25d366; }

.product-card:hover .pc-foot-inner { transform: translateY(calc(-1 * (var(--d) + var(--g)))); }

@media (hover: none) {
  .pc-foot { height: auto; overflow: visible; }
  .pc-foot-inner { transform: none !important; }
}

.gifting { padding-top: 20px; }

.gifting-banner {
  background:
    radial-gradient(ellipse at 90% 10%, rgba(243, 154, 43, 0.14), transparent 50%),
    var(--green-dark);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: center;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.gifting-content { padding: 60px 24px 60px 60px; }
.gifting-content h2 { color: var(--cream-soft); margin-bottom: 16px; }
.gifting-content p { color: #c3ccb4; margin-bottom: 30px; font-weight: 300; }

.gifting-media { height: 100%; min-height: 380px; position: relative; }
.gifting-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.gifting-media::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, var(--green-dark) 0%, transparent 30%);
}

.why { background: var(--cream); padding-top: 40px; }

.why-inner {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 56px;
  display: grid;
  grid-template-columns: 0.9fr 1.4fr;
  gap: 48px;
  align-items: center;
}

.why-head h2 { margin-bottom: 14px; }
.why-head p { color: var(--ink-soft); font-size: 0.95rem; }

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.why-item { text-align: center; padding: 10px 8px; position: relative; }
.why-item + .why-item::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: var(--line);
}
.why-item svg {
  width: 30px;
  height: 30px;
  fill: var(--green-mid);
  margin: 0 auto 12px;
  display: block;
}
.why-item h3 {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  margin-bottom: 6px;
}
.why-item p { font-size: 0.78rem; color: var(--ink-soft); }

.story { background: var(--cream); padding-top: 40px; }

.story-inner {
  display: grid;
  grid-template-columns: 1fr 1.15fr 0.55fr;
  gap: 48px;
  align-items: center;
}

.story-media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3.4;
}
.story-media img { width: 100%; height: 100%; object-fit: cover; }

.story-content h2 { margin-bottom: 18px; }
.story-content p { color: var(--ink-soft); margin-bottom: 28px; font-size: 0.97rem; }

.story-stats {
  display: flex;
  flex-direction: column;
  gap: 26px;
  border-left: 1px solid var(--line);
  padding-left: 40px;
}
.story-stat strong {
  font-family: var(--font-head);
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1.1;
  display: block;
}
.story-stat span { font-size: 0.85rem; color: var(--ink-soft); }

.newsletter { background: var(--green-deeper); padding: 40px 0; }

.newsletter-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  flex-wrap: wrap;
}

.newsletter-text { display: flex; align-items: center; gap: 18px; }
.newsletter-text svg {
  width: 40px;
  height: 40px;
  fill: var(--orange);
  background: rgba(255, 255, 255, 0.08);
  padding: 10px;
  border-radius: 10px;
  box-sizing: content-box;
}
.newsletter-text h3 {
  color: var(--cream-soft);
  font-family: var(--font-body);
  font-size: 1.15rem;
  font-weight: 600;
}
.newsletter-text p { color: #aeb8a0; font-size: 0.85rem; }

.newsletter-form { display: flex; gap: 10px; flex: 1; max-width: 480px; }
.newsletter-form input {
  flex: 1;
  padding: 13px 18px;
  border-radius: 8px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.07);
  color: var(--cream-soft);
  font-family: inherit;
  font-size: 0.9rem;
  outline: none;
  transition: border-color 0.25s ease;
}
.newsletter-form input::placeholder { color: #97a189; }
.newsletter-form input:focus { border-color: var(--orange); }

.footer { background: var(--green-dark); color: #c3ccb4; }

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr 0.9fr 1.3fr;
  gap: 44px;
  padding: 64px 24px 44px;
}

.footer-logo {
  height: 46px;
  width: auto;
  margin-bottom: 18px;
  background: var(--cream-soft);
  padding: 6px 12px;
  border-radius: 8px;
}
.footer-about p { font-size: 0.88rem; font-weight: 300; margin-bottom: 22px; }

.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(255, 255, 255, 0.08);
  transition: all 0.25s ease;
}
.socials a svg { width: 16px; height: 16px; fill: #dfe5d4; }
.socials a:hover { background: var(--orange); transform: translateY(-3px); }
.socials a:hover svg { fill: var(--green-deeper); }

.footer-col h4 {
  color: var(--cream-soft);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 20px;
  letter-spacing: 0.04em;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul a { font-size: 0.88rem; font-weight: 300; transition: all 0.25s ease; }
.footer-col ul a:hover { color: var(--orange); padding-left: 4px; }

.footer-contact li {
  display: flex;
  gap: 10px;
  font-size: 0.86rem;
  font-weight: 300;
  margin-bottom: 14px;
}
.footer-contact svg { width: 16px; height: 16px; fill: var(--orange); flex-shrink: 0; margin-top: 4px; }
.footer-contact a:hover { color: var(--orange); }

/* White pill "Follow channel" button (Get In Touch column) */
.follow-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
  padding: 9px 18px;
  background: #ffffff;
  color: #111111;
  font-size: 0.82rem;
  font-weight: 600;
  border-radius: 100px;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}
.follow-btn svg { width: 16px; height: 16px; fill: currentColor; }
.follow-btn:hover {
  color: #111111;
  background: #f0ead9;
  transform: translateY(-2px);
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

/* ===== Follow-us standalone page (WhatsApp channel) ===== */
.follow-page {
  min-height: 100vh;
  background: #1eac64;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 0 40px;
}
.follow-card-img {
  width: 100%;
  max-width: 460px;
  height: auto;
  display: block;
}
.follow-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 90%;
  max-width: 380px;
  margin-top: 0px;
  padding: 9px 22px;
  background: #ffffff;
  color: #111111;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: 100px;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.follow-cta svg { width: 17px; height: 17px; fill: #1eac64; }
.follow-cta:hover {
  color: #111111;
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.3);
}
@media (max-width: 560px) {
  .follow-page { padding: 12px 0 28px; }
  .follow-card-img { max-width: 100%; }
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding: 18px 0;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 300;
  color: #a6b09a;
}
.footer-bottom-inner { display: flex; align-items: center; justify-content: space-between; gap: 14px; flex-wrap: wrap; }
.footer-bottom-inner p { margin: 0; }
.footer-policy { display: flex; align-items: center; flex-wrap: wrap; gap: 6px 4px; }
.footer-policy a { color: #b9c1ac; transition: color 0.2s ease; }
.footer-policy a:hover { color: var(--orange); }
.footer-policy .sep { color: #5a6650; }
@media (max-width: 640px) {
  .footer-bottom-inner { flex-direction: column; text-align: center; gap: 10px; }
  .footer-policy { justify-content: center; }
}

.eyebrow svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  vertical-align: -2px;
  opacity: 0.7;
  margin: 0 5px;
}

.about-hero .hero-inner { padding-top: 56px; padding-bottom: 76px; }
.about-hero .hero-content .eyebrow { margin-bottom: 18px; }
.hero-divider {
  width: 120px;
  height: 2px;
  background: linear-gradient(90deg, var(--orange), transparent);
  margin: 22px 0;
}
.about-hero .hero-content p { max-width: 480px; }

.values { background: var(--cream); }

.values-inner {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: 52px;
  align-items: center;
}
.values-head h2 { margin-bottom: 16px; }
.values-head p { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 28px; }
.values-leaf { width: 40px; opacity: 0.5; margin-top: 26px; }
.values-leaf svg { width: 100%; fill: var(--green-mid); }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
.value-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
  display: flex;
  gap: 16px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.value-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.value-icon {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.value-icon svg { width: 24px; height: 24px; fill: var(--green-mid); }
.value-card h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin-bottom: 7px;
}
.value-card p { font-size: 0.85rem; color: var(--ink-soft); }

.gifting-reverse { grid-template-columns: 0.9fr 1.1fr; }
.gifting-reverse .gifting-content { padding: 60px 60px 60px 32px; }
.gifting-reverse .gifting-media::before {
  background: linear-gradient(270deg, var(--green-dark) 0%, transparent 32%);
}

.journey { background: var(--cream); }
.journey-head { margin-bottom: 52px; }
.journey-head h2 { margin-top: 6px; }

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.timeline-item { position: relative; }
.timeline-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 47px;
  left: 108px;
  right: -14px;
  border-top: 2px dashed #c9c0aa;
}
.timeline-thumb {
  width: 94px;
  height: 94px;
  border-radius: 50%;
  overflow: hidden;
  border: 4px solid var(--white);
  box-shadow: var(--shadow-sm);
  margin-bottom: 20px;
  position: relative;
  z-index: 1;
}
.timeline-thumb img { width: 100%; height: 100%; object-fit: cover; }
.timeline-year {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-dark);
  line-height: 1;
}
.timeline-item h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 600;
  margin: 6px 0 9px;
}
.timeline-item p { font-size: 0.83rem; color: var(--ink-soft); }

.cta-section { background: var(--cream); padding-bottom: 88px; }
.cta-strip {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 42px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  position: relative;
  overflow: hidden;
}
.cta-strip .cta-leaf {
  position: absolute;
  left: 24px;
  top: 50%;
  transform: translateY(-50%);
  width: 60px;
  opacity: 0.35;
}
.cta-strip .cta-leaf svg { width: 100%; fill: var(--green-mid); }
.cta-text { padding-left: 76px; }
.cta-text h2 { margin-bottom: 8px; }
.cta-text p { color: var(--ink-soft); font-size: 0.95rem; }
.cta-strip .btn { flex-shrink: 0; }

.products-hero .hero-content p { max-width: 470px; }

.feature-bar-section { padding-top: 0; margin-top: -44px; position: relative; z-index: 3; }
.feature-bar {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  padding: 26px 36px;
}
.feature-item { display: flex; align-items: center; gap: 13px; }
.feature-item svg { width: 30px; height: 30px; fill: var(--green-mid); flex-shrink: 0; }
.feature-item strong { display: block; font-size: 0.9rem; font-weight: 600; line-height: 1.3; }
.feature-item span { font-size: 0.8rem; color: var(--ink-soft); }

.shop-cat .section-head { align-items: center; }
.shop-cat .section-head p { color: var(--ink-soft); font-size: 0.9rem; }

.shop-layout {
  display: grid;
  grid-template-columns: 268px 1fr;
  gap: 34px;
  align-items: start;
}

.filter-panel {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 24px 26px;
  position: sticky;
  top: 100px;
}
.filter-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.filter-top h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; }
.filter-clear {
  background: none;
  border: none;
  color: #8a5e1c;
  font-size: 0.82rem;
  font-weight: 500;
}
.filter-clear:hover { text-decoration: underline; }
.filter-group { border-top: 1px solid var(--line); padding: 18px 0; }
.filter-group:first-of-type { border-top: none; padding-top: 8px; }
.filter-group h4 {
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 0.02em;
}
.filter-check {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 11px;
  font-size: 0.87rem;
  color: var(--ink-soft);
  cursor: pointer;
}
.filter-check:last-child { margin-bottom: 0; }
.filter-check input { width: 16px; height: 16px; accent-color: var(--green-dark); cursor: pointer; }

.color-swatches { display: flex; gap: 10px; flex-wrap: wrap; }
.color-swatch {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  border: 2px solid transparent;
  cursor: pointer;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.12);
  transition: border-color 0.2s ease;
  padding: 0;
}
.color-swatch.active { border-color: var(--green-dark); }

.price-range input[type="range"] { width: 100%; accent-color: var(--green-dark); cursor: pointer; }
.price-vals {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: var(--ink-soft);
  margin-top: 8px;
}
.filter-apply { width: 100%; margin-top: 22px; justify-content: center; }

.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  gap: 16px;
  flex-wrap: wrap;
}
.shop-count { font-size: 0.88rem; color: var(--ink-soft); }
.shop-count strong { color: var(--ink); font-weight: 600; }
.shop-tools { display: flex; align-items: center; gap: 12px; }
.sort-select {
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream-soft);
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--ink);
  cursor: pointer;
  outline: none;
}
.view-toggle { display: flex; gap: 5px; }
.view-btn {
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream-soft);
  display: grid;
  place-items: center;
}
.view-btn svg { width: 18px; height: 18px; fill: var(--ink-soft); }
.view-btn.active { background: var(--green-dark); border-color: var(--green-dark); }
.view-btn.active svg { fill: #f4f1e8; }

.wishlist {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  border: none;
  display: grid;
  place-items: center;
  z-index: 2;
  cursor: pointer;
  transition: all 0.25s ease;
}
.wishlist svg { width: 18px; height: 18px; fill: none; stroke: var(--ink); stroke-width: 2; }
.wishlist:hover { background: var(--white); }
.wishlist.active { background: var(--green-dark); }
.wishlist.active svg { fill: var(--orange); stroke: var(--orange); }

.product-price {
  font-size: 1.08rem;
  font-weight: 600;
  color: var(--green-dark);
  margin-bottom: 14px;
}

.product-card.is-hidden { display: none; }
.shop-empty {
  grid-column: 1 / -1;
  text-align: center;
  padding: 50px 20px;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.product-grid.list-view { grid-template-columns: repeat(2, 1fr); }
.product-grid.list-view .product-card { flex-direction: row; }
.product-grid.list-view .product-thumb { width: 180px; flex-shrink: 0; aspect-ratio: auto; }
.product-grid.list-view .product-body { justify-content: center; }
.product-grid.list-view .pc-foot { height: auto; overflow: visible; margin-top: 12px; }
.product-grid.list-view .pc-foot-inner { transform: none !important; }
.product-grid.list-view .pc-desc { height: auto; -webkit-line-clamp: 3; margin-bottom: 4px; }
.product-grid.list-view .pc-title {
  white-space: normal; overflow: hidden;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical;
}

.custom-banner {
  background:
    radial-gradient(circle at 18% 50%, rgba(243, 154, 43, 0.12), transparent 40%),
    var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  align-items: center;
  overflow: hidden;
}
.custom-media { min-height: 250px; height: 100%; position: relative; }
.custom-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.custom-content { padding: 44px 52px; }
.custom-content h2 { margin-bottom: 12px; }
.custom-content p { color: var(--ink-soft); margin-bottom: 24px; font-size: 0.95rem; }

.trust-section { background: var(--cream); padding: 44px 0 72px; }
.trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.trust-bar.cols-5 { grid-template-columns: repeat(5, 1fr); }
.trust-bar .feature-item { justify-content: center; }
.trust-bar .feature-item + .feature-item { position: relative; }
.trust-bar .feature-item:not(:first-child)::before {
  content: "";
  position: absolute;
  left: -11px;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: var(--line);
}

.breadcrumb {
  background: var(--cream);
  padding: 16px 0;
  font-size: 0.83rem;
  color: var(--ink-soft);
}
.breadcrumb ol { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.breadcrumb a { color: var(--ink-soft); }
.breadcrumb a:hover { color: #a4762a; }
.breadcrumb li { display: flex; align-items: center; gap: 8px; }
.breadcrumb li:not(:last-child)::after { content: "›"; color: #b8ac93; }
.breadcrumb li[aria-current] { color: var(--ink); font-weight: 500; }

.pdp { padding: 24px 0 70px; }
.pdp-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 48px;
  align-items: start;
}

.pdp-gallery { display: flex; gap: 16px; align-items: stretch; }
.pdp-thumbs { display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; align-self: stretch; }
.pdp-thumb {
  width: 84px;
  flex: 1 1 0;
  min-height: 0;
  border-radius: 10px;
  overflow: hidden;
  border: 2px solid var(--line);
  background: var(--cream-deep);
  padding: 0;
  cursor: pointer;
  transition: border-color 0.2s ease;
}
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumb.active { border-color: var(--green-dark); }

.pdp-main {
  flex: 1;
  position: relative;
  border-radius: 0;
  overflow: hidden;
  background: var(--cream-deep);
  cursor: zoom-in;
}
.pdp-main img { width: 100%; height: auto; display: block; object-fit: contain; }
.pdp-zoom {
  position: absolute;
  right: 14px;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  display: grid;
  place-items: center;
  cursor: zoom-in;
}
.pdp-zoom svg { width: 19px; height: 19px; fill: var(--ink); }
.pdp-zoom.top { top: 14px; }
.pdp-zoom.bottom { bottom: 14px; }

.pdp-info .eyebrow { margin-bottom: 12px; }
.pdp-info h1 { font-size: clamp(2rem, 3.6vw, 2.9rem); margin-bottom: 8px; }
.pdp-subtitle {
  font-family: var(--font-head);
  font-size: 1.3rem;
  color: var(--ink-soft);
  margin-bottom: 20px;
}
.pdp-desc { color: var(--ink-soft); font-size: 0.97rem; margin-bottom: 28px; max-width: 90%; }

.pdp-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  margin-bottom: 30px;
}
.pdp-feature { text-align: center; }
.pdp-feature-icon {
  width: 50px;
  height: 50px;
  border-radius: 12px;
  background: var(--cream-deep);
  display: grid;
  place-items: center;
  margin: 0 auto 10px;
}
.pdp-feature-icon svg { width: 24px; height: 24px; fill: var(--green-mid); }
.pdp-feature span { font-size: 0.78rem; color: var(--ink-soft); line-height: 1.35; display: block; }

.pdp-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 22px; }

.pdp-highlights { display: flex; flex-direction: column; gap: 11px; margin-bottom: 26px; }
.pdp-highlights li { display: flex; align-items: flex-start; gap: 11px; font-size: 0.92rem; color: var(--ink); line-height: 1.45; }
.pdp-highlights svg { width: 20px; height: 20px; fill: var(--green-mid); flex-shrink: 0; margin-top: 1px; }

.pdp-ic {
  width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0;
  display: grid; place-items: center;
  background: rgba(72, 88, 60, 0.1);
}
.pdp-ic svg { width: 18px; height: 18px; fill: var(--green-dark); }
.pdp-ic.solid { background: var(--green-dark); }
.pdp-ic.solid svg { fill: #f4f1e8; }

.pdp-trust {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px;
  margin-bottom: 16px;
}
.pdp-trust li {
  display: flex; align-items: center; gap: 9px;
  font-size: 0.8rem; font-weight: 500; color: var(--ink); line-height: 1.2;
  padding: 9px 11px; border: 1px solid var(--line); border-radius: 12px;
  background: var(--cream-soft); transition: border-color 0.2s ease, transform 0.2s ease;
}
.pdp-trust li:hover { border-color: var(--green-mid); transform: translateY(-2px); }

.pdp-assure {
  display: grid; grid-template-columns: repeat(3, 1fr);
  background: var(--cream-deep); border: 1px solid var(--line);
  border-radius: 16px; padding: 16px 6px;
}
.pdp-assure-item { display: flex; align-items: center; gap: 11px; padding: 2px 14px; position: relative; }
.pdp-assure-item + .pdp-assure-item::before {
  content: ""; position: absolute; left: 0; top: 50%; transform: translateY(-50%);
  height: 62%; width: 1px; background: var(--line);
}
.pdp-assure-item strong { display: block; font-family: var(--font-head); font-size: 1.35rem; color: var(--green-dark); line-height: 1; margin-bottom: 3px; }
.pdp-assure-item span { font-size: 0.72rem; color: var(--ink-soft); line-height: 1.2; }

.pdp-lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(20, 22, 18, 0.93);
  display: none; align-items: center; justify-content: center;
  padding: 40px 30px; opacity: 0; transition: opacity 0.25s ease;
}
.pdp-lightbox.open { display: flex; opacity: 1; }
.pdp-lb-inner { width: min(92vw, 860px); max-height: 90vh; overflow-y: auto; scrollbar-width: none; }
.pdp-lb-inner::-webkit-scrollbar { display: none; }
.pdp-lb-collage { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.pdp-lb-collage img {
  width: 100%; aspect-ratio: 1 / 1; object-fit: contain;
  background: var(--cream-soft); border-radius: 14px; display: block;
}
.pdp-lb-collage.pdp-lb-n1 { grid-template-columns: 1fr; }
.pdp-lb-collage.pdp-lb-n1 img,
.pdp-lb-collage.pdp-lb-n3 img:first-child { aspect-ratio: 16 / 10; }
.pdp-lb-collage.pdp-lb-n3 img:first-child { grid-column: 1 / -1; }
.pdp-lb-close {
  position: fixed; top: 22px; right: 26px; width: 46px; height: 46px;
  border-radius: 50%; border: none; background: rgba(255, 255, 255, 0.16);
  display: grid; place-items: center; cursor: pointer; z-index: 210;
  transition: background 0.2s ease;
}
.pdp-lb-close svg { width: 22px; height: 22px; fill: #fff; }
.pdp-lb-close:hover { background: rgba(255, 255, 255, 0.3); }
@media (max-width: 560px) {
  .pdp-lb-collage, .pdp-lb-collage.pdp-lb-n3 { grid-template-columns: 1fr; }
  .pdp-lb-collage.pdp-lb-n3 img:first-child { grid-column: auto; }
}

.pdp-tabs-section { background: var(--cream); padding-bottom: 20px; }
.tab-btns {
  display: flex;
  gap: 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 40px;
  overflow-x: auto;
  scrollbar-width: none;
}
.tab-btns::-webkit-scrollbar { display: none; }
.tab-btn {
  background: none;
  border: none;
  padding: 14px 20px;
  font-family: inherit;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}
.tab-btn::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: -1px;
  height: 2px;
  background: var(--green-dark);
  transform: scaleX(0);
  transition: transform 0.25s ease;
}
.tab-btn.active { color: var(--green-dark); }
.tab-btn.active::after { transform: scaleX(1); }

.tab-panel { display: none; }
.tab-panel.active { display: block; animation: fadeUp 0.4s ease; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(10px); } to { opacity: 1; transform: none; } }

.overview-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 10px; align-items: center; }
.overview-text h2 { font-family: var(--font-body); font-size: 1.2rem; font-weight: 600; margin-bottom: 14px; }
.overview-text > p { color: var(--ink-soft); font-size: 0.94rem; margin-bottom: 20px; }
.overview-list li {
  display: flex;
  align-items: flex-start;
  gap: 11px;
  font-size: 0.9rem;
  color: var(--ink);
  margin-bottom: 12px;
}
.overview-list svg { width: 20px; height: 20px; fill: var(--green-mid); flex-shrink: 0; margin-top: 1px; }
.overview-media {
  border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5; width: 100%; max-width: 380px; margin-inline: auto; background: var(--cream-deep);
  position: relative;
}
.overview-media img { width: 100%; height: 100%; object-fit: cover; display: block; }
.overview-video {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);
  width: 100%; aspect-ratio: 9 / 16; border: 0; display: block;
}
.ov-mute {
  position: absolute; bottom: 12px; right: 12px; z-index: 3;
  width: 40px; height: 40px; border-radius: 50%; border: none; cursor: pointer;
  background: rgba(20, 22, 18, 0.6); backdrop-filter: blur(4px);
  display: grid; place-items: center; transition: background 0.2s ease;
}
.ov-mute:hover { background: rgba(20, 22, 18, 0.82); }
.ov-mute svg { width: 20px; height: 20px; fill: #fff; }
.ov-mute .ic-unmuted { display: none; }
.ov-mute.is-unmuted .ic-muted { display: none; }
.ov-mute.is-unmuted .ic-unmuted { display: block; }

.spec-heading { margin-bottom: 22px; }
.spec-table { width: 100%; border-collapse: collapse; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.spec-table tr:nth-child(odd) { background: var(--cream-soft); }
.spec-table th, .spec-table td { text-align: left; padding: 13px 18px; font-size: 0.88rem; vertical-align: top; }
.spec-table th { width: 38%; font-weight: 600; color: var(--ink); border-right: 1px solid var(--line); }
.spec-table td { color: var(--ink-soft); }

.custom-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.custom-opt {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 18px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.custom-opt:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.custom-opt svg { width: 26px; height: 26px; fill: var(--green-mid); margin-bottom: 12px; }
.custom-opt h3 { font-family: var(--font-body); font-size: 0.92rem; font-weight: 600; margin-bottom: 5px; }
.custom-opt p { font-size: 0.78rem; color: var(--ink-soft); }

.packaging-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.packaging-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 24px;
}
.packaging-card svg { width: 30px; height: 30px; fill: var(--green-mid); margin-bottom: 14px; }
.packaging-card h4 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.packaging-card p { font-size: 0.86rem; color: var(--ink-soft); }

.enquiry-form { max-width: 720px; }
.enquiry-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.enquiry-field label { display: block; font-size: 0.82rem; font-weight: 500; margin-bottom: 6px; color: var(--ink); }
.enquiry-field input, .enquiry-field select, .enquiry-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream-soft);
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.2s ease;
}
.enquiry-field input:focus, .enquiry-field select:focus, .enquiry-field textarea:focus { border-color: var(--green-mid); }
.enquiry-field textarea { resize: vertical; min-height: 110px; }
.enquiry-field.full { grid-column: 1 / -1; }

.related { background: var(--cream); }
.related-wrap { position: relative; }
.related-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 4 * 22px) / 5);
  gap: 22px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding-bottom: 8px;
}
.related-track::-webkit-scrollbar { display: none; }
.related-track .product-card { scroll-snap-align: start; }
.related-arrow {
  position: absolute;
  top: 38%;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream-soft);
  display: grid;
  place-items: center;
  cursor: pointer;
  z-index: 4;
  box-shadow: var(--shadow-sm);
}
.related-arrow svg { width: 20px; height: 20px; fill: var(--ink); }
.related-arrow:hover { background: var(--green-dark); border-color: var(--green-dark); }
.related-arrow:hover svg { fill: #f4f1e8; }
.related-arrow.prev { left: -18px; }
.related-arrow.next { right: -18px; }

.bulk-banner {
  background:
    radial-gradient(ellipse at 92% 20%, rgba(243, 154, 43, 0.14), transparent 45%),
    var(--green-dark);
  border-radius: var(--radius-lg);
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.bulk-content { padding: 52px; }
.bulk-content h2 { color: var(--cream-soft); margin-bottom: 14px; }
.bulk-content > p { color: #c3ccb4; font-weight: 300; margin-bottom: 26px; max-width: 420px; }
.bulk-features { display: flex; gap: 30px; flex-wrap: wrap; margin-top: 30px; }
.bulk-feature { display: flex; gap: 12px; align-items: flex-start; max-width: 190px; }
.bulk-feature svg { width: 26px; height: 26px; fill: var(--orange); flex-shrink: 0; }
.bulk-feature strong { display: block; color: var(--cream-soft); font-size: 0.88rem; font-weight: 600; margin-bottom: 3px; }
.bulk-feature span { font-size: 0.76rem; color: #a9b39a; }
.bulk-media { position: relative; min-height: 320px; }
.bulk-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.bulk-media::before { content: ""; position: absolute; inset: 0; z-index: 1; background: linear-gradient(90deg, var(--green-dark) 0%, transparent 35%); }

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(20, 24, 16, 0.9);
  display: none;
  place-items: center;
  z-index: 200;
  padding: 40px;
  cursor: zoom-out;
}
.lightbox.open { display: grid; }
.lightbox img { max-width: 90vw; max-height: 88vh; border-radius: 10px; box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5); }
.lightbox-close {
  position: absolute;
  top: 24px;
  right: 28px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

.blog-hero .hero-content p { max-width: 460px; }

.blog-layout {
  display: grid;
  grid-template-columns: 1fr 328px;
  gap: 44px;
  align-items: start;
}

/* Blog article — normal, readable body typography.
   (The global h1/h2/h3 sizes are hero-scale; scope them down inside the article.) */
.blog-article h1 { font-size: clamp(1.75rem, 3.2vw, 2.5rem); line-height: 1.2; }
.blog-content { font-size: 1.02rem; line-height: 1.8; color: var(--ink-soft); }
.blog-content > *:first-child { margin-top: 0; }
.blog-content p { margin: 0 0 18px; }
.blog-content h2 { font-size: 1.5rem; line-height: 1.3; margin: 34px 0 12px; color: var(--ink); }
.blog-content h3 { font-size: 1.22rem; line-height: 1.35; margin: 26px 0 10px; color: var(--ink); }
.blog-content h4 { font-family: var(--font-head); font-weight: 600; font-size: 1.08rem; line-height: 1.4; margin: 22px 0 8px; color: var(--ink); }
.blog-content ul, .blog-content ol { margin: 0 0 18px; padding-left: 22px; }
.blog-content ul { list-style: disc; }
.blog-content li { margin-bottom: 8px; }
.blog-content a { color: var(--green-dark); text-decoration: underline; text-underline-offset: 2px; }
.blog-content a:hover { color: var(--orange); }
.blog-content b, .blog-content strong { font-weight: 600; color: var(--ink); }
.blog-content img { border-radius: 10px; margin: 10px 0 20px; }
.blog-content blockquote { margin: 20px 0; padding: 12px 20px; border-left: 3px solid var(--orange); background: var(--cream-soft); font-style: italic; color: var(--ink); }
@media (max-width: 640px) {
  .blog-content { font-size: 1rem; line-height: 1.75; }
  .blog-article h1 { font-size: 1.6rem; }
  .blog-content h2 { font-size: 1.3rem; margin-top: 28px; }
  .blog-content h3 { font-size: 1.12rem; }
}

.blog-filter-bar {
  display: flex;
  gap: 4px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 34px;
  overflow-x: auto;
  scrollbar-width: none;
}
.blog-filter-bar::-webkit-scrollbar { display: none; }
.blog-filter {
  background: none;
  border: none;
  padding: 13px 18px;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--ink-soft);
  cursor: pointer;
  position: relative;
  white-space: nowrap;
}
.blog-filter.active { color: var(--green-dark); font-weight: 600; }
.blog-filter.active::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: -1px;
  height: 2px;
  background: var(--green-dark);
}

.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.blog-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.blog-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.blog-card.is-hidden { display: none; }
.blog-thumb { aspect-ratio: 16 / 11; overflow: hidden; background: var(--cream-deep); }
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }
.blog-cat {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #8a5e1c;
  margin-bottom: 9px;
}
.blog-card h2 {
  font-family: var(--font-head);
  font-size: 1.2rem;
  font-weight: 600;
  line-height: 1.25;
  margin-bottom: 10px;
  color: var(--ink);
}
.blog-excerpt { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 16px; flex: 1; }
.blog-meta {
  display: flex;
  gap: 18px;
  font-size: 0.76rem;
  color: var(--ink-soft);
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
.blog-meta span { display: flex; align-items: center; gap: 6px; }
.blog-meta svg { width: 14px; height: 14px; fill: var(--green-mid); }

.blog-empty { padding: 40px 0; color: var(--ink-soft); }

.pagination { display: flex; justify-content: center; gap: 8px; margin-top: 44px; }
.page-btn {
  min-width: 40px;
  height: 40px;
  padding: 0 12px;
  border-radius: 50px;
  border: 1px solid var(--line);
  background: var(--cream-soft);
  display: grid;
  place-items: center;
  font-family: inherit;
  font-size: 0.85rem;
  color: var(--ink);
  cursor: pointer;
}
.page-btn svg { width: 18px; height: 18px; fill: currentColor; }
.page-btn.active { background: var(--green-dark); color: #f4f1e8; border-color: var(--green-dark); }
.page-btn:hover:not(.active):not(.dots) { border-color: var(--green-dark); }
.page-btn.dots { border: none; background: none; cursor: default; }

.blog-sidebar { display: flex; flex-direction: column; gap: 26px; position: sticky; top: 100px; }
.widget {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px;
}
.widget h3, .widget h2 { font-family: var(--font-head); font-size: 1.35rem; font-weight: 600; margin-bottom: 18px; }

.search-box { display: flex; gap: 8px; }
.search-box input {
  flex: 1;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-family: inherit;
  font-size: 0.88rem;
  outline: none;
  min-width: 0;
}
.search-box input:focus { border-color: var(--green-mid); }
.search-box button {
  width: 44px;
  flex-shrink: 0;
  border: none;
  border-radius: 8px;
  background: var(--green-dark);
  display: grid;
  place-items: center;
  cursor: pointer;
}
.search-box button svg { width: 18px; height: 18px; fill: #f4f1e8; }

.cat-list li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 0.9rem;
  color: var(--ink);
}
.cat-list li:last-child a { border-bottom: none; }
.cat-list li a:hover { color: #a4762a; }
.cat-list .count { color: var(--ink-soft); font-size: 0.82rem; margin-left: auto; margin-right: 10px; }
.cat-list a svg { width: 15px; height: 15px; fill: #b8ac93; }

.popular-item { display: flex; gap: 12px; padding: 13px 0; border-bottom: 1px solid var(--line); }
.popular-item:last-child { border-bottom: none; }
.popular-thumb { width: 58px; height: 58px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.popular-thumb img { width: 100%; height: 100%; object-fit: cover; }
.popular-item h4, .popular-item h3 { font-size: 0.85rem; font-weight: 500; line-height: 1.3; margin-bottom: 5px; color: var(--ink); }
.popular-item:hover h4 { color: #a4762a; }
.popular-item span { font-size: 0.75rem; color: var(--ink-soft); }

.newsletter-widget { text-align: center; background: var(--cream-deep); }
.nw-icon {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--green-dark);
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
}
.nw-icon svg { width: 24px; height: 24px; fill: var(--orange); }
.newsletter-widget p { font-size: 0.85rem; color: var(--ink-soft); margin-bottom: 16px; }
.newsletter-widget input {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-family: inherit;
  font-size: 0.88rem;
  margin-bottom: 10px;
  outline: none;
}
.newsletter-widget input:focus { border-color: var(--green-mid); }
.newsletter-widget .btn { width: 100%; justify-content: center; }
.newsletter-widget small { display: block; margin-top: 13px; font-size: 0.75rem; color: var(--ink-soft); }

.article { padding: 26px 0 72px; }
.article-layout {
  display: grid;
  grid-template-columns: 1fr 328px;
  gap: 44px;
  align-items: start;
}

.article-head {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  align-items: center;
  margin-bottom: 40px;
}
.article-head .blog-cat { margin-bottom: 4px; }
.article-head h1 { font-size: clamp(1.9rem, 3vw, 2.6rem); line-height: 1.2; margin: 8px 0 16px; }
.article-excerpt { color: var(--ink-soft); font-size: 0.98rem; margin-bottom: 20px; }
.article-meta { display: flex; align-items: center; gap: 22px; font-size: 0.8rem; color: var(--ink-soft); flex-wrap: wrap; }
.article-meta span, .article-meta a { display: flex; align-items: center; gap: 6px; color: var(--ink-soft); }
.article-meta a:hover { color: #a4762a; }
.article-meta svg { width: 15px; height: 15px; fill: var(--green-mid); }
.article-hero-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-md); aspect-ratio: 4 / 3; }
.article-hero-img img { width: 100%; height: 100%; object-fit: cover; }

.article-body > p { color: #4b5142; font-size: 0.98rem; line-height: 1.78; margin-bottom: 18px; }
.article-body h2 { font-family: var(--font-head); font-size: 1.55rem; font-weight: 600; margin: 36px 0 14px; }
.body-img { border-radius: var(--radius-lg); overflow: hidden; margin: 24px 0; box-shadow: var(--shadow-sm); aspect-ratio: 16 / 8.5; }
.body-img img { width: 100%; height: 100%; object-fit: cover; display: block; }

.format-cards { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin: 22px 0 10px; }
.format-card { background: var(--cream-soft); border: 1px solid var(--line); border-radius: var(--radius); padding: 20px 18px; }
.format-card svg { width: 26px; height: 26px; fill: var(--green-mid); margin-bottom: 12px; }
.format-card h4 { font-family: var(--font-body); font-size: 0.92rem; font-weight: 600; margin-bottom: 6px; }
.format-card p { font-size: 0.78rem; color: var(--ink-soft); }

.features-row { display: grid; grid-template-columns: 1fr 0.9fr; gap: 32px; align-items: center; margin: 14px 0; }
.check-list li { display: flex; align-items: center; gap: 11px; font-size: 0.92rem; color: var(--ink); margin-bottom: 14px; }
.check-list li:last-child { margin-bottom: 0; }
.check-list svg { width: 22px; height: 22px; fill: var(--green-mid); flex-shrink: 0; }
.features-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); aspect-ratio: 4 / 3; }
.features-img img { width: 100%; height: 100%; object-fit: cover; }

.article-quote {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  background: var(--cream-deep);
  border-left: 3px solid var(--green-mid);
  border-radius: var(--radius);
  padding: 24px 28px;
  margin: 30px 0;
}
.article-quote svg { width: 34px; flex-shrink: 0; fill: var(--green-mid); opacity: 0.55; }
.article-quote p { font-family: var(--font-head); font-size: 1.15rem; font-style: italic; color: var(--ink); line-height: 1.5; }

.article-share-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  margin: 36px 0;
  padding: 22px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.share-left { display: flex; align-items: center; gap: 12px; }
.share-left > span, .tags-wrap > span { font-size: 0.85rem; color: var(--ink-soft); font-weight: 500; }
.share-icons { display: flex; gap: 8px; }
.share-icons a { width: 34px; height: 34px; border-radius: 50%; background: var(--cream-soft); border: 1px solid var(--line); display: grid; place-items: center; }
.share-icons a svg { width: 15px; height: 15px; fill: var(--green-mid); }
.share-icons a:hover { background: var(--green-dark); border-color: var(--green-dark); }
.share-icons a:hover svg { fill: #f4f1e8; }
.tags-wrap { display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.tag-chip { font-size: 0.78rem; padding: 6px 14px; border-radius: 50px; background: var(--cream-soft); border: 1px solid var(--line); color: var(--ink); }

.article-nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 22px;
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 20px 24px;
}
.article-nav a { display: flex; align-items: center; gap: 14px; }
.article-nav .an-next { justify-content: flex-end; text-align: right; }
.an-label { font-size: 0.74rem; color: var(--ink-soft); display: block; margin-bottom: 3px; }
.an-title { font-family: var(--font-head); font-size: 1.08rem; font-weight: 600; line-height: 1.25; color: var(--ink); }
.article-nav a:hover .an-title { color: #a4762a; }
.an-thumb { width: 66px; height: 56px; border-radius: 8px; overflow: hidden; flex-shrink: 0; }
.an-thumb img { width: 100%; height: 100%; object-fit: cover; }
.an-grid svg { width: 26px; height: 26px; fill: #b8ac93; }

.contact-hero .hero-content p { max-width: 420px; }

.assist-card {
  background: var(--green-dark);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 18px;
  max-width: 400px;
  margin-top: 28px;
}
.assist-icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--cream-soft);
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.assist-icon svg { width: 26px; height: 26px; fill: var(--green-dark); }
.assist-card strong { display: block; color: var(--cream-soft); font-size: 1rem; font-weight: 600; }
.assist-card .assist-sub { color: #c3ccb4; font-size: 0.82rem; }
.assist-card .assist-phone {
  display: block;
  color: var(--cream-soft);
  font-family: var(--font-head);
  font-size: 1.35rem;
  font-weight: 700;
  margin-top: 5px;
}
.assist-card .assist-phone:hover { color: var(--orange); }

.contact-cols {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 46px;
  align-items: start;
}
.contact-lead { color: var(--ink-soft); font-size: 0.95rem; margin-bottom: 26px; }

.contact-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.contact-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 24px 22px;
}
.cc-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--green-dark);
  display: grid;
  place-items: center;
  margin-bottom: 15px;
}
.cc-icon svg { width: 22px; height: 22px; fill: var(--cream-soft); }
.contact-card h3 { font-family: var(--font-body); font-size: 1rem; font-weight: 600; margin-bottom: 8px; }
.contact-card p { font-size: 0.85rem; color: var(--ink-soft); line-height: 1.6; }
.contact-card p a { color: var(--ink-soft); }
.contact-card p a:hover { color: #a4762a; }

.bulk-strip {
  background: var(--cream-deep);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 22px;
}
.bulk-strip .bs-icon svg { width: 30px; height: 30px; fill: var(--green-mid); flex-shrink: 0; }
.bulk-strip .bs-text { flex: 1; }
.bulk-strip strong { font-size: 0.92rem; display: block; }
.bulk-strip span { font-size: 0.8rem; color: var(--ink-soft); }

.contact-form-card {
  background: var(--cream-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
}
.contact-form-card .form-lead { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 24px; }
.req { color: #c0552b; }
.form-agree {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  font-size: 0.82rem;
  color: var(--ink-soft);
  margin: 18px 0;
}
.form-agree input { margin-top: 2px; accent-color: var(--green-dark); flex-shrink: 0; }
.form-agree a { color: #8a5e1c; }
.contact-form-card .btn { width: 100%; justify-content: center; }

.map-why { display: grid; grid-template-columns: 1fr 1fr; gap: 46px; align-items: center; }
.contact-map { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); aspect-ratio: 16 / 11; }
.contact-map iframe { width: 100%; height: 100%; border: 0; display: block; }
.connect-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.connect-item .ci-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--cream-deep);
  display: grid;
  place-items: center;
  margin-bottom: 13px;
}
.connect-item svg { width: 22px; height: 22px; fill: var(--green-mid); }
.connect-item h3 { font-family: var(--font-body); font-size: 0.95rem; font-weight: 600; margin-bottom: 6px; }
.connect-item p { font-size: 0.82rem; color: var(--ink-soft); line-height: 1.55; }

.sitemap-hero .hero-content p { max-width: 460px; }
.sitemap-stats { display: flex; gap: 28px; margin-top: 22px; flex-wrap: wrap; }
.sitemap-stats span { font-size: 0.9rem; color: var(--ink-soft); }
.sitemap-stats strong { display: block; font-family: var(--font-head); font-size: 1.7rem; color: var(--green-dark); line-height: 1; }

.sitemap-quick {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px; margin-bottom: 22px;
}
.sitemap-card {
  background: var(--cream-soft); border: 1px solid var(--line);
  border-radius: var(--radius-lg); padding: 22px 24px;
}
.sitemap-card-full { margin-bottom: 22px; }
.sm-head {
  display: flex; align-items: center; gap: 10px;
  padding-bottom: 14px; margin-bottom: 14px; border-bottom: 1px solid var(--line);
}
.sm-head svg { width: 20px; height: 20px; fill: none; stroke: var(--green-dark); stroke-width: 1.7; flex-shrink: 0; }
.sm-head h3 { font-family: var(--font-body); font-size: 1.05rem; font-weight: 600; color: var(--ink); margin: 0; }
.sm-count {
  font-size: 0.72rem; font-weight: 600; color: var(--green-dark);
  background: rgba(72, 88, 60, 0.12); border-radius: 100px; padding: 2px 9px;
}
.sm-viewall { margin-left: auto; font-size: 0.82rem; font-weight: 600; color: var(--green-mid); white-space: nowrap; }
.sm-viewall:hover { color: var(--green-dark); }

.sitemap-links { list-style: none; margin: 0; padding: 0; }
.sitemap-links li { margin: 0; }
.sitemap-links a {
  display: flex; align-items: center; justify-content: space-between; gap: 8px;
  padding: 8px 10px; font-size: 0.88rem; color: var(--ink);
  border-radius: 8px; transition: background 0.18s ease, color 0.18s ease;
}
.sitemap-links a:hover { background: #fff; color: var(--green-dark); }
.sitemap-links .sm-count { font-size: 0.68rem; }
.sitemap-cols { columns: 4; column-gap: 24px; }
.sitemap-cols li { break-inside: avoid; }

.back-top {
  position: fixed;
  right: 26px;
  bottom: 26px;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: none;
  background: var(--green-dark);
  display: grid;
  place-items: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s ease;
  z-index: 90;
}
.back-top svg { width: 22px; height: 22px; fill: #f4f1e8; }
.back-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-top:hover { background: var(--orange); }
.back-top:hover svg { fill: var(--green-deeper); }

.wa-float {
  position: fixed;
  left: 26px;
  bottom: 26px;
  z-index: 60;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #25d366;
  display: grid;
  place-items: center;
  box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-float svg { width: 30px; height: 30px; fill: #fff; }
.wa-float:hover { transform: scale(1.08); box-shadow: 0 8px 22px rgba(37, 211, 102, 0.6); }

@media (max-width: 600px) {
  .wa-float { width: 48px; height: 48px; left: 18px; bottom: 18px; }
  .wa-float svg { width: 27px; height: 27px; }
}

.b2b-modal { position: fixed; inset: 0; z-index: 1000; display: none; }
.b2b-modal.open { display: block; }
.b2b-overlay { position: absolute; inset: 0; background: rgba(20, 25, 15, 0.62); }
.b2b-box {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  width: min(860px, 92vw);
  max-height: 90vh;
  margin: 5vh auto 0;
  background: var(--cream-soft);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.45);
  animation: b2bIn 0.32s ease;
}
@keyframes b2bIn { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
.b2b-media { position: relative; min-height: 100%; }
.b2b-media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.b2b-media-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(18, 24, 14, 0.82) 5%, rgba(18, 24, 14, 0.15) 55%, rgba(18, 24, 14, 0.05));
  display: flex; flex-direction: column; justify-content: flex-end;
  padding: 26px 24px; color: #f4f1e8;
}
.b2b-media-overlay h3 { color: #fff; font-size: 1.7rem; line-height: 1.15; margin: 4px 0 8px; }
.b2b-media-overlay p { font-size: 0.9rem; opacity: 0.92; }
.b2b-form-wrap { padding: 34px 32px; overflow-y: auto; }
.b2b-form-wrap h3 { font-size: 1.7rem; margin-bottom: 4px; }
.b2b-form-wrap > p { color: var(--ink-soft); font-size: 0.9rem; margin-bottom: 18px; }
.b2b-ctx { display: flex; align-items: center; gap: 8px; background: #eef1e6; border: 1px solid #d9ddca; border-radius: 9px; padding: 9px 13px; margin-bottom: 16px; font-size: 0.82rem; color: var(--green-dark); font-weight: 600; }
.b2b-ctx svg { width: 15px; height: 15px; fill: var(--orange); flex-shrink: 0; }
.b2b-ctx span { white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
#b2bForm { display: flex; flex-direction: column; gap: 12px; }
.b2b-row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
#b2bForm input, #b2bForm textarea {
  width: 100%; padding: 11px 14px;
  border: 1px solid #d9d0ba; border-radius: 8px;
  font-family: inherit; font-size: 0.9rem; color: var(--ink); background: #fff;
}
#b2bForm textarea { min-height: 84px; resize: vertical; }
#b2bForm input:focus, #b2bForm textarea:focus { outline: none; border-color: var(--green-dark); }
.b2b-close {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 36px; height: 36px; border-radius: 50%; border: none;
  background: rgba(255, 255, 255, 0.92); cursor: pointer;
  display: grid; place-items: center; transition: background 0.2s ease;
}
.b2b-close svg { width: 18px; height: 18px; fill: var(--ink); }
.b2b-close:hover { background: #fff; }
@media (max-width: 640px) {
  .b2b-box { grid-template-columns: 1fr; width: 94vw; margin: 4vh auto 0; }
  .b2b-media { display: none; }
  .b2b-form-wrap { padding: 40px 22px 26px; }
  .b2b-row { grid-template-columns: 1fr; }
}

.page-content { max-width: 820px; margin: 0 auto; }
.page-content h1 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 20px; }
.page-content h2 { font-size: 1.5rem; margin: 30px 0 12px; }
.page-content h3 { font-size: 1.18rem; margin: 24px 0 10px; font-family: var(--font-body); font-weight: 600; }
.page-content p { margin-bottom: 14px; color: var(--ink-soft); line-height: 1.78; }
.page-content ul, .page-content ol { margin: 0 0 16px 22px; }
.page-content li { margin-bottom: 8px; color: var(--ink-soft); line-height: 1.7; }
.page-content a { color: var(--orange); text-decoration: underline; }
.page-content strong { color: var(--ink); }
.page-content img { max-width: 100%; height: auto; border-radius: 10px; margin: 14px 0; }
.page-content table { width: 100%; border-collapse: collapse; margin: 16px 0; }
.page-content th, .page-content td { border: 1px solid var(--line); padding: 10px 12px; text-align: left; font-size: 0.92rem; }
.page-cta { max-width: 820px; margin: 32px auto 0; display: flex; gap: 12px; flex-wrap: wrap; }

.about-ob {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: url('index-about-bg.webp') center center / cover no-repeat;
  overflow: hidden;
}
.about-ob-inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(20px, 3vh, 42px);
  padding-top: clamp(28px, 5vh, 60px);
  padding-bottom: clamp(72px, 11vh, 116px);
}
.about-ob-eyebrow {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  text-transform: uppercase; letter-spacing: .24em; font-size: .78rem; font-weight: 700;
  color: var(--green-dark);
}
.about-ob-eyebrow .rule { width: clamp(46px, 7vw, 110px); height: 1px; background: linear-gradient(90deg, transparent, #b99a5e); }
.about-ob-eyebrow .rule:last-child { background: linear-gradient(90deg, #b99a5e, transparent); }
.about-ob-eyebrow svg { width: 15px; height: 15px; fill: #8fa15c; }
.about-ob-eyebrow .txt { white-space: nowrap; }

.about-ob-main { display: grid; grid-template-columns: 1.05fr .95fr; align-items: center; gap: 30px; }
.about-ob-left { max-width: 580px; }
.about-ob-title {
  font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600;
  font-size: clamp(2rem, 3.6vw, 3.4rem); line-height: 1.06; letter-spacing: -.01em;
  color: #2b3823; margin-bottom: 18px; text-wrap: balance;
}
.about-ob-title span { color: #8a6a3c; }
.about-ob-lead { color: #5b6350; line-height: 1.72; max-width: 520px; margin-bottom: clamp(22px, 3.2vh, 40px); font-size: clamp(.92rem, 1vw, 1.02rem); }

.about-ob-features { display: grid; grid-template-columns: repeat(4, 1fr); }
.aof { text-align: center; padding: 0 10px; position: relative; }
.aof + .aof::before { content: ""; position: absolute; left: 0; top: 6px; bottom: 6px; width: 1px; background: rgba(43,56,35,.12); }
.aof-ic { width: 56px; height: 56px; border-radius: 50%; background: #dde3cd; display: grid; place-items: center; margin: 0 auto 12px; }
.aof-ic svg { width: 26px; height: 26px; fill: var(--green-dark); }
.aof h3 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700; font-size: 1.08rem; color: #2b3823; line-height: 1.15; margin-bottom: 6px; }
.aof p { font-size: .76rem; color: #616949; line-height: 1.42; }

.about-ob-photo { display: none; }

.about-ob-foot { display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.about-ob-trust {
  display: flex; align-items: center; flex-wrap: wrap;
  background: rgba(255,255,255,.52); border: 1px solid rgba(43,56,35,.08);
  border-radius: 16px; padding: 12px 8px; box-shadow: 0 4px 18px rgba(43,56,35,.05);
}
.aot { display: flex; align-items: center; gap: 11px; padding: 4px 20px; position: relative; }
.aot + .aot::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 1px; background: rgba(43,56,35,.12); }
.aot svg { width: 24px; height: 24px; fill: var(--green-dark); flex-shrink: 0; }
.aot strong { display: block; font-size: .85rem; font-weight: 600; color: #2b3823; line-height: 1.2; }
.aot span { font-size: .77rem; color: #6c7458; }
.about-ob-cta { flex-shrink: 0; }

.about-ob-strip {
  background: #1e2a15; color: #d3dac6; text-align: center;
  display: flex; align-items: center; justify-content: center; flex-wrap: wrap;
  padding: 14px 20px; font-size: .9rem; font-weight: 500;
}
.about-ob-strip .aos { display: inline-flex; align-items: center; gap: 9px; padding: 4px clamp(14px, 2.4vw, 34px); }
.about-ob-strip .aos:not(:first-child) { border-left: 1px solid rgba(255, 255, 255, .14); }
.about-ob-strip .aos svg { width: 17px; height: 17px; fill: #b9c48f; flex-shrink: 0; }

@media (max-width: 992px) {
  .about-ob { min-height: auto; background: #f3ede0; }
  .about-ob-inner { padding: 44px 24px 46px; gap: 28px; justify-content: flex-start; }
  .about-ob-main { grid-template-columns: 1fr; gap: 30px; }
  .about-ob-left { max-width: none; }
  .about-ob-photo {
    display: block; order: -1;
    background: url('index-about-bg.webp') no-repeat; background-size: 230% auto; background-position: 84% 40%;
    aspect-ratio: 16 / 10; border-radius: 16px; box-shadow: 0 14px 34px rgba(43,56,35,.16);
  }
  .about-ob-features { gap: 26px 4px; }
  .about-ob-foot { flex-direction: column; align-items: stretch; gap: 16px; }
  .about-ob-trust { justify-content: center; }
  .about-ob-cta { text-align: center; justify-content: center; }
}
@media (max-width: 620px) {
  .about-ob-features { grid-template-columns: repeat(2, 1fr); gap: 26px 0; }
  .aof::before { display: none !important; }
  .about-ob-title { font-size: clamp(1.7rem, 7.5vw, 2.3rem); }
  .about-ob-trust { flex-direction: column; align-items: flex-start; padding: 14px 18px; }
  .aot { padding: 6px 0; }
  .aot + .aot::before { display: none; }
  .about-ob-strip { font-size: .8rem; padding: 12px 14px; }
  .about-ob-strip .aos { padding: 5px 14px; }
  .about-ob-strip .aos:not(:first-child) { border-left: none; }
  .about-ob-eyebrow .rule { width: 32px; }
}

.why-us {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: url('index-why-choose.webp') center center / cover no-repeat;
  overflow: hidden;
  padding: clamp(24px, 4vh, 46px) 0 clamp(86px, 11vh, 118px);
}
.why-us-badge {
  position: absolute; top: 26px; right: 0; z-index: 3;
  background: linear-gradient(135deg, #caa456, #a2761f);
  color: #fff; font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700;
  font-size: 1.35rem; letter-spacing: 0.06em;
  padding: 7px 26px 7px 34px; border-radius: 7px 0 0 7px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
}
.why-us-content { max-width: min(760px, 58%); }
.why-us-photo { display: none; }

.why-us-title {
  font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600;
  font-size: clamp(2.3rem, 4.6vw, 4.1rem); line-height: 0.98; letter-spacing: 0.01em; margin: 0;
}
.why-us-title .dk { color: #2a2a26; }
.why-us-title .gd { color: #a87b2b; }
.why-us-rule { display: flex; align-items: center; gap: 8px; margin: 14px 0 12px; }
.why-us-rule span { width: 92px; height: 2px; background: #b48332; }
.why-us-rule i { width: 7px; height: 7px; background: #b48332; transform: rotate(45deg); }
.why-us-sub { font-size: clamp(1rem, 1.4vw, 1.28rem); color: #3f3f3a; margin: 0; }

.why-us-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: clamp(16px, 2.6vh, 30px) 14px;
  margin: clamp(20px, 3vh, 38px) 0;
}
.wug { text-align: center; padding: 0 8px; position: relative; }
.wug:not(:nth-child(3n+1))::before {
  content: ""; position: absolute; left: -7px; top: 6px; bottom: 6px; width: 1px; background: rgba(43, 40, 34, 0.1);
}
.wug-ic { width: 62px; height: 62px; border-radius: 50%; background: #ece5d8; display: grid; place-items: center; margin: 0 auto 13px; }
.wug-ic svg { width: 30px; height: 30px; fill: #6d6153; }
.wug h3 { font-size: 0.82rem; font-weight: 700; letter-spacing: 0.05em; text-transform: uppercase; color: #2b2b28; margin-bottom: 8px; }
.wug p { font-size: 0.8rem; color: #6a6a62; line-height: 1.5; }

.why-us-trust {
  display: flex; align-items: stretch;
  background: rgba(248, 244, 236, 0.92); border: 1px solid rgba(43, 40, 34, 0.1);
  border-radius: 14px; padding: 13px 4px; box-shadow: 0 6px 22px rgba(43, 40, 34, 0.08);
  backdrop-filter: blur(3px);
}
.wut { flex: 1; display: flex; align-items: center; gap: 9px; padding: 2px 11px; position: relative; }
.wut:not(:first-child)::before { content: ""; position: absolute; left: 0; top: 4px; bottom: 4px; width: 1px; background: rgba(43, 40, 34, 0.1); }
.wut svg { width: 26px; height: 26px; fill: #b48332; flex-shrink: 0; }
.wut strong { display: block; font-size: 0.71rem; font-weight: 700; letter-spacing: 0.03em; text-transform: uppercase; color: #2b2b28; margin-bottom: 2px; }
.wut span { font-size: 0.7rem; color: #6a6a62; line-height: 1.32; }

@media (max-width: 992px) {
  .why-us { min-height: auto; background: #f3ede0; }
  .why-us-content { max-width: none; }
  .why-us-photo {
    display: block; margin-bottom: 49px;
    background: url('index-why-choose.webp') no-repeat; background-size: 210% auto; background-position: 87% 47%;
    aspect-ratio: 8 / 10; border-radius: 16px; box-shadow: 0 14px 34px rgba(43, 40, 34, 0.16);
  }
  .why-us-grid { gap: 26px 10px; }
  .why-us-trust { flex-wrap: wrap; gap: 4px; }
  .wut { flex: 1 1 45%; }
  .wut:nth-child(odd)::before { display: none; }
}
@media (max-width: 620px) {
  .why-us-grid { grid-template-columns: repeat(2, 1fr); }
  .wug:nth-child(3n+1)::before { content: ""; }
  .wug:nth-child(2n+1)::before { display: none; }
  .why-us-title { font-size: clamp(2rem, 9vw, 2.8rem); }
  .why-us-trust { flex-direction: column; }
  .wut { flex: none; }
  .wut::before { display: none !important; }
  .why-us-badge { font-size: 1.1rem; top: 16px; padding: 6px 18px 6px 24px; }
}

.gr { background: var(--cream); }
.gr-head { display: flex; align-items: flex-end; justify-content: space-between; flex-wrap: wrap; gap: 22px; margin-bottom: 36px; }
.gr-head-txt h2 { margin-top: 6px; }
.gr-badge {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 12px 16px; box-shadow: var(--shadow-sm);
}
.gr-glogo { width: 22px; height: 22px; flex-shrink: 0; }
.gr-glogo-lg { width: 32px; height: 32px; }
.gr-badge-info { display: flex; flex-direction: column; line-height: 1.25; }
.gr-rating { font-weight: 700; font-size: 1.1rem; color: var(--ink); display: flex; align-items: center; gap: 6px; }
.gr-based { font-size: 0.75rem; color: var(--ink-soft); }
.gr-based strong { color: var(--ink); font-weight: 600; }
.gr-stars { color: #f5a623; letter-spacing: 1px; font-size: 0.95rem; white-space: nowrap; }

.gr-masonry { columns: 3; column-gap: 22px; }
.gr-card {
  break-inside: avoid; -webkit-column-break-inside: avoid;
  background: var(--white); border: 1px solid var(--line); border-radius: 14px;
  padding: 20px 20px 22px; margin-bottom: 22px; box-shadow: 0 2px 10px rgba(43, 56, 35, 0.04);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.gr-card:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.gr-card-top { display: flex; align-items: center; gap: 12px; margin-bottom: 13px; }
.gr-av { width: 42px; height: 42px; border-radius: 50%; flex-shrink: 0; display: grid; place-items: center; color: #fff; font-weight: 600; font-size: 1.05rem; }
.gr-who { display: flex; flex-direction: column; min-width: 0; flex: 1; }
.gr-name { font-weight: 600; font-size: 0.95rem; color: var(--ink); }
.gr-meta { font-size: 0.75rem; color: var(--ink-soft); }
.gr-card-top .gr-glogo { margin-left: auto; align-self: flex-start; }
.gr-rate { display: flex; align-items: center; gap: 10px; margin-bottom: 12px; flex-wrap: wrap; }
.gr-rate .gr-stars { font-size: 1rem; }
.gr-date { font-size: 0.78rem; color: var(--ink-soft); }
.gr-new { font-size: 0.62rem; font-weight: 700; letter-spacing: 0.06em; color: var(--ink); border: 1px solid var(--line); border-radius: 5px; padding: 2px 6px; }
.gr-text { font-size: 0.9rem; line-height: 1.62; color: var(--ink-soft); }
.gr-cta { text-align: center; margin-top: 14px; }

@media (max-width: 900px) {
  .gr-masonry { columns: 2; }
  .gr-head { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 560px) {
  .gr-masonry { columns: 1; }
  .gr-badge { flex-wrap: wrap; }
  .gr-write { width: 100%; justify-content: center; margin-top: 4px; }
}

.story-cg {
  position: relative; min-height: 100vh; display: flex; flex-direction: column;
  background: url('index-story.webp') top center / cover no-repeat; overflow: hidden;
}
.sc-story {
  flex: 1; display: flex; align-items: center; justify-content: center; text-align: center;
  padding: clamp(20px, 3.5vh, 44px) 20px clamp(10px, 2vh, 22px);
}
.sc-story-inner {
  max-width: min(560px, 46%);
  padding: clamp(22px, 3vh, 36px) clamp(24px, 2.4vw, 40px);
  border-radius: 26px;
  background: radial-gradient(ellipse 135% 120% at 50% 44%, rgba(245, 240, 228, 0.95) 0%, rgba(245, 240, 228, 0.8) 50%, rgba(245, 240, 228, 0) 80%);
}
.sc-eyebrow { display: flex; align-items: center; justify-content: center; gap: 14px; text-transform: uppercase; letter-spacing: 0.26em; font-size: 0.72rem; font-weight: 700; color: #b8863f; margin-bottom: 14px; }
.sc-eyebrow .rule { width: clamp(30px, 5vw, 60px); height: 1px; background: #c8a45a; }
.sc-title { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 600; font-size: clamp(1.9rem, 3.4vw, 3.2rem); line-height: 1.05; margin: 0 0 13px; text-wrap: balance; }
.sc-title .dk { color: #2b3220; }
.sc-title .gd { color: #b8863f; }
.sc-lead { color: #5c6350; line-height: 1.68; font-size: clamp(0.9rem, 0.98vw, 1rem); margin: 0 auto clamp(18px, 2.8vh, 32px); }
.sc-stats { display: flex; justify-content: center; }
.sc-stat { flex: 1; max-width: 168px; padding: 0 12px; position: relative; }
.sc-stat + .sc-stat::before { content: ""; position: absolute; left: 0; top: 8px; bottom: 8px; width: 1px; background: rgba(43, 50, 32, 0.14); }
.sc-stat-ic { width: 48px; height: 48px; border-radius: 50%; background: var(--green-dark); display: grid; place-items: center; margin: 0 auto 9px; }
.sc-stat-ic svg { width: 22px; height: 22px; fill: #cba15a; }
.sc-stat strong { display: block; font-family: 'Cormorant Garamond', serif; font-size: 1.7rem; font-weight: 600; color: #2b3220; line-height: 1; }
.sc-stat span { font-size: 0.77rem; color: #6a7059; }

.sc-gift { padding: 0 clamp(12px, 3vw, 40px) clamp(14px, 2.4vh, 30px); }
.sc-gift-inner { display: grid; grid-template-columns: 0.64fr 1fr; align-items: stretch; border-radius: 24px; overflow: hidden; box-shadow: 0 16px 44px rgba(43, 50, 32, 0.2); }
.sc-gift-left { background: linear-gradient(135deg, #2f3b26, #232d1a); color: #e8ecdf; padding: clamp(18px, 2.4vh, 28px) clamp(24px, 2.6vw, 38px); display: flex; flex-direction: column; align-items: flex-start; }
.sc-gift-ic { width: 44px; height: 44px; border-radius: 50%; border: 1.5px solid rgba(203, 161, 90, 0.5); display: grid; place-items: center; margin-bottom: 10px; }
.sc-gift-ic svg { width: 22px; height: 22px; fill: #cba15a; }
.sc-gift-eyebrow { text-transform: uppercase; letter-spacing: 0.22em; font-size: 0.68rem; font-weight: 700; color: #cba15a; margin-bottom: 7px; }
.sc-gift-left h3 { font-family: 'Cormorant Garamond', serif; font-weight: 600; font-size: clamp(1.4rem, 1.9vw, 1.95rem); line-height: 1.1; color: #f4efe3; margin-bottom: 8px; }
.sc-gift-left p { font-size: 0.85rem; color: #c3ccb4; line-height: 1.5; margin-bottom: 14px; }
.sc-explore { margin-top: auto; }
.sc-gift-right { background: var(--cream-soft); padding: clamp(18px, 2.4vh, 28px) clamp(18px, 2.4vw, 34px); display: flex; flex-direction: column; justify-content: center; }
.sc-gift-feats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 15px; }
.scf { text-align: center; position: relative; padding: 0 5px; }
.scf + .scf::before { content: ""; position: absolute; left: 0; top: 5px; bottom: 5px; width: 1px; background: rgba(43, 50, 32, 0.1); }
.scf-ic { width: 44px; height: 44px; border-radius: 50%; background: var(--green-dark); display: grid; place-items: center; margin: 0 auto 8px; }
.scf-ic svg { width: 21px; height: 21px; fill: #cba15a; }
.scf h4 { text-transform: uppercase; letter-spacing: 0.03em; font-size: 0.72rem; font-weight: 700; color: #2b3220; line-height: 1.2; margin-bottom: 4px; }
.scf p { font-size: 0.71rem; color: #6a7059; line-height: 1.3; }
.sc-know { align-self: center; }

@media (max-width: 992px) {
  .story-cg { min-height: auto; background: #f3ede0; }
  .sc-story { padding: 44px 20px 30px; }
  .sc-story-inner { max-width: none; }
  .sc-gift-inner { grid-template-columns: 1fr; }
  .sc-gift-left { align-items: center; text-align: center; }
  .sc-explore { margin-top: 6px; }
  .sc-gift-feats { grid-template-columns: repeat(2, 1fr); gap: 24px 8px; }
  .scf:nth-child(3)::before { display: none; }
}
@media (max-width: 560px) {
  .sc-stats { max-width: 340px; margin: 0 auto; }
  .sc-stat strong { font-size: 1.6rem; }
  .sc-title { font-size: clamp(1.7rem, 8vw, 2.4rem); }
  .scf::before { display: none !important; }
}

.wa-modal { position: fixed; inset: 0; z-index: 1100; display: none; }
.wa-modal.open { display: block; }
.wa-modal-ov { position: absolute; inset: 0; background: rgba(18, 28, 18, 0.55); }
.wa-card { position: relative; z-index: 1; width: min(460px, 92vw); margin: 8vh auto 0; background: #fff; border-radius: 20px; overflow: hidden; box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4); animation: waIn 0.3s ease; }
@keyframes waIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: none; } }
.wa-head { position: relative; display: flex; align-items: center; gap: 14px; padding: 22px 22px 24px; background: linear-gradient(120deg, #3ecf6b, #1f9d55); }
.wa-head-ic { width: 52px; height: 52px; border-radius: 50%; background: rgba(255, 255, 255, 0.22); display: grid; place-items: center; flex-shrink: 0; }
.wa-head-ic svg { width: 30px; height: 30px; fill: #fff; }
.wa-head-txt strong { display: block; color: #fff; font-family: 'Cormorant Garamond', Georgia, serif; font-size: 1.5rem; font-weight: 700; line-height: 1.12; }
.wa-head-txt span { color: rgba(255, 255, 255, 0.92); font-size: 0.85rem; }
.wa-x { position: absolute; top: 16px; right: 16px; width: 34px; height: 34px; border-radius: 50%; border: none; background: rgba(255, 255, 255, 0.9); cursor: pointer; display: grid; place-items: center; transition: background 0.2s ease; }
.wa-x:hover { background: #fff; }
.wa-x svg { width: 16px; height: 16px; fill: #333; }
.wa-body { padding: 24px 24px 26px; }
.wa-field { display: flex; flex-direction: column; margin-bottom: 16px; }
.wa-field label { font-size: 0.9rem; font-weight: 700; color: #1c2417; margin-bottom: 8px; }
.wa-field input { padding: 13px 16px; border: 1px solid #dcdccf; border-radius: 11px; font-family: inherit; font-size: 0.95rem; color: var(--ink); background: #fff; }
.wa-field input:focus { outline: none; border-color: #25d366; box-shadow: 0 0 0 3px rgba(37, 211, 102, 0.13); }
.wa-submit { margin-top: 6px; width: 100%; border: none; border-radius: 12px; cursor: pointer; background: linear-gradient(120deg, #3ecf6b, #1f9d55); color: #fff; font-family: inherit; font-weight: 700; font-size: 1.05rem; padding: 15px; display: flex; align-items: center; justify-content: center; gap: 10px; box-shadow: 0 8px 22px rgba(31, 157, 85, 0.35); transition: transform 0.2s ease, box-shadow 0.2s ease; }
.wa-submit:hover { transform: translateY(-2px); box-shadow: 0 12px 28px rgba(31, 157, 85, 0.45); }
.wa-submit svg { width: 22px; height: 22px; fill: #fff; }
.wa-note { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 14px; font-size: 0.8rem; color: #7a8270; text-align: center; }
.wa-note svg { width: 15px; height: 15px; fill: #1f9d55; flex-shrink: 0; }
@media (max-width: 480px) { .wa-card { margin: 5vh auto 0; } }

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  html { scroll-behavior: auto; }
}

@media (max-width: 1180px) {
  .collection-track { grid-auto-columns: calc((100% - 3 * 20px) / 4); }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(3, 1fr); }
  .product-grid { grid-template-columns: repeat(3, 1fr); }
  .why-inner { grid-template-columns: 1fr; gap: 32px; }
  .story-inner { grid-template-columns: 1fr 1fr; }
  .values-inner { grid-template-columns: 1fr; gap: 32px; }
  .sitemap-cols { columns: 3; }
  .timeline { grid-template-columns: 1fr 1fr; gap: 34px 22px; }
  .timeline-item:not(:last-child)::after { display: none; }
  .story-stats {
    grid-column: 1 / -1;
    flex-direction: row;
    justify-content: space-around;
    border-left: none;
    border-top: 1px solid var(--line);
    padding: 30px 0 0;
  }
}

@media (max-width: 992px) {
  .hide-lg { display: none !important; }

  .nav {
    position: fixed;
    top: 0;
    right: -320px;
    width: 300px;
    height: 100vh;
    background: var(--cream-soft);
    flex-direction: column;
    align-items: flex-start;
    padding: 90px 28px 28px;
    gap: 6px;
    box-shadow: -12px 0 34px rgba(0, 0, 0, 0.12);
    transition: right 0.35s ease;
    z-index: 99;
    overflow-y: auto;
  }
  .nav.open { right: 0; }
  .nav-link { width: 100%; }
  .nav-item { width: 100%; }
  .nav-close { display: grid; }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0 0 0 16px;
    display: none;
  }
  .nav-item.open .dropdown { display: block; }

  .menu-toggle { display: flex; }
  .header-actions .btn-outline { display: none; }
  .btn-bulk { display: none; }
  .brand img, .header.scrolled .brand img { height: 60px; }
  .header.scrolled .header-inner { height: 70px; }

  .hero-inner { grid-template-columns: 1fr; text-align: center; padding-top: 48px; }
  .hero-actions { justify-content: center; }
  .hero-media { margin-top: 12px; }

  .hero-arrow { display: none; }
  .hero-dots { bottom: 16px; }

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

  .gifting-banner { grid-template-columns: 1fr; }
  .gifting-content { padding: 44px 32px; text-align: center; }
  .gifting-media { min-height: 300px; }
  .gifting-media::before { background: linear-gradient(180deg, var(--green-dark) 0%, transparent 30%); }
  .gifting-reverse { grid-template-columns: 1fr; }
  .gifting-reverse .gifting-content { padding: 44px 32px; }
  .gifting-reverse .gifting-media::before { background: linear-gradient(180deg, var(--green-dark) 0%, transparent 30%); }

  .value-card { padding: 22px 20px; }
  .cta-strip { flex-direction: column; align-items: flex-start; text-align: left; padding: 34px 28px; }
  .cta-text { padding-left: 0; }
  .cta-strip .cta-leaf { display: none; }

  .why-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .why-item + .why-item::before { display: none; }

  .sitemap-cols { columns: 2; }
  .feature-bar { grid-template-columns: repeat(2, 1fr); gap: 20px 28px; }
  .shop-layout { grid-template-columns: 1fr; gap: 26px; }
  .filter-panel { position: static; top: auto; }
  .product-grid.list-view { grid-template-columns: 1fr; }
  .product-grid.list-view .product-thumb { width: 210px; }
  .custom-banner { grid-template-columns: 1fr; }
  .custom-media { min-height: 220px; }
  .trust-bar { grid-template-columns: repeat(2, 1fr); gap: 26px 22px; }
  .trust-bar .feature-item:not(:first-child)::before { display: none; }

  .pdp-layout { grid-template-columns: minmax(0, 1fr); gap: 34px; }
  .pdp-gallery { min-width: 0; }
  .overview-grid { grid-template-columns: 1fr; gap: 28px; }
  .blog-layout { grid-template-columns: 1fr; gap: 40px; }
  .blog-sidebar { position: static; top: auto; }
  .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .article-layout { grid-template-columns: 1fr; gap: 40px; }
  .article-head { grid-template-columns: 1fr; gap: 24px; }
  .format-cards { grid-template-columns: repeat(2, 1fr); }
  .features-row { grid-template-columns: 1fr; gap: 22px; }
  .contact-cols { grid-template-columns: 1fr; gap: 36px; }
  .map-why { grid-template-columns: 1fr; gap: 32px; }
  .custom-grid { grid-template-columns: repeat(3, 1fr); }
  .packaging-grid { grid-template-columns: 1fr; }
  .bulk-banner { grid-template-columns: 1fr; }
  .bulk-content { padding: 40px 32px; }
  .bulk-media { min-height: 240px; }
  .bulk-media::before { background: linear-gradient(180deg, var(--green-dark) 0%, transparent 30%); }
  .related-track { grid-auto-columns: calc((100% - 2 * 22px) / 3); }
  .related-arrow { display: none; }

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

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

@media (max-width: 640px) {
  .hide-md { display: none !important; }
  .topbar-inner { justify-content: center; }
  /* Mobile hero slider matches the actual mobile image ratio (~1330x1182) so nothing gets cropped */
  .hero-full { aspect-ratio: 1330 / 1182; }

  .section { padding: 60px 0; }

  .collection-track { grid-auto-columns: calc((100% - 20px) / 2); }
  .collection-grid { gap: 14px; }
  .collections .collection-grid { grid-template-columns: 1fr; }
  .collections .section-head { width: 100%; }
  .collections .section-head > div { width: 100%; }
  .collections .section-head h2 { max-width: none; }
  .stats-strip { grid-template-columns: repeat(1, 1fr); padding: 24px; }
  .stat { justify-content: flex-start; }
  .product-grid { grid-template-columns: 1fr 1fr; gap: 14px; }
  .product-body { padding: 14px; }

  .why-inner { padding: 32px 24px; }
  .values-grid { grid-template-columns: 1fr; }
  .timeline { grid-template-columns: 1fr; gap: 30px; }
  .feature-bar { grid-template-columns: 1fr; gap: 16px; padding: 22px 24px; }
  .product-grid.list-view .product-card { flex-direction: column; }
  .product-grid.list-view .product-thumb { width: 100%; }

  .pdp-features { grid-template-columns: repeat(2, 1fr); }
  .custom-grid { grid-template-columns: repeat(2, 1fr); }
  .blog-grid { grid-template-columns: 1fr; }
  .format-cards { grid-template-columns: 1fr; }
  .sitemap-cols { columns: 1; }
  .contact-cards { grid-template-columns: 1fr; }
  .connect-grid { grid-template-columns: 1fr; }
  .contact-form-card { padding: 24px; }
  /* Bulk enquiry strip: icon+text on top, button full-width below */
  .bulk-strip { flex-wrap: wrap; }
  .bulk-strip .btn { width: 100%; justify-content: center; }
  .article-nav { grid-template-columns: 1fr; gap: 16px; }
  .article-nav .an-next { justify-content: flex-start; text-align: left; flex-direction: row-reverse; }
  .article-nav .an-grid { display: none; }
  .article-share-row { flex-direction: column; align-items: flex-start; }
  .enquiry-grid { grid-template-columns: 1fr; }
  .related-track { grid-auto-columns: 62%; gap: 14px; }
  .pdp-gallery { flex-direction: column-reverse; min-width: 0; }
  .pdp-thumbs { flex-direction: row; overflow-x: auto; gap: 8px; width: 100%; }
  .pdp-thumb { flex: 1 1 0; width: auto; height: auto; aspect-ratio: 1; }
  /* PDP info — stack CTA buttons, single-column trust, tighter assure */
  .pdp-cta { flex-direction: column; }
  .pdp-cta > .btn { width: 100%; justify-content: center; }
  .pdp-trust { grid-template-columns: 1fr; gap: 11px; }
  .pdp-assure { padding: 18px 4px; }
  .pdp-assure-item { flex-direction: column; text-align: center; gap: 7px; padding: 0 6px; }
  .pdp-assure-item strong { font-size: 1.15rem; margin-bottom: 0; }
  .pdp-assure-item span { line-height: 1.3; }
  .pdp-assure-item + .pdp-assure-item::before { height: 78%; }
  /* Scroll hint (arrow + fade) on the horizontally-scrollable tabs */
  .tab-btns::after {
    content: "\203A";
    position: sticky; right: 0; flex: 0 0 auto; align-self: stretch;
    display: grid; place-items: center;
    margin-left: -40px; padding: 0 4px 10px 32px;
    font-size: 1.6rem; color: var(--green-dark);
    background: linear-gradient(90deg, transparent, var(--cream) 55%);
    pointer-events: none;
  }
  .bulk-content { padding: 40px 15px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-about,
  .footer-col:last-child { grid-column: 1 / -1; }
  .footer-about { display: flex; flex-wrap: wrap; justify-content: space-around; align-items: center; }
  .newsletter-inner { flex-direction: column; align-items: stretch; text-align: center; }
  .newsletter-text { justify-content: center; }
  .newsletter-form { flex-direction: column; max-width: none; width: 100%; }
  .newsletter-form input, .newsletter-form .btn { width: 100%; justify-content: center; }
}

@media (max-width: 440px) {
  .product-grid { grid-template-columns: 1fr; }
  .collection-track { grid-auto-columns: 80%; }
}
