/* SurfaBabe Wellness — Warm organic coastal aesthetic matching surfababe.com */

:root {
  --teal: #82CDCE;
  --teal-dark: #04595E;
  --teal-light: #EBEFEA;
  --teal-deep: #04595E;
  --teal-footer: #04595E;
  --teal-faq: #04595E;
  --salmon: #BC7C5A;
  --salmon-dark: #a5694b;
  --cream: #F2DBBF;
  --sand: #E4D2B5;
  --peach: #F2DBBF;
  --sage: #EBEFEA;
  --taupe: #B6A48F;
  --text: #2d2a26;
  --text-light: #6b6560;
  --white: #ffffff;
  --radius: 10px;
  --radius-sm: 6px;
  --radius-pill: 40px;
  --shadow: 0 2px 16px rgba(0,0,0,0.06);
  --transition: 0.25s ease;
}

*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 160px;
  overflow-x: clip;
}

body {
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  color: var(--text);
  background: #fafafa;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
}

h1, h2, h3, h4 {
  font-family: 'Fraunces', Georgia, serif;
  line-height: 1.25;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 28px;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a { text-decoration: none; color: inherit; }

:focus-visible {
  outline: 3px solid var(--salmon);
  outline-offset: 4px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 30px;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  font-size: 0.92rem;
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--salmon);
  color: var(--white);
  border-color: var(--salmon);
}
.btn-primary:hover {
  background: var(--salmon-dark);
  border-color: var(--salmon-dark);
  transform: translateY(-1px);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}
.btn-outline {
  background: transparent;
  color: var(--teal-dark);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal-light);
  transform: translateY(-1px);
}
.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,0.85);
  border: 1px solid rgba(255,255,255,0.4);
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  cursor: pointer;
  transition: var(--transition);
  display: inline-block;
  text-decoration: none;
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  color: var(--white);
}
.btn-subscribe {
  background: var(--salmon);
  color: var(--white);
  border: none;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.92rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  width: 100%;
}
.btn-subscribe:hover {
  background: var(--salmon-dark);
  transform: translateY(-1px);
}
.btn-sm {
  padding: 8px 20px;
  font-size: 0.82rem;
}

/* ===== Navigation ===== */
.nav {
  position: sticky;
  top: 47px;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(235, 239, 234, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 8px rgba(0,0,0,0.05);
  transition: var(--transition);
}
.nav-inner {
  max-width: 1320px;
  margin: 0 auto;
  padding: 10px 36px;
  min-height: 103px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  line-height: 1;
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}
.nav-logo-icon {
  height: 70px;
  width: auto;
  display: block;
}
.nav-logo-text {
  height: 40px;
  width: auto;
  display: block;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.7vw, 28px);
}
.nav-links a {
  font-size: 1rem;
  font-weight: 700;
  color: #151515;
  transition: var(--transition);
  letter-spacing: 0.01em;
}
.nav-links a:hover { color: var(--salmon); }
.nav-cta {
  background: var(--salmon) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: var(--radius-pill);
  font-size: 0.83rem !important;
}
.nav-cta:hover {
  background: var(--salmon-dark) !important;
  color: var(--white) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* ===== Announcement Bar ===== */
.announcement-bar {
  position: sticky;
  top: 0;
  z-index: 101;
  background: var(--teal);
  text-align: center;
  min-height: 47px;
  padding: 11px 20px;
  font-size: 1rem;
  font-weight: 400;
  color: #161616;
  letter-spacing: 0.3px;
  line-height: 1.3;
}
.announcement-bar a {
  color: #161616;
  text-decoration: underline;
  text-underline-offset: 2px;
}

/* ===== Hero — Full width photo with text overlay ===== */
.hero {
  position: relative;
  width: 100%;
  line-height: 0;
}
.hero-img {
  width: 100%;
  height: 651px;
  object-fit: cover;
  object-position: center 10%;
  display: block;
}
.hero-overlay {
  position: absolute;
  top: 50%;
  left: 4%;
  width: 46%;
  transform: translateY(-50%);
  text-align: center;
  z-index: 2;
  max-width: 480px;
  line-height: 1;
}
.hero-heading {
  font-family: 'Fraunces', Georgia, serif;
  font-size: clamp(2.4rem, 3.5vw, 3.15rem);
  font-weight: 700;
  color: var(--teal-dark);
  line-height: 1.15;
  margin-bottom: 14px;
}
.hero-sub {
  font-size: 1.25rem;
  color: var(--teal-dark);
  margin-bottom: 26px;
  font-weight: 700;
  letter-spacing: 0.5px;
  font-family: 'Fraunces', Georgia, serif;
}
.hero-btn {
  display: inline-block;
  background: var(--salmon);
  color: var(--white);
  min-width: 163px;
  min-height: 54px;
  padding: 15px 40px;
  border-radius: 100px;
  font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  text-decoration: none;
  transition: var(--transition);
  line-height: 1;
}
.hero-btn:hover {
  background: var(--salmon-dark);
  transform: translateY(-1px);
}

/* ===== Product Strip ===== */
.product-strip {
  background: var(--sage);
  padding: 68px 0 64px;
  min-height: 703px;
}
.product-strip-inner {
  max-width: 1238px;
  margin: 0 auto;
  padding: 0 24px;
}
.products-heading {
  text-align: center;
  font-size: clamp(2.2rem, 3.5vw, 3.125rem);
  color: var(--teal-dark);
  margin-bottom: 46px;
  font-weight: 400;
}
.product-carousel-wrap {
  display: flex;
  align-items: center;
  gap: 8px;
}
.product-arrow {
  background: none;
  border: none;
  font-size: 3rem;
  color: var(--teal-dark);
  cursor: pointer;
  padding: 0 8px;
  line-height: 1;
  opacity: 0.6;
  transition: var(--transition);
  flex-shrink: 0;
  user-select: none;
}
.product-arrow:hover { opacity: 1; }
.product-arrow:disabled {
  opacity: 0.25;
  cursor: default;
}
.product-arrow:disabled:hover { opacity: 0.25; }
.product-carousel-viewport {
  flex: 1;
  overflow: hidden;
}
.product-carousel {
  display: flex;
  transition: transform 0.35s ease;
}
.strip-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 12px;
  transition: var(--transition);
  text-decoration: none;
  color: inherit;
  padding: 0 12px;
  flex-shrink: 0;
}
.strip-item:hover { opacity: 0.85; }
.strip-img-wrap {
  position: relative;
  width: 100%;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.strip-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.best-seller-strip {
  position: relative;
}
.strip-badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--salmon);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}
.strip-name {
  font-size: 0.83rem;
  font-weight: 400;
  color: var(--text);
  line-height: 1.4;
  font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
}
.strip-price {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--text-light);
  font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
}

