/* =========================================================
   VHSS PRINTING — Main Stylesheet
   Theme: Earthy & Premium (textile + makhana heritage feel)
   ========================================================= */

:root {
  --cream:        #FBF5EA;
  --cream-dark:   #F1E6D2;
  --ink:          #2E2A24;
  --ink-soft:     #5C5347;
  --terracotta:   #B5502D;
  --terracotta-d: #8F3D21;
  --maroon:       #7A1F2B;
  --moss:         #5B6B47;
  --moss-d:       #46512F;
  --gold:         #C9A24B;
  --gold-light:   #E7CE8C;
  --white:        #FFFFFF;

  --font-heading: 'Playfair Display', 'Georgia', serif;
  --font-accent:  'Cormorant Garamond', serif;
  --font-body:    'Jost', 'Segoe UI', sans-serif;

  --shadow-soft:  0 10px 30px rgba(46, 42, 36, 0.08);
  --shadow-card:  0 14px 34px rgba(122, 31, 43, 0.10);
  --radius:       14px;
  --transition:   0.35s cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4, .font-heading {
  font-family: var(--font-heading);
  color: var(--ink);
  font-weight: 700;
  letter-spacing: 0.2px;
}

.eyebrow {
  font-family: var(--font-accent);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--terracotta);
  letter-spacing: 1px;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
.container { width: 92%; max-width: 1180px; margin: 0 auto; }
section { padding: 80px 0; position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 40px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 2px solid transparent;
  cursor: pointer;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.btn-primary {
  background: linear-gradient(135deg, var(--terracotta), var(--terracotta-d));
  color: var(--white);
  box-shadow: 0 8px 20px rgba(181, 80, 45, 0.35);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 26px rgba(181, 80, 45, 0.45);
}
.btn-outline {
  border-color: var(--ink);
  color: var(--ink);
  background: transparent;
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--cream);
  transform: translateY(-3px);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
}
.btn-gold:hover { transform: translateY(-3px); box-shadow: 0 12px 24px rgba(201,162,75,.4); }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--ink);
  color: var(--cream-dark);
  font-size: 0.82rem;
  padding: 7px 0;
}
.topbar .container { display: flex; justify-content: space-between; flex-wrap: wrap; gap: 6px; }
.topbar a { color: var(--gold-light); }
.topbar span { margin-right: 18px; }
.topbar i { margin-right: 6px; color: var(--gold-light); }

/* ---------- Navbar ---------- */
.navbar {
  background: rgba(251, 245, 234, 0.92);
  backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 999;
  box-shadow: 0 2px 12px rgba(46,42,36,0.06);
  transition: padding var(--transition);
}
.navbar.shrink { box-shadow: 0 6px 20px rgba(46,42,36,0.12); }
.navbar .container { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; transition: padding var(--transition); }
.navbar.shrink .container { padding: 10px 0; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--terracotta), var(--maroon));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-light); font-family: var(--font-heading); font-weight: 700; font-size: 1.2rem;
  box-shadow: 0 6px 14px rgba(122,31,43,0.35);
}
.brand-text .name { font-family: var(--font-heading); font-size: 1.35rem; font-weight: 700; line-height: 1; color: var(--maroon); }
.brand-text .tag { font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--moss-d); }

.nav-links { display: flex; align-items: center; gap: 34px; list-style: none; margin: 0; padding: 0; }
.nav-links a {
  font-weight: 500; font-size: 0.95rem; color: var(--ink);
  position: relative; padding: 4px 0;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: -3px; height: 2px; width: 0;
  background: var(--terracotta); transition: width var(--transition);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--terracotta); }

.nav-toggle { display: none; background: none; border: none; font-size: 1.6rem; color: var(--ink); cursor: pointer; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    position: fixed; top: 0; right: -100%; height: 100vh; width: 78%;
    background: var(--cream); flex-direction: column; justify-content: center;
    gap: 26px; transition: right var(--transition); box-shadow: -10px 0 30px rgba(0,0,0,0.15);
  }
  .nav-links.open { right: 0; }
}

