/* ===== Shreeji Brand — shared styles ===== */

:root {
  --maroon: #7a1f1f;
  --maroon-dark: #591616;
  --turmeric: #d98f1f;
  --turmeric-dark: #b8740f;
  --cream: #fbf3e7;
  --cream-2: #f4e6d0;
  --ink: #2b1c12;
  --ink-soft: #5a4a3c;
  --white: #ffffff;
  --line: #e7d7bd;
  --shadow: 0 10px 30px rgba(89, 22, 22, 0.10);
  --radius: 14px;
  --max-width: 1180px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
}

h1, h2, h3, h4 {
  font-family: Georgia, "Times New Roman", serif;
  color: var(--maroon-dark);
  line-height: 1.25;
  margin: 0 0 0.5em 0;
}

p { margin: 0 0 1em 0; color: var(--ink-soft); }

a { color: inherit; }

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

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

/* ---------- Header ---------- */

.site-header {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--turmeric), var(--maroon));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-family: Georgia, serif;
  font-weight: bold;
  font-size: 20px;
  flex-shrink: 0;
}

.brand-mark-img {
  height: 48px;
  width: auto;
  flex-shrink: 0;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 14px;
  filter: brightness(0) invert(1);
  opacity: 0.9;
}

.brand-text .brand-name {
  font-family: Georgia, serif;
  font-size: 1.25rem;
  font-weight: bold;
  color: var(--maroon-dark);
  display: block;
}

.brand-text .brand-tag {
  font-size: 0.72rem;
  color: var(--ink-soft);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

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

.main-nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 999px;
  transition: background 0.15s ease, color 0.15s ease;
}

.main-nav a:hover,
.main-nav a.active {
  background: var(--cream-2);
  color: var(--maroon-dark);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--maroon);
  color: var(--white) !important;
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.15s ease;
}

.header-cta:hover { background: var(--maroon-dark); }

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 700;
  text-decoration: none;
  font-size: 0.98rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.12s ease, background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}

.btn:hover { transform: translateY(-1px); }

.btn-primary {
  background: var(--maroon);
  color: var(--white);
}
.btn-primary:hover { background: var(--maroon-dark); }

.btn-secondary {
  background: var(--turmeric);
  color: var(--white);
}
.btn-secondary:hover { background: var(--turmeric-dark); }

.btn-outline {
  background: transparent;
  border-color: var(--maroon);
  color: var(--maroon-dark);
}
.btn-outline:hover { background: var(--maroon); color: var(--white); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

/* ---------- Hero ---------- */

.hero {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 60%);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  top: -120px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(217,143,31,0.55) 0%, rgba(217,143,31,0) 70%);
}

.hero-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 84px 24px 76px;
  position: relative;
  z-index: 1;
}

.hero-eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.14);
  padding: 6px 16px;
  border-radius: 999px;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 18px;
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 720px;
}

.hero p.lead {
  color: rgba(255,255,255,0.88);
  font-size: 1.15rem;
  max-width: 560px;
  margin-bottom: 30px;
}

.hero .btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}
.hero .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); }

/* ---------- Sections ---------- */

section { padding: 70px 0; }

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 44px;
}

.section-eyebrow {
  color: var(--turmeric-dark);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  margin-bottom: 10px;
  display: block;
}

.alt-bg { background: var(--white); }

/* ---------- Cards / grids ---------- */

.grid {
  display: grid;
  gap: 24px;
}

.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-img {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--cream-2);
}

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

.card-body { padding: 20px 20px 22px; flex: 1; display: flex; flex-direction: column; }

.card-body h3 { font-size: 1.15rem; margin-bottom: 6px; }

.pack-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 10px 0 14px;
}

.pack-tags span {
  background: var(--cream-2);
  color: var(--maroon-dark);
  font-size: 0.75rem;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 999px;
  border: 1px solid var(--line);
}

.card-body .btn { margin-top: auto; }

/* Feature list */
.features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.feature {
  text-align: center;
  padding: 8px;
}

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
}

/* Stats strip */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  background: var(--cream-2);
  border-radius: var(--radius);
  padding: 32px 20px;
  margin-top: 10px;
}

.stat { text-align: center; }

.stat .num {
  font-family: Georgia, serif;
  font-size: 2.1rem;
  font-weight: bold;
  color: var(--maroon);
  display: block;
}

