/* ===== ANG SOLUTIONS - MAIN STYLESHEET ===== */
/* Brand: Navy #1E3A5F | Accent: #2980B9 | Yellow: #F5A623 */

:root {
  --navy: #1E3A5F;
  --blue: #2980B9;
  --yellow: #F5A623;
  --light-grey: #F5F6FA;
  --border: #E2E8F0;
  --text-dark: #1A202C;
  --text-muted: #64748B;
  --white: #ffffff;
  --success: #25D366;
  --radius: 10px;
  --shadow: 0 2px 12px rgba(0,0,0,0.08);
  --transition: 0.25s ease;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
body { font-family: 'Open Sans', sans-serif; color: var(--text-dark); background: var(--white); }
a { text-decoration: none; color: inherit; }
img { max-width: 100%; }
ul { list-style: none; padding: 0; margin: 0; }
.section-gap { padding: 60px 0; }
.bg-light-grey { background: var(--light-grey); }

/* ===== TOPBAR ===== */
.topbar {
  background: var(--navy);
  color: var(--white);
  padding: 8px 0;
  font-size: 13px;
}
.topbar a {
  color: rgba(255,255,255,0.85);
  transition: color var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}
.topbar a:hover { color: var(--yellow); }
.topbar-right a { font-size: 16px; }

/* ===== HEADER ===== */
.site-header {
  background: var(--white);
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  z-index: 1000;
}

.logo-img { height: 55px; width: auto; object-fit: contain; }

.search-bar {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 520px;
}
.search-input {
  border: 2px solid var(--border);
  border-right: none;
  border-radius: var(--radius) 0 0 var(--radius) !important;
  height: 44px;
  font-size: 14px;
  padding-left: 16px;
}
.search-input:focus {
  border-color: var(--blue);
  box-shadow: none;
}
.btn-search {
  background: var(--blue);
  color: var(--white);
  border: 2px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
  height: 44px;
  padding: 0 18px;
  font-size: 16px;
}
.btn-search:hover { background: var(--navy); border-color: var(--navy); color: var(--white); }

.btn-whatsapp {
  background: var(--success);
  color: var(--white);
  border: none;
  border-radius: var(--radius);
  padding: 10px 18px;
  font-size: 14px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: background var(--transition);
}
.btn-whatsapp:hover { background: #128C7E; color: var(--white); }

.navbar-toggler {
  background: none;
  border: 2px solid var(--navy);
  border-radius: 8px;
  padding: 6px 10px;
  font-size: 22px;
  color: var(--navy);
  cursor: pointer;
}

/* ===== MAIN NAV ===== */
.main-nav {
  background: var(--navy);
}
.nav-list { display: flex; flex-wrap: nowrap; }
.nav-item { position: relative; }
.nav-item .nav-link {
  color: rgba(255,255,255,0.9) !important;
  font-size: 14px;
  font-weight: 500;
  padding: 14px 16px;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
  transition: background var(--transition), color var(--transition);
}
.nav-item .nav-link:hover,
.nav-item .nav-link.active {
  background: var(--blue);
  color: var(--white) !important;
}

/* MEGA MENU */
.mega-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--white);
  min-width: 680px;
  box-shadow: 0 8px 30px rgba(0,0,0,0.15);
  border-top: 3px solid var(--blue);
  border-radius: 0 0 var(--radius) var(--radius);
  padding: 20px 0;
  z-index: 9999;
}
.has-dropdown:hover .mega-menu { display: block; }
.mega-menu a {
  display: block;
  padding: 7px 12px;
  font-size: 13px;
  color: var(--text-dark);
  border-radius: 6px;
  transition: background var(--transition), color var(--transition);
}
.mega-menu a:hover { background: var(--light-grey); color: var(--blue); }
.mega-label {
  font-size: 12px;
  font-weight: 700;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  padding: 0 12px;
  border-left: 3px solid var(--yellow);
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  position: fixed;
  top: 0; left: -100%;
  width: 300px;
  height: 100vh;
  background: var(--navy);
  z-index: 9999;
  transition: left 0.3s ease;
  overflow-y: auto;
}
.mobile-menu.open { left: 0; }
.mobile-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 9998;
}
.mobile-overlay.open { display: block; }
.mobile-menu-inner { padding: 20px; }
.mobile-close {
  background: none;
  border: none;
  color: var(--white);
  font-size: 24px;
  cursor: pointer;
  margin-bottom: 20px;
  display: block;
}
.mobile-nav-list > li > a {
  display: block;
  color: rgba(255,255,255,0.9);
  padding: 12px 0;
  font-size: 15px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.mobile-sub {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 6px;
  margin: 4px 0 8px;
  display: none;
}
.mobile-sub.open { display: block; }
.mobile-sub li a {
  display: block;
  color: rgba(255,255,255,0.75);
  padding: 8px 12px;
  font-size: 13px;
  border-radius: 6px;
}
.mobile-sub li a:hover { background: rgba(255,255,255,0.1); }

/* ===== HERO SLIDER ===== */
.hero-slider { position: relative; }
.hero-slide {
  height: 500px;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}
.slide-1 { background: linear-gradient(135deg, var(--navy) 0%, #2C5282 60%, #2980B9 100%); }
.slide-2 { background: linear-gradient(135deg, #1a1a2e 0%, var(--navy) 60%, #16213E 100%); }
.slide-3 { background: linear-gradient(135deg, #0f2744 0%, #1E3A5F 60%, #2980B9 100%); }
.hero-slide::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.3);
}
.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  max-width: 560px;
  padding: 20px 0;
}
.hero-badge {
  background: var(--yellow);
  color: var(--navy);
  font-size: 12px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 20px;
  display: inline-block;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.hero-content h1 {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 16px;
}
.hero-content p {
  font-size: 16px;
  opacity: 0.9;
  margin-bottom: 28px;
}
.btn-hero-primary {
  background: var(--yellow);
  color: var(--navy);
  border: 2px solid var(--yellow);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 15px;
  transition: all var(--transition);
}
.btn-hero-primary:hover { background: #e6941a; border-color: #e6941a; color: var(--navy); }
.btn-hero-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
  padding: 12px 28px;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 15px;
  transition: all var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.btn-hero-outline:hover { background: rgba(255,255,255,0.15); border-color: var(--white); color: var(--white); }

/* ===== TRUST BADGES ===== */
.trust-section {
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  border-right: 1px solid var(--border);
}
.trust-item:last-child { border-right: none; }
.trust-item i {
  font-size: 30px;
  color: var(--blue);
  flex-shrink: 0;
}
.trust-item strong {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
}
.trust-item span {
  font-size: 12px;
  color: var(--text-muted);
}

/* ===== SECTION HEADERS ===== */
.section-header h2 {
  font-size: 28px;
  font-weight: 700;
  color: var(--navy);
  position: relative;
  display: inline-block;
  padding-bottom: 10px;
}
.section-header h2::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 50px; height: 3px;
  background: var(--yellow);
  border-radius: 2px;
}
.section-header.text-center h2::after { left: 50%; transform: translateX(-50%); }
.section-header p { color: var(--text-muted); margin-top: 8px; font-size: 15px; }

/* ===== CATEGORY TILES ===== */
.cat-tile {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding: 20px 12px;
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: all var(--transition);
  cursor: pointer;
}
.cat-tile:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 20px rgba(41,128,185,0.15);
  transform: translateY(-3px);
  color: var(--blue);
}
.cat-icon {
  width: 60px; height: 60px;
  border-radius: 50%;
  background: var(--light-grey);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 26px;
  color: var(--navy);
  transition: all var(--transition);
}
.cat-tile:hover .cat-icon {
  background: var(--blue);
  color: var(--white);
}
.cat-tile span {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.3;
}
.cat-tile:hover span { color: var(--blue); }

/* ===== PRODUCT CARDS ===== */
.product-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: all var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  position: relative;
}
.product-card:hover {
  box-shadow: 0 6px 25px rgba(0,0,0,0.12);
  transform: translateY(-4px);
  border-color: var(--blue);
}
.product-img-wrap {
  position: relative;
  background: var(--light-grey);
  padding: 16px;
  aspect-ratio: 1;
  overflow: hidden;
}
.product-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform var(--transition);
}
.product-card:hover .product-img-wrap img { transform: scale(1.05); }
.discount-badge {
  position: absolute;
  top: 10px; left: 10px;
  background: #E53E3E;
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 3px 8px;
  border-radius: 5px;
}
.out-of-stock-badge {
  position: absolute;
  top: 10px; right: 10px;
  background: var(--text-muted);
  color: var(--white);
  font-size: 11px;
  font-weight: 600;
  padding: 3px 8px;
  border-radius: 5px;
}
.product-body {
  padding: 14px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.product-brand {
  font-size: 11px;
  color: var(--text-muted);
  text-transform: uppercase;
  font-weight: 600;
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.product-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-dark);
  line-height: 1.4;
  margin-bottom: 10px;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.product-price {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.price-sale {
  font-size: 18px;
  font-weight: 700;
  color: var(--navy);
}
.price-mrp {
  font-size: 13px;
  color: var(--text-muted);
  text-decoration: line-through;
}
.price-gst {
  font-size: 11px;
  color: var(--text-muted);
  width: 100%;
}
.btn-enquire {
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 8px;
  padding: 10px;
  font-size: 13px;
  font-weight: 600;
  width: 100%;
  cursor: pointer;
  transition: background var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.btn-enquire:hover { background: var(--blue); }

/* QUICK VIEW */
.quick-view-btn {
  position: absolute;
  bottom: 12px; left: 50%;
  transform: translateX(-50%) translateY(10px);
  opacity: 0;
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--navy);
  border-radius: 20px;
  padding: 5px 14px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
  transition: all var(--transition);
  cursor: pointer;
}
.product-card:hover .quick-view-btn {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ===== BRANDS STRIP ===== */
.brands-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}
.brand-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 28px;
  font-size: 16px;
  font-weight: 700;
  color: var(--text-muted);
  background: var(--white);
  transition: all var(--transition);
  letter-spacing: 0.5px;
}
.brand-item:hover {
  border-color: var(--blue);
  color: var(--blue);
  box-shadow: var(--shadow);
}

/* ===== FOOTER ===== */
.site-footer { background: var(--navy); color: rgba(255,255,255,0.85); }
.footer-top { padding: 50px 0 30px; }
.footer-logo { height: 50px; width: auto; filter: brightness(0) invert(1); }
.footer-top p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.7); }
.footer-top h5 {
  font-size: 15px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--yellow);
  display: inline-block;
}
.footer-top ul li { margin-bottom: 8px; }
.footer-top ul li a { font-size: 13px; color: rgba(255,255,255,0.7); transition: color var(--transition); }
.footer-top ul li a:hover { color: var(--yellow); }
.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 10px;
  font-size: 13px;
  color: rgba(255,255,255,0.75);
}
.contact-list li i { color: var(--yellow); margin-top: 2px; flex-shrink: 0; }
.contact-list li a { color: rgba(255,255,255,0.75); }
.contact-list li a:hover { color: var(--yellow); }
.social-links { display: flex; gap: 10px; }
.social-links a {
  width: 36px; height: 36px;
  border: 1px solid rgba(255,255,255,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.8);
  font-size: 16px;
  transition: all var(--transition);
}
.social-links a:hover { background: var(--yellow); border-color: var(--yellow); color: var(--navy); }
.footer-bottom {
  background: rgba(0,0,0,0.2);
  padding: 14px 0;
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  border-top: 1px solid rgba(255,255,255,0.1);
}

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float {
  position: fixed;
  bottom: 28px; right: 24px;
  width: 56px; height: 56px;
  background: var(--success);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
  z-index: 9990;
  transition: transform var(--transition), box-shadow var(--transition);
}
.whatsapp-float:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(37,211,102,0.6);
  color: var(--white);
}

