/* ========================================
   VIJAYPRO - Premium Plastic Products
   Theme: White | Royal Blue | Gold | Black
   IMPROVED MOBILE RESPONSIVE VERSION
======================================== */

:root {
  --blue: #1a3c8f;
  --blue-dark: #0f2660;
  --blue-light: #2a52b8;
  --gold: #d4a017;
  --gold-light: #f0c040;
  --gold-dark: #a87c10;
  --white: #ffffff;
  --off-white: #f8f9fc;
  --black: #111111;
  --text-dark: #1a1a2e;
  --text-gray: #555677;
  --border: #e2e6f0;
  --shadow: 0 4px 24px rgba(26,60,143,0.10);
  --shadow-lg: 0 8px 40px rgba(26,60,143,0.16);
  --radius: 14px;
  --radius-sm: 8px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Segoe UI', 'Inter', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }

/* ── UTILITIES ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.section { padding: 80px 0; }
.section-alt { background: var(--off-white); }

.badge {
  display: inline-block;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--black);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 14px;
}

.section-title {
  font-size: clamp(26px, 4vw, 40px);
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 14px;
  line-height: 1.2;
}
.section-title span { color: var(--gold); }

.section-sub {
  font-size: 17px;
  color: var(--text-gray);
  max-width: 620px;
}

.divider {
  width: 60px; height: 4px;
  background: linear-gradient(90deg, var(--blue), var(--gold));
  border-radius: 2px;
  margin: 18px 0 32px;
}
.divider-center { margin: 18px auto 32px; }

.text-center { text-align: center; }
.text-center .section-sub { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: all 0.3s ease;
  text-decoration: none;
  letter-spacing: 0.3px;
  min-height: 48px;
  flex-wrap: wrap;
}
.btn-primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(26,60,143,0.35);
}
.btn-primary:hover {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(26,60,143,0.45);
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  box-shadow: 0 4px 18px rgba(212,160,23,0.35);
}
.btn-gold:hover {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(212,160,23,0.45);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.8);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.btn-whatsapp {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(37,211,102,0.35);
}
.btn-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37,211,102,0.45);
}
.btn-call {
  background: linear-gradient(135deg, #ff6b35, #e55a2b);
  color: var(--white);
  box-shadow: 0 4px 18px rgba(255,107,53,0.35);
}
.btn-call:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(255,107,53,0.45);
}

/* ── TOP BAR ── */
.topbar {
  background: var(--blue-dark);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  padding: 8px 0;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
}
.topbar a { color: var(--gold-light); }
.topbar a:hover { color: var(--white); }
.topbar-left, .topbar-right {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar span { display: flex; align-items: center; gap: 5px; }

/* ── NAVBAR ── */
.navbar {
  background: var(--white);
  box-shadow: 0 2px 20px rgba(26,60,143,0.10);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow 0.3s;
}
.navbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.nav-logo img {
  height: 52px;
  width: auto;
  object-fit: contain;
}
.nav-logo-text {
  display: flex;
  flex-direction: column;
}
.nav-logo-text strong {
  font-size: 18px;
  color: var(--blue-dark);
  line-height: 1;
}
.nav-logo-text small {
  font-size: 11px;
  color: var(--gold-dark);
  font-weight: 600;
  letter-spacing: 0.5px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 8px;
  list-style: none;
}
.nav-links a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  color: var(--text-dark);
  transition: all 0.2s;
  position: relative;
}
.nav-links a:hover,
.nav-links a.active {
  color: var(--blue);
  background: rgba(26,60,143,0.07);
}
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 50%;
  transform: translateX(-50%);
  width: 24px; height: 3px;
  background: var(--gold);
  border-radius: 2px;
}
.nav-cta {
  display: flex;
  align-items: center;
  gap: 10px;
}
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2.5px;
  background: var(--blue-dark);
  border-radius: 2px;
  transition: 0.3s;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 480px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('../images/hero-banner.jpg');
  background-size: cover;
  background-position: center 40%;
  background-repeat: no-repeat;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(6,16,60,0.93) 0%,
    rgba(15,38,96,0.82) 50%,
    rgba(10,24,80,0.45) 100%
  );
}
.hero::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 45%;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(212,160,23,0.06) 100%);
  pointer-events: none;
  z-index: 1;
}
.hero .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 600px;
  padding: 60px 0;
  flex: 1;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(212,160,23,0.18);
  border: 1px solid rgba(212,160,23,0.45);
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 700;
  padding: 5px 16px;
  border-radius: 20px;
  margin-bottom: 16px;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}
