/* ============================================
   JUST LOOK - CUSTOMIZE YOUR STYLE
   Shared stylesheet — white / black / red theme
   ============================================ */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --bg: #ffffff;
  --bg-alt: #f7f6f4;
  --dark: #0a0a0a;
  --dark-soft: #161616;
  --accent: #d81324;
  --accent-dark: #a30d1b;
  --text: #141414;
  --text-light: #5c5c5c;
  --border: #e9e7e4;
  --card-bg: #ffffff;
  --gold: #c9a84c;
}

html { scroll-behavior: smooth; overflow-x: hidden; width: 100%; }

body {
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  width: 100%;
  line-height: 1.6;
}

h1, h2, h3, h4 { font-family: 'Playfair Display', serif; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
section { padding: 90px 20px; }

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

a { text-decoration: none; color: inherit; }

::selection { background: var(--accent); color: #fff; }

/* ---------- Buttons ---------- */
.btn-primary, .btn-outline, .btn-dark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 34px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.98rem;
  cursor: pointer;
  transition: 0.3s;
  border: 2px solid transparent;
}
.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover { background: var(--accent-dark); transform: translateY(-2px); box-shadow: 0 10px 25px rgba(216,19,36,0.35); }
.btn-outline { background: transparent; border-color: #fff; color: #fff; }
.btn-outline:hover { background: #fff; color: var(--dark); }
.btn-dark { background: var(--dark); color: #fff; }
.btn-dark:hover { background: var(--accent); transform: translateY(-2px); }

/* ---------- Navbar ---------- */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  background: rgba(255,255,255,0.98);
  z-index: 1000;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
  transition: 0.3s;
}
.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo { display: flex; align-items: center; gap: 10px; }
/* NOTE: 'Directive Four' is a premium display font (not on Google Fonts).
   Upload the font file (.woff2/.woff/.ttf) and we'll wire up @font-face here, e.g.:
   @font-face {
     font-family: 'Directive Four';
     src: url('fonts/DirectiveFour-Italic.woff2') format('woff2');
     font-style: italic;
     font-weight: 400;
   }
   Until then this falls back to an italic serif so layout doesn't break. */
.logo-text {
  font-family: 'Directive Four', 'Playfair Display', serif;
  font-style: italic;
  font-size: 2rem;
  font-weight: 700;
  color: var(--dark);
  letter-spacing: 0.3px;
  line-height: 1;
}
.logo-text span { color: var(--accent); }
.logo-tag { font-family: 'Marcellus', serif; font-size: 0.68rem; letter-spacing: 3px; text-transform: uppercase; color: var(--text-light); display: block; margin-top: 4px; }

.nav-links { display: flex; list-style: none; gap: 32px; align-items: center; }
.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 4px 0;
}
.nav-links a::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 2px;
  background: var(--accent); transition: 0.3s;
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { color: var(--accent); }
.nav-cta {
  background: var(--dark); color: #fff !important; padding: 10px 22px; border-radius: 50px;
  font-weight: 600;
}
.nav-cta:hover { background: var(--accent) !important; }

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  cursor: pointer;
  z-index: 1001;
  padding: 14px;
  margin: -14px;
  touch-action: manipulation;
}
.hamburger span { width: 26px; height: 2px; background: var(--dark); transition: 0.3s; }
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 480px) {
  .logo-text { font-size: 1.5rem; }
  .stat-pair { grid-template-columns: 1fr !important; }
}

@media (max-width: 860px) {
  .hamburger { display: flex; }
  .nav-links {
    display: none;
    position: fixed;
    top: 76px; left: 0; right: 0; bottom: 0;
    background: #fff;
    flex-direction: column;
    padding: 30px 20px;
    gap: 22px;
    overflow-y: auto;
    z-index: 999;
  }
  .nav-links.active { display: flex; }
  .nav-cta { text-align: center; }
}

/* ---------- Page Hero (interior pages) ---------- */
.page-hero {
  background: var(--dark);
  color: #fff;
  padding: 160px 20px 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--gold), var(--accent));
}
.page-hero h1 { font-size: clamp(2.2rem, 5vw, 3.2rem); margin-bottom: 12px; }
.page-hero p { color: rgba(255,255,255,0.65); font-size: 1.05rem; }
.breadcrumb { margin-top: 18px; font-size: 0.85rem; color: rgba(255,255,255,0.5); }
.breadcrumb a { color: var(--gold); }