/* ---------- Hero ---------- */
.hero {
  min-height: 88vh; display: flex; align-items: center;
  background:
    radial-gradient(circle at 15% 20%, rgba(201,162,75,0.18), transparent 45%),
    radial-gradient(circle at 85% 80%, rgba(91,107,71,0.16), transparent 50%),
    linear-gradient(120deg, var(--cream) 60%, var(--cream-dark));
  position: relative; overflow: hidden;
}
.hero::before, .hero::after {
  content: ""; position: absolute; border-radius: 50%; opacity: 0.5;
  background: radial-gradient(circle, var(--gold-light), transparent 70%);
  animation: float 9s ease-in-out infinite;
}
.hero::before { width: 260px; height: 260px; top: -60px; right: 8%; }
.hero::after { width: 180px; height: 180px; bottom: -40px; left: 4%; animation-delay: 2.5s; background: radial-gradient(circle, var(--moss), transparent 70%); opacity: 0.18; }
@keyframes float { 0%,100% { transform: translateY(0) } 50% { transform: translateY(-25px) } }

.hero-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 50px; align-items: center; }
@media (max-width: 900px) { .hero-grid { grid-template-columns: 1fr; text-align: center; } }

.hero h1 { font-size: 3.1rem; line-height: 1.15; margin: 14px 0 20px; }
.hero h1 span { color: var(--terracotta); font-style: italic; font-family: var(--font-accent); }
.hero p.lead { font-size: 1.08rem; color: var(--ink-soft); max-width: 520px; margin-bottom: 30px; }
@media (max-width: 900px) { .hero p.lead { margin-left: auto; margin-right: auto; } }
.hero-cta { display: flex; gap: 16px; flex-wrap: wrap; }
@media (max-width: 900px) { .hero-cta { justify-content: center; } }

.hero-badges { display: flex; gap: 26px; margin-top: 40px; flex-wrap: wrap; }
@media (max-width: 900px) { .hero-badges { justify-content: center; } }
.hero-badges .badge b { display: block; font-family: var(--font-heading); font-size: 1.6rem; color: var(--maroon); }
.hero-badges .badge span { font-size: 0.8rem; color: var(--ink-soft); text-transform: uppercase; letter-spacing: 1px; }