.stat .label {
  font-size: 0.85rem;
  color: var(--ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* CTA banner */
.cta-banner {
  background: linear-gradient(135deg, var(--turmeric) 0%, var(--turmeric-dark) 100%);
  border-radius: var(--radius);
  padding: 48px 40px;
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.cta-banner h2 { color: var(--white); margin-bottom: 6px; }
.cta-banner p { color: rgba(255,255,255,0.92); margin-bottom: 0; }

.cta-banner .btn-primary { background: var(--maroon); }
.cta-banner .btn-primary:hover { background: var(--maroon-dark); }

/* Contact page */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 40px;
  align-items: start;
}

.contact-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}

.contact-row {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}
.contact-row:last-child { border-bottom: none; }

.contact-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--cream-2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-row h4 { margin-bottom: 3px; font-size: 1rem; }
.contact-row a, .contact-row p { color: var(--ink-soft); text-decoration: none; margin: 0; }
.contact-row a:hover { color: var(--maroon); }

.map-frame {
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  height: 100%;
  min-height: 380px;
}

.map-frame iframe { width: 100%; height: 100%; min-height: 380px; border: 0; }

.hours-list { list-style: none; padding: 0; margin: 0; }
.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
  color: var(--ink-soft);
}
.hours-list li:last-child { border-bottom: none; }
.hours-list li strong { color: var(--ink); }

/* Floating call button */
.float-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  z-index: 200;
  display: flex;
  gap: 10px;
}

.float-btn {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  text-decoration: none;
  font-size: 1.4rem;
  box-shadow: 0 8px 20px rgba(0,0,0,0.25);
  transition: transform 0.15s ease;
}
.float-btn:hover { transform: scale(1.08); }
.float-call { background: var(--maroon); }
.float-whatsapp { background: #25D366; }

/* ---------- Footer ---------- */

.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.75);
  padding: 50px 0 24px;
  margin-top: 40px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 36px;
  margin-bottom: 34px;
}

.footer-grid h4 {
  color: var(--white);
  font-family: Georgia, serif;
  font-size: 1rem;
  margin-bottom: 14px;
}

.footer-grid a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  display: block;
  margin-bottom: 10px;
  font-size: 0.92rem;
}
.footer-grid a:hover { color: var(--turmeric); }

.footer-grid p { color: rgba(255,255,255,0.65); font-size: 0.92rem; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 20px;
  text-align: center;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

/* ---------- Page header (inner pages) ---------- */

.page-hero {
  background: linear-gradient(135deg, var(--maroon) 0%, var(--maroon-dark) 100%);
  color: var(--white);
  padding: 56px 0;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 8px; }
.page-hero p { color: rgba(255,255,255,0.85); max-width: 560px; margin: 0 auto; }

.breadcrumb {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 14px;
}
.breadcrumb a { color: rgba(255,255,255,0.7); text-decoration: none; }
.breadcrumb a:hover { color: var(--white); }

/* Notice banner (no online ordering) */
.notice {
  background: var(--cream-2);
  border: 1px dashed var(--turmeric-dark);
  border-radius: var(--radius);
  padding: 18px 22px;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}
.notice .n-icon { font-size: 1.4rem; }
.notice p { margin: 0; color: var(--ink-soft); font-size: 0.92rem; }
.notice strong { color: var(--maroon-dark); }

/* Two-col content */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.img-frame {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.value-list { list-style: none; padding: 0; margin: 20px 0; }
.value-list li {
  padding: 10px 0 10px 30px;
  position: relative;
  color: var(--ink-soft);
}
.value-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  color: var(--white);
  background: var(--turmeric);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  font-size: 0.72rem;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}

/* Placeholder swatch (no photo yet) — textured "grain pile" look with motion */
.card-img.swatch {
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.95);
  font-size: 2.4rem;
  position: relative;
  overflow: hidden;
}

/* layered radial-gradient "grain" texture to fake a pile of seeds/powder */
.card-img.swatch::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(255,255,255,0.35) 0 2px, transparent 3px),
    radial-gradient(circle at 28% 58%, rgba(0,0,0,0.18) 0 2px, transparent 3px),
    radial-gradient(circle at 44% 18%, rgba(255,255,255,0.28) 0 2px, transparent 3px),
    radial-gradient(circle at 62% 46%, rgba(0,0,0,0.16) 0 2px, transparent 3px),
    radial-gradient(circle at 78% 70%, rgba(255,255,255,0.3) 0 2px, transparent 3px),
    radial-gradient(circle at 86% 24%, rgba(0,0,0,0.15) 0 2px, transparent 3px),
    radial-gradient(circle at 20% 82%, rgba(255,255,255,0.25) 0 2px, transparent 3px),
    radial-gradient(circle at 54% 84%, rgba(0,0,0,0.14) 0 2px, transparent 3px),
    radial-gradient(circle at 92% 88%, rgba(255,255,255,0.22) 0 2px, transparent 3px);
  background-size: 46px 46px;
  opacity: 0.9;
  mix-blend-mode: overlay;
}