/* ---------- Section headers ---------- */
.eyebrow {
  display: inline-block; color: var(--accent); font-weight: 600; letter-spacing: 2px;
  text-transform: uppercase; font-size: 0.8rem; margin-bottom: 12px;
}
.section-title { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 700; margin-bottom: 14px; color: var(--dark); }
.section-title span { color: var(--accent); }
.section-subtitle { color: var(--text-light); font-size: 1.05rem; max-width: 620px; }
.section-head { margin-bottom: 50px; }
.section-head.center { text-align: center; margin-left: auto; margin-right: auto; }
.section-head.center .section-subtitle { margin-left: auto; margin-right: auto; }

.bg-alt { background: var(--bg-alt); }
.bg-dark { background: var(--dark); color: #fff; }
.bg-dark .section-title { color: #fff; }
.bg-dark .section-subtitle { color: rgba(255,255,255,0.6); }

/* ---------- Cards / Grids ---------- */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 26px; }
.grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 22px; }

.feature-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 34px 26px;
  transition: 0.3s;
}
.feature-card:hover { border-color: var(--accent); transform: translateY(-6px); box-shadow: 0 18px 40px rgba(0,0,0,0.08); }
.feature-icon {
  width: 56px; height: 56px; border-radius: 12px;
  background: rgba(216,19,36,0.08); color: var(--accent);
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem; margin-bottom: 18px;
}
.feature-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.feature-card p { color: var(--text-light); font-size: 0.95rem; }

.product-card {
  background: #fff; border-radius: 16px; overflow: hidden; border: 1px solid var(--border);
  transition: 0.35s;
}
.product-card:hover { transform: translateY(-6px); box-shadow: 0 20px 45px rgba(0,0,0,0.1); }
.product-card img { height: 230px; width: 100%; object-fit: cover; }
.product-card .product-body { padding: 20px; }
.product-card h3 { font-size: 1.1rem; margin-bottom: 6px; }
.product-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 16px; }
.product-card .wa-btn {
  display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-weight: 600; font-size: 0.92rem;
}
.product-card .wa-btn:hover { text-decoration: underline; }

/* ---------- Gallery / Lightbox ---------- */
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }
.gallery-item { border-radius: 12px; overflow: hidden; cursor: pointer; position: relative; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: 0.4s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '\f00e'; font-family: 'Font Awesome 6 Free'; font-weight: 900;
  position: absolute; inset: 0; background: rgba(10,10,10,0.45); color: #fff;
  display: flex; align-items: center; justify-content: center; font-size: 1.4rem;
  opacity: 0; transition: 0.3s;
}
.gallery-item:hover::after { opacity: 1; }

.lightbox {
  position: fixed; inset: 0; background: rgba(10,10,10,0.94); z-index: 3000;
  display: none; align-items: center; justify-content: center; padding: 30px;
}
.lightbox.active { display: flex; }
.lightbox img { max-width: 90vw; max-height: 85vh; border-radius: 8px; }
.lightbox-close {
  position: absolute; top: 24px; right: 30px; color: #fff; font-size: 2rem; cursor: pointer;
}

/* ---------- Reviews ---------- */
.rating-banner {
  display: flex; align-items: center; justify-content: center; gap: 30px; flex-wrap: wrap;
  margin-bottom: 44px;
}
.rating-score { text-align: center; }
.rating-score .num { font-size: 3rem; font-weight: 700; color: var(--dark); font-family: 'Playfair Display', serif; }
.rating-score .stars { color: var(--gold); font-size: 1.2rem; margin: 4px 0; }
.rating-score .count { color: var(--text-light); font-size: 0.9rem; }

.review-card {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 14px; padding: 26px;
}
.review-card .stars { color: var(--gold); margin-bottom: 12px; }
.review-card p { color: var(--text-light); font-size: 0.95rem; margin-bottom: 16px; }
.review-author { display: flex; align-items: center; gap: 12px; }
.review-avatar {
  width: 42px; height: 42px; border-radius: 50%; background: var(--dark); color: #fff;
  display: flex; align-items: center; justify-content: center; font-weight: 600; font-family: 'Playfair Display', serif;
}
.review-author h4 { font-size: 0.92rem; }
.review-author span { font-size: 0.8rem; color: var(--text-light); }

