:root {
  --blue: #075ff7;
  --orange: #ff6900;
  --teal: #27bdb5;
  --ink: #1b1b1f;
  --muted: #5f6673;
  --line: #e5e7eb;
  --soft: #f5f5f7;
  --white: #ffffff;
  --green: #16a34a;
}
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { color: var(--ink); font-family: Inter, Arial, sans-serif; background: var(--soft); }
a { color: inherit; text-decoration: none; }
button, input, select { font: inherit; }
img { display: block; max-width: 100%; }

/* HEADER */
.store-header {
  position: sticky; top: 0; z-index: 100;
  display: flex; height: 68px; align-items: center;
  justify-content: space-between; gap: 24px; padding: 0 48px;
  background: var(--white); border-bottom: 1px solid var(--line);
  box-shadow: 0 1px 10px rgba(0,0,0,0.06);
}
.brand { display: flex; align-items: center; gap: 10px; min-width: max-content; }
.brand-icon {
  display: grid; width: 40px; height: 40px; place-items: center;
  background: var(--blue); border-radius: 10px;
}
.brand-icon svg { width: 32px; }
.brand-name { color: var(--blue); font-size: 16px; font-weight: 900; text-transform: uppercase; letter-spacing: 0.5px; }
.main-nav { display: flex; flex: 1; justify-content: center; gap: clamp(20px, 3vw, 60px); font-size: 15px; font-weight: 500; }
.main-nav a { color: #25262a; padding: 4px 0; border-bottom: 2px solid transparent; transition: color 180ms, border-color 180ms; }
.main-nav a:hover { color: var(--orange); border-color: var(--orange); }
.header-actions { display: flex; align-items: center; gap: 16px; }
.search-wrap { position: relative; }
.header-search {
  width: 220px; padding: 8px 14px; border: 1px solid var(--line);
  border-radius: 20px; background: var(--soft); font-size: 14px;
  transition: width 250ms, border-color 200ms;
}
.header-search:focus { outline: none; border-color: var(--blue); width: 260px; }
.search-dropdown {
  position: absolute; top: calc(100% + 6px); left: 0; right: 0;
  background: var(--white); border: 1px solid var(--line); border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.12); display: none; z-index: 200; overflow: hidden;
}
.search-dropdown.open { display: block; }
.search-result-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; cursor: pointer; border-bottom: 1px solid var(--line);
}
.search-result-item:last-child { border-bottom: 0; }
.search-result-item:hover { background: var(--soft); }
.search-result-item img { width: 40px; height: 34px; object-fit: contain; border-radius: 4px; }
.search-result-item span { font-size: 13px; font-weight: 600; }
.header-actions button {
  display: grid; width: 34px; height: 34px; place-items: center;
  background: transparent; border: 0; cursor: pointer; color: var(--ink);
}
.header-actions svg { width: 24px; height: 24px; fill: none; stroke: currentColor; stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }

/* BREADCRUMB */
.breadcrumb {
  display: none; align-items: center; gap: 6px;
  max-width: 1320px; margin: 0 auto; padding: 12px 20px 0;
  font-size: 13px; color: var(--muted);
}
.breadcrumb.visible { display: flex; }
.breadcrumb a { color: var(--teal); cursor: pointer; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span::before { content: '›'; margin-right: 6px; }

/* SPA PAGE SYSTEM */
.page { display: none; }
.page.active { display: block; }

/* HERO */
.mi-hero {
  position: relative; height: clamp(500px, calc(100vh - 68px), 720px);
  overflow: hidden; background: #05070f;
}
.slides, .slide { position: absolute; inset: 0; }
.slide { display: grid; place-items: center; opacity: 0; transition: opacity 650ms ease; }
.slide.active { opacity: 1; z-index: 1; }
.slide-bg {
  position: absolute; inset: -24px;
  width: calc(100% + 48px); height: calc(100% + 48px);
  object-fit: cover; filter: blur(18px); opacity: 0.65;
}
.slide-main {
  position: relative; z-index: 2; width: 100%; height: 100%;
  object-fit: contain; object-position: center;
  filter: drop-shadow(0 28px 40px rgba(0,0,0,0.22));
}
.slide-video {
  position: absolute; inset: 0; z-index: 1;
  width: 100%; height: 100%; object-fit: cover; background: #000;
}
.slide-caption {
  position: absolute; left: 0; right: 0; bottom: 0; z-index: 2;
  padding: 90px 56px 48px;
  background: linear-gradient(0deg, rgba(0,0,0,0.72) 0%, rgba(0,0,0,0.32) 55%, rgba(0,0,0,0) 100%);
  color: var(--white);
}
.slide-caption span {
  display: inline-block; margin-bottom: 8px;
  color: var(--orange); font-weight: 700; font-size: 13px;
  letter-spacing: 0.06em; text-transform: uppercase;
}
.slide-caption h3 { font-size: clamp(22px, 3vw, 36px); font-weight: 800; max-width: 640px; line-height: 1.2; }
.hero-arrow {
  position: absolute; top: 50%; z-index: 3; transform: translateY(-50%);
  display: grid; width: 48px; height: 48px; place-items: center;
  color: rgba(255,255,255,0.92); background: rgba(255,255,255,0.2);
  border: 0; border-radius: 12px; font-size: 42px; line-height: 1; cursor: pointer;
  transition: background 180ms;
}
.hero-arrow:hover { background: rgba(255,255,255,0.35); }
.hero-prev { left: 56px; }
.hero-next { right: 56px; }
.hero-progress {
  position: absolute; left: 50%; bottom: 24px; z-index: 4;
  display: flex; gap: 14px; transform: translateX(-50%);
}
.hero-progress button {
  position: relative; width: 60px; height: 3px;
  overflow: hidden; background: rgba(255,255,255,0.4); border: 0; cursor: pointer;
}
.hero-progress button::before {
  position: absolute; inset: 0 auto 0 0; width: 0; content: "";
  background: var(--orange);
}
.hero-progress button.active::before { animation: progress 5.5s linear forwards; }
@keyframes progress { to { width: 100%; } }

/* CATEGORY CHIPS */
.category-chips {
  display: flex; justify-content: center; gap: 16px; flex-wrap: wrap;
  max-width: 1320px; margin: 20px auto 0; padding: 0 20px;
}
.chip {
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  padding: 18px 28px; background: var(--white); border-radius: 12px;
  border: 2px solid transparent; font-size: 14px; font-weight: 700; color: var(--ink);
  transition: border-color 180ms, transform 180ms, box-shadow 180ms;
  min-width: 110px; cursor: pointer;
}
.chip:hover { border-color: var(--blue); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(7,95,247,0.1); }
.chip-icon { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; }
.chip-icon img { width: 56px; height: 56px; object-fit: contain; }

/* QUICK STRIP */
.quick-strip {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 1px; max-width: 1320px; margin: 16px auto 0; padding: 0 20px;
}
.quick-strip div {
  display: grid; gap: 4px; padding: 18px 24px;
  background: var(--white); min-height: 88px; align-content: center;
}
.quick-strip strong { color: #111827; font-size: 20px; font-weight: 900; }
.quick-strip span { color: var(--muted); font-size: 13px; font-weight: 700; }

/* FEATURED */
.featured-products { max-width: 1320px; margin: 0 auto; padding: 44px 20px 24px; }
.featured-products h2 { text-align: center; font-size: clamp(26px, 3vw, 38px); margin-bottom: 24px; font-weight: 900; }
.featured-tabs { display: flex; justify-content: center; gap: clamp(20px, 4vw, 52px); margin-bottom: 24px; }
.featured-tabs button {
  position: relative; padding: 0 0 16px; background: transparent; border: 0;
  font-size: 15px; font-weight: 800; color: #111827; cursor: pointer;
}
.featured-tabs button::after {
  position: absolute; right: 0; bottom: 0; left: 0; height: 2px;
  content: ""; background: transparent; transition: background 200ms;
}
.featured-tabs button.active { color: var(--orange); }
.featured-tabs button.active::after { background: var(--orange); }
.featured-shell {
  display: grid; grid-template-columns: 1.1fr 1fr; gap: 0;
  overflow: hidden; background: var(--white); border-radius: 10px;
}
.featured-hero { position: relative; min-height: 380px; overflow: hidden; background: #f8fafc; }
.featured-hero img { width: 100%; height: 100%; object-fit: cover; object-position: center; display: block; }
.featured-hero-copy {
  position: absolute; right: 20px; bottom: 20px; left: 20px;
  display: grid; gap: 10px; padding: 20px;
  color: var(--white); background: rgba(0,0,0,0.64); border-radius: 8px;
}
.featured-hero-copy h3 { margin: 0; font-size: 22px; line-height: 1.15; }
.featured-hero-copy p { margin: 0; color: rgba(255,255,255,0.75); font-size: 13px; }
.featured-hero-copy button {
  min-height: 38px; padding: 0 18px; color: var(--white);
  background: #16171b; border: 0; border-radius: 7px; font-weight: 800; cursor: pointer;
  transition: background 180ms;
}
.featured-hero-copy button:hover { background: var(--orange); }
.featured-card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; padding: 16px; }
.featured-card {
  position: relative; display: grid; align-content: start;
  padding: 16px; text-align: center; background: #fbfbfb;
  border: 1px solid transparent; border-radius: 8px; cursor: pointer;
  transition: border-color 180ms, transform 180ms, box-shadow 180ms;
}
.featured-card:hover { border-color: #d7dde7; box-shadow: 0 8px 24px rgba(0,0,0,0.07); transform: translateY(-2px); }
.featured-card img { width: 100%; height: 120px; object-fit: contain; }
.featured-card h3 { margin: 10px 0 6px; font-size: 14px; font-weight: 700; line-height: 1.3; }

/* HOME CATALOG */
.home-catalog-section { max-width: 1320px; margin: 0 auto; padding: 0 20px; }
.catalog-block { background: var(--white); border-radius: 10px; padding: 24px; margin-top: 20px; }
.catalog-head {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--line);
}
.catalog-head h2 {
  position: relative; font-size: 22px; font-weight: 900; padding-bottom: 10px; text-transform: uppercase;
  color: #47505f; letter-spacing: 0;
}
.catalog-head h2::after {
  position: absolute; bottom: 0; left: 0; width: 80px; height: 2px;
  content: ""; background: var(--teal);
}
.see-all { color: var(--teal); font-size: 14px; font-weight: 700; }
.see-all:hover { text-decoration: underline; }
.catalog-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* PRODUCT CARDS (shared catalog-card style) */
.catalog-card, .grid-card {
  position: relative; display: flex; flex-direction: column;
  background: var(--white); border: 1px solid var(--line);
  border-radius: 10px; overflow: hidden; cursor: pointer;
  transition: border-color 180ms, transform 180ms, box-shadow 180ms;
}
.catalog-card:hover, .grid-card:hover {
  border-color: #c5cdd9; box-shadow: 0 12px 32px rgba(17,24,39,0.1);
  transform: translateY(-3px);
}
.card-image {
  position: relative; background: #f8f8f8;
  display: flex; align-items: center; justify-content: center;
  height: 200px; overflow: hidden;
}
.card-image img { width: 100%; height: 100%; object-fit: contain; padding: 10px; }
.discount-badge {
  position: absolute; top: 10px; left: 0;
  display: inline-flex; padding: 5px 9px;
  color: var(--white); background: #52bc72;
  border-radius: 0 4px 4px 0; font-size: 12px; font-weight: 800; z-index: 1;
}
.card-body { padding: 14px 16px 16px; display: flex; flex-direction: column; gap: 8px; flex: 1; }
.card-brand { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.5px; }
.card-name { font-size: 15px; font-weight: 700; line-height: 1.35; color: var(--ink); }
.card-rating { display: flex; align-items: center; gap: 6px; }
.stars { color: #ff9b00; font-size: 14px; }
.review-count { color: var(--muted); font-size: 12px; }
.card-price { display: flex; align-items: baseline; gap: 8px; margin-top: auto; }
.card-price strong { font-size: 18px; font-weight: 900; color: var(--teal); }
.card-price del { font-size: 14px; color: #b0b9c6; }
.card-price .save-pct { font-size: 12px; font-weight: 700; color: #52bc72; }
.quick-view-btn {
  margin-top: 10px; padding: 8px 0; text-align: center;
  font-size: 13px; font-weight: 700; color: var(--teal);
  border-top: 1px solid var(--line);
}

/* PRICE shared */
.price { display: flex; align-items: baseline; gap: 6px; color: var(--teal); font-size: 17px; font-weight: 900; }
.price del { color: #b0b9c6; font-weight: 400; font-size: 14px; }

/* BRAND STRIP */
.brand-strip {
  max-width: 1320px; margin: 20px auto 0; padding: 20px;
  background: var(--white); border-radius: 10px; text-align: center;
}
.brand-strip p { font-size: 11px; font-weight: 700; text-transform: uppercase; color: var(--muted); margin-bottom: 14px; letter-spacing: 1px; }
.brand-logos { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; }
.brand-logos span {
  padding: 8px 18px; border: 1px solid var(--line); border-radius: 6px;
  font-size: 14px; font-weight: 800; color: #374151;
}

/* SERVICE BAND */
.service-band {
  display: flex; align-items: center; justify-content: space-between; gap: 28px;
  max-width: 1320px; margin: 20px auto 0; padding: 40px 44px;
  background: linear-gradient(135deg, #071023, #0b2b67);
  border-radius: 12px; color: var(--white);
}
.service-band span { color: #ffcf7a; font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; }
.service-band h2 { max-width: 640px; margin: 10px 0 8px; font-size: clamp(24px, 2.5vw, 36px); line-height: 1.1; }
.service-band p { color: rgba(255,255,255,0.7); line-height: 1.6; max-width: 680px; }
.service-band a {
  display: inline-flex; min-height: 46px; align-items: center;
  padding: 0 24px; background: var(--orange); color: var(--white);
  border-radius: 8px; font-weight: 800; white-space: nowrap;
  transition: background 180ms;
}
.service-band a:hover { background: #d95a00; }

/* ENQUIRY */
.enquiry-section {
  display: grid; grid-template-columns: 1fr 0.8fr; gap: 48px;
  max-width: 1320px; margin: 20px auto 0; padding: 44px;
  background: var(--white); border-radius: 12px;
}
.enquiry-section span { color: var(--orange); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px; }
.enquiry-section h2 { margin: 10px 0 12px; font-size: clamp(22px, 2.5vw, 34px); line-height: 1.1; }
.enquiry-section p { color: var(--muted); line-height: 1.65; margin-bottom: 20px; }
.contact-info { display: grid; gap: 10px; }
.contact-row { font-size: 15px; color: #374151; }
.enquiry-form { display: grid; gap: 14px; }
.enquiry-form label { display: grid; gap: 6px; color: #374151; font-size: 13px; font-weight: 700; }
.enquiry-form input, .enquiry-form select {
  padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px;
  background: #fafafa; font-size: 15px; color: var(--ink);
  transition: border-color 200ms;
}
.enquiry-form input:focus, .enquiry-form select:focus { outline: none; border-color: var(--blue); }
.enquiry-submit {
  min-height: 46px; padding: 0 24px; background: var(--orange); color: var(--white);
  border: 0; border-radius: 8px; font-size: 15px; font-weight: 800; cursor: pointer;
  transition: background 180ms;
}
.enquiry-submit:hover { background: #d95a00; }
.enquiry-form .enquiry-status { min-height: 18px; margin: 0; font-size: 13px; color: var(--muted); }
.enquiry-form .enquiry-status.success { color: var(--green); font-weight: 700; }
.enquiry-form .enquiry-status.error { color: #dc2626; font-weight: 700; }

/* CONTACT CARD (nested inside .enquiry-section — all rules below are scoped
   under .contact-card so they always win over the broader .enquiry-section
   span/p/h2 rules above, regardless of source order) */
.contact-card {
  margin-top: 26px; padding: 26px 28px;
  background: var(--soft); border-left: 4px solid var(--blue); border-radius: 10px;
}
.contact-card .contact-card-brand {
  display: flex; align-items: center; gap: 12px;
  padding-bottom: 18px; margin-bottom: 18px; border-bottom: 1px solid var(--line);
}
.contact-card .mini-logo {
  display: grid; place-items: center; flex: none;
  width: 42px; height: 42px; background: var(--blue); border-radius: 10px;
}
.contact-card .mini-logo svg { display: block; width: 30px; }
.contact-card .contact-card-brand strong { display: block; font-size: 15px; font-weight: 900; color: var(--ink); }
.contact-card .contact-card-brand p { font-size: 12.5px; color: var(--muted); margin-top: 2px; }
.contact-card .contact-card-heading {
  display: block; margin-bottom: 16px;
  color: var(--teal); font-size: 12px; font-weight: 900; text-transform: uppercase; letter-spacing: 1px;
}
.contact-card .contact-rows { display: grid; gap: 16px; }
.contact-card .contact-row-item { display: flex; gap: 12px; align-items: flex-start; }
.contact-card .row-icon {
  display: grid; place-items: center; flex: none;
  width: 34px; height: 34px; border-radius: 50%; background: #e3ecff; color: var(--blue);
}
.contact-card .row-icon svg { display: block; width: 17px; height: 17px; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.contact-card .contact-row-item strong { display: block; font-size: 13px; font-weight: 800; color: var(--ink); margin-bottom: 2px; }
.contact-card .contact-row-item p { font-size: 13.5px; color: #4b5563; line-height: 1.55; }
.contact-card .contact-row-item a { color: #374151; }
.contact-card .contact-row-item a:hover { color: var(--blue); text-decoration: underline; }
.contact-card .tag-main {
  display: inline-block; margin-left: 6px; padding: 1px 8px; vertical-align: middle;
  font-size: 10px; font-weight: 800; color: var(--blue); background: #e3ecff;
  border-radius: 20px; text-transform: uppercase;
}
.contact-card .contact-card-actions { display: flex; gap: 10px; margin-top: 22px; }
.contact-card .contact-action-btn {
  flex: 1; display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; border-radius: 9px; font-size: 13.5px; font-weight: 800; color: var(--white);
  transition: background 180ms, transform 180ms;
}
.contact-card .contact-action-btn:hover { transform: translateY(-1px); }
.contact-card .contact-action-btn.call { background: var(--orange); }
.contact-card .contact-action-btn.call:hover { background: #d95a00; }
.contact-card .contact-action-btn.whatsapp { background: #25d366; }
.contact-card .contact-action-btn.whatsapp:hover { background: #1da851; }

/* FOOTER */
.footer { background: #071023; color: #dbe4ff; margin-top: 20px; }
.footer-grid {
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 32px;
  max-width: 1320px; margin: 0 auto; padding: 44px 20px 32px;
}
.footer-brand strong { display: block; color: var(--white); font-size: 16px; font-weight: 900; margin-bottom: 8px; }
.footer-brand p { color: #94a3b8; font-size: 14px; line-height: 1.6; margin-bottom: 4px; }
.footer-sub { font-size: 12px !important; color: #6b7280 !important; }
.footer-brand .footer-contact { margin-top: 6px; font-size: 13px !important; }
.footer-brand .footer-contact a:hover { color: var(--white); }
.footer-links h4 { color: var(--white); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 14px; }
.footer-links a { display: block; color: #94a3b8; font-size: 14px; margin-bottom: 9px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid #1e293b; text-align: center;
  padding: 18px 20px; font-size: 13px; color: #4b5563;
}

/* ─── CATEGORY PAGE ─── */
.category-layout {
  display: grid; grid-template-columns: 240px 1fr; gap: 28px;
  max-width: 1320px; margin: 20px auto; padding: 0 20px 40px;
}
.filter-sidebar {
  background: var(--white); border-radius: 10px; padding: 24px;
  height: fit-content; position: sticky; top: 90px;
}
.filter-sidebar h3 { font-size: 16px; font-weight: 900; margin-bottom: 20px; padding-bottom: 12px; border-bottom: 1px solid var(--line); }
.filter-group { margin-bottom: 22px; }
.filter-group h4 { font-size: 13px; font-weight: 800; text-transform: uppercase; color: var(--muted); letter-spacing: 0.5px; margin-bottom: 12px; }
.filter-check { display: flex; align-items: center; gap: 8px; font-size: 14px; font-weight: 500; color: #374151; margin-bottom: 9px; cursor: pointer; }
.filter-check input { accent-color: var(--blue); width: 15px; height: 15px; }
.filter-tag-btn {
  display: inline-block; margin: 4px 4px 0 0; padding: 5px 12px;
  background: var(--soft); border: 1px solid var(--line); border-radius: 20px;
  font-size: 12px; font-weight: 600; cursor: pointer; transition: all 180ms;
}
.filter-tag-btn.active { background: var(--blue); color: var(--white); border-color: var(--blue); }
.filter-clear { width: 100%; padding: 10px; background: var(--soft); border: 1px solid var(--line); border-radius: 8px; font-weight: 700; font-size: 14px; cursor: pointer; transition: all 180ms; }
.filter-clear:hover { background: var(--ink); color: var(--white); }
.category-main { min-width: 0; }
.category-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 20px; padding-bottom: 14px; border-bottom: 2px solid var(--line);
}
.category-header h1 { font-size: 28px; font-weight: 900; }
.sort-wrap { display: flex; align-items: center; gap: 14px; font-size: 14px; font-weight: 600; }
.sort-wrap select { padding: 8px 12px; border: 1px solid var(--line); border-radius: 8px; background: var(--white); cursor: pointer; }
.result-count { color: var(--muted); font-size: 13px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.product-grid .grid-card { }

/* ─── PRODUCT DETAIL PAGE ─── */
.product-detail-layout {
  max-width: 1320px; margin: 20px auto 60px; padding: 0 20px;
}
.product-hero {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px;
  background: var(--white); border-radius: 12px; padding: 36px; margin-bottom: 24px;
}
.product-gallery { position: relative; }
.gallery-main {
  border: 1px solid var(--line); border-radius: 10px; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
  min-height: 420px; background: #f8f8f8;
}
.gallery-main img { max-width: 100%; max-height: 420px; object-fit: contain; }
.gallery-thumbs { display: flex; gap: 10px; margin-top: 14px; }
.thumb {
  width: 70px; height: 60px; border: 2px solid var(--line); border-radius: 6px;
  overflow: hidden; cursor: pointer; background: #f8f8f8; display: flex; align-items: center; justify-content: center;
  transition: border-color 180ms;
}
.thumb.active { border-color: var(--blue); }
.thumb img { width: 100%; height: 100%; object-fit: contain; }
.product-info { display: flex; flex-direction: column; gap: 16px; }
.product-category-tag { font-size: 12px; font-weight: 700; color: var(--blue); text-transform: uppercase; letter-spacing: 1px; }
.product-name { font-size: 28px; font-weight: 900; line-height: 1.2; color: #1a1a1a; }
.product-rating { display: flex; align-items: center; gap: 10px; }
.product-rating .stars { font-size: 18px; }
.product-rating .rating-text { font-size: 14px; color: var(--muted); }
.product-price-block { display: flex; align-items: baseline; gap: 12px; padding: 16px 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.product-price-block .main-price { font-size: 32px; font-weight: 900; color: var(--teal); }
.product-price-block .old-price { font-size: 18px; color: #b0b9c6; text-decoration: line-through; }
.product-price-block .save-badge {
  padding: 4px 10px; background: #dcfce7; color: #15803d;
  border-radius: 20px; font-size: 13px; font-weight: 800;
}
.product-short-desc { color: #374151; line-height: 1.7; font-size: 15px; }
.product-actions { display: flex; gap: 12px; }
.btn-enquire {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  flex: 1; min-height: 48px; background: var(--orange); color: var(--white);
  border: 0; border-radius: 10px; font-size: 16px; font-weight: 800; cursor: pointer;
  transition: background 180ms;
}
.btn-enquire:hover { background: #d95a00; }
.btn-whatsapp {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 48px; padding: 0 20px; background: #25d366; color: var(--white);
  border: 0; border-radius: 10px; font-size: 15px; font-weight: 800; cursor: pointer;
  transition: background 180ms;
}
.btn-whatsapp:hover { background: #1da851; }
.product-meta { display: grid; gap: 8px; font-size: 14px; }
.product-meta div { display: flex; gap: 10px; }
.product-meta strong { min-width: 80px; color: #374151; }
.product-meta span { color: var(--teal); font-weight: 600; }

/* PRODUCT TABS */
.product-tabs-section { background: var(--white); border-radius: 12px; padding: 30px 36px; margin-bottom: 20px; }
.tab-nav { display: flex; gap: 0; border-bottom: 2px solid var(--line); margin-bottom: 28px; }
.tab-btn {
  padding: 10px 24px; background: transparent; border: 0;
  font-size: 15px; font-weight: 700; color: var(--muted); cursor: pointer;
  border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all 180ms;
}
.tab-btn.active { color: var(--blue); border-bottom-color: var(--blue); }
.tab-panel { display: none; }
.tab-panel.active { display: block; }
.specs-table { width: 100%; border-collapse: collapse; font-size: 14px; }
.specs-table tr:nth-child(even) td { background: #f8f9fa; }
.specs-table td { padding: 12px 16px; border-bottom: 1px solid var(--line); }
.specs-table td:first-child { font-weight: 700; color: #374151; width: 40%; }
.specs-table td:last-child { color: var(--ink); }
.features-list { list-style: none; display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; }
.features-list li {
  display: flex; align-items: flex-start; gap: 10px;
  padding: 14px; background: #f8faff; border-radius: 8px; font-size: 14px; line-height: 1.5;
}
.features-list li::before { content: "✓"; color: var(--blue); font-weight: 900; margin-top: 1px; }

/* RELATED PRODUCTS */
.related-section { background: var(--white); border-radius: 12px; padding: 28px 36px; }
.related-section h3 { font-size: 22px; font-weight: 900; margin-bottom: 20px; }
.related-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }

/* MOBILE RESPONSIVE */
@media (max-width: 1120px) {
  .store-header { padding: 0 20px; }
  .brand-name { display: none; }
  .main-nav { gap: 18px; font-size: 14px; }
  .featured-shell { grid-template-columns: 1fr; }
  .catalog-row { grid-template-columns: repeat(2, 1fr); }
  .category-layout { grid-template-columns: 1fr; }
  .filter-sidebar { position: static; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .product-hero { grid-template-columns: 1fr; }
  .related-row { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 760px) {
  .store-header { height: 60px; padding: 0 14px; }
  .main-nav { display: none; }
  .header-search { width: 140px; }
  .header-search:focus { width: 160px; }
  .mi-hero { height: 56vw; min-height: 280px; max-height: 500px; }
  .slide-caption { padding: 50px 20px 28px; }
  .slide-caption h3 { font-size: 18px; }
  .hero-arrow { width: 36px; height: 36px; border-radius: 8px; font-size: 30px; }
  .hero-prev { left: 12px; }
  .hero-next { right: 12px; }
  .hero-progress { width: calc(100% - 32px); gap: 8px; bottom: 12px; }
  .hero-progress button { flex: 1; width: auto; }
  .category-chips { gap: 10px; }
  .chip { padding: 12px 16px; min-width: auto; }
  .quick-strip { grid-template-columns: repeat(2, 1fr); padding: 0; }
  .catalog-row { grid-template-columns: repeat(2, 1fr); }
  .product-grid { grid-template-columns: 1fr; }
  .enquiry-section { grid-template-columns: 1fr; padding: 24px 16px; }
  .contact-card { padding: 20px; margin-top: 20px; }
  .contact-card .contact-card-actions { flex-direction: column; }
  .service-band { flex-direction: column; align-items: flex-start; padding: 28px 20px; }
  .footer-grid { grid-template-columns: 1fr; }
  .features-list { grid-template-columns: 1fr; }
  .product-detail-layout { padding: 0 12px; }
  .product-hero { padding: 20px; gap: 24px; }
  .product-name { font-size: 22px; }
  .product-price-block .main-price { font-size: 26px; }
  .related-row { grid-template-columns: repeat(2, 1fr); }
  .home-catalog-section { padding: 0 10px; }
  .catalog-block { padding: 18px 14px; }
  .featured-products { padding: 28px 14px 16px; }
  .category-layout { padding: 0 12px 30px; }
}

/* ─── REVIEWS SECTION ─── */
.reviews-section {
  background: var(--white); border-radius: 12px; padding: 28px 36px; margin-bottom: 20px;
}
.reviews-tab-nav {
  display: flex; border-bottom: 2px solid var(--line); margin-bottom: 28px;
}
.reviews-tab-btn {
  padding: 10px 24px; background: transparent; border: 0;
  font-size: 15px; font-weight: 700; color: var(--muted); cursor: pointer;
  border-bottom: 3px solid transparent; margin-bottom: -2px; transition: all 180ms;
}
.reviews-tab-btn.active { color: var(--blue); border-bottom-color: var(--blue); }
.reviews-panel { display: none; }
.reviews-panel.active { display: block; }

/* Description panel */
.description-text { color: #374151; line-height: 1.75; font-size: 15px; }
.description-text p { margin-bottom: 14px; }

/* Review list */
.review-count-heading {
  font-size: 18px; font-weight: 800; color: var(--ink); margin-bottom: 20px;
  padding-bottom: 14px; border-bottom: 1px solid var(--line);
}
.review-item {
  display: grid; grid-template-columns: 48px 1fr; gap: 16px;
  padding: 20px 0; border-bottom: 1px solid var(--line);
}
.review-item:last-of-type { border-bottom: none; }
.review-avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: #e5e7eb; display: flex; align-items: center; justify-content: center;
  color: #9ca3af; font-size: 22px; flex-shrink: 0;
}
.review-avatar svg { width: 26px; height: 26px; fill: #9ca3af; }
.review-meta { display: flex; align-items: center; justify-content: space-between; margin-bottom: 6px; }
.review-author { font-size: 14px; font-weight: 700; color: var(--ink); }
.review-date { font-size: 13px; color: var(--muted); }
.review-stars { color: #ff9b00; font-size: 15px; margin-bottom: 8px; }
.review-body { font-size: 14px; color: #374151; line-height: 1.65; }

/* Add a review form */
.add-review-section { margin-top: 32px; padding-top: 28px; border-top: 2px solid var(--line); }
.add-review-section h4 { font-size: 20px; font-weight: 900; margin-bottom: 6px; }
.add-review-section .form-note { font-size: 13px; color: var(--muted); margin-bottom: 18px; }
.add-review-section .form-note span { color: var(--orange); }
.star-picker { display: flex; gap: 10px; margin-bottom: 18px; align-items: center; }
.star-picker-label { font-size: 13px; font-weight: 700; color: #374151; margin-right: 4px; }
.star-opt { cursor: pointer; font-size: 22px; color: #d1d5db; transition: color 160ms; line-height: 1; }
.star-opt.lit, .star-opt:hover ~ .star-opt { color: #d1d5db; }
.star-picker:hover .star-opt { color: #ff9b00; }
.star-opt:hover ~ .star-opt { color: #d1d5db; }
.review-form-grid { display: grid; gap: 14px; }
.review-form-grid label { display: grid; gap: 6px; font-size: 13px; font-weight: 700; color: #374151; }
.review-form-grid label span { color: var(--orange); }
.review-form-grid input,
.review-form-grid textarea { padding: 12px 14px; border: 1px solid var(--line); border-radius: 8px; background: #fafafa; font-size: 14px; font-family: inherit; transition: border-color 200ms; }
.review-form-grid input:focus,
.review-form-grid textarea:focus { outline: none; border-color: var(--teal); }
.review-form-grid textarea { resize: vertical; min-height: 100px; }
.review-form-grid .two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.btn-submit-review {
  min-height: 44px; padding: 0 28px; background: var(--teal); color: var(--white);
  border: 0; border-radius: 8px; font-size: 15px; font-weight: 800; cursor: pointer;
  transition: background 180ms; margin-top: 6px;
}
.btn-submit-review:hover { background: #1fa8a0; }
.review-success {
  display: none; padding: 14px 18px; background: #dcfce7; color: #15803d;
  border-radius: 8px; font-weight: 700; font-size: 14px; margin-top: 14px;
}