.hero-title {
  font-size: clamp(30px, 5vw, 52px);
  font-weight: 900;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 10px;
}
.hero-title span { color: var(--gold-light); }
.hero-subtitle {
  font-size: clamp(14px, 2vw, 18px);
  color: rgba(255,255,255,0.8);
  font-weight: 600;
  margin-bottom: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.hero-desc {
  font-size: 15px;
  color: rgba(255,255,255,0.72);
  max-width: 520px;
  margin-bottom: 28px;
  line-height: 1.7;
}
.hero-btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero-cards {
  position: relative; z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  flex-shrink: 0;
  width: 340px;
}
.hero-card {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 14px;
  padding: 16px 14px;
  text-align: center;
  transition: 0.3s;
}
.hero-card:hover {
  background: rgba(255,255,255,0.18);
  transform: translateY(-3px);
}
.hero-card .hc-icon { font-size: 28px; margin-bottom: 8px; }
.hero-card strong {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: white;
  line-height: 1.3;
}
.hero-stats {
  position: relative; z-index: 2;
  display: flex;
  gap: 28px;
  margin-top: 32px;
  padding-top: 22px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.hero-stat strong {
  display: block;
  font-size: 26px;
  font-weight: 900;
  color: var(--gold-light);
  line-height: 1;
}
.hero-stat span { font-size: 12px; color: rgba(255,255,255,0.65); margin-top: 2px; display: block; }

/* ── MARQUEE ── */
.marquee-bar {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: var(--white);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 30s linear infinite;
  gap: 0;
}
.marquee-track span {
  font-size: 14px;
  font-weight: 600;
  padding: 0 32px;
  letter-spacing: 0.3px;
}
.marquee-track .dot {
  color: var(--gold-light);
  font-size: 18px;
  padding: 0;
}
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* ── ABOUT STRIP ── */
.about-strip .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.about-img {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-img img {
  width: 100%; height: 380px;
  object-fit: cover;
}
.about-img::before {
  content: '';
  position: absolute;
  top: -12px; left: -12px;
  width: 120px; height: 120px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 50%;
  z-index: -1;
  opacity: 0.3;
}
.about-year {
  position: absolute;
  bottom: 20px; left: 20px;
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  color: var(--white);
  padding: 12px 20px;
  border-radius: 10px;
  text-align: center;
  box-shadow: var(--shadow);
}
.about-year strong { display: block; font-size: 28px; font-weight: 900; color: var(--gold-light); }
.about-year span { font-size: 12px; }
.checks { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-top: 20px; }
.checks li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--text-dark);
  font-weight: 500;
}
.checks li::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px; height: 22px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white;
  border-radius: 50%;
  font-size: 12px;
  font-weight: 800;
  flex-shrink: 0;
}

/* ── CATEGORY CARDS ── */
.categories-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.cat-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 24px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}
.cat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--blue);
}
.cat-icon {
  width: 72px; height: 72px;
  margin: 0 auto 18px;
  background: linear-gradient(135deg, rgba(26,60,143,0.1), rgba(26,60,143,0.05));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  transition: 0.3s;
}
.cat-card:hover .cat-icon {
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
}
.cat-card h3 { font-size: 16px; font-weight: 700; color: var(--blue-dark); margin-bottom: 8px; }
.cat-card p { font-size: 13px; color: var(--text-gray); }