/* ===== Promo Video Section ===== */
.promo-video-section {
  background: var(--teal);
  line-height: 0;
  min-height: 500px;
  display: grid;
  place-items: center;
}
.promo-video-wrap {
  position: relative;
  width: min(825px, 100%);
  height: 500px;
}
.promo-video-section video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.video-toggle {
  position: absolute;
  right: 16px;
  bottom: 16px;
  z-index: 2;
  min-height: 42px;
  padding: 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.75);
  border-radius: 999px;
  background: rgba(4, 89, 94, 0.88);
  color: #fff;
  font: 600 0.85rem/1 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  cursor: pointer;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.video-toggle:hover { background: var(--teal-dark); }

/* ===== Floating Contact Buttons ===== */
.float-btn {
  position: fixed;
  right: 30px;
  z-index: 999;
  display: block;
  line-height: 0;
  border-radius: 50%;
  transition: transform 0.2s ease, opacity 0.2s ease;
}
.float-btn:hover { transform: scale(1.08); }
.float-wa  { bottom: 30px; }
.float-msg { bottom: 130px; }
.float-btn img { width: 60px; height: 60px; display: block; }

/* ===== Story Section — white bg, two-column ===== */
.story-section {
  background: #fafafa;
  padding: 76px 0 72px;
}
.story-title {
  text-align: center;
  font-size: clamp(2.1rem, 3vw, 2.5rem);
  color: var(--teal-dark);
  font-weight: 700;
  margin-bottom: 14px;
}
.story-subtitle {
  text-align: center;
  font-style: italic;
  color: var(--salmon);
  font-size: clamp(1.5rem, 2.3vw, 1.9rem);
  font-family: 'Caveat', 'Dancing Script', cursive;
  max-width: 680px;
  margin: 0 auto 52px;
  line-height: 1.5;
}
.story-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
  margin-bottom: 54px;
}
.story-row-flip {
  direction: rtl;
}
.story-row-flip > * {
  direction: ltr;
}
.story-text p {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.85;
  margin-bottom: 16px;
}
.story-text strong {
  color: var(--salmon);
  font-weight: 600;
}
.story-photo {
  position: relative;
}
.story-photo img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  display: block;
  height: 390px;
  max-height: 390px;
}
.story-burn-wrap {
  position: relative;
}
.burn-bubble-teal {
  position: absolute;
  top: 24px;
  right: -20px;
  background: #9ddbd8;
  color: #1d5f5c;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 14px 20px;
  border-radius: 28px;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  line-height: 1.3;
  z-index: 2;
  text-align: center;
  min-width: 150px;
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.story-cta-wrap {
  text-align: center;
  padding-top: 12px;
}
.btn-story-new {
  display: inline-block;
  background: var(--teal);
  color: var(--white);
  padding: 14px 44px;
  border-radius: 100px;
  font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  text-decoration: none;
  transition: var(--transition);
}
.btn-story-new:hover {
  background: var(--teal-dark);
  transform: translateY(-1px);
}

/* ===== Contact ===== */
.contact {
  padding: 76px 0;
  background: #f9f7f4;
  text-align: center;
  position: relative;
  overflow: hidden;
  min-height: 533px;
}
.contact-bg-img {
  position: absolute;
  inset: 0;
  background: url('/images/contact-bg.jpg') left center / cover no-repeat;
  opacity: 0.48;
  pointer-events: none;
}
.contact .container { position: relative; z-index: 1; }
.contact h2 {
  font-size: 2.5rem;
  margin-bottom: 48px;
  color: #171717;
  font-style: normal;
  font-family: 'Fraunces', Georgia, serif;
}
.contact-cols {
  display: flex;
  justify-content: center;
  gap: 0;
  max-width: 1060px;
  margin: 0 auto;
  border-radius: 16px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 2px 20px rgba(0,0,0,0.06);
  border: 1px solid rgba(4,89,94,0.18);
  min-height: 235px;
}
.contact-col {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
  text-decoration: none;
  transition: var(--transition);
  padding: 30px 20px;
  flex: 1;
  border-right: 1px solid rgba(0,0,0,0.06);
}
.contact-col:last-child { border-right: none; }
.contact-col:hover { background: var(--teal-light); }
.contact-col-icon {
  width: 42px;
  height: 42px;
  object-fit: contain;
  display: block;
  margin-bottom: 6px;
  order: 2;
}
.contact-col-label {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  order: 1;
}
.contact-col-value {
  font-size: 0.82rem;
  color: var(--salmon);
  order: 3;
}

/* ===== Our Happy Customers ===== */
.customers {
  padding: 60px 0;
  background: var(--sage);
  text-align: center;
}
.customers h2 {
  font-size: 2rem;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-style: normal;
  font-weight: 400;
}
/* Photo Collage Grid */
.photo-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 1100px;
  margin: 0 auto 40px;
}
.collage-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.collage-item {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  line-height: 0;
}
.collage-item img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.collage-wide img {
  aspect-ratio: 1;
}
.collage-name {
  position: absolute;
  bottom: 8px;
  left: 10px;
  font-size: 0.78rem;
  color: var(--white);
  font-weight: 600;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5);
  line-height: 1;
}

