/* ============================================================
   GAJSA — Design tokens
   Colors pulled from the actual logo & product brochures.
   ============================================================ */
:root {
  --red: #A91517;          /* logo red */
  --red-deep: #7A0F11;
  --red-bright: #E63946;   /* brochure banner red — used sparingly */
  --cream: #F6EFDD;        /* page background */
  --cream-deep: #E3D2AC;   /* section band / footer */
  --cream-deeper: #D2BE93;
  --paper: #FFFDF8;        /* card background */
  --ink: #241C15;          /* primary text */
  --ink-soft: #5B5044;     /* secondary text */
  --sage: #6B7F4F;         /* eco accent from packaging badges */
  --gold: #B8862E;

  --font-display: "Playfair Display", Georgia, serif;
  --font-body: "Work Sans", -apple-system, sans-serif;
  --font-mono: "IBM Plex Mono", monospace;

  --radius: 4px;
  --shadow: 0 6px 24px rgba(36, 28, 21, 0.10);
  --shadow-lg: 0 20px 50px rgba(36, 28, 21, 0.18);

  --container: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

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

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  margin: 0 0 0.5em;
  color: var(--ink);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); font-weight: 800; }
h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
h3 { font-size: 1.3rem; }
p { margin: 0 0 1em; color: var(--ink-soft); }

.eyebrow {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--red);
  font-weight: 600;
  display: inline-block;
  margin-bottom: 0.9em;
}

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

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* ============================================================
   Signature element: perforation divider
   A punched/torn edge, like the perforation on a tissue roll
   or a napkin pack seam. Used between major sections instead
   of a plain rule.
   ============================================================ */
.perforation {
  height: 16px;
  width: 100%;
  background-image: radial-gradient(circle, var(--cream) 6.5px, transparent 7px);
  background-size: 28px 28px;
  background-position: center;
}
.perforation--on-cream {
  background-image: radial-gradient(circle, var(--cream-deep) 6.5px, transparent 7px);
}
.perforation--on-ink {
  background-image: radial-gradient(circle, var(--ink) 6.5px, transparent 7px);
}

/* ============================================================
   Buttons
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }

.btn--primary {
  background: var(--red);
  color: var(--paper);
  box-shadow: var(--shadow);
}
.btn--primary:hover { background: var(--red-deep); }

.btn--outline {
  background: transparent;
  border-color: var(--ink);
  color: var(--ink);
}
.btn--outline:hover { background: var(--ink); color: var(--cream); }

.btn--whatsapp {
  background: #3FA24C;
  color: #fff;
}
.btn--whatsapp:hover { background: #338a3f; }

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

/* ============================================================
   Header / Nav
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--cream);
  border-bottom: 1px solid var(--cream-deep);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 24px;
  max-width: var(--container);
  margin: 0 auto;
}
.nav__brand {
  display: flex;
  align-items: center;
}
.brand-logo-chip {
  background: #CBAD86;
  border-radius: 6px;
  padding: 5px 12px;
  display: inline-flex;
  align-items: center;
  line-height: 0;
}
.nav__brand-logo { height: 40px; width: auto; display: block; }
.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__links a {
  font-weight: 600;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}
.nav__links a.active,
.nav__links a:hover { color: var(--red); }
.nav__cta { display: flex; gap: 10px; align-items: center; }
.nav__toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.6rem;
  cursor: pointer;
  color: var(--ink);
}

@media (max-width: 860px) {
  .nav__links {
    position: fixed;
    inset: 62px 0 0 0;
    background: var(--cream);
    flex-direction: column;
    padding: 28px 24px;
    gap: 22px;
    transform: translateX(100%);
    transition: transform 0.25s ease;
    height: calc(100vh - 62px);
  }
  .nav__links.is-open { transform: translateX(0); }
  .nav__toggle { display: block; }
  .nav__cta .btn span.btn-label-long { display: none; }
}

/* ============================================================
   Splash intro video (Home page only)
   ============================================================ */
.splash {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: #EFE1C4;
  display: flex;
  align-items: center;
  justify-content: center;
}
.splash video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.splash__skip {
  position: absolute;
  bottom: 28px;
  right: 28px;
  background: rgba(36, 28, 21, 0.55);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  padding: 10px 20px;
  border-radius: 30px;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  backdrop-filter: blur(4px);
}
.splash__skip:hover { background: rgba(36,28,21,0.75); }
.splash.is-hidden { display: none; }