/* ── PRODUCT CARDS ── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}
.product-card {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: 0 2px 16px rgba(26,60,143,0.08);
  transition: all 0.35s cubic-bezier(.25,.8,.25,1);
  display: flex;
  flex-direction: column;
}
.product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 48px rgba(26,60,143,0.16);
  border-color: rgba(26,60,143,0.2);
}
.product-img {
  position: relative;
  height: 240px;
  overflow: hidden;
  background: linear-gradient(135deg, #f0f4ff, #f8f9fc);
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: contain;
  transition: transform 0.45s cubic-bezier(.25,.8,.25,1);
  padding: 16px;
}
.product-card:hover .product-img img { transform: scale(1.08); }
.product-img::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 60px;
  background: linear-gradient(to top, rgba(248,249,252,0.9), transparent);
  pointer-events: none;
}
.product-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  color: var(--white);
  font-size: 10px;
  font-weight: 800;
  padding: 4px 12px;
  border-radius: 20px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  box-shadow: 0 2px 8px rgba(168,124,16,0.35);
  z-index: 2;
}
.product-tag.tag-new {
  background: linear-gradient(135deg, #00897b, #00bfa5);
  box-shadow: 0 2px 8px rgba(0,191,165,0.35);
}
.product-tag.tag-popular {
  background: linear-gradient(135deg, #6a1b9a, #9c27b0);
  box-shadow: 0 2px 8px rgba(154,39,176,0.35);
}
.product-dots {
  position: absolute;
  bottom: 14px; right: 14px;
  display: flex; gap: 5px;
  z-index: 2;
}
.product-dots span {
  width: 14px; height: 14px;
  border-radius: 50%;
  border: 2px solid white;
  box-shadow: 0 1px 4px rgba(0,0,0,0.25);
  cursor: pointer;
  transition: 0.2s;
}
.product-dots span:hover { transform: scale(1.3); }
.product-body {
  padding: 20px 22px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.product-body h3 {
  font-size: 17px;
  font-weight: 800;
  color: var(--blue-dark);
  margin-bottom: 6px;
  line-height: 1.3;
}
.product-body p {
  font-size: 13px;
  color: var(--text-gray);
  margin-bottom: 14px;
  line-height: 1.6;
  flex: 1;
}
.product-features {
  list-style: none;
  margin-bottom: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.product-features li {
  font-size: 11px;
  background: rgba(26,60,143,0.07);
  color: var(--blue);
  padding: 3px 10px;
  border-radius: 20px;
  font-weight: 600;
}
.product-actions {
  display: flex;
  gap: 8px;
  margin-top: auto;
}
.product-actions .btn {
  flex: 1;
  justify-content: center;
  font-size: 12.5px;
  padding: 10px 12px;
  border-radius: 10px;
}

/* ── COLOUR SWATCHES ── */
.colour-swatches { display: flex; gap: 8px; margin-bottom: 14px; align-items: center; flex-wrap: wrap; }
.colour-swatches span { font-size: 12px; color: var(--text-gray); margin-right: 4px; }
.swatch {
  width: 22px; height: 22px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.12);
  cursor: pointer;
  transition: 0.2s;
}
.swatch:hover { transform: scale(1.25); }

/* ── HIGHLIGHTS ── */
.highlights-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
  margin-top: 48px;
}
.highlight-card {
  text-align: center;
  padding: 32px 20px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: 0.3s;
}
.highlight-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.highlight-icon { font-size: 36px; margin-bottom: 14px; }
.highlight-card strong {
  display: block;
  font-size: 22px;
  font-weight: 800;
  color: var(--blue);
  margin-bottom: 6px;
}
.highlight-card p { font-size: 13px; color: var(--text-gray); }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--blue-dark) 0%, var(--blue) 60%, var(--blue-light) 100%);
  padding: 70px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 300px; height: 300px;
  background: rgba(212,160,23,0.12);
  border-radius: 50%;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -80px; left: -80px;
  width: 300px; height: 300px;
  background: rgba(212,160,23,0.08);
  border-radius: 50%;
}
.cta-banner h2 {
  font-size: clamp(26px, 4vw, 40px);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 14px;
  position: relative; z-index: 1;
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  margin-bottom: 32px;
  position: relative; z-index: 1;
}
.cta-banner .btns {
  display: flex;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  position: relative; z-index: 1;
}