/* Social Reviews Grid */
/* WhatsApp-style dark quote cards */
.wa-quotes {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  max-width: 1100px;
  margin: 0 auto 32px;
}
.wa-quote {
  background: #1a1a1a;
  color: rgba(255,255,255,0.92);
  border-radius: 10px;
  padding: 20px 18px;
  font-size: 0.84rem;
  line-height: 1.65;
}
.wa-quote p {
  margin: 0;
}
.wa-author {
  display: block;
  margin-top: 10px;
  font-size: 0.76rem;
  color: var(--teal);
  font-weight: 600;
}

.social-reviews {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
}
.social-card {
  background: var(--white);
  border-radius: 8px;
  padding: 20px;
  box-shadow: 0 1px 4px rgba(0,0,0,0.12), 0 1px 3px rgba(0,0,0,0.08);
  border: 1px solid rgba(0,0,0,0.1);
}
.social-header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 0.9rem;
  color: var(--text);
  line-height: 1.4;
}
.social-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.78rem;
  font-weight: 700;
  flex-shrink: 0;
  font-family: 'DM Sans', sans-serif;
}
.social-name {
  font-size: 0.92rem;
}
.social-page {
  font-size: 0.92rem;
  color: var(--text);
}
.social-badge {
  color: #1da84e;
  font-weight: 600;
}
.social-time {
  font-size: 0.76rem;
  color: #65676b;
  display: block;
  margin-top: 2px;
}
.social-stars {
  color: #f5c518;
  letter-spacing: 1px;
}
.social-messenger {
  font-size: 0.78rem;
  color: #65676b;
  font-style: italic;
  margin-bottom: 10px;
}
.fb-check {
  vertical-align: middle;
  margin: 0 3px;
}
.fb-avatar {
  background: #1877F2;
}
.social-text {
  font-size: 0.92rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 14px;
}
.social-cta {
  font-size: 0.78rem;
  color: #65676b;
  font-style: italic;
  margin-bottom: 14px;
  line-height: 1.5;
}
.social-actions {
  display: flex;
  gap: 24px;
  font-size: 0.84rem;
  color: var(--text-light);
  font-weight: 500;
  border-top: 1px solid rgba(0,0,0,0.08);
  padding-top: 12px;
}
.social-actions span {
  cursor: default;
  display: flex;
  align-items: center;
  gap: 6px;
}
.social-actions svg {
  flex-shrink: 0;
}