/* subtle diagonal shimmer sweep, looping */
.card-img.swatch::after {
  content: "";
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,0.35) 45%, rgba(255,255,255,0.05) 55%, transparent 100%);
  transform: rotate(8deg);
  animation: shimmer-sweep 4.5s ease-in-out infinite;
}

@keyframes shimmer-sweep {
  0%   { left: -60%; }
  55%  { left: 130%; }
  100% { left: 130%; }
}

.card-img.swatch .emoji-icon {
  position: relative;
  z-index: 1;
  display: inline-block;
  animation: icon-bob 3.2s ease-in-out infinite;
  filter: drop-shadow(0 4px 8px rgba(0,0,0,0.25));
}

@keyframes icon-bob {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-6px) scale(1.06); }
}

.card-img.swatch .photo-soon {
  position: absolute;
  bottom: 8px;
  right: 10px;
  font-size: 0.65rem;
  background: rgba(0,0,0,0.3);
  padding: 3px 9px;
  border-radius: 999px;
  color: #fff;
  font-weight: 600;
  z-index: 1;
}
.sw-1 { background: linear-gradient(135deg,#e7c46a,#b8860b); }
.sw-2 { background: linear-gradient(135deg,#c9a24b,#8a6a1f); }
.sw-3 { background: linear-gradient(135deg,#d9a441,#a5731a); }
.sw-4 { background: linear-gradient(135deg,#b8b8a0,#7c7c5f); }
.sw-5 { background: linear-gradient(135deg,#5a5a5a,#2a2a2a); }
.sw-6 { background: linear-gradient(135deg,#c47a3d,#8f5322); }
.sw-7 { background: linear-gradient(135deg,#e0c674,#a8862f); }
.sw-8 { background: linear-gradient(135deg,#d8823a,#a3591c); }

/* ---------- Motion: scroll reveal, hover lift, hero drift ---------- */

@media (prefers-reduced-motion: no-preference) {
  .reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.7s ease, transform 0.7s ease;
  }
  .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
  }

  .card {
    transition: transform 0.25s ease, box-shadow 0.25s ease;
  }
  .card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 36px rgba(89, 22, 22, 0.16);
  }
  .card-img img {
    transition: transform 0.5s ease;
  }
  .card:hover .card-img img {
    transform: scale(1.06);
  }

  .feature-icon, .contact-icon {
    transition: transform 0.25s ease;
  }
  .feature:hover .feature-icon,
  .contact-row:hover .contact-icon {
    transform: scale(1.12) rotate(-4deg);
  }

  .hero::after {
    animation: hero-drift 9s ease-in-out infinite;
  }
  @keyframes hero-drift {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50%      { transform: translate(-24px, 18px) scale(1.08); }
  }

  .float-btn {
    animation: float-pulse 2.6s ease-in-out infinite;
  }
  .float-btn:nth-child(2) { animation-delay: 0.4s; }
  @keyframes float-pulse {
    0%, 100% { box-shadow: 0 8px 20px rgba(0,0,0,0.25), 0 0 0 0 rgba(255,255,255,0); }
    50%      { box-shadow: 0 8px 20px rgba(0,0,0,0.25), 0 0 0 8px rgba(255,255,255,0.08); }
  }

  .brand-mark-img {
    transition: transform 0.3s ease;
  }
  .brand:hover .brand-mark-img {
    transform: rotate(-6deg) scale(1.05);
  }
}

/* Filter chips on products page */
.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}
.chip {
  border: 1px solid var(--line);
  background: var(--white);
  padding: 8px 18px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
  text-decoration: none;
}
.chip:hover, .chip.active { background: var(--maroon); border-color: var(--maroon); color: var(--white); }

/* ---------- Mobile nav toggle ---------- */

.nav-toggle { display: none; }

/* ---------- Responsive ---------- */

@media (max-width: 900px) {
  .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .features { grid-template-columns: 1fr; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .header-inner { flex-wrap: wrap; }
  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
    padding-top: 8px;
    border-top: 1px solid var(--line);
    margin-top: 10px;
  }
  .main-nav a { white-space: nowrap; }
  .header-cta { margin-left: auto; }
  .hero-inner { padding: 56px 20px 50px; }
  section { padding: 50px 0; }
  .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .cta-banner { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; }
}