/* ── ART FRAME BANNER (homepage promo) ── */
.art-frame-promo {
  padding: 60px 0;
  background: linear-gradient(135deg, #fff8e6, #fffdf0);
}
.art-frame-promo .container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}
.art-frame-promo img {
  width: 100%;
  max-width: 1000px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  border: 2px solid rgba(212,160,23,0.2);
}
.art-frame-promo-text { text-align: center; }

/* ── FOOTER ── */
.footer {
  background: #D4A017 !important;
  color: rgba(255,255,255,0.8);
  padding: 60px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 40px;
  padding-bottom: 48px;
}
.footer-brand img {
  height: 54px;
  width: auto;
  margin-bottom: 16px;
  filter: brightness(1.1);
}
.footer-brand p { font-size: 14px; line-height: 1.7; margin-bottom: 20px; color: black; }
.footer h4 {
  color: var(--black);
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(212,160,23,0.3);
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 10px; }
.footer ul li a {
  color: black;
  font-size: 14px;
  transition: 0.2s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.footer ul li a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 14px;
  font-size: 14px;
  color: black;
}
.footer-contact .icon {
  min-width: 20px;
  color: var(--black);
  font-size: 16px;
  margin-top: 1px;
}
.footer-social { display: flex; gap: 10px; margin-top: 16px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  transition: 0.3s;
  color: var(--black);
}
.footer-social a:hover { background: var(--gold); color: var(--black); transform: translateY(-3px); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 20px 0;
  text-align: center;
  font-size: 13px;
  color: black;
}
.footer-bottom span { color: var(--black); }

/* ── WHATSAPP FLOAT ── */
.whatsapp-float {
  position: fixed;
  bottom: 30px; right: 30px;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 12px;
}
.whatsapp-float a {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 14px 20px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 14px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.5);
  transition: 0.3s;
  text-decoration: none;
  min-height: 48px;
}
.whatsapp-float a:hover { transform: scale(1.05); box-shadow: 0 6px 28px rgba(37,211,102,0.6); }
.whatsapp-float svg { width: 24px; height: 24px; fill: white; flex-shrink: 0; }
.wa-pulse {
  position: absolute;
  top: -4px; right: -4px;
  width: 14px; height: 14px;
  background: #ff4444;
  border-radius: 50%;
  border: 2px solid white;
  animation: pulse 1.5s infinite;
}
@keyframes pulse {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

/* ── PAGE HERO ── */
.page-hero {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  padding: 60px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  top: -60px; right: -60px;
  width: 260px; height: 260px;
  background: rgba(212,160,23,0.1);
  border-radius: 50%;
}
.page-hero h1 {
  font-size: clamp(28px, 5vw, 48px);
  color: var(--white);
  font-weight: 800;
  margin-bottom: 12px;
  position: relative; z-index: 1;
}
.page-hero p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  position: relative; z-index: 1;
}
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 16px;
  font-size: 13px;
  position: relative; z-index: 1;
  flex-wrap: wrap;
}
.breadcrumb a { color: var(--gold-light); }
.breadcrumb span { color: rgba(255,255,255,0.5); }

/* ── PRODUCT DETAIL PAGE ── */
.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}
.product-gallery { 
  position: sticky; 
  top: 90px;
}
.product-gallery-main {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: linear-gradient(135deg, #f0f4ff, #f8f9fc);
  height: 420px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  box-shadow: 0 4px 24px rgba(26,60,143,0.08);
}
.product-gallery-main img { max-height: 100%; object-fit: contain; padding: 20px; transition: 0.3s; }
.product-gallery-thumbs { 
  display: flex; 
  gap: 8px; 
  flex-wrap: wrap; 
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 8px;
}
.product-gallery-thumbs img {
  width: 70px; 
  height: 70px;
  object-fit: contain;
  border-radius: 10px;
  border: 2px solid var(--border);
  cursor: pointer;
  padding: 4px;
  background: var(--off-white);
  transition: 0.2s;
  flex-shrink: 0;
}
.product-gallery-thumbs img:hover,
.product-gallery-thumbs img.active { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(26,60,143,0.12); }

/* ── PRODUCT SECTION HEADER (products page) ── */
.product-section-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  margin-bottom: 10px;
}
.product-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white;
  font-size: 16px;
  font-weight: 900;
  border-radius: 50%;
  flex-shrink: 0;
}
.product-section-title {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 6px;
}