/* ===== Testimonials ===== */
.testimonials {
  background: linear-gradient(90deg, #abd3ca 0%, #fffffe 100%);
  padding: 74px 24px;
}
.testimonials-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  max-width: 860px;
  margin: 0 auto;
}
.carousel-track {
  flex: 1;
  position: relative;
  min-height: 220px;
}
.carousel-slide {
  display: none;
}
.carousel-slide.active {
  display: block;
}
.carousel-content {
  display: flex;
  align-items: flex-start;
  gap: 28px;
}
.carousel-img {
  width: 240px;
  height: 240px;
  object-fit: cover;
  border-radius: 12px;
  flex-shrink: 0;
}
.carousel-text {
  text-align: left;
  padding-top: 8px;
}
.carousel-divider {
  border: none;
  border-top: 2px solid var(--teal-dark);
  width: 40px;
  margin: 10px 0 16px;
}
.carousel-quote {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.75;
  font-style: italic;
  font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
}
.carousel-name {
  font-weight: 600;
  font-size: 1rem;
  color: var(--text);
  font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
}
.carousel-btn {
  background: none;
  border: none;
  font-size: 2.8rem;
  color: var(--teal-dark);
  cursor: pointer;
  padding: 0 6px;
  line-height: 1;
  opacity: 0.5;
  transition: var(--transition);
  flex-shrink: 0;
}
.carousel-btn:hover { opacity: 0.9; }
.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}
.carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--teal-dark);
  opacity: 0.25;
  cursor: pointer;
  transition: var(--transition);
  border: none;
}
.carousel-dot.active { opacity: 1; }

/* ===== FAQ ===== */
.faq {
  padding: 78px 0;
  background: var(--sand);
  color: var(--text);
}
.faq > .container {
  max-width: 1044px;
  background: var(--white);
  padding: 38px 32px 44px;
}
.faq-header {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  max-width: 920px;
  margin: 0 auto;
  gap: 20px;
}
.faq h2 {
  font-size: 2.5rem;
  text-align: left;
  margin-bottom: 8px;
  color: var(--teal-dark);
  font-style: italic;
}
.faq-search {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--text-light);
  white-space: nowrap;
}
.faq-search-icon {
  color: var(--text-light);
  display: flex;
  align-items: center;
  transition: var(--transition);
}
.faq-search-icon:hover { color: var(--teal-dark); }
.faq-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
  margin-top: 24px;
}
.faq-tab {
  padding: 10px 32px;
  border-radius: 0;
  font-size: 1rem;
  font-weight: 500;
  background: transparent;
  color: rgba(0,0,0,0.5);
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
}
.faq-tab:hover {
  color: var(--text);
  border-bottom-color: rgba(0,0,0,0.2);
}
.faq-tab.active {
  color: var(--salmon);
  border-bottom-color: var(--salmon);
}
.faq-grid {
  max-width: 920px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.faq-item {
  background: var(--white);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid rgba(0,0,0,0.08);
  border-radius: 8px;
}
.faq-item summary {
  padding: 0;
  font-weight: 500;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: stretch;
  font-size: 0.95rem;
  color: var(--text);
  gap: 0;
  min-height: 88px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-num {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 100px;
  width: 100px;
  background: #1a1a1a;
  color: var(--teal);
  font-family: 'Fraunces', Georgia, serif;
  font-size: 2.6rem;
  font-weight: 700;
  font-style: italic;
  flex-shrink: 0;
  padding: 0;
  line-height: 1;
  border-radius: 8px 0 0 8px;
}
.faq-q {
  display: flex;
  align-items: center;
  padding: 20px 20px 20px 28px;
  flex: 1;
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 500;
}
.faq-item summary::after {
  content: '∨';
  font-size: 1.1rem;
  color: rgba(0,0,0,0.35);
  font-weight: 400;
  transition: var(--transition);
  flex-shrink: 0;
  display: flex;
  align-items: center;
  padding-right: 24px;
  padding-left: 8px;
}
.faq-item[open] summary::after {
  content: '∧';
}
.faq-item p {
  padding: 12px 28px 24px 128px;
  color: var(--text);
  font-size: 0.9rem;
  line-height: 1.75;
}
.faq-cta {
  text-align: center;
  margin-top: 36px;
}
.btn-faq-more {
  display: inline-block;
  background: transparent;
  color: var(--teal-dark);
  border: 2px solid var(--teal-dark);
  padding: 12px 32px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 500;
  font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
}
.btn-faq-more:hover {
  background: var(--teal-dark);
  color: var(--white);
}

/* ===== Newsletter ===== */
.newsletter {
  background: var(--taupe);
  overflow: hidden;
}
.newsletter-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 650px;
}
.newsletter-content {
  padding: 82px 9vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f5ede2;
}
.newsletter h2 {
  font-size: 1.8rem;
  margin-bottom: 12px;
  color: var(--text);
}
.newsletter p {
  font-size: 0.9rem;
  color: var(--text-light);
  margin-bottom: 28px;
  max-width: 380px;
  line-height: 1.6;
}
.newsletter-photo {
  overflow: hidden;
  position: relative;
}
.newsletter-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 380px;
}
.newsletter-form input {
  width: 100%;
  padding: 13px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid rgba(0,0,0,0.12);
  font-family: 'DM Sans', 'Helvetica Neue', Arial, sans-serif;
  font-size: 0.9rem;
  background: var(--white);
  color: var(--text);
  outline: none;
  transition: var(--transition);
}
.newsletter-form input::placeholder { color: #b0a89e; }
.newsletter-form input:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(92,191,196,0.12);
}

