/* Bheji - Nature, as it is | Responsive store styles */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;1,400&family=Outfit:wght@300;400;500;600&family=Libre+Baskerville:ital,wght@0,400;0,700;1,400&display=swap');

:root {
  --color-ink: #252627;
  --color-ink-soft: #51565b;
  --color-accent: #8fa97a;
  --color-cream: #f3f3f4;      /* main page background – soft grey */
  --color-cream-alt: #e4e5e7;  /* section / panel grey */
  --color-warm: #c4a77d;
  --color-bark: #5c4a3a;
  --color-white: #ffffff;
  --font-head: 'Cormorant Garamond', serif;
  --font-body: 'Outfit', sans-serif;
  --shadow-soft: 0 4px 18px rgba(0, 0, 0, 0.12);
  --radius: 12px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  color: var(--color-ink);
  background: var(--color-cream);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color var(--transition), opacity var(--transition); }
a:hover { opacity: 0.85; }

/* ----- Layout ----- */
.site-wrap { min-height: 100vh; display: flex; flex-direction: column; }

/* ----- Header ----- */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.03);
}
.header-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 1rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.logo {
  font-family: var(--font-head);
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--color-ink);
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.logo img {
  height: 32px;
  width: auto;
  display: block;
}
.logo span { color: var(--color-accent); font-style: italic; }
.tagline {
  display: none;
  font-size: 0.8rem;
  color: var(--color-ink-soft);
  font-style: italic;
  margin-top: -2px;
}
@media (min-width: 600px) { .tagline { display: block; } }

/* Nav */
.nav-toggle {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
  color: var(--color-forest);
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: var(--transition);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}
@media (min-width: 768px) { .nav-toggle { display: none; } }

.nav {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  padding: 1rem 1.5rem;
  flex-direction: column;
  gap: 0.5rem;
}
.nav[aria-hidden="false"] { display: flex; }
@media (min-width: 768px) {
  .nav {
    position: static;
    display: flex;
    flex-direction: row;
    border: none;
    padding: 0;
    gap: 1.5rem;
  }
}
.nav a {
  position: relative;
  font-weight: 500;
  color: var(--color-ink-soft);
  padding: 0.5rem 0;
  transition: color 0.25s ease, transform 0.25s ease;
}
.nav a::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 0;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: width 0.25s ease;
}
.nav a:hover {
  color: var(--color-accent);
  transform: translateY(-2px);
}
.nav a:hover::after { width: 100%; }
.nav a[aria-current="page"] { color: var(--color-accent); }
.nav a[aria-current="page"]::after { width: 100%; }
.nav .wa-link {
  color: #25D366;
  font-weight: 600;
}
.nav .wa-link:hover { color: #2ee058; }
.nav .wa-link::before { content: "📱 "; }

/* ----- Main ----- */
.main { flex: 1; }

/* ----- Hero ----- */
.hero {
  background: #65785a url('../assets/hero-banner.png') center / cover no-repeat;
  color: #fff;
  padding: 3.25rem 1.5rem 3.5rem;
  position: relative;
  overflow: hidden;
  min-height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero::before {
  content: "";
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.25) 0%, rgba(0,0,0,0.45) 100%);
  pointer-events: none;
}
.hero-layout {
  position: relative;
  z-index: 1;
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}
.hero-copy h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin: 0 0 0.75rem;
  letter-spacing: 0.02em;
  color: #fff;
  text-shadow: 0 1px 4px rgba(0,0,0,0.5), 0 2px 12px rgba(0,0,0,0.35);
}
.hero-pill {
  display: inline-flex;
  align-items: center;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.45);
  color: rgba(255,255,255,0.85);
  margin-bottom: 0.75rem;
}
.hero .tagline-hero,
.hero-lead {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1rem, 2.5vw, 1.35rem);
  font-style: italic;
  font-weight: 400;
  color: #fff;
  margin: 0 0 1.5rem;
  opacity: 0.98;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5), 0 2px 8px rgba(0,0,0,0.35);
}
.hero-lead {
  font-style: normal;
  font-size: 0.98rem;
  opacity: 0.95;
}
.hero p {
  font-family: 'Libre Baskerville', serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.95);
  margin: 0 0 1.5rem;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0 1px 3px rgba(0,0,0,0.5), 0 2px 6px rgba(0,0,0,0.4);
}
.hero .cta-wrap { display: flex; flex-wrap: wrap; gap: 1rem; justify-content: center; }
.hero-copy .cta-wrap {
  justify-content: center;
}
.hero-meta {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.8);
  margin-top: 0.75rem;
  text-align: center;
}