/* ── COLOUR TABS ── */
.colour-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin: 16px 0;
}
.colour-tab {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 16px 7px 10px;
  border-radius: 30px;
  border: 2px solid var(--border);
  background: white;
  cursor: pointer;
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  transition: 0.2s;
  white-space: nowrap;
}
.colour-tab:hover { border-color: var(--blue); background: rgba(26,60,143,0.04); }
.colour-tab.active { border-color: var(--blue); background: rgba(26,60,143,0.08); color: var(--blue); }
.colour-tab .dot {
  width: 18px; height: 18px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.15);
  flex-shrink: 0;
}

.product-info h1 { font-size: 28px; font-weight: 800; color: var(--blue-dark); margin-bottom: 10px; }
.product-info h2 { font-size: 24px; font-weight: 800; color: var(--blue-dark); margin-bottom: 10px; }
.product-info .tagline { font-size: 15px; color: var(--text-gray); margin-bottom: 20px; }
.features-list { list-style: none; margin: 20px 0; }
.features-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 15px;
}
.features-list li::before {
  content: '✓';
  display: inline-flex; align-items: center; justify-content: center;
  width: 24px; height: 24px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  color: white;
  border-radius: 50%;
  font-size: 13px; font-weight: 800;
  flex-shrink: 0;
  min-width: 24px;
}
.inquiry-box {
  background: linear-gradient(135deg, var(--off-white), white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  margin-top: 28px;
}
.inquiry-box h3 { font-size: 17px; color: var(--blue-dark); margin-bottom: 16px; font-weight: 700; }
.inquiry-box .btns { display: flex; gap: 12px; flex-wrap: wrap; }

/* ── ABOUT PAGE ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}
.mvv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}
.mvv-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 24px;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.mvv-card .icon { font-size: 40px; margin-bottom: 16px; }
.mvv-card h3 { font-size: 18px; font-weight: 700; color: var(--blue-dark); margin-bottom: 12px; }
.mvv-card p { font-size: 14px; color: var(--text-gray); line-height: 1.7; }
.values-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.value-item {
  text-align: center;
  padding: 24px 16px;
  border-radius: var(--radius);
  background: var(--white);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.value-item .icon { font-size: 32px; margin-bottom: 12px; }
.value-item strong { font-size: 14px; color: var(--blue-dark); font-weight: 700; }
.mfg-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 40px;
}
.mfg-item {
  background: linear-gradient(135deg, var(--blue-dark), var(--blue));
  border-radius: var(--radius);
  padding: 24px 16px;
  text-align: center;
  color: white;
}
.mfg-item .icon { font-size: 30px; margin-bottom: 12px; }
.mfg-item strong { font-size: 14px; font-weight: 700; }

/* ── CONTACT PAGE ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 50px;
  align-items: start;
}
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 24px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  margin-bottom: 16px;
}
.contact-info-icon {
  width: 52px; height: 52px;
  min-width: 52px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), var(--blue-light));
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  color: white;
}
.contact-info-card h4 { font-size: 15px; color: var(--blue-dark); font-weight: 700; margin-bottom: 6px; }
.contact-info-card p,
.contact-info-card a { font-size: 14px; color: var(--text-gray); line-height: 1.6; }
.contact-info-card a:hover { color: var(--blue); }

/* ── FORM ── */
.contact-form { background: var(--white); border-radius: var(--radius); padding: 36px; border: 1px solid var(--border); box-shadow: var(--shadow); }
.contact-form h3 { font-size: 22px; font-weight: 700; color: var(--blue-dark); margin-bottom: 24px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-dark); margin-bottom: 6px; }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 14px;
  color: var(--text-dark);
  font-family: inherit;
  outline: none;
  transition: 0.2s;
  background: var(--off-white);
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--blue); background: white; box-shadow: 0 0 0 3px rgba(26,60,143,0.08); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  background: linear-gradient(135deg, #e6f9f0, #f0fff8);
  border: 1px solid #25d366;
  border-radius: var(--radius-sm);
  padding: 16px;
  text-align: center;
  color: #1a7a44;
  font-weight: 600;
  margin-top: 16px;
}
.map-embed {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  margin-top: 40px;
}
.map-embed iframe { width: 100%; height: 300px; border: none; display: block; }