/* ===== BACK TO TOP ===== */
.back-to-top {
  position: fixed;
  bottom: 95px; right: 24px;
  width: 42px; height: 42px;
  background: var(--navy);
  color: var(--white);
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  cursor: pointer;
  z-index: 9989;
  opacity: 0;
  transition: opacity var(--transition), transform var(--transition);
  transform: translateY(10px);
}
.back-to-top.show { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--blue); }

/* ===== ENQUIRY MODAL ===== */
.modal-header {
  background: var(--navy);
  color: var(--white);
  border-radius: 10px 10px 0 0;
}
.modal-title { font-size: 16px; font-weight: 600; display: flex; align-items: center; gap: 8px; }
.enquiry-product-name {
  background: var(--light-grey);
  border-left: 4px solid var(--blue);
  padding: 10px 14px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.btn-enquire-submit {
  background: var(--navy);
  color: var(--white);
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--transition);
}
.btn-enquire-submit:hover { background: var(--blue); color: var(--white); }
.btn-whatsapp-modal {
  background: var(--success);
  color: var(--white);
  border: none;
  padding: 12px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background var(--transition);
}
.btn-whatsapp-modal:hover { background: #128C7E; color: var(--white); }
.form-control:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(41,128,185,0.15); }
.form-label { font-size: 13px; font-weight: 600; color: var(--text-dark); }