/* ============================================================
   Hero
   ============================================================ */
.hero {
  padding: 70px 0 60px;
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}
.hero__tagline {
  font-family: var(--font-mono);
  color: var(--red);
  font-size: 0.85rem;
  letter-spacing: 0.06em;
  margin-bottom: 14px;
}
.hero p.lead {
  font-size: 1.15rem;
  max-width: 46ch;
}
.hero__actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 28px;
}
.hero__elephant {
  position: absolute;
  opacity: 0.06;
  width: 480px;
  right: -80px;
  top: -40px;
  pointer-events: none;
}
.hero__visual {
  position: relative;
}
.hero__visual img {
  border-radius: 10px;
  box-shadow: var(--shadow-lg);
}
.hero__badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--paper);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
  font-family: var(--font-mono);
  font-size: 0.8rem;
}
.hero__badge strong { display: block; font-family: var(--font-display); font-size: 1.2rem; color: var(--red); }

@media (max-width: 860px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__elephant { display: none; }
}

/* ============================================================
   Trust strip
   ============================================================ */
.trust-strip {
  background: var(--cream-deep);
  padding: 34px 0;
}
.trust-strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  text-align: center;
}
.trust-strip__item {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  color: var(--ink);
  font-weight: 600;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}
.trust-strip__item .icon { font-size: 1.6rem; }
@media (max-width: 720px) {
  .trust-strip__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================================
   Sections
   ============================================================ */
.section { padding: 78px 0; }
.section--tight { padding: 56px 0; }
.section-head {
  max-width: 640px;
  margin-bottom: 44px;
}
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }

/* Category cards on home */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cat-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  display: block;
}
.cat-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.cat-card__img { height: 210px; overflow: hidden; }
.cat-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.cat-card__body { padding: 22px 24px 26px; }
.cat-card__body h3 { margin-bottom: 6px; }
.cat-card__body p { margin: 0; font-size: 0.92rem; }
.cat-card__link { font-family: var(--font-mono); font-size: 0.78rem; color: var(--red); font-weight: 600; margin-top: 12px; display: inline-block; }

@media (max-width: 860px) {
  .cat-grid { grid-template-columns: 1fr; }
}