/* ══════════════════════════════════════════════════════
   IMPROVED RESPONSIVE DESIGN - MOBILE FIRST UPDATES
══════════════════════════════════════════════════════ */

/* ── TABLET & SMALL DESKTOP (1100px) ── */
@media (max-width: 1100px) {
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: repeat(3, 1fr); }
  .values-grid, .mfg-grid { grid-template-columns: repeat(3, 1fr); }
  .product-detail-grid { gap: 40px; }
}

/* ── MEDIUM TABLETS (900px) ── */
@media (max-width: 900px) {
  .section { padding: 60px 0; }
  .about-strip .container,
  .about-grid,
  .product-detail-grid,
  .contact-grid { 
    grid-template-columns: 1fr; 
    gap: 36px; 
  }
  .product-gallery { 
    position: static; 
    top: auto;
  }
  .products-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .mvv-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 24px; }
  .hero .container { 
    flex-direction: column;
    gap: 32px;
  }
  .hero-cards { 
    width: 100%;
    max-width: 340px;
  }
  .cta-banner {
    padding: 50px 0;
  }
}

/* ── MOBILE (768px) ── */
@media (max-width: 768px) {
        .mvv-grid {
        grid-template-columns: 1fr;
    }
  .topbar-left { display: none; }
  .nav-links, .nav-cta .btn-primary { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: white;
    padding: 16px 20px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    z-index: 999;
    gap: 4px;
  }
  
  .d-none-mob { display: none; }
  .section { padding: 50px 0; }
  .products-grid { grid-template-columns: 1fr; }
  
  /* Hero improvements */
  .hero { 
    min-height: 480px; 
    padding: 40px 0;
  }
  .hero-content {
    padding: 40px 0;
  }
  .hero-stats { 
    flex-wrap: wrap; 
    gap: 16px;
  }
  .hero-btns { flex-direction: column; gap: 10px; }
  .hero-btns .btn { width: 100%; }
  
  /* Product detail page */
  .product-detail-grid {
    gap: 32px;
  }
  .product-gallery-main {
    height: 320px;
  }
  .product-gallery-thumbs {
    max-width: 100%;
  }
  .product-info h1,
  .product-info h2 {
    font-size: 22px;
  }
  .features-list li {
    font-size: 14px;
    padding: 10px 0;
  }
  .inquiry-box {
    padding: 20px;
    margin-top: 20px;
  }
  .inquiry-box h3 {
    font-size: 16px;
    margin-bottom: 12px;
  }
  .inquiry-box .btns {
    gap: 8px;
  }
  .inquiry-box .btn {
    font-size: 12px;
    padding: 10px 14px;
  }
  
  /* Colour variants grid - responsive columns */
  .product-variants-grid {
    grid-template-columns: repeat(4, 1fr) !important;
  }
  
  /* Categories and grids */
  .categories-grid { grid-template-columns: repeat(2, 1fr); }
  .highlights-grid { grid-template-columns: repeat(2, 1fr); }
  .values-grid { grid-template-columns: repeat(2, 1fr); }
  .mfg-grid { grid-template-columns: repeat(2, 1fr); }
  
  /* Form improvements */
  .form-row { grid-template-columns: 1fr; }
  .contact-grid { 
    grid-template-columns: 1fr;
    gap: 30px;
  }
  
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  
  /* Buttons */
  .btn {
    font-size: 14px;
    padding: 12px 24px;
    min-height: 44px;
  }
  .btn-whatsapp { font-size: 13px; }
  
  /* CTA Banner */
  .cta-banner {
    padding: 40px 0;
  }
  .cta-banner h2 {
    font-size: 28px;
  }
  .cta-banner .btns {
    gap: 12px;
  }
  
  /* Page hero */
  .page-hero {
    padding: 40px 0;
  }
  .page-hero h1 {
    font-size: 32px;
    margin-bottom: 10px;
  }
}