/* ===== Footer ===== */
.footer {
  background: var(--teal-footer);
  color: rgba(255,255,255,0.85);
  padding: 72px 28px 0;
  min-height: 520px;
}
.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding-bottom: 64px;
  gap: 48px;
}
.footer-left {
  flex: 1;
}
.footer-tagline {
  font-family: 'Caveat', 'Dancing Script', cursive;
  font-size: 2.2rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.2;
}
.footer-nav {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px 48px;
}
.footer-nav a {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.85);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: var(--transition);
  line-height: 2.2;
}
.footer-nav a:hover { color: var(--white); }
.footer-right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 20px;
}
.footer-logo-img {
  width: 200px;
  height: auto;
}
.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 6px;
  align-items: flex-end;
}
.footer-contact-info a {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.85);
  transition: var(--transition);
}
.footer-contact-info a:hover { color: var(--white); }
.footer-contact-icon {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.footer-bottom {
  max-width: 1100px;
  margin: 0 auto;
  border-top: 1px solid rgba(255,255,255,0.15);
  padding: 18px 0;
  text-align: center;
  font-size: 0.75rem;
  opacity: 0.55;
}

/* ===== Breadcrumb (for other pages) ===== */
.breadcrumb {
  padding: 80px 0 0;
  background: var(--cream);
}
.breadcrumb-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 16px 24px;
  font-size: 0.85rem;
  color: var(--text-light);
}
.breadcrumb-inner a {
  color: var(--teal-dark);
  transition: var(--transition);
}
.breadcrumb-inner a:hover { color: var(--teal); }
.breadcrumb-inner span { margin: 0 8px; }

/* ===== Product Grid (Products listing page) ===== */
.products {
  padding: 80px 0;
  background: var(--peach);
}
.products h2 {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 8px;
}
.section-sub {
  text-align: center;
  color: var(--text-light);
  margin-bottom: 40px;
  font-size: 0.93rem;
}
.category-label {
  font-size: 1.1rem;
  color: var(--teal-dark);
  margin: 40px 0 20px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--teal-light);
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 20px;
  margin-bottom: 20px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  position: relative;
  border: 1px solid #ede8e0;
}
.product-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.1);
}
.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--cream);
}
.product-info {
  padding: 16px;
}
.product-info h4 {
  font-size: 0.98rem;
  margin-bottom: 4px;
}
.product-label {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: var(--teal-dark);
  background: var(--teal-light);
  padding: 2px 10px;
  border-radius: 20px;
  margin-bottom: 8px;
}
.product-desc {
  font-size: 0.86rem;
  color: var(--text-light);
  line-height: 1.6;
  margin-bottom: 8px;
}
.product-meta {
  font-size: 0.76rem;
  color: var(--text-light);
  opacity: 0.7;
  margin-bottom: 14px;
}
.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.price {
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--text);
}
.badge {
  position: absolute;
  top: 10px;
  left: 10px;
  background: var(--salmon);
  color: var(--white);
  font-size: 0.68rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 20px;
  z-index: 1;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.best-seller { border: 2px solid var(--salmon); }

/* ===== Product Detail ===== */
.product-detail {
  padding: 40px 0 80px;
  background: var(--cream);
}
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.product-detail-image {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: var(--white);
}
.product-detail-image img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.product-gallery {
  overflow: visible;
  background: transparent;
  box-shadow: none;
}
.gallery-main {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden;
  border: 1px solid rgba(4,89,94,0.14);
  border-radius: 16px;
  background: var(--white);
  cursor: zoom-in;
  box-shadow: var(--shadow);
}
.gallery-main img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--white);
}
.gallery-enlarge {
  position: absolute;
  right: 14px;
  bottom: 14px;
  padding: 7px 13px;
  border-radius: 999px;
  color: var(--teal-dark);
  background: rgba(255,255,255,0.9);
  font-size: 0.76rem;
  font-weight: 600;
  box-shadow: 0 2px 10px rgba(0,0,0,0.12);
}
.gallery-thumbnails {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
  margin-top: 12px;
}
.gallery-thumbnails button {
  padding: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border: 2px solid transparent;
  border-radius: 7px;
  background: var(--white);
  cursor: pointer;
}
.gallery-thumbnails button[aria-pressed="true"] { border-color: var(--teal-dark); }
.gallery-thumbnails img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}
.gallery-dialog {
  width: min(92vw, 900px);
  max-width: 900px;
  max-height: 92vh;
  padding: 0;
  border: 0;
  border-radius: 18px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 30px 90px rgba(0,0,0,0.4);
}
.gallery-dialog::backdrop { background: rgba(0,0,0,0.74); }
.gallery-dialog img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 92vh;
  object-fit: contain;
}
.gallery-close {
  position: absolute;
  z-index: 1;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  color: var(--teal-dark);
  background: rgba(255,255,255,0.94);
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}
.product-detail-info h1 { font-size: 2rem; margin-bottom: 4px; }
.product-detail-info .product-name-vi {
  font-size: 0.95rem;
  color: var(--text-light);
  font-style: italic;
  margin-bottom: 16px;
}
.product-detail-price {
  font-family: 'Fraunces', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--teal-dark);
  margin-bottom: 20px;
}
.product-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 24px;
}
.product-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.78rem;
  font-weight: 500;
  background: var(--teal-light);
  color: var(--teal-deep);
}
.product-badge.best-seller-badge {
  background: var(--salmon);
  color: var(--white);
}
.product-section { margin-bottom: 28px; }
.product-section h3 {
  font-size: 1.05rem;
  margin-bottom: 12px;
  color: var(--text);
  padding-bottom: 8px;
  border-bottom: 1px solid #e8ddd0;
}
.product-section p {
  font-size: 0.93rem;
  color: var(--text-light);
  line-height: 1.7;
}
.product-section ul { list-style: none; padding: 0; }
.product-section ul li {
  padding: 5px 0;
  font-size: 0.93rem;
  color: var(--text-light);
  padding-left: 20px;
  position: relative;
}
.product-section ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--teal);
  font-weight: 600;
}
.product-section .note {
  background: #f5efe8;
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  font-size: 0.88rem;
  color: var(--text-light);
  line-height: 1.6;
  border-left: 3px solid var(--teal);
}
.product-cta { margin-top: 32px; }
.product-cta .btn {
  width: 100%;
  justify-content: center;
  font-size: 1.02rem;
  padding: 16px 28px;
}
.related-section {
  padding: 60px 0 80px;
  background: var(--peach);
}
.related-section h2 {
  font-size: 1.5rem;
  text-align: center;
  margin-bottom: 32px;
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(230px, 1fr));
  gap: 20px;
}