@media (max-width: 768px) {
  .hero {
    padding: 2.5rem 1.25rem 3rem;
  }
  .hero-layout {
    max-width: 100%;
  }
  .hero-copy .cta-wrap {
    justify-content: center;
  }
}

.intro {
  padding: 2.5rem 1.5rem 3rem;
}
.intro-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
}
.intro-inner h1 {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.9rem, 4vw, 2.4rem);
  margin: 0 0 0.75rem;
  color: var(--color-ink);
}
.intro-lead {
  margin: 0 auto 1.75rem;
  max-width: 540px;
  color: var(--color-ink-soft);
  font-size: 0.98rem;
}
.intro-cta {
  justify-content: center;
}
.intro-meta {
  margin-top: 0.9rem;
  font-size: 0.8rem;
  color: var(--color-ink-soft);
}
.intro .cta-secondary {
  color: var(--color-ink-soft);
  border-color: rgba(0,0,0,0.16);
  background: #ffffff;
}
.intro .cta-secondary:hover {
  color: var(--color-ink);
  border-color: rgba(0,0,0,0.3);
  background: #ffffff;
}
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.8rem 1.4rem;
  min-height: 44px;
  border-radius: var(--radius);
  font-weight: 500;
  font-size: 1rem;
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-body);
  -webkit-tap-highlight-color: transparent;
}
.cta-primary {
  background: #25D366;
  color: #fff;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.16);
}
.cta-primary:hover { filter: brightness(1.05); transform: translateY(-1px); }
.cta-secondary {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.8);
}
.cta-secondary:hover { border-color: #fff; color: #fff; background: rgba(255,255,255,0.1); }

/* ----- Sections ----- */
.section {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3rem 1.5rem;
}
.section-title {
  font-family: var(--font-head);
  font-size: clamp(1.75rem, 4vw, 2.25rem);
  font-weight: 600;
  color: var(--color-forest);
  margin: 0 0 1rem;
  text-align: center;
}
.section-sub { text-align: center; color: var(--color-sage); margin: 0 0 2rem; }

/* Product card */
.product-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  max-width: 400px;
  margin: 0 auto;
}
@media (min-width: 600px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); max-width: none; }
}
@media (min-width: 900px) {
  .product-grid { grid-template-columns: repeat(3, 1fr); }
}
.product-card {
  background: var(--color-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.04);
  transition: var(--transition);
  border: 1px solid rgba(0, 0, 0, 0.06);
}
.product-card:hover { box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08); transform: translateY(-3px); }
.product-img {
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, rgba(143, 169, 122, 0.18) 0%, rgba(101, 120, 90, 0.55) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}
.product-img img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.35s ease;
  transform: scale(1.02);
}
.product-img img.is-active {
  opacity: 1;
  transform: scale(1);
}
.product-coming {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  color: #ffffff;
  text-align: center;
}
.product-coming-label {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0.9;
}
.product-coming-text {
  font-family: var(--font-head);
  font-size: 1.1rem;
}
.product-img-dots {
  position: absolute;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  display: inline-flex;
  gap: 6px;
  padding: 4px 8px;
  border-radius: 999px;
  background: rgba(0,0,0,0.18);
}
.product-img-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.8);
  background: transparent;
  padding: 0;
  cursor: pointer;
}
.product-img-dot.is-active {
  background: #fff;
}
.product-body { padding: 1.25rem; }
.product-body h3 {
  font-family: var(--font-head);
  font-size: 1.35rem;
  margin: 0 0 0.35rem;
  color: var(--color-forest);
}
.product-body .meta { color: var(--color-sage); font-size: 0.9rem; margin: 0 0 0.75rem; }
.product-body p { margin: 0 0 1rem; font-size: 0.95rem; }

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-ink-soft);
}
.product-link span {
  font-size: 1.1rem;
  color: var(--color-accent);
}
.product-link:hover {
  color: var(--color-accent);
}
.product-link::after {
  content: "→";
  font-size: 0.9rem;
  opacity: 0.8;
}