/* Featured / new product banner */
.feature-banner {
  background: var(--ink);
  color: var(--cream);
  border-radius: 10px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: stretch;
}
.feature-banner__img { height: 100%; min-height: 320px; }
.feature-banner__img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.feature-banner__body {
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.feature-banner .eyebrow { color: #E8B84B; }
.feature-banner h2 { color: var(--cream); }
.feature-banner p { color: #CFC4AC; }
.feature-banner__specs {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: #CFC4AC;
  margin: 18px 0 26px;
  padding: 0;
  list-style: none;
}
.feature-banner__specs li { margin-bottom: 6px; padding-left: 18px; position: relative; }
.feature-banner__specs li::before { content: "—"; position: absolute; left: 0; color: var(--red-bright); }
.feature-banner__actions { display: flex; gap: 14px; flex-wrap: wrap; }

@media (max-width: 860px) {
  .feature-banner { grid-template-columns: 1fr; }
  .feature-banner__img { min-height: 240px; }
  .feature-banner__body { padding: 34px 28px; }
}

/* ============================================================
   Product grid / cards (Products page)
   ============================================================ */
.category-block { margin-bottom: 70px; }
.category-block__head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 28px;
  border-bottom: 2px solid var(--ink);
  padding-bottom: 12px;
}
.category-block__head h2 { margin: 0; }
.category-block__count {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--ink-soft);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
@media (max-width: 980px) { .product-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .product-grid { grid-template-columns: 1fr; } }

.product-card {
  background: var(--paper);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card__tag {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--red-bright);
  color: #fff;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 5px 10px;
  border-radius: 20px;
  z-index: 2;
}
.product-card__img {
  height: 260px;
  overflow: hidden;
  background: var(--cream-deep);
}
.product-card__img img { width: 100%; height: 100%; object-fit: cover; object-position: top center; }
.product-card__body {
  padding: 20px 22px 24px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-card__body h3 { margin-bottom: 10px; }
.product-card__specs {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  color: var(--ink-soft);
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  flex: 1;
}
.product-card__specs li { margin-bottom: 4px; }
.product-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.product-card__price {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--red);
}
.product-card__price small { font-family: var(--font-mono); font-size: 0.68rem; color: var(--ink-soft); display: block; font-weight: 400; }
.product-card__code {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  color: var(--ink-soft);
}

/* ============================================================
   About page
   ============================================================ */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  align-items: center;
}
.about-hero img { border-radius: 10px; box-shadow: var(--shadow-lg); }
@media (max-width: 860px) { .about-hero { grid-template-columns: 1fr; } }

.value-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.value-card {
  background: var(--paper);
  padding: 30px 26px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}
.value-card .icon { font-size: 1.8rem; margin-bottom: 14px; display: block; }
@media (max-width: 860px) { .value-grid { grid-template-columns: 1fr; } }

/* Marketplace strip */
.marketplace-strip {
  text-align: center;
}
.marketplace-strip__logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.marketplace-chip {
  background: var(--paper);
  border: 1px dashed var(--cream-deeper);
  padding: 12px 26px;
  border-radius: 30px;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

/* Marketplace logo wall */
.marketplace-logos {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  margin-top: 32px;
}
.marketplace-logo-card {
  background: var(--paper);
  border-radius: 10px;
  padding: 14px 18px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 150px;
  height: 96px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.marketplace-logo-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.marketplace-logo-card img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* Brand-colored marketplace badges (stand-ins until real logo files are supplied) */
.marketplace-badges {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
  margin-top: 28px;
}
.marketplace-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 8px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.92rem;
  box-shadow: var(--shadow);
  letter-spacing: -0.01em;
}
.marketplace-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: currentColor; opacity: 0.55; }

.mb-blinkit    { background: #F8CB46; color: #1A1A1A; }
.mb-zepto      { background: #8025FB; color: #ffffff; }
.mb-instamart  { background: #FC8019; color: #ffffff; }
.mb-fkminutes  { background: #2874F0; color: #ffffff; }
.mb-amazonnow  { background: #232F3E; color: #FF9900; }
.mb-amazonin   { background: #232F3E; color: #ffffff; }
.mb-flipkart   { background: #2874F0; color: #ffffff; }

.marketplace-note {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--ink-soft);
  margin-top: 18px;
}

/* ============================================================
   Contact page
   ============================================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
}
@media (max-width: 860px) { .contact-grid { grid-template-columns: 1fr; } }

.contact-card {
  background: var(--paper);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
  margin-bottom: 20px;
}
.contact-card h3 { margin-bottom: 4px; }
.contact-card .value { font-family: var(--font-mono); font-size: 1.05rem; color: var(--red); }

.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label { font-weight: 600; font-size: 0.88rem; margin-bottom: -8px; }
.contact-form input,
.contact-form textarea {
  font-family: var(--font-body);
  padding: 13px 16px;
  border-radius: var(--radius);
  border: 1.5px solid var(--cream-deeper);
  background: var(--paper);
  font-size: 0.95rem;
}
.contact-form input:focus,
.contact-form textarea:focus { outline: none; border-color: var(--red); }

/* ============================================================
   Footer
   ============================================================ */
.site-footer {
  background: var(--ink);
  color: var(--cream-deep);
  padding: 56px 0 28px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  color: var(--cream);
  font-family: var(--font-mono);
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.footer-grid a { display: block; margin-bottom: 10px; font-size: 0.92rem; color: var(--cream-deep); }
.footer-grid a:hover { color: var(--red-bright); }
.footer-brand { display: flex; align-items: center; margin-bottom: 14px; }
.footer-brand-logo { height: 34px; width: auto; display: block; }
.footer-tagline { font-family: var(--font-mono); font-size: 0.8rem; color: var(--cream-deeper); }
.footer-bottom {
  border-top: 1px solid rgba(246,239,221,0.12);
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.8rem;
  color: var(--cream-deeper);
}
@media (max-width: 720px) { .footer-grid { grid-template-columns: 1fr; } }

/* Page intro banner used on About/Products/Contact */
.page-banner {
  padding: 56px 0 40px;
  text-align: center;
}
.page-banner .eyebrow { display: inline-flex; }