/* ---------- Bulk Orders ---------- */
.bulk-banner {
  background: var(--dark); color: #fff; border-radius: 20px; padding: 60px 40px;
  display: grid; grid-template-columns: 1.2fr 1fr; gap: 40px; align-items: center; overflow: hidden; position: relative;
}
.bulk-banner::before {
  content: ''; position: absolute; top: -60px; right: -60px; width: 220px; height: 220px;
  background: var(--accent); border-radius: 50%; opacity: 0.15;
}
.bulk-banner h2 { font-size: 2rem; margin-bottom: 14px; }
.bulk-banner p { color: rgba(255,255,255,0.65); margin-bottom: 24px; }
.bulk-tags { display: flex; flex-wrap: wrap; gap: 10px; }
.bulk-tags span {
  border: 1px solid rgba(255,255,255,0.2); padding: 8px 16px; border-radius: 50px; font-size: 0.85rem;
}
@media (max-width: 760px) { .bulk-banner { grid-template-columns: 1fr; } }

.mini-card { background: var(--bg-alt); border-radius: 12px; padding: 20px; text-align: center; }
.mini-card i { color: var(--accent); font-size: 1.5rem; margin-bottom: 10px; }
.mini-card h4 { font-size: 0.95rem; margin-bottom: 4px; }
.mini-card p { font-size: 0.85rem; color: var(--text-light); }

/* ---------- FAQ ---------- */
.faq-item { border-bottom: 1px solid var(--border); padding: 20px 0; cursor: pointer; }
.faq-question { display: flex; justify-content: space-between; align-items: center; font-weight: 600; }
.faq-question i { transition: 0.3s; color: var(--accent); }
.faq-item.active .faq-question i { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: 0.3s; color: var(--text-light); font-size: 0.95rem; }
.faq-item.active .faq-answer { max-height: 300px; padding-top: 14px; }

/* ---------- Forms ---------- */
.form-box {
  background: var(--card-bg); border: 1px solid var(--border); border-radius: 16px; padding: 34px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 600px) { .form-row { grid-template-columns: 1fr; } }
.form-box input, .form-box select, .form-box textarea {
  width: 100%; padding: 14px 16px; border: 1px solid var(--border); border-radius: 10px;
  font-family: 'Poppins', sans-serif; font-size: 0.95rem; margin-bottom: 16px; background: #fff; color: var(--text);
}
.form-box input:focus, .form-box select:focus, .form-box textarea:focus { outline: none; border-color: var(--accent); }
.form-box label { font-size: 0.85rem; font-weight: 600; margin-bottom: 6px; display: block; color: var(--text-light); }