/* ===== FAQ Page ===== */
.faq-page {
  padding: 76px 0 88px;
  background: var(--sand);
}
.faq-page h1 { font-size: clamp(2.3rem, 5vw, 3.5rem); text-align: center; margin-bottom: 16px; color: var(--teal-dark); }
.faq-intro {
  max-width: 680px;
  margin: 0 auto 36px;
  text-align: center;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}
.faq-story {
  max-width: 680px;
  margin: 0 auto 44px;
  background: var(--white);
  padding: 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.faq-story h2 { font-size: 1.3rem; margin-bottom: 12px; color: var(--teal-dark); }
.faq-story p { font-size: 0.93rem; color: var(--text-light); line-height: 1.7; }
.faq-tabs-page {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-bottom: 28px;
}
.faq-tab-page {
  padding: 9px 18px;
  border-radius: 24px;
  font-size: 0.88rem;
  font-weight: 500;
  background: var(--white);
  color: var(--text-light);
  border: 1px solid #e0d8ce;
  cursor: pointer;
  transition: var(--transition);
}
.faq-tab-page:hover { border-color: var(--teal); color: var(--teal-dark); }
.faq-tab-page.active { background: var(--teal); color: var(--white); border-color: var(--teal); }
.faq-panel { display: none; max-width: 680px; margin: 0 auto; }
.faq-panel.active { display: block; }
.faq-panel[hidden] { display: none; }
.faq-panel .faq-item {
  background: var(--white);
  border: 1px solid #e0d8ce;
  border-radius: var(--radius-sm);
  margin-bottom: 8px;
  overflow: hidden;
}
.faq-panel .faq-item summary { color: var(--text); padding: 16px 20px; min-height: 0; }
.faq-panel .faq-item p { color: var(--text-light); padding: 0 20px 18px; }
.faq-panel .faq-item summary::after { padding-right: 0; }
.faq-panel .faq-item summary::after { color: var(--teal); }
.faq-count { text-align: center; font-size: 0.83rem; color: var(--text-light); margin-bottom: 28px; }

/* ===== Buy Page ===== */
.buy-page { padding: 100px 0 80px; background: var(--cream); }
.buy-page h1 { font-size: 2.2rem; text-align: center; margin-bottom: 16px; }
.buy-intro {
  max-width: 580px;
  margin: 0 auto 44px;
  text-align: center;
  font-size: 1rem;
  color: var(--text-light);
  line-height: 1.7;
}
.order-steps {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 56px;
}
.order-step {
  background: var(--white);
  border-radius: var(--radius);
  padding: 24px 20px;
  text-align: center;
  box-shadow: var(--shadow);
}
.order-step-number {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: 'Fraunces', serif;
  font-size: 1.15rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
}
.order-step h3 { font-size: 0.98rem; margin-bottom: 8px; }
.order-step p { font-size: 0.83rem; color: var(--text-light); line-height: 1.5; }
.buy-section { margin-bottom: 44px; }
.buy-section h2 { font-size: 1.5rem; margin-bottom: 22px; text-align: center; }
.payment-methods {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
  gap: 16px;
  max-width: 720px;
  margin: 0 auto;
}
.payment-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 22px;
  box-shadow: var(--shadow);
  text-align: center;
}
.payment-card .payment-icon { font-size: 1.8rem; margin-bottom: 10px; }
.payment-card h3 { font-size: 0.98rem; margin-bottom: 8px; }
.payment-card p { font-size: 0.83rem; color: var(--text-light); line-height: 1.5; }
.delivery-guide {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.delivery-guide h3 { font-size: 1.05rem; margin: 18px 0 10px; color: var(--teal-dark); }
.delivery-guide h3:first-child { margin-top: 0; }
.delivery-guide p, .delivery-guide li { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }
.delivery-guide ol, .delivery-guide ul { padding-left: 20px; margin-bottom: 14px; }
.delivery-guide li { margin-bottom: 6px; }
.delivery-times { display: grid; grid-template-columns: 1fr 1fr; gap: 8px; margin: 10px 0; }
.delivery-time { background: var(--teal-light); border-radius: var(--radius-sm); padding: 10px 14px; font-size: 0.83rem; }
.delivery-time strong { display: block; color: var(--text); margin-bottom: 2px; }
.delivery-time span { color: var(--text-light); }
.returns-section {
  max-width: 680px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
}
.returns-section h3 { font-size: 1.05rem; margin-bottom: 10px; color: var(--teal-dark); }
.returns-section ul { padding-left: 20px; }
.returns-section li { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; margin-bottom: 6px; }
.buy-cta { text-align: center; padding: 44px 0 0; }
.buy-cta h2 { font-size: 1.5rem; margin-bottom: 14px; }
.buy-cta p { color: var(--text-light); margin-bottom: 22px; }

/* ===== Buy Now — faithful contact and Vietnam delivery page ===== */
.buy-now-page {
  padding: 0;
  background: #fafafa;
}
.buy-hero {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: 64px;
  max-width: 1180px;
  padding-top: 78px;
  padding-bottom: 78px;
}
.buy-hero-copy h1 {
  color: var(--teal-dark);
  font-size: clamp(2.5rem, 5vw, 4.25rem);
  margin-bottom: 22px;
}
.buy-hero-copy > p:not(.eyebrow) {
  color: var(--text-light);
  margin-bottom: 18px;
  max-width: 530px;
}
.eyebrow {
  color: var(--salmon);
  font-family: 'Caveat', cursive;
  font-size: 1.6rem;
  margin-bottom: 8px;
}
.buy-hero-copy .btn { margin-top: 12px; }
.buy-hero-image {
  height: 520px;
  border-radius: 30px;
  overflow: hidden;
}
.buy-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.buy-contact {
  background: var(--teal);
  padding: 78px 0;
}
.buy-contact h2 {
  color: var(--teal-dark);
  font-size: 2.35rem;
  text-align: center;
  margin-bottom: 38px;
}
.delivery-section {
  background: var(--sand);
  padding: 96px 0;
}
.delivery-layout {
  display: grid;
  grid-template-columns: minmax(250px, 0.78fr) minmax(0, 1.22fr);
  gap: 70px;
  align-items: start;
}
.delivery-heading {
  position: sticky;
  top: 176px;
}
.delivery-heading h2 {
  color: var(--teal-dark);
  font-size: clamp(2.25rem, 4vw, 3.5rem);
  margin-bottom: 20px;
}
.delivery-heading > p:last-child { color: var(--text-light); }
.buy-now-page .delivery-guide {
  max-width: none;
  margin: 0;
  border-radius: 24px;
  padding: 42px;
  box-shadow: 0 10px 30px rgba(4,89,94,0.08);
}
.buy-now-page .delivery-guide h3 {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.2rem;
  margin-top: 32px;
}
.buy-now-page .delivery-guide h3:first-child { margin-top: 0; }
.buy-now-page .delivery-guide h3 span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  color: var(--white);
  background: var(--salmon);
  font-family: 'DM Sans', sans-serif;
}
.buy-now-page .delivery-guide p,
.buy-now-page .delivery-guide li { font-size: 0.95rem; }
.newsletter-form label {
  font-size: 0.85rem;
  color: var(--text);
  font-weight: 600;
}
.form-status {
  min-height: 1.4em;
  margin: 4px 0 0 !important;
  color: var(--teal-dark) !important;
}