.hero-art {
  position: relative; aspect-ratio: 1/1; border-radius: 50% 50% 46% 54% / 55% 45% 55% 45%;
  background: linear-gradient(150deg, var(--terracotta), var(--maroon) 60%, var(--moss-d));
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-card); animation: blob 8s ease-in-out infinite;
}
@keyframes blob {
  0%,100% { border-radius: 50% 50% 46% 54% / 55% 45% 55% 45%; }
  50% { border-radius: 46% 54% 55% 45% / 46% 54% 45% 55%; }
}
.hero-art i { font-size: 6.5rem; color: rgba(255,255,255,0.92); }
.hero-art .ring {
  position: absolute; inset: -18px; border: 2px dashed var(--gold);
  border-radius: 50%; animation: spin 26s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

/* ---------- Section headers ---------- */
.sec-head { text-align: center; max-width: 640px; margin: 0 auto 50px; }
.sec-head h2 { font-size: 2.3rem; margin: 8px 0 12px; }
.sec-head p { color: var(--ink-soft); }
.divider { width: 70px; height: 3px; margin: 14px auto; background: linear-gradient(90deg, var(--terracotta), var(--gold)); border-radius: 4px; }

/* ---------- Product / category cards ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
@media (max-width: 950px) { .grid-3, .grid-4 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-3, .grid-4 { grid-template-columns: 1fr; } }

.card {
  background: var(--white); border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft); transition: transform var(--transition), box-shadow var(--transition);
  border: 1px solid rgba(122,31,43,0.06);
}
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow-card); }

.card-media {
  aspect-ratio: 4/3; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, var(--cream-dark), var(--gold-light) 120%);
}
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s ease; }
.card:hover .card-media img { transform: scale(1.08); }
.card-media .placeholder-icon { font-size: 3rem; color: var(--terracotta-d); opacity: 0.55; }
.card-media .cat-tag {
  position: absolute; top: 12px; left: 12px; background: rgba(46,42,36,0.75); color: var(--gold-light);
  font-size: 0.7rem; letter-spacing: 1px; text-transform: uppercase; padding: 5px 12px; border-radius: 20px;
}
.card-body { padding: 22px; }
.card-body h3 { font-size: 1.15rem; margin: 0 0 8px; }
.card-body p { color: var(--ink-soft); font-size: 0.9rem; margin: 0 0 14px; line-height: 1.55; }
.card-price { color: var(--terracotta-d); font-weight: 700; font-family: var(--font-heading); }
.card-foot { display: flex; align-items: center; justify-content: space-between; margin-top: 14px; }

/* ---------- Category showcase (home) ---------- */
.cat-card {
  position: relative; border-radius: var(--radius); overflow: hidden; min-height: 300px;
  display: flex; align-items: flex-end; padding: 28px; color: var(--white);
  box-shadow: var(--shadow-soft); transition: transform var(--transition);
}
.cat-card:hover { transform: translateY(-6px) scale(1.01); }
.cat-card::before { content: ""; position: absolute; inset: 0; opacity: 0.92; }
.cat-card.tshirt::before  { background: linear-gradient(150deg, #C96A3D, #7A1F2B); }
.cat-card.saree::before   { background: linear-gradient(150deg, #8A2A3B, #4A1420); }
.cat-card.makhana::before { background: linear-gradient(150deg, #6B7A4E, #38431F); }
.cat-card i { position: absolute; top: 24px; right: 24px; font-size: 2.2rem; opacity: 0.5; }
.cat-card .cc-inner { position: relative; z-index: 2; }
.cat-card h3 { color: var(--white); font-size: 1.4rem; margin: 0 0 6px; }
.cat-card p { color: rgba(255,255,255,0.85); font-size: 0.88rem; margin: 0 0 12px; }
.cat-card a { font-size: 0.85rem; font-weight: 600; color: var(--gold-light); }

/* ---------- Why us / stats ---------- */
.feature { text-align: center; padding: 20px; }
.feature i {
  width: 74px; height: 74px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px; font-size: 1.7rem; color: var(--white);
  background: linear-gradient(135deg, var(--moss), var(--moss-d));
  box-shadow: var(--shadow-soft);
}
.feature h4 { margin: 0 0 8px; font-size: 1.05rem; }
.feature p { color: var(--ink-soft); font-size: 0.9rem; margin: 0; }

.stats-band {
  background: linear-gradient(120deg, var(--maroon), var(--terracotta-d));
  color: var(--cream); padding: 55px 0;
}
.stats-band .grid-4 { text-align: center; }
.stats-band b { display: block; font-family: var(--font-heading); font-size: 2.4rem; color: var(--gold-light); }
.stats-band span { font-size: 0.85rem; text-transform: uppercase; letter-spacing: 1.2px; opacity: 0.9; }

/* ---------- About / owner ---------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
@media (max-width: 900px) { .about-grid { grid-template-columns: 1fr; } }
.about-portrait {
  aspect-ratio: 3/4; border-radius: var(--radius); background: linear-gradient(160deg, var(--moss), var(--ink) 130%);
  display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-card); position: relative; overflow: hidden;
}
.about-portrait i { font-size: 5rem; color: rgba(255,255,255,0.85); }
.about-portrait .frame { position: absolute; inset: 14px; border: 2px solid var(--gold); border-radius: 10px; }

.timeline { list-style: none; padding: 0; margin: 26px 0 0; border-left: 2px solid var(--gold-light); }
.timeline li { position: relative; padding: 0 0 22px 26px; }
.timeline li::before {
  content: ""; position: absolute; left: -7px; top: 4px; width: 12px; height: 12px; border-radius: 50%;
  background: var(--terracotta); border: 3px solid var(--cream);
}
.timeline b { display: block; font-family: var(--font-heading); color: var(--maroon); }
.timeline span { font-size: 0.85rem; color: var(--ink-soft); }

.info-chip {
  display: inline-flex; align-items: center; gap: 8px; background: var(--cream-dark);
  padding: 8px 16px; border-radius: 30px; font-size: 0.82rem; margin: 4px 6px 4px 0;
}
.info-chip i { color: var(--terracotta); }

/* ---------- Testimonials ---------- */
.testi-card {
  background: var(--white); border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-soft);
  position: relative;
}
.testi-card i.quote { font-size: 1.6rem; color: var(--gold); }
.testi-card p { color: var(--ink-soft); font-style: italic; margin: 14px 0 18px; }
.testi-name { font-weight: 600; color: var(--maroon); }
.testi-role { font-size: 0.8rem; color: var(--ink-soft); }

/* ---------- Forms ---------- */
.form-panel { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-card); }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; margin-bottom: 8px; font-weight: 500; font-size: 0.9rem; }
.form-control {
  width: 100%; padding: 13px 16px; border-radius: 10px; border: 1.5px solid var(--cream-dark);
  background: var(--cream); font-family: var(--font-body); font-size: 0.95rem; transition: border var(--transition);
}
.form-control:focus { outline: none; border-color: var(--terracotta); background: var(--white); }
textarea.form-control { resize: vertical; min-height: 120px; }

/* ---------- Footer ---------- */
footer { background: var(--ink); color: var(--cream-dark); padding: 60px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 40px; }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }
footer h5 { color: var(--gold-light); font-family: var(--font-heading); margin-bottom: 18px; font-size: 1.05rem; }
footer p, footer a, footer li { color: rgba(251,245,234,0.75); font-size: 0.88rem; line-height: 1.9; }
footer a:hover { color: var(--gold-light); }
footer ul { list-style: none; padding: 0; margin: 0; }
.footer-bottom {
  border-top: 1px solid rgba(251,245,234,0.12); text-align: center; padding: 18px 0; font-size: 0.8rem;
  color: rgba(251,245,234,0.55);
}
.social-row { display: flex; gap: 12px; margin-top: 16px; }
.social-row a {
  width: 38px; height: 38px; border-radius: 50%; background: rgba(251,245,234,0.1);
  display: flex; align-items: center; justify-content: center; transition: var(--transition);
}
.social-row a:hover { background: var(--terracotta); transform: translateY(-3px); }

/* ---------- WhatsApp float ---------- */
.wa-float {
  position: fixed; bottom: 26px; right: 26px; z-index: 998;
  width: 58px; height: 58px; border-radius: 50%; background: #25D366; color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.6rem;
  box-shadow: 0 10px 24px rgba(37,211,102,0.45); animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0% { box-shadow: 0 0 0 0 rgba(37,211,102,0.5); }
  70% { box-shadow: 0 0 0 16px rgba(37,211,102,0); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0); }
}

/* ---------- Reveal-on-scroll ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal.d1 { transition-delay: 0.1s; }
.reveal.d2 { transition-delay: 0.2s; }
.reveal.d3 { transition-delay: 0.3s; }
.reveal.d4 { transition-delay: 0.4s; }

/* ---------- Page banner (inner pages) ---------- */
.page-banner {
  padding: 70px 0 50px; text-align: center;
  background: linear-gradient(120deg, var(--cream-dark), var(--cream));
  position: relative; overflow: hidden;
}
.page-banner h1 { font-size: 2.4rem; margin: 6px 0; }
.page-banner .crumb { font-size: 0.85rem; color: var(--ink-soft); }
.page-banner .crumb a { color: var(--terracotta); }

/* ---------- Alerts ---------- */
.alert-note { padding: 14px 18px; border-radius: 10px; margin-bottom: 20px; font-size: 0.9rem; }
.alert-success { background: #E7EFDD; color: var(--moss-d); border: 1px solid var(--moss); }
.alert-error { background: #F6DEDA; color: var(--maroon); border: 1px solid var(--maroon); }

/* ---------- Admin ---------- */
.admin-wrap { display: flex; min-height: 100vh; background: var(--cream); }
.admin-side {
  width: 250px; background: var(--ink); color: var(--cream-dark); padding: 26px 20px; flex-shrink: 0;
}
.admin-side .name { font-family: var(--font-heading); color: var(--gold-light); font-size: 1.2rem; margin-bottom: 30px; }
.admin-side a {
  display: flex; align-items: center; gap: 10px; padding: 11px 12px; border-radius: 8px; margin-bottom: 6px;
  font-size: 0.9rem; color: rgba(251,245,234,0.8); transition: var(--transition);
}
.admin-side a:hover, .admin-side a.active { background: rgba(255,255,255,0.08); color: var(--gold-light); }
.admin-main { flex: 1; padding: 34px; }
.admin-card { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-soft); padding: 26px; margin-bottom: 26px; }
table.admin-table { width: 100%; border-collapse: collapse; }
table.admin-table th, table.admin-table td {
  padding: 12px 14px; text-align: left; border-bottom: 1px solid var(--cream-dark); font-size: 0.9rem;
}
table.admin-table th { color: var(--ink-soft); text-transform: uppercase; font-size: 0.75rem; letter-spacing: 1px; }
.tag-pill { padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; background: var(--cream-dark); color: var(--terracotta-d); }
.icon-btn { color: var(--ink-soft); margin-right: 10px; transition: var(--transition); }
.icon-btn:hover { color: var(--terracotta); }
.login-wrap {
  min-height: 100vh; display: flex; align-items: center; justify-content: center;
  background: linear-gradient(150deg, var(--ink), var(--maroon));
}
.login-box { background: var(--cream); padding: 44px; border-radius: var(--radius); width: 92%; max-width: 380px; box-shadow: var(--shadow-card); }