/* ---------- Blazer Order Builder ---------- */
.blazer-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: start; }
@media (max-width: 860px) { .blazer-layout { grid-template-columns: 1fr; } .blazer-preview { position: static; } }
.blazer-preview { border-radius: 18px; overflow: hidden; border: 1px solid var(--border); position: sticky; top: 100px; }
.blazer-preview img { width: 100%; height: 480px; object-fit: cover; }
@media (max-width: 480px) { .blazer-preview img { height: 320px; } }
.color-options { display: flex; gap: 14px; margin-bottom: 24px; }
.color-swatch {
  width: 42px; height: 42px; border-radius: 50%; cursor: pointer; border: 3px solid transparent;
  display: flex; align-items: center; justify-content: center; transition: 0.2s;
}
.color-swatch.active { border-color: var(--accent); transform: scale(1.1); }
.size-options { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 24px; }
.size-chip {
  padding: 10px 18px; border: 1px solid var(--border); border-radius: 8px; cursor: pointer; font-weight: 600; font-size: 0.9rem;
}
.size-chip.active { background: var(--dark); color: #fff; border-color: var(--dark); }
.qty-control { display: flex; align-items: center; gap: 14px; margin-bottom: 24px; }
.qty-control button {
  width: 40px; height: 40px; border-radius: 8px; border: 1px solid var(--border); background: #fff; font-size: 1.1rem; cursor: pointer;
}
.qty-control span { font-weight: 700; font-size: 1.1rem; width: 24px; text-align: center; }
.order-summary { background: var(--bg-alt); border-radius: 12px; padding: 18px 20px; margin-bottom: 20px; font-size: 0.92rem; }
.order-summary strong { color: var(--accent); }

/* ---------- Location / Map ---------- */
.map-wrap { border-radius: 16px; overflow: hidden; border: 1px solid var(--border); }
.map-wrap iframe { width: 100%; height: 380px; border: 0; display: block; }
.info-row { display: flex; align-items: flex-start; gap: 14px; margin-bottom: 18px; }
.info-row i { color: var(--accent); font-size: 1.2rem; margin-top: 3px; width: 22px; }
.info-row h4 { font-size: 0.95rem; margin-bottom: 3px; }
.info-row p { color: var(--text-light); font-size: 0.9rem; }

/* ---------- Footer ---------- */
.footer { background: var(--dark); color: #fff; padding: 70px 20px 24px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; max-width: 1200px; margin: 0 auto 40px; }
@media (max-width: 760px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 480px) { .footer-grid { grid-template-columns: 1fr; } }
.footer h4 { color: var(--gold); margin-bottom: 16px; font-size: 1rem; font-family: 'Poppins', sans-serif; font-weight: 600; }
.footer p, .footer li, .footer a { color: rgba(255,255,255,0.6); font-size: 0.9rem; line-height: 2; }
.footer ul { list-style: none; }
.footer a:hover { color: var(--accent); }
.footer-brand .logo-text { color: #fff; font-size: 1.6rem; }
.footer-brand p { margin-top: 14px; max-width: 280px; }
.social-links { display: flex; gap: 12px; margin-top: 16px; }
.social-links a {
  width: 38px; height: 38px; border: 1px solid rgba(255,255,255,0.15); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; transition: 0.3s;
}
.social-links a:hover { border-color: var(--accent); background: var(--accent); color: #fff; }
.footer-bottom {
  text-align: center; padding-top: 24px; border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.4); font-size: 0.82rem; max-width: 1200px; margin: 0 auto;
}

/* ---------- Floating buttons ---------- */
.floating-buttons { position: fixed; bottom: 26px; right: 20px; display: flex; flex-direction: column; gap: 12px; z-index: 999; }
.float-btn {
  width: 56px; height: 56px; border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; color: #fff; box-shadow: 0 6px 18px rgba(0,0,0,0.25); transition: 0.3s;
}
.float-btn:hover { transform: scale(1.1); }
.whatsapp-btn { background: #25d366; animation: pulse 2s infinite; }
.call-btn { background: var(--accent); }
@keyframes pulse { 0%,100%{box-shadow:0 6px 18px rgba(0,0,0,0.25);} 50%{box-shadow:0 6px 26px rgba(37,211,102,0.55);} }

/* ---------- Trust Strip (GSTIN / MSME / Experience) ---------- */
.trust-strip { background: var(--dark); padding: 20px 20px; }
.trust-strip .container { display: flex; flex-wrap: wrap; justify-content: center; gap: 6px; }
.trust-item {
  display: flex; align-items: center; gap: 12px; padding: 8px 30px;
  border-left: 1px solid rgba(255,255,255,0.12);
}
.trust-item:first-child { border-left: none; }
.trust-item i { color: var(--gold); font-size: 1.3rem; flex-shrink: 0; }
.trust-item .t-text { display: flex; flex-direction: column; }
.trust-item .t-value { color: #fff; font-weight: 600; font-size: 0.9rem; }
.trust-item .t-label { color: rgba(255,255,255,0.45); font-size: 0.66rem; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }
@media (max-width: 760px) {
  .trust-item { border-left: none; padding: 8px 16px; }
}

/* ---------- Fabric Brands ---------- */
.brand-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(160px, 1fr)); gap: 18px; }
.brand-chip {
  background: #fff; border: 1px solid var(--border); border-radius: 12px;
  padding: 28px 16px; text-align: center; transition: 0.3s;
}
.brand-chip:hover { border-color: var(--accent); transform: translateY(-5px); box-shadow: 0 16px 34px rgba(0,0,0,0.08); }
.brand-chip .b-name { display: block; font-family: 'Playfair Display', serif; font-weight: 700; font-size: 1.08rem; color: var(--dark); }
.brand-chip .b-tag { display: block; font-size: 0.72rem; color: var(--text-light); margin-top: 6px; letter-spacing: 0.3px; }

/* ---------- Responsive Two-Column Layouts ---------- */
.hero-grid { display: grid; grid-template-columns: 1.1fr 1fr; gap: 50px; align-items: center; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 50px; align-items: center; }
.two-col-tight { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; }
@media (max-width: 860px) {
  .hero-grid, .two-col, .two-col-tight { grid-template-columns: 1fr; }
  .hero-grid { gap: 34px; }
  .two-col { gap: 34px; }
}

/* ---------- Utility ---------- */
.text-center { text-align: center; }
.mt-30 { margin-top: 30px; }
.badge { display: inline-block; background: rgba(216,19,36,0.08); color: var(--accent); padding: 6px 14px; border-radius: 50px; font-size: 0.78rem; font-weight: 600; }