/* ===== Responsive ===== */
@media (max-width: 1120px) {
  .nav-inner {
    min-height: 86px;
    padding: 8px 24px;
  }
  .nav-logo-icon { height: 58px; }
  .nav-logo-text { height: 34px; }
  .nav-toggle {
    display: flex;
    position: relative;
    z-index: 2;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(235,239,234,0.99);
    backdrop-filter: blur(12px);
    flex-direction: column;
    align-items: stretch;
    padding: 22px 28px 28px;
    gap: 4px;
    box-shadow: 0 10px 24px rgba(0,0,0,0.1);
    max-height: calc(100svh - 133px);
    overflow-y: auto;
  }
  .nav-links.open { display: flex; }
  .nav-links a {
    display: block;
    padding: 10px 4px;
    font-size: 1rem;
  }
}

@media (max-width: 960px) {
  .story-row { gap: 36px; }
  .hero-overlay { left: 3%; width: 51%; }
}

@media (max-width: 768px) {
  html { scroll-padding-top: 134px; }
  .announcement-bar { font-size: 0.9rem; }
  .hero-img {
    height: 560px;
    object-position: 64% center;
  }
  .hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(255,255,255,0.82), rgba(255,255,255,0.08) 76%);
  }
  .hero-overlay {
    left: 24px;
    width: min(72%, 420px);
    z-index: 3;
  }
  .hero-heading { font-size: clamp(2.05rem, 9vw, 2.8rem); }
  .hero-sub { font-size: 1rem; }
  .product-strip { min-height: 0; padding: 54px 0; }
  .products-heading { margin-bottom: 32px; }
  .promo-video-section,
  .promo-video-wrap,
  .promo-video-section video { min-height: 0; height: 56vw; max-height: 430px; }
  .product-arrow { font-size: 2.2rem; padding: 0 4px; }
  .contact-cols { flex-wrap: wrap; }
  .contact-col { flex: 1 1 40%; border-right: none; border-bottom: 1px solid rgba(0,0,0,0.06); }
  .contact-col:last-child { border-bottom: none; }
  .photo-collage { grid-template-columns: repeat(3, 1fr); }
  .photo-collage .collage-col:nth-child(4) { display: none; }
  .wa-quotes { grid-template-columns: repeat(2, 1fr); }
  .social-reviews { grid-template-columns: 1fr; max-width: 600px; }
  .carousel-content { flex-direction: column; align-items: center; gap: 16px; }
  .carousel-img { width: 180px; height: 180px; }
  .carousel-text { text-align: center; }
  .carousel-divider { margin: 10px auto 14px; }
  .footer-inner { flex-direction: column; gap: 28px; }
  .footer-right { align-items: flex-start; }
  .footer-contact-info { align-items: flex-start; }
  .product-detail-grid { grid-template-columns: 1fr; gap: 24px; }
  .story-row { grid-template-columns: 1fr; gap: 28px; }
  .story-row-flip { direction: ltr; }
  .story-photo img { height: auto; max-height: 500px; }
  .burn-bubble-teal { right: 12px; }
  .faq { padding: 42px 0; }
  .faq > .container { padding: 30px 20px 34px; }
  .faq-header { align-items: flex-start; flex-direction: column; }
  .faq h2 { font-size: 2rem; }
  .newsletter-inner { min-height: 0; }
  .footer { min-height: 0; padding-top: 52px; }
  .float-btn { right: 14px; }
  .float-wa { bottom: 16px; }
  .float-msg { bottom: 88px; }
  .float-btn img { width: 52px; height: 52px; }
  .buy-hero { grid-template-columns: 1fr; gap: 36px; padding-top: 52px; padding-bottom: 52px; }
  .buy-hero-image { height: min(110vw, 480px); }
  .delivery-section { padding: 64px 0; }
  .delivery-layout { grid-template-columns: 1fr; gap: 34px; }
  .delivery-heading { position: static; }
  .buy-now-page .delivery-guide { padding: 28px 22px; }
}