/* ----- About ----- */
.about-blocks {
  display: grid;
  gap: 2rem;
  max-width: 720px;
  margin: 0 auto;
}
.about-block {
  background: var(--color-white);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border-left: 4px solid var(--color-sage);
}
.about-block h3 { font-family: var(--font-head); font-size: 1.4rem; margin: 0 0 0.5rem; color: var(--color-forest); }
.about-block p { margin: 0; }

/* ----- Contact ----- */
.contact-wrap {
  max-width: 520px;
  margin: 0 auto;
  background: var(--color-white);
  padding: 2rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(143, 169, 122, 0.35);
}
.contact-note {
  text-align: center;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(37, 211, 102, 0.08);
  border-radius: var(--radius);
  border: 1px solid rgba(37, 211, 102, 0.25);
  color: var(--color-earth);
}
.contact-note strong { color: #25D366; }
.contact-list { list-style: none; padding: 0; margin: 0; }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid rgba(143, 169, 122, 0.35);
}
.contact-list li:last-child { border-bottom: none; }
.contact-list .icon { font-size: 1.5rem; flex-shrink: 0; }
.contact-list a { font-weight: 500; color: #25D366; }
.contact-list a:hover { text-decoration: underline; }

/* ----- Page header ----- */
.page-hero {
  background: #8fa97a;
  color: var(--color-cream);
  padding: 2.5rem 1.5rem;
  text-align: center;
}
.page-hero h1 { font-family: var(--font-head); font-size: clamp(1.75rem, 4vw, 2.5rem); margin: 0; }
.page-hero p { margin: 0.5rem 0 0; opacity: 0.9; }

/* ----- Footer ----- */
.footer {
  background: #262e23;
  color: #fff;
  padding: 3rem 1.5rem 2rem;
  margin-top: auto;
  border-top: 1px solid rgba(143, 169, 122, 0.35);
}
.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.25rem;
  text-align: center;
}
.footer .logo {
  font-size: 1.5rem;
  color: #fff;
  letter-spacing: 0.02em;
}
.footer .logo span { color: rgba(255,255,255,0.9); }
.footer .tagline {
  display: block;
  font-size: 0.8rem;
  font-style: normal;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin: -0.25rem 0 0;
}
.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.25rem 0.5rem;
}
.footer-links a {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  transition: color 0.2s, background 0.2s;
}
.footer-links a:not(:last-child)::after {
  content: "·";
  margin-left: 0.5rem;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
  pointer-events: none;
}
.footer-links a:hover {
  color: #fff;
  background: rgba(255,255,255,0.08);
}
.footer-links a[href*="wa.me"] { color: #7dde8a; }
.footer-links a[href*="wa.me"]:hover { color: #9ae9a4; }
.footer-inner > p {
  margin: 0;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 1.25rem;
  margin-top: 0.25rem;
  width: 100%;
}

@media (max-width: 380px) {
  .hero { padding: 2rem 1rem 3rem; }
  .hero .cta-wrap { gap: 0.75rem; }
  .header-inner { padding: 0.75rem 1rem; }
  .section { padding: 2rem 1rem; }
  .footer { padding: 2rem 1rem 1.5rem; }
}

/* ----- Order / highlight block ----- */
.section.highlight-block {
  background: rgba(143, 169, 122, 0.08);
  border-radius: var(--radius);
}

/* ----- Utility ----- */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0; }
.mt-2 { margin-top: 2rem; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