/* ===== RESPONSIVE ===== */
@media (max-width: 991px) {
  .main-nav { display: none; }
  .hero-slide { height: 380px; }
  .hero-content h1 { font-size: 26px; }
  .trust-item { padding: 12px 10px; gap: 10px; }
  .trust-item i { font-size: 22px; }
  .section-gap { padding: 40px 0; }
}

@media (max-width: 767px) {
  .topbar-left { font-size: 11px; flex-direction: column; gap: 2px; }
  .hero-slide { height: 320px; }
  .hero-content p { display: none; }
  .trust-item { flex-direction: column; text-align: center; border-right: none; border-bottom: 1px solid var(--border); padding: 14px 8px; }
  .trust-item:last-child { border-bottom: none; }
  .section-header h2 { font-size: 22px; }
  .footer-logo { height: 40px; }
}

/* ===== WOOCOMMERCE EXTRA STYLES ===== */
.breadcrumb-bar{background:var(--light-grey);padding:10px 0;border-bottom:1px solid var(--border);}
.breadcrumb-item a{color:var(--blue);font-size:13px;}
.breadcrumb-item.active{font-size:13px;color:var(--text-muted);}
.shop-page-title{font-size:22px;font-weight:700;color:var(--navy);margin:0;}
.filter-sidebar{background:var(--white);border:1.5px solid var(--border);border-radius:var(--radius);overflow:hidden;position:sticky;top:100px;}
.filter-header{background:var(--navy);color:var(--white);padding:14px 18px;}
.filter-header h5{margin:0;font-size:15px;font-weight:600;}
.filter-group{padding:14px 18px;border-bottom:1px solid var(--border);}
.filter-group:last-child{border-bottom:none;}
.filter-group-title{font-size:12px;font-weight:700;color:var(--navy);margin-bottom:8px;text-transform:uppercase;letter-spacing:.5px;}
.filter-cat-link{display:flex;justify-content:space-between;align-items:center;font-size:13px;color:var(--text-dark);padding:5px 0;border-bottom:1px solid var(--border);transition:color .2s;}
.filter-cat-link:hover,.filter-cat-link.active-cat{color:var(--blue);font-weight:600;}
.filter-count{font-size:11px;color:var(--text-muted);background:var(--light-grey);padding:1px 7px;border-radius:10px;}
.product-gallery-main{border:1.5px solid var(--border);border-radius:var(--radius);padding:20px;background:var(--light-grey);text-align:center;min-height:300px;display:flex;align-items:center;justify-content:center;}
.product-gallery-main img{max-height:380px;object-fit:contain;width:100%;}
.thumb-strip{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px;}
.thumb{width:70px;height:70px;border:2px solid var(--border);border-radius:8px;cursor:pointer;overflow:hidden;padding:4px;transition:border-color .2s;background:var(--white);}
.thumb.active,.thumb:hover{border-color:var(--blue);}
.thumb img{width:100%;height:100%;object-fit:contain;}
.product-detail-title{font-size:22px;font-weight:700;color:var(--navy);line-height:1.35;margin-bottom:8px;}
.product-detail-brand{font-size:13px;color:var(--text-muted);margin-bottom:4px;}
.price-block{background:var(--light-grey);border-radius:var(--radius);padding:16px 20px;margin:16px 0;}
.price-block .price-sale{font-size:28px;font-weight:700;color:var(--navy);}
.price-block .price-mrp{font-size:15px;color:var(--text-muted);text-decoration:line-through;}
.price-block .disc-pill{background:#E53E3E;color:#fff;font-size:12px;font-weight:700;padding:3px 10px;border-radius:20px;}
.price-block .gst-note{font-size:12px;color:var(--text-muted);}
.btn-enquire-big{background:var(--success);color:#fff;border:none;border-radius:var(--radius);padding:14px;font-size:15px;font-weight:700;width:100%;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:8px;transition:background .2s;text-decoration:none;}
.btn-enquire-big:hover{background:#128C7E;color:#fff;}
.stock-badge-in{color:#276749;background:#C6F6D5;border-radius:20px;padding:4px 12px;font-size:13px;font-weight:600;display:inline-block;}
.stock-badge-out{color:#822727;background:#FED7D7;border-radius:20px;padding:4px 12px;font-size:13px;font-weight:600;display:inline-block;}
.specs-table{width:100%;border-collapse:collapse;font-size:14px;}
.specs-table tr:nth-child(even){background:var(--light-grey);}
.specs-table td{padding:10px 14px;border:1px solid var(--border);}
.specs-table td:first-child{font-weight:600;color:var(--navy);width:40%;}
.share-btns{display:flex;gap:8px;flex-wrap:wrap;margin-top:8px;}
.share-btn{display:flex;align-items:center;gap:6px;padding:7px 14px;border-radius:8px;font-size:12px;font-weight:600;cursor:pointer;border:1.5px solid var(--border);background:var(--white);transition:all .2s;text-decoration:none;color:var(--text-dark);}
.share-btn.wa{border-color:var(--success);color:var(--success);}
.share-btn.wa:hover{background:var(--success);color:#fff;}
.share-btn:hover{border-color:var(--blue);color:var(--blue);}
.no-img-placeholder{width:100%;display:flex;align-items:center;justify-content:center;background:var(--light-grey);border-radius:8px;min-height:200px;}
.woocommerce-ordering select{border:1.5px solid var(--border);border-radius:8px;padding:6px 12px;font-size:13px;}
.woocommerce-pagination ul{display:flex;gap:4px;list-style:none;padding:0;margin:0;}
.woocommerce-pagination ul li a,.woocommerce-pagination ul li span{display:flex;align-items:center;justify-content:center;width:36px;height:36px;border:1.5px solid var(--border);border-radius:8px;font-size:13px;color:var(--text-dark);transition:all .2s;}
.woocommerce-pagination ul li .current,.woocommerce-pagination ul li a:hover{background:var(--navy);border-color:var(--navy);color:#fff;}
.text-logo{font-size:22px;font-weight:700;color:var(--navy);}
.footer-text-logo{font-size:20px;font-weight:700;color:#fff;}

/* === EXTRA PAGE STYLES === */
.breadcrumb-bar{background:var(--light-grey);padding:10px 0;border-bottom:1px solid var(--border);}
.breadcrumb-item a{color:var(--blue);font-size:13px;}
.breadcrumb-item.active{font-size:13px;color:var(--text-muted);}
.filter-sidebar{background:var(--white);border:1.5px solid var(--border);border-radius:var(--radius);overflow:hidden;position:sticky;top:100px;}
.filter-header{background:var(--navy);color:var(--white);padding:14px 18px;}
.filter-group{padding:14px 18px;border-bottom:1px solid var(--border);}
.filter-group:last-child{border-bottom:none;}
.filter-cat-link{display:flex;justify-content:space-between;font-size:13px;color:var(--text-dark);padding:6px 0;border-bottom:1px solid var(--border);transition:color .2s;}
.filter-cat-link:hover,.filter-cat-link.active-cat{color:var(--blue);font-weight:600;}
.filter-count{font-size:11px;color:var(--text-muted);background:var(--light-grey);padding:1px 7px;border-radius:10px;}
.shop-page-title{font-size:22px;font-weight:700;color:var(--navy);}
.product-gallery-main{border:1.5px solid var(--border);border-radius:var(--radius);padding:20px;background:var(--light-grey);text-align:center;min-height:260px;display:flex;align-items:center;justify-content:center;}
.product-gallery-main img{max-height:360px;object-fit:contain;width:100%;}
.thumb-strip{display:flex;gap:8px;flex-wrap:wrap;margin-top:10px;}
.thumb{width:70px;height:70px;border:2px solid var(--border);border-radius:8px;cursor:pointer;overflow:hidden;padding:4px;background:var(--white);transition:border-color .2s;}
.thumb.active,.thumb:hover{border-color:var(--blue);}
.thumb img{width:100%;height:100%;object-fit:contain;}
.product-detail-title{font-size:22px;font-weight:700;color:var(--navy);line-height:1.35;}
.product-detail-brand{font-size:13px;color:var(--text-muted);}
.price-block{background:var(--light-grey);border-radius:var(--radius);padding:16px 20px;margin:14px 0;}
.price-block .price-sale{font-size:28px;font-weight:700;color:var(--navy);}
.price-block .price-mrp{font-size:15px;color:var(--text-muted);text-decoration:line-through;}
.price-block .disc-pill{background:#E53E3E;color:#fff;font-size:12px;font-weight:700;padding:3px 10px;border-radius:20px;}
.price-block .gst-note{font-size:12px;color:var(--text-muted);}
.btn-enquire-big{background:var(--success);color:#fff;border:none;border-radius:var(--radius);padding:14px;font-size:15px;font-weight:700;width:100%;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:8px;transition:background .2s;text-decoration:none;margin-bottom:0;}
.btn-enquire-big:hover{background:#128C7E;color:#fff;}
.stock-badge-in{color:#276749;background:#C6F6D5;border-radius:20px;padding:4px 12px;font-size:13px;font-weight:600;display:inline-block;}
.stock-badge-out{color:#822727;background:#FED7D7;border-radius:20px;padding:4px 12px;font-size:13px;font-weight:600;display:inline-block;}
.specs-table{width:100%;border-collapse:collapse;font-size:14px;}
.specs-table tr:nth-child(even){background:var(--light-grey);}
.specs-table td{padding:10px 14px;border:1px solid var(--border);}
.specs-table td:first-child{font-weight:600;color:var(--navy);width:40%;}
.no-img-box{width:100%;min-height:180px;display:flex;align-items:center;justify-content:center;color:#CBD5E0;font-size:48px;}
.text-logo{font-size:22px;font-weight:700;color:var(--navy);}
.footer-text-logo{font-size:20px;font-weight:700;color:#fff;}
.btn-enquire-submit{background:var(--navy);color:#fff;border:none;padding:12px;border-radius:8px;font-weight:600;font-size:15px;cursor:pointer;display:flex;align-items:center;justify-content:center;gap:8px;width:100%;transition:background .2s;}
.btn-enquire-submit:hover{background:var(--blue);color:#fff;}
.btn-whatsapp-modal{background:var(--success);color:#fff;border:none;padding:12px;border-radius:8px;font-weight:600;font-size:15px;display:flex;align-items:center;justify-content:center;gap:8px;width:100%;text-decoration:none;transition:background .2s;}
.btn-whatsapp-modal:hover{background:#128C7E;color:#fff;}
.enquiry-product-name{background:var(--light-grey);border-left:4px solid var(--blue);padding:10px 14px;border-radius:6px;font-size:14px;font-weight:600;color:var(--navy);}
.woocommerce-ordering select{border:1.5px solid var(--border);border-radius:8px;padding:6px 12px;font-size:13px;}
.woocommerce-pagination ul{display:flex;gap:4px;list-style:none;padding:0;margin:0;justify-content:center;}
.woocommerce-pagination ul li a,.woocommerce-pagination ul li span{display:flex;align-items:center;justify-content:center;width:36px;height:36px;border:1.5px solid var(--border);border-radius:8px;font-size:13px;color:var(--text-dark);}
.woocommerce-pagination ul li .current,.woocommerce-pagination ul li a:hover{background:var(--navy);border-color:var(--navy);color:#fff;}