/* ── SMALL MOBILE (480px) ── */
@media (max-width: 480px) {
  .section { padding: 40px 0; }
  .container { padding: 0 16px; }
  
  .categories-grid { grid-template-columns: 1fr; }
  .highlights-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .mfg-grid { grid-template-columns: 1fr; }
  
  /* Hero */
  .hero { 
    min-height: 400px;
    padding: 30px 0;
  }
  .hero-content {
    padding: 30px 0;
  }
  .hero-title {
    font-size: 28px;
  }
  .hero-cards { 
    grid-template-columns: 1fr;
    gap: 10px;
    width: 100%;
  }
  
  /* Product detail */
  .product-gallery-main {
    height: 280px;
    margin-bottom: 12px;
  }
  .product-info h1,
  .product-info h2 {
    font-size: 20px;
  }
  .product-info .tagline {
    font-size: 14px;
  }
  .features-list li {
    font-size: 13px;
    padding: 8px 0;
    gap: 8px;
  }
  .inquiry-box {
    padding: 16px;
    margin-top: 16px;
  }
  .inquiry-box h3 {
    font-size: 15px;
    margin-bottom: 10px;
  }
  .inquiry-box .btn {
    font-size: 11px;
    padding: 9px 12px;
    min-height: 40px;
  }
  
  /* Colour variants grid - smaller for mobile */
  .product-variants-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 8px !important;
  }
  
  /* Buttons */
  .btn { 
    justify-content: center;
    font-size: 13px;
    padding: 11px 18px;
    min-height: 40px;
  }
  .btn-whatsapp {
    font-size: 12px;
    padding: 10px 16px;
  }
  
  /* WhatsApp float button */
  .whatsapp-float { bottom: 20px; right: 16px; }
  .whatsapp-float a span { display: none; }
  .whatsapp-float a { 
    padding: 12px; 
    border-radius: 50%; 
    width: 56px;
    height: 56px;
  }
  
  /* CTA Banner */
  .cta-banner {
    padding: 30px 0;
  }
  .cta-banner h2 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .cta-banner p {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .cta-banner .btns {
    flex-direction: column;
    gap: 10px;
  }
  .cta-banner .btn {
    width: 100%;
  }
  
  /* Page hero */
  .page-hero {
    padding: 30px 0;
  }
  .page-hero h1 {
    font-size: 26px;
  }
  .page-hero p {
    font-size: 15px;
  }
  .breadcrumb {
    font-size: 12px;
  }
  
  /* Footer */
  .footer-grid { grid-template-columns: 1fr; }
  .footer { padding: 40px 0 0; }
  .footer h4 {
    font-size: 15px;
    margin-bottom: 16px;
  }
  .footer ul li a {
    font-size: 13px;
  }
  
  /* Contact form */
  .contact-form {
    padding: 20px;
  }
  .contact-form h3 {
    font-size: 18px;
    margin-bottom: 16px;
  }
  .contact-info-card {
    padding: 16px;
    margin-bottom: 12px;
  }
  
  /* Colour tabs */
  .colour-tab {
    font-size: 12px;
    padding: 6px 12px 6px 8px;
  }
  
  /* Gallery thumbs */
  .product-gallery-thumbs img {
    width: 60px;
    height: 60px;
  }
  
  /* Section title */
  .section-title {
    font-size: 24px;
  }
  
  /* Navbar */
  .navbar .container {
    height: 64px;
  }
  .nav-logo img {
    height: 44px;
  }
  .nav-logo-text strong {
    font-size: 16px;
  }
}

/* ── EXTRA SMALL (Below 375px) ── */
@media (max-width: 374px) {
  .container { padding: 0 12px; }
  
  .btn {
    font-size: 12px;
    padding: 10px 16px;
    min-height: 38px;
  }
  
  .product-gallery-main {
    height: 240px;
  }
  
  .product-info h1,
  .product-info h2 {
    font-size: 18px;
  }
  
  .features-list li {
    font-size: 12px;
  }
  
  .section-title {
    font-size: 22px;
  }
  
  .page-hero h1 {
    font-size: 24px;
  }
  
  .colour-tab {
    font-size: 11px;
    padding: 5px 10px 5px 6px;
  }
  
  .product-variants-grid {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}