@media (max-width: 768px) {
  .newsletter-inner { grid-template-columns: 1fr; }
  .newsletter-photo { min-height: 260px; }
  .newsletter-content { padding: 44px 28px; }
}

@media (max-width: 480px) {
  .container { padding-inline: 18px; }
  .nav-inner { padding-inline: 18px; }
  .nav-logo { gap: 6px; }
  .nav-logo-icon { height: 52px; }
  .nav-logo-text { height: 30px; max-width: 132px; }
  .hero-img { height: 520px; object-position: 66% center; }
  .hero-overlay { left: 18px; width: 76%; }
  .hero-btn { min-width: 148px; min-height: 50px; }
  .product-arrow { font-size: 1.8rem; }
  .photo-collage { grid-template-columns: repeat(2, 1fr); }
  .photo-collage .collage-col:nth-child(4) { display: flex; }
  .wa-quotes { grid-template-columns: 1fr; }
  .social-reviews { grid-template-columns: 1fr; }
  .newsletter-form { flex-direction: column; align-items: stretch; }
  .newsletter-form input { width: 100%; }
  .faq-tabs { gap: 4px; }
  .faq-tab { font-size: 0.78rem; padding: 8px 14px; }
  .contact-col { flex: 1 1 100%; }
  .faq-num { min-width: 60px; width: 60px; font-size: 1.5rem; }
  .faq-item p { padding-left: 88px; }
  .faq-q { padding: 16px 14px 16px 18px; }
  .faq-page .faq-item summary { padding: 16px 18px; }
  .faq-page .faq-item p { padding: 0 18px 18px; }
  .delivery-times { grid-template-columns: 1fr; }
  .footer-nav { gap: 4px 22px; }
  .gallery-thumbnails { grid-template-columns: repeat(5, minmax(0, 1fr)); gap: 6px; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
