:root {
  --red: #CC0000;
  --red-dark: #990000;
  --red-light: #FF1A1A;
  --black: #0D0D0D;
  --white: #FFFFFF;
  --off-white: #FAF7F4;
  --gray: #888888;
  --light-gray: #EDE9E4;
  --gold: #C9A84C;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Barlow', sans-serif; background: var(--off-white); color: var(--black); overflow-x: hidden; }

/* ── NAVBAR ── */
nav {
  position: fixed; top: 0; width: 100%; z-index: 100;
  background: var(--red);
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 5%; height: 70px;
  box-shadow: 0 4px 24px rgba(204,0,0,0.4);
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-brand { color: var(--white); font-family: 'Barlow Condensed', sans-serif; font-size: 1.15rem; letter-spacing: 2px; line-height: 1.2; font-weight: 700; }
.nav-brand span { color: rgba(255,255,255,0.75); display: block; font-size: 0.68rem; letter-spacing: 3px; font-weight: 400; }
.nav-links { display: flex; gap: 30px; list-style: none; }
.nav-links a { color: rgba(255,255,255,0.88); text-decoration: none; font-size: 0.82rem; letter-spacing: 2px; text-transform: uppercase; transition: color 0.2s; font-weight: 600; }
.nav-links a:hover { color: var(--white); text-shadow: 0 0 12px rgba(255,255,255,0.5); }
.nav-cta { background: var(--white); color: var(--red); border: none; padding: 9px 22px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; cursor: pointer; transition: all 0.2s; text-decoration: none; }
.nav-cta:hover { background: var(--black); color: var(--white); }

/* ── HERO ── */
.hero { min-height: 100vh; background: linear-gradient(135deg, #CC0000 0%, #990000 40%, #6B0000 100%); display: grid; grid-template-columns: 1fr 1fr; position: relative; overflow: hidden; padding-top: 70px; }
.hero-pattern { position: absolute; inset: 0; background-image: radial-gradient(circle at 20% 50%, rgba(255,255,255,0.06) 0%, transparent 50%), radial-gradient(circle at 80% 20%, rgba(0,0,0,0.2) 0%, transparent 50%), repeating-linear-gradient(45deg, transparent, transparent 30px, rgba(255,255,255,0.02) 30px, rgba(255,255,255,0.02) 31px); pointer-events: none; }
.hero-left { display: flex; flex-direction: column; justify-content: center; padding: 70px 5% 70px 8%; position: relative; z-index: 3; animation: fadeInLeft 0.9s ease both; }
.hero-eyebrow { font-family: 'Barlow Condensed', sans-serif; font-size: 0.78rem; letter-spacing: 5px; text-transform: uppercase; color: rgba(255,255,255,0.7); margin-bottom: 20px; display: flex; align-items: center; gap: 12px; }
.hero-eyebrow::before { content: ''; display: block; width: 36px; height: 2px; background: rgba(255,255,255,0.5); }
.hero-title { font-family: 'Playfair Display', serif; font-size: clamp(2.8rem, 5vw, 4.8rem); font-weight: 900; color: var(--white); line-height: 1.05; margin-bottom: 14px; text-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.hero-subtitle { font-family: 'Barlow Condensed', sans-serif; font-size: clamp(1rem, 2vw, 1.35rem); color: rgba(255,255,255,0.75); letter-spacing: 3px; text-transform: uppercase; margin-bottom: 28px; }
.hero-desc { color: rgba(255,255,255,0.82); font-size: 0.97rem; line-height: 1.85; max-width: 460px; margin-bottom: 44px; }
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-primary { background: var(--white); color: var(--red); padding: 15px 36px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.92rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; text-decoration: none; border: none; cursor: pointer; transition: all 0.2s; display: inline-block; box-shadow: 0 6px 24px rgba(0,0,0,0.2); }
.btn-primary:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--white); padding: 14px 36px; border: 2px solid rgba(255,255,255,0.5); font-family: 'Barlow Condensed', sans-serif; font-size: 0.92rem; letter-spacing: 2px; text-transform: uppercase; text-decoration: none; font-weight: 600; transition: all 0.2s; display: inline-block; }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.12); }
.hero-right { display: flex; align-items: center; justify-content: center; position: relative; z-index: 3; animation: fadeInRight 0.9s ease 0.2s both; }
.hero-logo-wrap { display: flex; flex-direction: column; align-items: center; gap: 28px; }
.hero-logo-ring { width: 300px; height: 300px; border-radius: 50%; background: rgba(255,255,255,0.1); border: 2px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; box-shadow: 0 0 80px rgba(0,0,0,0.3), inset 0 0 60px rgba(255,255,255,0.05); animation: rotatering 8s linear infinite; }
.hero-logo-inner { width: 240px; height: 240px; border-radius: 50%; background: var(--white); display: flex; align-items: center; justify-content: center; box-shadow: 0 12px 48px rgba(0,0,0,0.4); }
@keyframes rotatering { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
.hero-tagline { font-family: 'Barlow Condensed', sans-serif; color: rgba(255,255,255,0.5); font-size: 0.75rem; letter-spacing: 4px; text-transform: uppercase; text-align: center; }
.hero-stats { display: flex; gap: 44px; margin-top: 50px; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.2); }
.stat-num { font-family: 'Playfair Display', serif; font-size: 2.2rem; color: var(--white); font-weight: 700; }
.stat-label { font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 4px; }

/* ── TICKER ── */
.ticker { background: var(--black); padding: 14px 0; overflow: hidden; white-space: nowrap; border-top: 3px solid var(--red); border-bottom: 3px solid var(--red); }
.ticker-inner { display: inline-block; animation: ticker 28s linear infinite; font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; letter-spacing: 4px; text-transform: uppercase; color: #aaa; }
.ticker-inner span { color: var(--red); margin: 0 24px; }
@keyframes ticker { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ── SECTION BASE ── */
section { padding: 96px 8%; }
.section-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; letter-spacing: 5px; text-transform: uppercase; color: var(--red); margin-bottom: 12px; display: flex; align-items: center; gap: 10px; }
.section-label::before { content:''; display:block; width:28px; height:2px; background:var(--red); }
.section-title { font-family: 'Playfair Display', serif; font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 700; line-height: 1.1; margin-bottom: 16px; }
.section-desc { color: #666; font-size: 0.95rem; line-height: 1.8; max-width: 540px; }

/* ── ABOUT ── */
.about { background: var(--white); display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual-stack { position: relative; }
.about-main-card { background: var(--red); padding: 52px 44px; position: relative; overflow: hidden; color: var(--white); }
.about-main-card::after { content: ''; position: absolute; bottom: -40px; right: -40px; width: 180px; height: 180px; background: rgba(0,0,0,0.15); border-radius: 50%; }
.about-main-card h3 { font-family: 'Playfair Display', serif; font-size: 1.6rem; margin-bottom: 14px; }
.about-main-card p { color: rgba(255,255,255,0.85); font-size: 0.9rem; line-height: 1.8; position: relative; z-index: 1; }
.about-sub-card { background: var(--black); padding: 28px 32px; margin-top: 3px; display: flex; align-items: center; gap: 20px; }
.about-sub-icon { font-size: 2rem; }
.about-sub-card h4 { font-family: 'Barlow Condensed', sans-serif; color: var(--white); font-size: 1rem; letter-spacing: 1px; margin-bottom: 4px; }
.about-sub-card p { color: #aaa; font-size: 0.82rem; }
.gst-badge { margin-top: 28px; background: var(--red); color: white; padding: 12px 20px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; letter-spacing: 2px; display: inline-block; }

/* ── CATEGORIES ── */
.cat-card { background: var(--white); padding: 32px 24px; text-align: center; text-decoration: none; color: var(--black); border: 2px solid var(--light-gray); transition: all 0.2s; display: block; }
.cat-card:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(204,0,0,0.12); }
.cat-icon { font-size: 2.4rem; margin-bottom: 14px; }
.cat-name { font-family: 'Barlow Condensed', sans-serif; font-size: 1rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 6px; }
.cat-count { font-size: 0.78rem; color: var(--gray); letter-spacing: 1px; }

/* ── PRODUCTS GRID ── */
.prod-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 20px; }
.prod-card { background: var(--white); border: 1px solid var(--light-gray); transition: all 0.2s; }
.prod-card:hover { box-shadow: 0 8px 30px rgba(0,0,0,0.1); transform: translateY(-2px); }
.prod-img { aspect-ratio: 4/3; overflow: hidden; position: relative; background: #f5f5f5; }
.prod-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s; }
.prod-card:hover .prod-img img { transform: scale(1.04); }
.prod-badge { position: absolute; top: 10px; left: 10px; background: var(--red); color: white; font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; letter-spacing: 1px; padding: 4px 10px; text-transform: uppercase; }
.prod-body { padding: 18px; }
.prod-cat { font-family: 'Barlow Condensed', sans-serif; font-size: 0.68rem; letter-spacing: 2px; text-transform: uppercase; color: var(--red); margin-bottom: 6px; }
.prod-name { font-weight: 700; font-size: 0.95rem; line-height: 1.3; margin-bottom: 10px; }
.prod-pricing { margin-bottom: 14px; }
.prod-price { font-family: 'Playfair Display', serif; font-size: 1.3rem; color: var(--red); font-weight: 700; }
.prod-mrp { font-size: 0.85rem; color: #bbb; text-decoration: line-through; margin-left: 8px; }
.prod-btn { display: block; background: var(--red); color: white; text-align: center; padding: 11px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.8rem; letter-spacing: 2px; text-transform: uppercase; font-weight: 700; text-decoration: none; transition: background 0.2s; }
.prod-btn:hover { background: var(--red-dark); }

/* ── WHY ── */
.why-section { background: var(--black); padding: 96px 8%; }
.why-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 2px; }
.why-card { background: #111; padding: 36px 32px; border-left: 3px solid transparent; transition: all 0.2s; }
.why-card:hover { border-left-color: var(--red); background: #161616; }
.why-icon { font-size: 2rem; margin-bottom: 16px; }
.why-card h4 { font-family: 'Barlow Condensed', sans-serif; color: var(--white); font-size: 1.1rem; letter-spacing: 1px; margin-bottom: 10px; text-transform: uppercase; }
.why-card p { color: #666; font-size: 0.88rem; line-height: 1.7; }

/* ── CONTACT ── */
.contact-section { background: var(--off-white); padding: 96px 8%; }
.contact-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.contact-block { margin-bottom: 28px; }
.contact-block-label { font-family: 'Barlow Condensed', sans-serif; font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 8px; }
.contact-block-value { font-size: 0.95rem; line-height: 1.7; color: var(--black); }
.contact-form-wrap { background: var(--white); padding: 40px; }
.contact-form-wrap h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; margin-bottom: 28px; }
.contact-form-group { margin-bottom: 18px; }
.contact-form-group label { display: block; font-size: 0.7rem; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #888; margin-bottom: 6px; }
.contact-input { width: 100%; border: 2px solid var(--light-gray); padding: 12px 14px; font-family: 'Barlow', sans-serif; font-size: 0.95rem; transition: border 0.2s; background: var(--off-white); color: var(--black); border-radius: 2px; }
.contact-input:focus { outline: none; border-color: var(--red); }
.contact-btn { background: var(--red); color: white; border: none; width: 100%; padding: 16px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.9rem; letter-spacing: 3px; text-transform: uppercase; font-weight: 700; cursor: pointer; transition: background 0.2s; border-radius: 2px; }
.contact-btn:hover { background: var(--red-dark); }

/* ── MAP ── */
.map-strip { background: var(--light-gray); padding: 0; height: 320px; position: relative; overflow: hidden; }
.map-strip iframe { width: 100%; height: 100%; border: none; filter: grayscale(20%); }
.map-overlay { position: absolute; top: 20px; left: 40px; background: var(--red); color: var(--white); padding: 12px 24px; font-family: 'Barlow Condensed', sans-serif; font-size: 0.85rem; letter-spacing: 2px; text-transform: uppercase; box-shadow: 0 4px 20px rgba(0,0,0,0.3); }

/* ── FOOTER ── */
footer { background: var(--black); color: #666; padding: 56px 8% 28px; border-top: 4px solid var(--red); }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 60px; margin-bottom: 44px; }
.footer-brand p { font-size: 0.85rem; line-height: 1.8; color: #555; max-width: 260px; margin-top: 10px; }
.footer-brand-name { color: var(--white); font-family: 'Barlow Condensed', sans-serif; letter-spacing: 2px; font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.footer-col h4 { font-family: 'Barlow Condensed', sans-serif; font-size: 0.72rem; letter-spacing: 3px; text-transform: uppercase; color: var(--red); margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a { color: #555; text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--red); }
.footer-bottom { border-top: 1px solid #1c1c1c; padding-top: 24px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 12px; font-size: 0.78rem; }
.footer-bottom span { color: #444; }

/* ── WHATSAPP ── */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; z-index: 999; background: #25D366; color: white; width: 58px; height: 58px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.7rem; box-shadow: 0 4px 20px rgba(37,211,102,0.5); text-decoration: none; transition: transform 0.2s; animation: wobble 2s ease-in-out infinite; }
.whatsapp-float:hover { transform: scale(1.1); }
@keyframes wobble { 0%,100% { transform: rotate(0deg); } 25% { transform: rotate(-8deg); } 75% { transform: rotate(8deg); } }

/* ── ANIMATIONS ── */
@keyframes fadeInLeft { from { opacity: 0; transform: translateX(-30px); } to { opacity: 1; transform: translateX(0); } }
@keyframes fadeInRight { from { opacity: 0; transform: translateX(30px); } to { opacity: 1; transform: translateX(0); } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── MOBILE ── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; padding: 90px 6% 60px; }
  .hero-right { padding: 40px 0 20px; }
  .hero-logo-ring { width: 220px; height: 220px; }
  .hero-logo-inner { width: 175px; height: 175px; }
  .about { grid-template-columns: 1fr; gap: 40px; }
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .prod-layout { grid-template-columns: 1fr !important; }
  .prod-detail-grid { grid-template-columns: 1fr !important; }
}
