/*
Theme Name: NDL AutoParts
Theme URI: https://ndlautoparts.com
Description: Custom Astra child theme for NDL AutoParts.
Author: NDL AutoParts
Template: astra
Version: 1.0.0
Text Domain: ndl-autoparts
*/

/* ===================================================
   NDL AUTOPARTS - Homepage Styles
   =================================================== */

/* ===== RESET & BASE ===== */
:root {
  /* Global Responsive Container Padding System */
  --ndl-spacing-x: 60px;
}
@media (max-width: 1024px) {
  :root { --ndl-spacing-x: 40px; }
}
@media (max-width: 768px) {
  :root { --ndl-spacing-x: 24px; }
}

body, html {
  background-color: #030303 !important; /* Premium dark background for outer screen edges */
}

.ndl-home *,
.ndl-home *::before,
.ndl-home *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.ndl-home {
  font-family: 'Inter', Arial, sans-serif;
  background: #0a0a0a;
  color: #fff;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  
  /* Proper Global Centered Container System */
  width: 100%;
  min-height: 100vh;
  overflow-x: hidden;
}

.ndl-home a { text-decoration: none; color: inherit; }
.ndl-home button { cursor: pointer; font-family: 'Inter', Arial, sans-serif; }
.ndl-home img { display: block; max-width: 100%; }
.ndl-home select { font-family: 'Inter', Arial, sans-serif; }

/* Override Astra / Theme Styles - Force Full Width */
.ast-container,
.home .ast-container,
.page-template-template-home .ast-container,
.site-content .ast-container,
.woocommerce .ast-container,
.post-type-archive-product .ast-container,
.ast-separate-container .ast-article-single,
.ast-separate-container .ast-article-post,
.woocommerce-page .ast-container {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  display: block !important;
  width: 100% !important;
}
.entry-content { margin: 0 !important; padding: 0 !important; max-width: 100% !important; }
#primary, #main, .site-main { padding: 0 !important; margin: 0 !important; max-width: 100% !important; width: 100% !important; display: block !important; }
.ast-separate-container #primary { padding: 0 !important; }
#secondary { display: none !important; }
.ast-left-sidebar #primary, .ast-right-sidebar #primary { width: 100% !important; }
.site-content { display: block !important; width: 100% !important; }
.site-content > .ast-container { display: block !important; }
.ast-woo-shop-archive .site-content > .ast-container,
.woocommerce .site-content > .ast-container { width: 100% !important; max-width: 100% !important; }

.ndl-home-wrapper { width: 100%; display: block; }

/* Generic Standard Page Content */
body.page:not(.home) .site-main,
body.single:not(.woocommerce-page):not(.home) .site-main,
.ndl-content-container {
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 40px var(--ndl-spacing-x) !important;
}

/* ============================================
   TOP BAR (Logo + Search + Actions)
   ============================================ */
.ndl-topbar {
  background: #111;
  padding: 14px var(--ndl-spacing-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-bottom: 1px solid #1a1a1a;
}

/* --- Logo --- */
.ndl-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.ndl-logo-image {
  max-height: 45px;
  width: auto;
  object-fit: contain;
  display: block;
  /* Layout fallback protection if image fails to load */
  color: #fff;
  font-weight: 800;
  font-size: 18px;
  letter-spacing: 1px;
}

/* --- Search --- */
.ndl-search {
  flex: 1;
  max-width: 460px;
  display: flex;
  align-items: center;
  background: #1a1a1a;
  border: 1px solid #2a2a2a;
  border-radius: 8px;
  padding: 9px 16px;
  gap: 10px;
  transition: border-color 0.3s;
}
.ndl-search:focus-within { border-color: #b91c1c; }
.ndl-search input {
  background: none;
  border: none;
  color: #aaa;
  font-size: 13px;
  width: 100%;
  outline: none;
  font-family: 'Inter', Arial, sans-serif;
}
.ndl-search input::placeholder { color: #555; }

/* --- Top Right Actions --- */
.ndl-topbar-right {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
}
.ndl-quote-link {
  display: flex;
  align-items: center;
  gap: 6px;
  color: #ccc;
  font-size: 13px;
  font-weight: 500;
  transition: color 0.3s;
}
.ndl-quote-link:hover { color: #b91c1c; }
.ndl-cart-link {
  position: relative;
  display: flex;
  align-items: center;
  color: #ccc;
}
.ndl-cart-badge {
  position: absolute;
  top: -8px; right: -10px;
  font-size: 10px;
  padding: 1px 5px;
  background: #cc2200;
  color: #fff;
  border-radius: 20px;
  font-weight: 600;
}
.ndl-mobile-menu-btn {
  display: none;
  background: transparent;
  border: none;
  color: #ccc;
  padding: 0;
  cursor: pointer;
}
.ndl-mobile-menu-btn .material-symbols-outlined { font-size: 28px; }


/* ============================================
   MAIN NAVIGATION
   ============================================ */
.ndl-nav {
  background: #161616;
  border-bottom: 1px solid #222;
  padding: 0 var(--ndl-spacing-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.ndl-nav-left, .ndl-nav-right {
  display: flex;
  align-items: center;
}
.ndl-nav a {
  display: flex;
  align-items: center;
  gap: 5px;
  padding: 13px 20px;
  font-size: 13px;
  font-weight: 500;
  color: #999;
  transition: all 0.3s;
  position: relative;
  white-space: nowrap;
}
.ndl-nav a:hover { color: #fff; background: rgba(185,28,28,0.05); }
.ndl-nav a.active { color: #b91c1c; }
.ndl-nav a.active::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: #b91c1c;
}
.ndl-nav a .material-symbols-outlined { font-size: 16px; }


/* ============================================
   HERO SECTION
   ============================================ */
.ndl-hero {
  position: relative;
  min-height: 500px;
  height: auto;
  padding: 60px 0;
  background: url('https://images.unsplash.com/photo-1544636331-e26879cd4d9b?w=1920&q=80') center/cover no-repeat;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.ndl-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,
    rgba(0,0,0,0.93) 0%,
    rgba(0,0,0,0.75) 35%,
    rgba(0,0,0,0.3) 60%,
    rgba(0,0,0,0.15) 100%);
}
.ndl-hero-content {
  position: relative;
  z-index: 2;
  padding: 0 var(--ndl-spacing-x);
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
  animation: ndlFadeUp 0.8s ease-out;
}
.ndl-hero h1 {
  font-size: 44px;
  font-weight: 800;
  line-height: 1.15;
  letter-spacing: -0.5px;
  margin-bottom: 10px;
  color: #fff;
}
.ndl-hero-sub {
  font-size: 15px;
  color: #bbb;
  margin-bottom: 32px;
  font-weight: 400;
}

/* --- Hero Search Filters --- */
.ndl-hero-filters {
  display: flex;
  align-items: stretch;
  background: rgba(15,15,15,0.88);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  overflow: hidden;
  width: 100%;
}
.ndl-filter {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 14px 20px;
  border-right: 1px solid rgba(255,255,255,0.06);
  flex: 1;
  min-width: 0;
}
.ndl-filter .material-symbols-outlined {
  font-size: 17px;
  color: #555;
  flex-shrink: 0;
}
.ndl-filter.accent { background: rgba(185,28,28,0.08); }
.ndl-filter.accent .material-symbols-outlined { color: #b91c1c; }
.ndl-filter select {
  background: transparent;
  border: none;
  color: #ccc;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 16px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
  width: 100%;
  text-overflow: ellipsis;
}
.ndl-filter select option { background: #1a1a1a; color: #ccc; }
.ndl-search-btn {
  background: #b91c1c;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  padding: 14px 36px;
  flex: 0 0 auto;
  border: none;
  white-space: nowrap;
  transition: all 0.3s;
  letter-spacing: 0.3px;
}
.ndl-search-btn:hover { background: #dc2626; }


/* ============================================
   QUOTE SYSTEM (Hide Prices Site-Wide Fallback)
   ============================================ */
.price,
.woocommerce-Price-amount,
.woocommerce-price-suffix {
    display: none !important;
}

/* ============================================
   CATEGORIES
   ============================================ */
.ndl-categories { 
  max-width: 1440px; 
  margin: 0 auto; 
  padding: 40px var(--ndl-spacing-x); 
  background: #0a0a0a; 
}
.ndl-cat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.ndl-cat-card {
  position: relative;
  height: 200px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s;
}
.ndl-cat-card:hover { transform: translateY(-4px); }
.ndl-cat-card img {
      width: 100%; height: 100%;
      object-fit: cover;
    }
.ndl-cat-card:hover img { transform: scale(1.02); }
.ndl-cat-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top,
    rgba(0,0,0,0.85) 0%,
    rgba(0,0,0,0.15) 55%,
    transparent 100%);
}
.ndl-cat-label {
  position: absolute;
  bottom: 18px; left: 20px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  z-index: 2;
}
.ndl-cat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, #cc2200, #b91c1c);
  transform: scaleX(0);
  transition: transform 0.3s;
  z-index: 3;
}
.ndl-cat-card:hover::after { transform: scaleX(1); }


/* ============================================
   POPULAR BRANDS
   ============================================ */
.ndl-brands { 
  max-width: 1440px; 
  margin: 0 auto; 
  padding: 45px var(--ndl-spacing-x) 50px; 
  background: #0a0a0a; 
}
.ndl-brands-header {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-bottom: 30px;
}
.ndl-brands-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, #333, transparent);
}
.ndl-brands-header h2 {
  font-size: 24px;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: -0.3px;
  color: #fff;
}
.ndl-brand-list {
  display: flex;
  justify-content: center;
  gap: 14px;
  flex-wrap: wrap;
}
.ndl-brand-pill {
  display: flex;
  align-items: center;
  gap: 10px;
  background: #151515;
  border: 1px solid #252525;
  border-radius: 50px;
  padding: 12px 28px;
  font-size: 13px;
  font-weight: 600;
  color: #bbb;
  letter-spacing: 0.8px;
  cursor: pointer;
  transition: all 0.3s;
}
.ndl-brand-pill:hover {
  border-color: #b91c1c;
  color: #fff;
  background: #1a1a1a;
  transform: translateY(-2px);
}
.ndl-brand-pill svg { flex-shrink: 0; }


/* ============================================
   FEATURED PRODUCTS
   ============================================ */
.ndl-products { 
  max-width: 1440px; 
  margin: 0 auto; 
  padding: 20px var(--ndl-spacing-x) 50px; 
  background: #0a0a0a; 
}
.ndl-section-title {
  text-align: center;
  font-size: 26px;
  font-weight: 700;
  margin-bottom: 30px;
  letter-spacing: -0.3px;
  color: #fff;
}
.ndl-product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.ndl-product-card {
  background: #131313;
  border: 1px solid #1c1c1c;
  border-radius: 14px;
  overflow: hidden;
  transition: all 0.3s;
}
.ndl-product-card:hover {
  border-color: #2e2e2e;
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.5);
}
.ndl-prod-img {
  position: relative;
  background: #1a1a1a;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 170px;
  overflow: hidden;
}
.ndl-prod-img img {
  max-height: 130px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  transition: transform 0.4s;
}
.ndl-product-card:hover .ndl-prod-img img { transform: scale(1.06); }
.ndl-prod-info { padding: 14px 16px 16px; }
.ndl-prod-info h3 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 3px;
  color: #fff;
}
.ndl-prod-compat {
  font-size: 11px;
  color: #555;
  margin-bottom: 12px;
  line-height: 1.4;
}
.ndl-quote-btn {
  display: block;
  width: 100%;
  padding: 10px 16px;
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  color: #000;
  border: none;
  border-radius: 8px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  transition: all 0.3s;
  text-align: center;
}
.ndl-quote-btn:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(185,28,28,0.3);
}


/* ============================================
   PAGINATION
   ============================================ */
.ndl-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 36px;
}
.ndl-page-btn {
  width: 36px; height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #181818;
  border: 1px solid #282828;
  border-radius: 8px;
  color: #777;
  font-size: 13px;
  font-weight: 600;
  transition: all 0.3s;
}
.ndl-page-btn:hover { border-color: #b91c1c; color: #b91c1c; }
.ndl-page-btn.active {
  background: #b91c1c;
  border-color: #b91c1c;
  color: #000;
}
.ndl-page-btn.arrow { background: transparent; }
.ndl-page-dots { color: #555; font-size: 14px; padding: 0 4px; }
.ndl-page-more {
  color: #777;
  font-size: 13px;
  cursor: pointer;
  padding: 0 8px;
  transition: color 0.3s;
}
.ndl-page-more:hover { color: #b91c1c; }


/* ============================================
   CTA BANNER
   ============================================ */
.ndl-cta {
  max-width: 1440px;
  margin: 20px auto 40px;
  width: calc(100% - (var(--ndl-spacing-x) * 2));
  background: linear-gradient(135deg, #1a1000, #2a1800, #1a1000);
  border: 1px solid #3a2a10;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  min-height: 220px;
}
.ndl-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 50%, rgba(185,28,28,0.08), transparent 60%);
}
.ndl-cta-content {
  position: relative;
  z-index: 2;
  padding: 40px 50px;
}
.ndl-cta-content h2 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  color: #fff;
}
.ndl-cta-content h3 {
  font-size: 28px;
  font-weight: 800;
  line-height: 1.3;
  color: #b91c1c;
  margin-bottom: 24px;
}
.ndl-cta-btn {
  display: inline-block;
  background: #b91c1c;
  color: #000;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 8px;
  transition: all 0.3s;
  letter-spacing: 0.3px;
  border: none;
}
.ndl-cta-btn:hover {
  background: #dc2626;
  transform: translateY(-2px);
  box-shadow: 0 4px 20px rgba(185,28,28,0.3);
  color: #000;
}
.ndl-cta-image {
  position: relative;
  width: 45%;
  height: 100%;
  min-height: 220px;
  flex-shrink: 0;
}
.ndl-cta-image img {
  width: 100%; height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  mask-image: linear-gradient(to right, transparent 0%, black 30%);
  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 30%);
}
.ndl-cta-circle {
  position: absolute;
  bottom: 20px; right: 30px;
  width: 54px; height: 54px;
  background: rgba(0,0,0,0.55);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(6px);
  z-index: 2;
  cursor: pointer;
  transition: transform 0.3s;
  border: 2px solid #b91c1c;
}
.ndl-cta-circle:hover { transform: scale(1.1); }


/* ============================================
   FOOTER
   ============================================ */
.ndl-footer {
  background: #080808;
  border-top: 1px solid #1a1a1a;
}
.ndl-footer-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 50px var(--ndl-spacing-x) 30px;
  gap: 40px;
}
.ndl-footer-brand { max-width: 260px; flex-shrink: 0; }
.ndl-footer-brand .ndl-logo { margin-bottom: 14px; }
.ndl-footer-tagline {
  font-size: 12px;
  color: #555;
  line-height: 1.7;
}
.ndl-footer-cols {
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.ndl-footer-col {
  display: flex;
  flex-direction: column;
  gap: 10px;
  min-width: 110px;
}
.ndl-footer-col h4 {
  font-size: 14px;
  font-weight: 700;
  color: #ddd;
  margin-bottom: 6px;
}
.ndl-footer-col a {
  font-size: 12px;
  color: #555;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 6px;
}
.ndl-footer-col a .material-symbols-outlined { font-size: 14px; }
.ndl-footer-col a:hover { color: #b91c1c; }
.ndl-footer-bottom {
  border-top: 1px solid #151515;
  padding: 18px var(--ndl-spacing-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}
.ndl-footer-bottom p { font-size: 12px; color: #3a3a3a; margin: 0; }
.ndl-developer-credit {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  color: #555;
}
.ndl-dev-logo {
  max-height: 10px; /* Forces the logo to be very small */
  width: auto;
}


/* ============================================
   SHOP / ARCHIVE PAGE
   ============================================ */

/* --- Override Astra / WooCommerce defaults --- */
.woocommerce .ast-container,
.woocommerce-page .ast-container,
.post-type-archive-product .ast-container,
.woocommerce .content-area,
.woocommerce-page .content-area,
.woocommerce .site-main,
.woocommerce-page .site-main {
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
}

/* Kill WooCommerce default sidebar layout */
.woocommerce-page #secondary,
.woocommerce #secondary,
.ast-woo-shop-archive #secondary { display: none !important; }

/* ============================================
   WOOCOMMERCE NATIVE PRODUCT GRID (Related / Upsells)
   ============================================ */
.woocommerce ul.products,
.woocommerce-page ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 18px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  align-items: stretch !important;
}
.woocommerce ul.products::before,
.woocommerce ul.products::after { display: none !important; }
.woocommerce ul.products li.product,
.woocommerce-page ul.products li.product {
  background: #131313 !important;
  border: 1px solid #1c1c1c !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  transition: all 0.3s !important;
  display: flex !important;
  flex-direction: column !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  float: none !important;
}
.woocommerce ul.products li.product:hover,
.woocommerce-page ul.products li.product:hover {
  border-color: #2e2e2e !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5) !important;
}
.woocommerce ul.products li.product a.woocommerce-LoopProduct-link,
.woocommerce-page ul.products li.product a.woocommerce-LoopProduct-link {
  display: flex !important;
  flex-direction: column !important;
  text-decoration: none !important;
  flex-grow: 1 !important;
}
.woocommerce ul.products li.product img,
.woocommerce-page ul.products li.product img {
  width: 100% !important;
  height: 170px !important;
  object-fit: contain !important;
  background: #1a1a1a !important;
  padding: 16px !important;
  margin: 0 !important;
  border-bottom: 1px solid #1c1c1c !important;
  border-radius: 0 !important;
  box-shadow: none !important;
}
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce-page ul.products li.product .woocommerce-loop-product__title {
  font-size: 14px !important;
  color: #fff !important;
  font-weight: 700 !important;
  padding: 14px 16px 4px !important;
  margin: 0 !important;
  line-height: 1.4 !important;
  text-align: left !important;
}
.woocommerce ul.products li.product .button,
.woocommerce-page ul.products li.product .button {
  margin: auto 16px 16px 16px !important;
  display: block !important;
  background: linear-gradient(135deg, #b91c1c, #991b1b) !important;
  color: #000 !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  padding: 10px 16px !important;
  transition: all 0.3s !important;
  text-transform: none !important;
  text-align: center !important;
}
.woocommerce ul.products li.product .button:hover,
.woocommerce-page ul.products li.product .button:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(185,28,28,0.3) !important;
}

/* Force full width primary column */
.woocommerce #primary,
.woocommerce-page #primary,
.post-type-archive-product #primary {
  width: 100% !important;
  max-width: 100% !important;
  float: none !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Remove Astra WooCommerce spacing */
.ast-separate-container.woocommerce #primary,
.ast-separate-container.woocommerce-page #primary { padding: 0 !important; }
.woocommerce .ast-woo-shop-archive,
.woocommerce-page .ast-woo-shop-archive { padding: 0 !important; }
.woocommerce .woocommerce-result-count,
.woocommerce .woocommerce-ordering,
.woocommerce .woocommerce-breadcrumb { display: none !important; }

/* ============================================
   SINGLE PRODUCT PAGE FIXES
   ============================================ */
body.single-product .ast-container,
body.single-product .site-main {
  max-width: 1440px !important;
  margin: 0 auto !important;
  padding: 0 var(--ndl-spacing-x) !important;
}

body.single-product div.product {
  display: flex !important;
  flex-wrap: wrap !important;
  gap: 50px !important;
  align-items: flex-start !important;
  margin-top: 40px !important;
}

body.single-product div.product div.images {
  flex: 0 0 500px !important;
  max-width: 500px !important;
  width: 100% !important;
  margin: 0 !important;
  float: none !important;
}

body.single-product div.product div.summary {
  flex: 1 !important;
  min-width: 320px !important;
  margin: 0 !important;
  float: none !important;
}

body.single-product div.product .woocommerce-product-gallery__wrapper {
  margin: 0 !important;
}

body.single-product div.product .woocommerce-product-gallery__image {
  background: #111;
  border: 1px solid #222;
  border-radius: 12px;
  overflow: hidden;
  padding: 10px;
  margin-bottom: 10px;
}

body.single-product div.product .woocommerce-product-gallery__image img {
  width: 100% !important;
  height: auto !important;
  display: block;
}

body.single-product div.product .woocommerce-tabs,
body.single-product div.product .related.products,
body.single-product div.product .up-sells {
  flex: 0 0 100% !important;
  width: 100% !important;
  clear: both !important;
  margin-top: 50px !important;
}

body.single-product .product_title {
  font-size: 32px !important;
  color: #fff !important;
  margin-bottom: 20px !important;
  line-height: 1.2 !important;
}

body.single-product form.cart {
  margin-top: 30px !important;
}

body.single-product .single_add_to_cart_button {
  background: linear-gradient(135deg, #b91c1c, #991b1b) !important;
  color: #000 !important;
  border: none !important;
  border-radius: 8px !important;
  font-weight: 700 !important;
  padding: 14px 30px !important;
  transition: all 0.3s !important;
}

body.single-product .single_add_to_cart_button:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-2px) !important;
}

/* Quantity input on single product */
body.single-product .quantity input.qty {
  background-color: #1a1a1a !important;
  color: #fff !important;
  border: 1px solid #444 !important;
  padding: 13px !important;
  border-radius: 6px !important;
  margin-right: 15px !important;
  width: 70px !important;
}

/* --- Vehicle Specs Card (below SKU in summary) --- */
.ndl-specs-card {
  margin-top: 28px;
  background: linear-gradient(145deg, #141414 0%, #111 100%);
  border: 1px solid #222;
  border-radius: 14px;
  overflow: hidden;
  animation: ndlFadeUp 0.5s ease-out;
}
.ndl-specs-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 16px 22px;
  background: linear-gradient(135deg, rgba(185,28,28,0.08) 0%, transparent 100%);
  border-bottom: 1px solid #1e1e1e;
}
.ndl-specs-header .material-symbols-outlined {
  font-size: 22px;
  color: #b91c1c;
}
.ndl-specs-header h4 {
  font-size: 15px;
  font-weight: 700;
  color: #eee;
  letter-spacing: 0.3px;
  margin: 0;
}
.ndl-specs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}
.ndl-spec-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 22px;
  border-bottom: 1px solid #1a1a1a;
  border-right: 1px solid #1a1a1a;
  transition: background 0.25s ease;
}
.ndl-spec-item:hover {
  background: rgba(185,28,28,0.04);
}
.ndl-spec-item:nth-child(even) {
  border-right: none;
}
.ndl-spec-item:nth-last-child(-n+2) {
  border-bottom: none;
}
.ndl-spec-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(185,28,28,0.08);
  border: 1px solid rgba(185,28,28,0.15);
  border-radius: 10px;
  flex-shrink: 0;
}
.ndl-spec-icon .material-symbols-outlined {
  font-size: 20px;
  color: #b91c1c;
}
.ndl-spec-content {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}
.ndl-spec-label {
  font-size: 11px;
  color: #555;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}
.ndl-spec-value {
  font-size: 14px;
  color: #eee;
  font-weight: 600;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Specs card responsive */
@media (max-width: 480px) {
  .ndl-specs-grid {
    grid-template-columns: 1fr;
  }
  .ndl-spec-item {
    border-right: none !important;
  }
  .ndl-spec-item:nth-last-child(-n+2) {
    border-bottom: 1px solid #1a1a1a;
  }
  .ndl-spec-item:last-child {
    border-bottom: none;
  }
}

/* --- Single Product Tabs --- */
body.single-product .woocommerce-tabs {
  background: #111 !important;
  border: 1px solid #222 !important;
  border-radius: 12px !important;
  padding: 30px !important;
}
body.single-product .woocommerce-tabs ul.tabs {
  display: flex !important;
  gap: 15px !important;
  border-bottom: 1px solid #222 !important;
  margin-bottom: 20px !important;
  padding: 0 0 10px 0 !important;
}
body.single-product .woocommerce-tabs ul.tabs li {
  list-style: none !important;
  margin: 0 !important;
  padding: 0 !important;
  border: none !important;
  background: transparent !important;
}
body.single-product .woocommerce-tabs ul.tabs li a {
  color: #777 !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  padding: 8px 0 !important;
  position: relative !important;
  text-decoration: none !important;
  transition: color 0.3s !important;
}
body.single-product .woocommerce-tabs ul.tabs li.active a {
  color: #b91c1c !important;
}
body.single-product .woocommerce-tabs ul.tabs li.active a::after {
  content: '' !important;
  position: absolute !important;
  bottom: -11px !important;
  left: 0 !important;
  right: 0 !important;
  height: 2px !important;
  background: #b91c1c !important;
}
body.single-product .woocommerce-tabs .panel {
  color: #aaa !important;
  font-size: 15px !important;
  line-height: 1.8 !important;
}
body.single-product .woocommerce-tabs .panel h2 {
  display: none !important;
}

/* --- Additional Information Table (shop_attributes) --- */
body.single-product .woocommerce-tabs table.shop_attributes {
  border: 1px solid #222 !important;
  border-radius: 10px !important;
  overflow: hidden !important;
  border-collapse: separate !important;
  border-spacing: 0 !important;
  width: 100% !important;
  background: #0e0e0e !important;
}
body.single-product .woocommerce-tabs table.shop_attributes tr {
  border-bottom: 1px solid #1a1a1a !important;
  transition: background 0.2s ease !important;
}
body.single-product .woocommerce-tabs table.shop_attributes tr:last-child {
  border-bottom: none !important;
}
body.single-product .woocommerce-tabs table.shop_attributes tr:hover {
  background: rgba(185,28,28,0.03) !important;
}
body.single-product .woocommerce-tabs table.shop_attributes th {
  background: rgba(185,28,28,0.06) !important;
  color: #999 !important;
  font-size: 13px !important;
  font-weight: 600 !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  padding: 14px 20px !important;
  border: none !important;
  border-right: 1px solid #1a1a1a !important;
  width: 180px !important;
  vertical-align: middle !important;
}
body.single-product .woocommerce-tabs table.shop_attributes td {
  color: #eee !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  padding: 14px 20px !important;
  border: none !important;
  vertical-align: middle !important;
}
body.single-product .woocommerce-tabs table.shop_attributes td p {
  margin: 0 !important;
  padding: 0 !important;
}
body.single-product .woocommerce-tabs table.shop_attributes td a {
  color: #b91c1c !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  transition: color 0.2s !important;
}
body.single-product .woocommerce-tabs table.shop_attributes td a:hover {
  color: #dc2626 !important;
  text-decoration: underline !important;
}

/* ============================================
   SINGLE PRODUCT – Trust Feature Badges Bar
   ============================================ */
.ndl-trust-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: linear-gradient(135deg, #1a1000 0%, #251800 50%, #1a1000 100%);
  border: 1px solid #3a2a10;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 10px;
  flex: 0 0 100% !important;
  width: 100% !important;
  clear: both !important;
}
.ndl-trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 28px 16px;
  position: relative;
  transition: background 0.3s ease;
}
.ndl-trust-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: linear-gradient(to bottom, transparent, #3a2a10, transparent);
}
.ndl-trust-item:hover {
  background: rgba(185,28,28,0.06);
}
.ndl-trust-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(185,28,28,0.15), rgba(185,28,28,0.05));
  border: 1px solid rgba(185,28,28,0.25);
  border-radius: 14px;
  margin-bottom: 14px;
  transition: transform 0.3s, box-shadow 0.3s;
}
.ndl-trust-item:hover .ndl-trust-icon {
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(185,28,28,0.2);
}
.ndl-trust-icon .material-symbols-outlined {
  font-size: 26px;
  color: #b91c1c;
}
.ndl-trust-title {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin: 0 0 6px;
}
.ndl-trust-desc {
  font-size: 12px;
  color: #777;
  line-height: 1.5;
  margin: 0;
  max-width: 180px;
}

/* ============================================
   SINGLE PRODUCT – Product Info + Compatibility
   ============================================ */
.ndl-product-info-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: #111;
  border: 1px solid #222;
  border-radius: 16px;
  overflow: hidden;
  margin-top: 20px;
  flex: 0 0 100% !important;
  width: 100% !important;
  clear: both !important;
}
.ndl-product-info-col,
.ndl-product-compat-col {
  padding: 28px 30px;
}
.ndl-product-info-col {
  border-right: 1px solid #1e1e1e;
}
.ndl-info-heading {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 22px;
  padding-bottom: 14px;
  border-bottom: 1px solid #1e1e1e;
}
.ndl-info-heading .material-symbols-outlined {
  font-size: 22px;
  color: #b91c1c;
}

/* Product Info List */
.ndl-info-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ndl-info-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
  transition: background 0.2s;
}
.ndl-info-list li:last-child {
  border-bottom: none;
}
.ndl-info-list li:hover {
  background: rgba(185,28,28,0.03);
  margin: 0 -10px;
  padding-left: 10px;
  padding-right: 10px;
  border-radius: 6px;
}
.ndl-info-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #777;
  font-weight: 500;
}
.ndl-info-label::before {
  content: '';
  width: 5px;
  height: 5px;
  background: #b91c1c;
  border-radius: 50%;
  flex-shrink: 0;
}
.ndl-info-value {
  font-size: 14px;
  color: #eee;
  font-weight: 600;
}

/* Compatibility List */
.ndl-compat-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
}
.ndl-compat-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 9px 12px;
  font-size: 14px;
  color: #ccc;
  font-weight: 500;
  border-radius: 8px;
  transition: all 0.2s;
}
.ndl-compat-list li:hover {
  background: rgba(185,28,28,0.06);
  color: #fff;
}
.ndl-compat-dot {
  width: 8px;
  height: 8px;
  background: #b91c1c;
  border-radius: 50%;
  flex-shrink: 0;
  box-shadow: 0 0 6px rgba(185,28,28,0.4);
}

/* ============================================
   SINGLE PRODUCT – WhatsApp CTA Bar
   ============================================ */
.ndl-whatsapp-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #0d1f12 0%, #112216 50%, #0d1f12 100%);
  border: 1px solid #1a3a22;
  border-radius: 16px;
  padding: 24px 32px;
  margin-top: 20px;
  flex: 0 0 100% !important;
  width: 100% !important;
  clear: both !important;
}
.ndl-whatsapp-text h4 {
  font-size: 18px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 4px;
}
.ndl-whatsapp-text p {
  font-size: 13px;
  color: #6b9b78;
  margin: 0;
}
.ndl-whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 28px;
  border-radius: 10px;
  text-decoration: none;
  transition: all 0.3s;
  white-space: nowrap;
  box-shadow: 0 4px 16px rgba(37,211,102,0.2);
}
.ndl-whatsapp-btn:hover {
  background: #22c55e;
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37,211,102,0.35);
  color: #fff;
}
.ndl-whatsapp-btn svg {
  flex-shrink: 0;
}

/* ============================================
   RESPONSIVE – Trust Bar, Info Section, WhatsApp
   ============================================ */
@media (max-width: 768px) {
  .ndl-trust-bar {
    grid-template-columns: repeat(2, 1fr);
  }
  .ndl-trust-item:nth-child(2)::after {
    display: none;
  }
  .ndl-trust-item:nth-child(-n+2) {
    border-bottom: 1px solid #3a2a10;
  }
  .ndl-product-info-section {
    grid-template-columns: 1fr;
  }
  .ndl-product-info-col {
    border-right: none;
    border-bottom: 1px solid #1e1e1e;
  }
  .ndl-whatsapp-cta {
    flex-direction: column;
    text-align: center;
    gap: 18px;
    padding: 22px 20px;
  }
}

@media (max-width: 480px) {
  .ndl-trust-bar {
    grid-template-columns: 1fr 1fr;
  }
  .ndl-trust-item {
    padding: 20px 12px;
  }
  .ndl-trust-icon {
    width: 44px;
    height: 44px;
  }
  .ndl-trust-icon .material-symbols-outlined {
    font-size: 22px;
  }
  .ndl-product-info-col,
  .ndl-product-compat-col {
    padding: 20px 18px;
  }
}

/* --- Related Products & Up-sells --- */
body.single-product section.related.products,
body.single-product section.up-sells {
  margin-top: 60px !important;
  padding-top: 40px !important;
  border-top: 1px solid #222 !important;
}
body.single-product section.related.products > h2,
body.single-product section.up-sells > h2 {
  font-size: 24px !important;
  font-weight: 700 !important;
  color: #fff !important;
  margin-bottom: 30px !important;
}
/* Restore grid for single product related items (undo global unset) */
body.single-product .woocommerce ul.products,
body.single-product .woocommerce-page ul.products {
  all: revert !important;
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  gap: 20px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
body.single-product .woocommerce ul.products li.product,
body.single-product .woocommerce-page ul.products li.product {
  all: revert !important;
  background: #131313 !important;
  border: 1px solid #1c1c1c !important;
  border-radius: 14px !important;
  overflow: hidden !important;
  transition: all 0.3s !important;
  display: flex !important;
  flex-direction: column !important;
  text-align: center !important;
}
body.single-product .woocommerce ul.products li.product:hover,
body.single-product .woocommerce-page ul.products li.product:hover {
  border-color: #2e2e2e !important;
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 40px rgba(0,0,0,0.5) !important;
}
body.single-product .woocommerce ul.products li.product a img,
body.single-product .woocommerce-page ul.products li.product a img {
  width: 100% !important;
  height: 180px !important;
  object-fit: contain !important;
  background: #1a1a1a !important;
  padding: 20px !important;
  margin: 0 0 15px 0 !important;
  border-bottom: 1px solid #1c1c1c !important;
  border-radius: 14px 14px 0 0 !important;
}
body.single-product .woocommerce ul.products li.product .woocommerce-loop-product__title,
body.single-product .woocommerce-page ul.products li.product .woocommerce-loop-product__title {
  font-size: 15px !important;
  color: #fff !important;
  font-weight: 600 !important;
  padding: 0 15px !important;
  margin-bottom: 15px !important;
  line-height: 1.4 !important;
}
body.single-product .woocommerce ul.products li.product .button,
body.single-product .woocommerce-page ul.products li.product .button {
  margin: auto 15px 20px 15px !important;
  display: block !important;
  background: linear-gradient(135deg, #b91c1c, #991b1b) !important;
  color: #000 !important;
  border: none !important;
  border-radius: 8px !important;
  font-size: 13px !important;
  font-weight: 700 !important;
  padding: 10px 16px !important;
  transition: all 0.3s !important;
  text-transform: none !important;
  text-align: center !important;
}
body.single-product .woocommerce ul.products li.product .button:hover,
body.single-product .woocommerce-page ul.products li.product .button:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c) !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 16px rgba(185,28,28,0.3) !important;
}

@media (max-width: 768px) {
  body.single-product div.product div.images {
    flex: 1 1 100% !important;
    max-width: 100% !important;
  }
  body.single-product div.product div.summary {
    min-width: 100% !important;
  }
  body.single-product .woocommerce ul.products,
  body.single-product .woocommerce-page ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (min-width: 769px) and (max-width: 1024px) {
  body.single-product .woocommerce ul.products,
  body.single-product .woocommerce-page ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
  }
}

@media (max-width: 480px) {
  body.single-product .woocommerce ul.products,
  body.single-product .woocommerce-page ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 10px !important;
  }
  body.single-product .woocommerce ul.products li.product a img,
  body.single-product .woocommerce-page ul.products li.product a img {
    height: 120px !important;
    padding: 10px !important;
  }
  body.single-product .woocommerce ul.products li.product .woocommerce-loop-product__title,
  body.single-product .woocommerce-page ul.products li.product .woocommerce-loop-product__title {
    font-size: 13px !important;
    padding: 0 10px !important;
  }
  body.single-product .woocommerce ul.products li.product .button,
  body.single-product .woocommerce-page ul.products li.product .button {
    font-size: 11px !important;
    padding: 8px 10px !important;
    margin: auto 10px 15px 10px !important;
  }
}

/* --- Shop Wrapper --- */
.ndl-shop {
  background: #0a0a0a;
  padding: 36px var(--ndl-spacing-x) 50px;
  min-height: 70vh;
}

/* --- Page Title --- */
.ndl-shop-title {
  font-size: 32px;
  font-weight: 800;
  color: #fff;
  margin-bottom: 24px;
  letter-spacing: -0.5px;
}

/* --- Toolbar (search + sort) --- */
.ndl-shop-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 16px;
}
.ndl-shop-searchbar {
  flex: 1;
  max-width: 420px;
  display: flex;
  align-items: center;
  gap: 10px;
  background: #141414;
  border: 1px solid #222;
  border-radius: 10px;
  padding: 11px 16px;
  transition: border-color 0.3s;
}
.ndl-shop-searchbar:focus-within { border-color: #b91c1c; }
.ndl-shop-searchbar .material-symbols-outlined { color: #555; font-size: 19px; flex-shrink: 0; }
.ndl-shop-searchbar input {
  background: none;
  border: none;
  color: #aaa;
  font-size: 13px;
  width: 100%;
  outline: none;
  font-family: 'Inter', Arial, sans-serif;
}
.ndl-shop-searchbar input::placeholder { color: #444; }

.ndl-shop-toolbar-right {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ndl-toolbar-select {
  display: flex;
  align-items: center;
  gap: 6px;
  background: #141414;
  border: 1px solid #222;
  border-radius: 10px;
  padding: 11px 16px;
  color: #888;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.3s;
  white-space: nowrap;
}
.ndl-toolbar-select:hover { border-color: #333; color: #bbb; }

/* --- Results Count + View Toggle --- */
.ndl-shop-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 22px;
  padding: 0 2px;
}
.ndl-results-count {
  font-size: 13px;
  color: #666;
  font-weight: 400;
}
.ndl-results-count strong { color: #999; font-weight: 600; }
.ndl-view-toggles {
  display: flex;
  align-items: center;
  gap: 4px;
}
.ndl-view-btn {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #151515;
  border: 1px solid #222;
  border-radius: 7px;
  cursor: pointer;
  transition: all 0.2s;
}
.ndl-view-btn .material-symbols-outlined { font-size: 18px; color: #555; }
.ndl-view-btn:hover { border-color: #e8a020; }
.ndl-view-btn:hover .material-symbols-outlined { color: #e8a020; }

/* --- Main Layout: Grid + Sidebar --- */
.ndl-shop-layout {
  display: flex;
  gap: 28px;
  align-items: flex-start;
}
.ndl-shop-products { flex: 1; min-width: 0; }

/* --- Products Grid (3 columns) --- */
.ndl-shop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.ndl-no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #555;
  font-size: 15px;
}

/* --- Product Cards (reuses homepage styles) --- */
/* (Already defined in homepage section: .ndl-product-card, .ndl-prod-img, etc.) */

/* --- Filter Sidebar --- */
.ndl-filter-sidebar {
  width: 280px;
  flex-shrink: 0;
  background: #111;
  border: 1px solid #1e1e1e;
  border-radius: 14px;
  padding: 0;
  position: sticky;
  top: 20px;
  overflow: hidden;
}

/* Scrollable filter body */
.ndl-filter-form {
  padding: 0 18px 20px;
  max-height: 75vh;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #333 transparent;
}
.ndl-filter-form::-webkit-scrollbar { width: 5px; }
.ndl-filter-form::-webkit-scrollbar-track { background: transparent; }
.ndl-filter-form::-webkit-scrollbar-thumb { background: #333; border-radius: 4px; }
.ndl-filter-form::-webkit-scrollbar-thumb:hover { background: #555; }
.ndl-filter-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px 14px;
  border-bottom: 1px solid #1e1e1e;
  background: #0e0e0e;
}
.ndl-filter-header h3 {
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.3px;
}
.ndl-filter-close {
  background: rgba(255,255,255,0.04);
  border: 1px solid #222;
  border-radius: 6px;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
}
.ndl-filter-close:hover { background: rgba(255,255,255,0.08); border-color: #444; }
.ndl-filter-close .material-symbols-outlined {
  font-size: 18px;
  color: #666;
  transition: color 0.2s;
}
.ndl-filter-close:hover .material-symbols-outlined { color: #fff; }

/* --- Filter Groups --- */
.ndl-filter-group {
  padding: 14px 0;
  border-bottom: 1px solid #1a1a1a;
}
.ndl-filter-group:first-of-type { padding-top: 16px; }
.ndl-filter-group:last-of-type { border-bottom: none; padding-bottom: 8px; }
.ndl-filter-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 10px;
  cursor: pointer;
  padding: 4px 2px;
  border-radius: 6px;
  transition: background 0.2s;
}
.ndl-filter-group-head:hover { background: rgba(255,255,255,0.03); }
.ndl-filter-group-head h4 {
  font-size: 13px;
  font-weight: 700;
  color: #ddd;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.ndl-clear-filter {
  font-size: 11px;
  color: #b91c1c;
  font-weight: 600;
  transition: all 0.2s;
  padding: 2px 8px;
  border-radius: 4px;
  background: rgba(185,28,28,0.08);
}
.ndl-clear-filter:hover { color: #dc2626; background: rgba(185,28,28,0.15); }
.ndl-filter-toggle {
  font-size: 20px !important;
  color: #555;
  cursor: pointer;
  transition: color 0.2s, transform 0.3s;
}
.ndl-filter-toggle:hover { color: #aaa; }
.ndl-filter-count {
  font-size: 11px;
  color: #444;
  margin-left: auto;
  padding-left: 6px;
}

/* Collapsible options */
.ndl-filter-options {
  max-height: 300px;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.ndl-filter-options.collapsed {
  max-height: 0;
  overflow: hidden;
}

/* --- Custom Checkboxes --- */
.ndl-check-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #888;
  padding: 5px 4px;
  cursor: pointer;
  transition: all 0.2s;
  user-select: none;
  border-radius: 5px;
}
.ndl-check-label:hover { color: #eee; background: rgba(255,255,255,0.03); }
.ndl-check-label input[type="checkbox"] {
  display: none;
}
.ndl-checkmark {
  width: 16px;
  height: 16px;
  border: 2px solid #3a3a3a;
  border-radius: 4px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s;
  background: #151515;
}
.ndl-check-label:hover .ndl-checkmark { border-color: #666; background: #1a1a1a; }
.ndl-check-label input[type="checkbox"]:checked + .ndl-checkmark {
  background: #b91c1c;
  border-color: #b91c1c;
}
.ndl-check-label input[type="checkbox"]:checked + .ndl-checkmark::after {
  content: '';
  width: 4px;
  height: 8px;
  border: solid #000;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
  margin-top: -1px;
}
.ndl-check-label input[type="checkbox"]:checked ~ * { color: #fff; }

/* --- Apply Filters Button --- */
.ndl-filter-actions {
  padding-top: 6px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ndl-apply-filters-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, #b91c1c, #991b1b);
  color: #000;
  border: none;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', Arial, sans-serif;
  letter-spacing: 0.3px;
}
.ndl-apply-filters-btn:hover {
  background: linear-gradient(135deg, #dc2626, #b91c1c);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(185,28,28,0.3);
}
.ndl-reset-filters-btn {
  display: block;
  width: 100%;
  padding: 10px 20px;
  background: transparent;
  color: #777;
  border: 1px solid #252525;
  border-radius: 10px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s;
  font-family: 'Inter', Arial, sans-serif;
}
.ndl-reset-filters-btn:hover {
  color: #cc2200;
  border-color: rgba(204,34,0,0.3);
  background: rgba(204,34,0,0.06);
}

/* --- Filter Badge --- */
.ndl-filter-badge {
  background: #b91c1c;
  color: #000;
  font-size: 10px;
  font-weight: 800;
  padding: 1px 6px;
  border-radius: 20px;
  line-height: 1.5;
  min-width: 18px;
  text-align: center;
}

/* --- Sort Dropdown (inside toolbar) --- */
.ndl-sort-select {
  background: transparent;
  border: none;
  color: #888;
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  outline: none;
  font-family: 'Inter', Arial, sans-serif;
  appearance: none;
  -webkit-appearance: none;
  padding-right: 18px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23666'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
}
.ndl-sort-select option {
  background: #1a1a1a;
  color: #ccc;
  padding: 8px;
}
.ndl-sort-select:hover { color: #ccc; }

/* --- Mobile filter toggle button --- */
#ndl-toggle-filters {
  border: none;
  font-family: 'Inter', Arial, sans-serif;
}

/* --- Shop Page Pagination (links instead of buttons) --- */
.ndl-shop .ndl-pagination a.ndl-page-btn {
  text-decoration: none;
}


/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes ndlFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .ndl-product-grid { grid-template-columns: repeat(3, 1fr); }
  .ndl-cat-grid { grid-template-columns: repeat(2, 1fr); }
  /* Shop page */
  .ndl-shop-layout { flex-direction: column-reverse; }
  .ndl-filter-sidebar { width: 100%; position: static; }
  .ndl-shop-grid { grid-template-columns: repeat(3, 1fr); }
  /* Native Woo Grid */
  .woocommerce ul.products, .woocommerce-page ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
  }
}

@media (max-width: 768px) {
  .ndl-topbar { padding: 12px var(--ndl-spacing-x); }
  .ndl-nav { padding: 0 var(--ndl-spacing-x); flex-direction: column; align-items: flex-start; display: none; width: 100%; }
  .ndl-nav.open, .ndl-nav.active { display: flex; }
  .ndl-nav-left { flex-direction: column; width: 100%; align-items: stretch; }
  .ndl-nav-left a { border-bottom: 1px solid #222; width: 100%; padding: 14px 20px; }
  .ndl-nav-right { display: flex; flex-direction: column; width: 100%; align-items: stretch; background: #111; border-top: 1px solid #333; }
  .ndl-nav-right a { border-bottom: 1px solid #222; width: 100%; padding: 14px 20px; }
  .ndl-hide-mobile { display: none !important; }
  .ndl-hero { min-height: 420px; height: auto; padding: 50px 0; }
  .ndl-hero h1 { font-size: 30px; }
  .ndl-categories { padding: 24px var(--ndl-spacing-x); }
  .ndl-cat-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ndl-cat-card { height: 140px; }
  .ndl-brands { padding: 30px var(--ndl-spacing-x); }
  .ndl-brand-pill { padding: 10px 18px; font-size: 11px; }
  .ndl-products { padding: 20px var(--ndl-spacing-x) 40px; }
  .ndl-product-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .ndl-cta { margin: 20px auto 30px; width: calc(100% - (var(--ndl-spacing-x) * 2)); flex-direction: column; }
  .ndl-cta-content { padding: 28px; }
  .ndl-cta-content h2, .ndl-cta-content h3 { font-size: 22px; }
  .ndl-cta-image { width: 100%; min-height: 180px; }
  .ndl-cta-image img {
    mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, black 30%);
  }
  .ndl-footer-inner { flex-direction: column; padding: 30px var(--ndl-spacing-x) 20px; }
  .ndl-footer-bottom { flex-direction: column; justify-content: center; align-items: center; text-align: center; }
  /* Shop page */
  .ndl-shop { padding: 24px var(--ndl-spacing-x) 40px; }
  .ndl-shop-title { font-size: 26px; }
  .ndl-shop-toolbar { flex-direction: column; align-items: stretch; }
  .ndl-shop-searchbar { max-width: 100%; }
  .ndl-shop-toolbar-right { justify-content: flex-end; }
  .ndl-shop-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
}

@media (max-width: 480px) {
  .ndl-search { display: none; }
  .ndl-hero h1 { font-size: 24px; }
  .ndl-product-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .ndl-prod-img { height: 120px; }
  .ndl-logo-image { max-height: 36px; }
  /* Shop page */
  .ndl-shop-grid { grid-template-columns: 1fr; }
  .ndl-shop-toolbar-right { flex-direction: column; }
  .ndl-toolbar-select { width: 100%; }
  /* Native Woo Grid Mobile */
  .woocommerce ul.products, .woocommerce-page ul.products {
    grid-template-columns: 1fr !important;
  }
  .woocommerce ul.products li.product img,
  .woocommerce-page ul.products li.product img {
    height: 200px !important;
  }
}


/* ============================================
   MOBILE FILTER SIDEBAR SLIDE-IN
   ============================================ */
@media (max-width: 1024px) {
  .ndl-filter-sidebar {
    position: fixed;
    top: 0;
    right: -340px;
    width: 310px;
    height: 100vh;
    z-index: 9999;
    border-radius: 0;
    border: none;
    border-left: 1px solid #222;
    background: #111;
    transition: right 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    overflow-y: auto;
  }
  .ndl-filter-sidebar.open {
    right: 0;
    box-shadow: -8px 0 40px rgba(0, 0, 0, 0.6);
  }

  /* Backdrop overlay */
  body.ndl-sidebar-open::after {
    content: '';
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    z-index: 9998;
    backdrop-filter: blur(3px);
    -webkit-backdrop-filter: blur(3px);
    animation: ndlFadeIn 0.3s ease;
  }
}

@keyframes ndlFadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


/* ============================================
   VIEW TOGGLE - GRID VARIANTS
   ============================================ */
.ndl-shop-grid.ndl-grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.ndl-shop-grid.ndl-grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
.ndl-shop-grid.ndl-grid-list {
  grid-template-columns: 1fr;
}
.ndl-shop-grid.ndl-grid-list .ndl-product-card {
  display: flex;
  flex-direction: row;
}
.ndl-shop-grid.ndl-grid-list .ndl-prod-img {
  width: 200px;
  height: 160px;
  flex-shrink: 0;
  border-radius: 14px 0 0 14px;
}
.ndl-shop-grid.ndl-grid-list .ndl-prod-info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 24px;
}

/* Active view button */
.ndl-view-btn.active {
  border-color: #b91c1c;
  background: rgba(185, 28, 28, 0.08);
}
.ndl-view-btn.active .material-symbols-outlined {
  color: #b91c1c;
}

/* Responsive overrides for view toggles */
@media (max-width: 768px) {
  .ndl-shop-grid.ndl-grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }
  .ndl-shop-grid.ndl-grid-list .ndl-product-card {
    flex-direction: column;
  }
  .ndl-shop-grid.ndl-grid-list .ndl-prod-img {
    width: 100%;
    border-radius: 14px 14px 0 0;
  }
}


/* ============================================
   PULSE ANIMATION (Filter Badge)
   ============================================ */
@keyframes ndlPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.12); }
}


/* ============================================
   SHOP PAGE - HORIZONTAL FILTER BAR
   ============================================ */

/* Force full-width shop container */
.ndl-shop {
  width: 100% !important;
  max-width: 1440px !important;
  margin: 0 auto !important;
}

.ndl-shop-filter-bar {
  background: linear-gradient(135deg, #141414 0%, #1a1a1a 100%);
  border: 1px solid #222;
  border-radius: 16px;
  padding: 20px 24px;
  margin-bottom: 16px;
  width: 100% !important;
  box-sizing: border-box !important;
}

.ndl-shop-filter-row {
  display: flex !important;
  flex-wrap: wrap !important;
  flex-direction: row !important;
  gap: 10px !important;
  align-items: center !important;
  width: 100% !important;
}

.ndl-shop-filter-bar .ndl-filter,
.ndl-shop-filter-row .ndl-filter {
  flex: 1 1 0% !important;
  min-width: 120px !important;
  max-width: none !important;
}

.ndl-shop-filter-bar .ndl-search-btn {
  flex-shrink: 0 !important;
  min-width: auto !important;
  padding: 12px 28px !important;
}

/* Toolbar row (search + sort + reset) inside filter bar */
.ndl-shop-filter-bar .ndl-shop-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid #222;
}

.ndl-shop-searchbar-inline {
  display: flex;
  align-items: center;
  gap: 8px;
  background: #111;
  border: 1px solid #222;
  border-radius: 10px;
  padding: 8px 14px;
  flex: 1;
}

.ndl-shop-searchbar-inline .material-symbols-outlined {
  color: #555;
  font-size: 20px;
}

.ndl-shop-searchbar-inline input {
  background: none;
  border: none;
  outline: none;
  color: #fff;
  font-size: 13px;
  width: 100%;
  font-family: 'Inter', sans-serif;
}

.ndl-shop-searchbar-inline input::placeholder {
  color: #555;
}

.ndl-shop-filter-bar .ndl-shop-toolbar-right {
  display: flex;
  align-items: center;
  gap: 10px;
}

.ndl-reset-filters-btn {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 18px;
  background: rgba(185, 28, 28, 0.1);
  border: 1px solid #b91c1c;
  border-radius: 8px;
  color: #b91c1c;
  font-size: 13px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.ndl-reset-filters-btn:hover {
  background: #b91c1c;
  color: #000;
}

/* Results bar */
.ndl-shop-results-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  margin-bottom: 8px;
}

.ndl-results-count {
  color: #777;
  font-size: 13px;
}

.ndl-results-count strong {
  color: #b91c1c;
}

.ndl-filter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #b91c1c;
  color: #000;
  font-size: 11px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 20px;
  margin-left: 6px;
  animation: ndlPulse 2s infinite;
}

/* No products message */
.ndl-no-products {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: #555;
  font-size: 16px;
}

/* ============================================
   SHOP FILTER BAR RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
  .ndl-shop-filter-row {
    flex-wrap: wrap;
  }
  .ndl-shop-filter-bar .ndl-filter {
    min-width: calc(33.33% - 10px);
    flex: 0 0 calc(33.33% - 10px);
  }
  .ndl-shop-filter-bar .ndl-search-btn {
    width: 100%;
    flex: 0 0 100%;
  }
}

@media (max-width: 768px) {
  .ndl-shop-filter-bar {
    padding: 14px 16px;
    border-radius: 12px;
  }
  .ndl-shop-filter-bar .ndl-filter {
    min-width: calc(50% - 6px);
    flex: 0 0 calc(50% - 6px);
  }
  .ndl-shop-filter-bar .ndl-shop-toolbar {
    flex-direction: column;
    gap: 8px;
  }
  .ndl-shop-searchbar-inline {
    width: 100%;
  }
  .ndl-shop-filter-bar .ndl-shop-toolbar-right {
    width: 100%;
    justify-content: space-between;
  }
}

@media (max-width: 480px) {
  .ndl-shop-filter-bar .ndl-filter {
    min-width: 100%;
    flex: 1 1 100%;
    border-right: none;
  }
  .ndl-hero-filters .ndl-search-btn {
    width: 100%;
    padding: 16px;
  }
}

/* Hero filters responsive for 6 dropdowns */
@media (max-width: 1200px) {
  .ndl-hero-filters {
    flex-wrap: wrap;
  }
  .ndl-hero-filters .ndl-filter {
    min-width: calc(33.33% - 1px);
    flex: 1 1 calc(33.33% - 1px);
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .ndl-hero-filters .ndl-search-btn {
    flex: 1 1 100%;
  }
}

@media (max-width: 768px) {
  .ndl-hero-filters .ndl-filter {
    min-width: calc(50% - 1px);
    flex: 1 1 calc(50% - 1px);
  }
}

@media (max-width: 480px) {
  .ndl-hero-filters .ndl-filter {
    min-width: 100%;
    flex: 0 0 100%;
  }
}/* Responsive adjustments for home page */
@media (max-width: 1024px) {
  .ndl-topbar {
    flex-wrap: wrap;
    align-items: center;
    padding: 12px 20px;
    gap: 12px;
  }
  .ndl-logo { order: 1; }
  .ndl-topbar-right { order: 2; margin-left: auto; }
  .ndl-mobile-menu-btn { order: 3; display: flex; margin-left: 10px; align-items: center; }
  .ndl-search { order: 4; flex: 1 1 100%; max-width: 100%; }
  .ndl-nav {
    flex-direction: column;
    align-items: flex-start;
    background: #161616;
    padding: 0 20px;
  }
  .ndl-nav-left, .ndl-nav-right { display: none; }
  .ndl-nav.open .ndl-nav-left, .ndl-nav.active .ndl-nav-left,
  .ndl-nav.open .ndl-nav-right, .ndl-nav.active .ndl-nav-right { display: flex; flex-direction: column; width: 100%; }
  .ndl-nav a { padding: 10px 0; width: 100%; }
  .ndl-hero { min-height: 350px; height: auto; padding: 40px 0; }
  .ndl-hero h1 { font-size: 32px; }
  .ndl-hero .ndl-hero-sub { font-size: 14px; }
  .ndl-cat-grid, .ndl-product-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 768px) {
  .ndl-nav a { font-size: 14px; }
  .ndl-hero { min-height: 300px; height: auto; padding: 30px 0; }
  .ndl-hero h1 { font-size: 28px; }
  .ndl-cat-grid, .ndl-product-grid { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .ndl-hero { min-height: 250px; height: auto; padding: 30px 0; }
  .ndl-hero h1 { font-size: 24px; }
  .ndl-cat-grid, .ndl-product-grid { grid-template-columns: 1fr; }
}


/* ============================================
   BRANCHES PAGE
   ============================================ */

/* --- Astra Override for Branches Page --- */
body.ndl-branches-page .ast-container,
body.ndl-branches-page .site-content > .ast-container,
body.ndl-branches-page #primary,
body.ndl-branches-page .site-main,
body.ndl-branches-page .entry-content,
body.ndl-branches-page .ast-article-single,
body.ndl-branches-page .ast-separate-container .ast-article-single {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}
body.ndl-branches-page .ast-separate-container #primary {
  padding: 0 !important;
  margin: 0 !important;
}
body.ndl-branches-page .page-header,
body.ndl-branches-page .entry-header,
body.ndl-branches-page .ast-page-builder-template .entry-header {
  display: none !important;
}
body.ndl-branches-page #secondary {
  display: none !important;
}
body.ndl-branches-page {
  background: #0a0a0a !important;
}

/* --- Astra Override for About Page --- */
body.ndl-about-body,
body.page-template-template-about,
body.page-template-template-about-php {
  background: #050505 !important;
}

body.ndl-about-body .ast-container,
body.ndl-about-body .site-content > .ast-container,
body.ndl-about-body #primary,
body.ndl-about-body .site-main,
body.ndl-about-body .entry-content,
body.ndl-about-body .ast-article-single,
body.ndl-about-body .ast-separate-container .ast-article-single,
body.page-template-template-about .ast-container,
body.page-template-template-about .site-content > .ast-container,
body.page-template-template-about #primary,
body.page-template-template-about .site-main,
body.page-template-template-about .entry-content,
body.page-template-template-about .ast-article-single,
body.page-template-template-about .ast-separate-container .ast-article-single,
body.page-template-template-about-php .ast-container,
body.page-template-template-about-php .site-content > .ast-container,
body.page-template-template-about-php #primary,
body.page-template-template-about-php .site-main,
body.page-template-template-about-php .entry-content,
body.page-template-template-about-php .ast-article-single,
body.page-template-template-about-php .ast-separate-container .ast-article-single {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

body.ndl-about-body .ast-separate-container #primary,
body.page-template-template-about .ast-separate-container #primary,
body.page-template-template-about-php .ast-separate-container #primary {
  padding: 0 !important;
  margin: 0 !important;
}

body.ndl-about-body .page-header,
body.ndl-about-body .entry-header,
body.ndl-about-body .ast-page-builder-template .entry-header,
body.ndl-about-body #secondary,
body.page-template-template-about .page-header,
body.page-template-template-about .entry-header,
body.page-template-template-about .ast-page-builder-template .entry-header,
body.page-template-template-about #secondary,
body.page-template-template-about-php .page-header,
body.page-template-template-about-php .entry-header,
body.page-template-template-about-php .ast-page-builder-template .entry-header,
body.page-template-template-about-php #secondary {
  display: none !important;
}

/* --- Hero --- */
.ndl-branches-hero {
  position: relative;
  min-height: 560px;
  background: linear-gradient(135deg, #1a0000 0%, #0a0a0a 40%, #111 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 150px var(--ndl-spacing-x);
}
.ndl-branches-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(185,28,28,0.06) 0%, transparent 60%);
  pointer-events: none;
}
.ndl-branches-hero::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, #b91c1c, #991b1b, transparent);
}
.ndl-branches-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1440px;
  margin: 0 auto;
  width: 100%;
}
.ndl-branches-hero-content h1 {
  font-size: 48px;
  font-weight: 900;
  color: #fff;
  line-height: 1.15;
  margin: 0 0 14px;
  letter-spacing: -0.5px;
}
.ndl-branches-hero-content h1 span {
  color: #b91c1c;
}
.ndl-branches-hero-content p {
  font-size: 15px;
  color: #888;
  line-height: 1.7;
  margin: 0;
}
.ndl-branches-hero-logo {
  position: absolute;
  right: var(--ndl-spacing-x);
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.08;
  z-index: 1;
}
.ndl-branches-hero-logo img {
  width: 300px;
  height: auto;
}

/* --- Branch Cards Section --- */
.ndl-branches-section {
  max-width: 1440px;
  margin: 0 auto;
  padding: 50px var(--ndl-spacing-x);
}
.ndl-branches-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

/* --- Single Branch Card --- */
.ndl-branch-card {
  background: #111;
  border: 1px solid #222;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.35s ease;
}
.ndl-branch-card:hover {
  border-color: #b91c1c;
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(185,28,28,0.12);
}

/* Card Image */
.ndl-branch-img {
  position: relative;
  height: 180px;
  overflow: hidden;
  background: #1a1a1a;
}
.ndl-branch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}
.ndl-branch-card:hover .ndl-branch-img img {
  transform: scale(1.05);
}
.ndl-branch-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.15) 0%, rgba(0,0,0,0.6) 100%);
  pointer-events: none;
}
.ndl-branch-number {
  position: absolute;
  top: 14px;
  left: 14px;
  width: 30px;
  height: 30px;
  background: #b91c1c;
  color: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 800;
  z-index: 3;
  box-shadow: 0 4px 12px rgba(185,28,28,0.3);
}
.ndl-branch-city-label {
  position: absolute;
  top: 14px;
  left: 54px;
  z-index: 3;
  font-size: 12px;
  font-weight: 800;
  color: #fff;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  text-shadow: 0 2px 8px rgba(0,0,0,0.6);
}

/* Card Details */
.ndl-branch-details {
  padding: 20px;
}
.ndl-branch-detail-row {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid #1a1a1a;
  font-size: 12px;
  color: #aaa;
  line-height: 1.6;
}
.ndl-branch-detail-row:last-of-type {
  border-bottom: none;
}
.ndl-branch-detail-row .material-symbols-outlined {
  font-size: 18px;
  color: #b91c1c;
  flex-shrink: 0;
  margin-top: 1px;
}
.ndl-branch-detail-row strong {
  color: #fff;
  font-weight: 700;
  font-size: 13px;
}

/* Get Directions Button */
.ndl-branch-directions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: 100%;
  margin-top: 16px;
  padding: 12px 20px;
  background: transparent;
  border: 1px solid #b91c1c;
  border-radius: 10px;
  color: #b91c1c;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 0.3s;
}
.ndl-branch-directions:hover {
  background: #b91c1c;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(185,28,28,0.3);
}
.ndl-branch-directions .material-symbols-outlined {
  font-size: 18px;
  transition: transform 0.3s;
}
.ndl-branch-directions:hover .material-symbols-outlined {
  transform: translateX(4px);
}

/* --- 4 Branches One Promise --- */
.ndl-branches-promise {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 var(--ndl-spacing-x) 50px;
}
.ndl-promise-content {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  background: #111;
  border: 1px solid #222;
  border-radius: 20px;
  overflow: hidden;
  min-height: 420px;
}
.ndl-promise-text {
  padding: 50px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ndl-promise-text h2 {
  font-size: 36px;
  font-weight: 900;
  color: #fff;
  line-height: 1.2;
  margin: 0 0 18px;
}
.ndl-promise-red {
  color: #b91c1c;
}
.ndl-promise-text > p {
  font-size: 14px;
  color: #777;
  line-height: 1.7;
  margin: 0 0 28px;
}
.ndl-promise-features {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ndl-promise-features li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 14px;
  font-weight: 600;
  color: #ccc;
}
.ndl-promise-icon {
  width: 38px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(185,28,28,0.1);
  border: 1px solid rgba(185,28,28,0.2);
  border-radius: 10px;
  flex-shrink: 0;
}
.ndl-promise-icon .material-symbols-outlined {
  font-size: 20px;
  color: #b91c1c;
}

/* Map Container */
.ndl-promise-map {
  position: relative;
  background: #1a1a1a;
  overflow: hidden;
}
.ndl-promise-map iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: none;
  filter: invert(0.9) hue-rotate(180deg) brightness(0.6) contrast(1.2);
}
.ndl-map-overlay {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.ndl-map-pin {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 6px;
  animation: ndlPinBounce 2s ease infinite;
}
.ndl-pin-num {
  width: 28px;
  height: 28px;
  background: #b91c1c;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 800;
  box-shadow: 0 4px 16px rgba(185,28,28,0.4);
  border: 2px solid #fff;
}
.ndl-pin-label {
  background: rgba(0,0,0,0.75);
  backdrop-filter: blur(6px);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 6px;
  white-space: nowrap;
}

@keyframes ndlPinBounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-4px); }
}

/* --- Contact Bar --- */
.ndl-branches-contact-bar {
  background: linear-gradient(135deg, #1a0000 0%, #0a0a0a 100%);
  border-top: 1px solid #222;
  border-bottom: 1px solid #222;
}
.ndl-contact-bar-inner {
  max-width: 1440px;
  margin: 0 auto;
  padding: 30px var(--ndl-spacing-x);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.ndl-contact-bar-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: rgba(255,255,255,0.02);
  border: 1px solid #1e1e1e;
  border-radius: 14px;
  transition: all 0.3s;
}
.ndl-contact-bar-item:hover {
  border-color: #333;
  background: rgba(255,255,255,0.04);
}
.ndl-contact-bar-item > .material-symbols-outlined {
  font-size: 28px;
  color: #b91c1c;
  flex-shrink: 0;
}
.ndl-contact-bar-item h5 {
  font-size: 15px;
  font-weight: 700;
  color: #fff;
  margin: 0 0 2px;
}
.ndl-contact-bar-item p {
  font-size: 12px;
  color: #777;
  margin: 0;
  line-height: 1.5;
}
.ndl-contact-bar-btn {
  margin-left: auto;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  padding: 10px 20px;
  border: 1px solid #b91c1c;
  border-radius: 8px;
  color: #b91c1c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-decoration: none;
  transition: all 0.3s;
}
.ndl-contact-bar-btn:hover {
  background: #b91c1c;
  color: #fff;
}
.ndl-contact-bar-btn.ndl-wa-btn {
  border-color: #25d366;
  color: #25d366;
}
.ndl-contact-bar-btn.ndl-wa-btn:hover {
  background: #25d366;
  color: #fff;
}


/* ============================================
   BRANCHES PAGE – RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .ndl-branches-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 1024px) {
  .ndl-branches-hero-content h1 {
    font-size: 38px;
  }
  .ndl-branches-hero-logo {
    display: none;
  }
  .ndl-promise-content {
    grid-template-columns: 1fr;
  }
  .ndl-promise-map iframe {
    min-height: 300px;
  }
  .ndl-contact-bar-inner {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .ndl-branches-hero {
    min-height: 460px;
    padding: 90px var(--ndl-spacing-x);
  }
  .ndl-branches-hero-content h1 {
    font-size: 32px;
  }
  .ndl-branches-section {
    padding: 30px var(--ndl-spacing-x);
  }
  .ndl-branches-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .ndl-branch-card {
    display: grid;
    grid-template-columns: 200px 1fr;
  }
  .ndl-branch-img {
    height: 100%;
    min-height: 220px;
  }
  .ndl-promise-text {
    padding: 30px 24px;
  }
  .ndl-promise-text h2 {
    font-size: 28px;
  }
  .ndl-contact-bar-item {
    flex-wrap: wrap;
  }
  .ndl-contact-bar-btn {
    margin-left: 0;
    margin-top: 8px;
  }
}

@media (max-width: 480px) {
  .ndl-branches-hero-content h1 {
    font-size: 26px;
  }
  .ndl-branch-card {
    grid-template-columns: 1fr;
  }
  .ndl-branch-img {
    height: 180px;
    min-height: auto;
  }
  .ndl-promise-text h2 {
    font-size: 24px;
  }
}


/* ============================================
   CONTACT PAGE
   ============================================ */

body.page-template-template-contact,
body.page-template-template-contact-php {
  background: #0a0a0a !important;
}

body.page-template-template-contact .ast-container,
body.page-template-template-contact .site-content > .ast-container,
body.page-template-template-contact #primary,
body.page-template-template-contact .site-main,
body.page-template-template-contact .entry-content,
body.page-template-template-contact .ast-article-single,
body.page-template-template-contact .ast-separate-container .ast-article-single,
body.page-template-template-contact-php .ast-container,
body.page-template-template-contact-php .site-content > .ast-container,
body.page-template-template-contact-php #primary,
body.page-template-template-contact-php .site-main,
body.page-template-template-contact-php .entry-content,
body.page-template-template-contact-php .ast-article-single,
body.page-template-template-contact-php .ast-separate-container .ast-article-single {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  box-shadow: none !important;
}

body.page-template-template-contact .page-header,
body.page-template-template-contact .entry-header,
body.page-template-template-contact .ast-page-builder-template .entry-header,
body.page-template-template-contact-php .page-header,
body.page-template-template-contact-php .entry-header,
body.page-template-template-contact-php .ast-page-builder-template .entry-header {
  display: none !important;
}

body.page-template-template-contact #secondary,
body.page-template-template-contact-php #secondary {
  display: none !important;
}

body.page.page-template-template-contact:not(.home) .site-main,
body.page.page-template-template-contact:not(.home) #primary,
body.page.page-template-template-contact:not(.home) .entry-content,
body.page.page-template-template-contact-php:not(.home) .site-main,
body.page.page-template-template-contact-php:not(.home) #primary,
body.page.page-template-template-contact-php:not(.home) .entry-content {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

body.page:not(.home):has(.ndl-contact-page) .site-main,
body.page:not(.home):has(.ndl-contact-page) #primary,
body.page:not(.home):has(.ndl-contact-page) .entry-content,
body.page:not(.home):has(.ndl-contact-page) .ast-container,
body.page:not(.home):has(.ndl-contact-page) .site-content > .ast-container {
  max-width: 100% !important;
  width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

body:has(.ndl-contact-page) .page-header,
body:has(.ndl-contact-page) .entry-header,
body:has(.ndl-contact-page) .ast-page-builder-template .entry-header,
body:has(.ndl-contact-page) #secondary {
  display: none !important;
}

.ndl-contact-page {
  background: #0a0a0a;
  color: #fff;
}

.ndl-contact-container {
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  padding-left: var(--ndl-spacing-x);
  padding-right: var(--ndl-spacing-x);
}

.ndl-contact-hero {
  position: relative;
  min-height: 390px;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  background: var(--ndl-contact-hero-img) center 45% / cover no-repeat;
}

.ndl-contact-hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: linear-gradient(90deg, #b91c1c, #991b1b, transparent);
}

.ndl-contact-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(98deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.88) 36%, rgba(0,0,0,0.52) 67%, rgba(0,0,0,0.42) 100%),
    radial-gradient(circle at 70% 20%, rgba(185,28,28,0.26), transparent 34%);
}

.ndl-contact-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 28px;
  padding-bottom: 58px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ndl-contact-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 34px;
  color: #8b8b8b;
  font-size: 12px;
  font-weight: 600;
}

.ndl-contact-breadcrumb a {
  color: #aaa;
  transition: color 0.25s;
}

.ndl-contact-breadcrumb a:hover {
  color: #fff;
}

.ndl-contact-breadcrumb .material-symbols-outlined {
  font-size: 15px;
  color: #555;
}

.ndl-contact-hero-copy {
  max-width: 580px;
}

.ndl-contact-hero-copy h1 {
  font-size: 44px;
  line-height: 1.15;
  margin: 0 0 18px;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.ndl-contact-hero-copy h1 span {
  color: #b91c1c;
}

.ndl-contact-hero-copy p {
  max-width: 430px;
  color: #aaa;
  font-size: 15px;
  line-height: 1.7;
  margin: 0 0 24px;
  font-weight: 400;
}

.ndl-contact-hero-copy p::after,
.ndl-contact-card-rule,
.ndl-contact-near-card h2::after {
  content: '';
  display: block;
  width: 54px;
  height: 3px;
  margin-top: 16px;
  background: #d8a900;
  border-radius: 999px;
}

.ndl-contact-hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}

.ndl-contact-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 46px;
  padding: 12px 24px;
  border-radius: 7px;
  color: #fff;
  font-size: 14px;
  font-weight: 800;
  line-height: 1;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s, background 0.25s;
}

.ndl-contact-btn .material-symbols-outlined {
  font-size: 19px;
}

.ndl-contact-btn:hover {
  color: #fff;
  transform: translateY(-2px);
}

.ndl-contact-btn-whatsapp {
  background: #19b844;
  box-shadow: 0 12px 26px rgba(25,184,68,0.2);
}

.ndl-contact-btn-whatsapp:hover {
  background: #20c94e;
  box-shadow: 0 14px 30px rgba(25,184,68,0.3);
}

.ndl-contact-btn-call {
  background: #b91c1c;
  box-shadow: 0 12px 26px rgba(185,28,28,0.22);
}

.ndl-contact-btn-call:hover {
  background: #d01825;
  box-shadow: 0 14px 30px rgba(185,28,28,0.32);
}

.ndl-contact-btn-outline {
  background: rgba(10,10,10,0.62);
  border: 1px solid #777;
}

.ndl-contact-btn-outline:hover {
  border-color: #b91c1c;
  background: rgba(185,28,28,0.13);
}

.ndl-contact-quick-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding-top: 28px;
  padding-bottom: 24px;
}

.ndl-contact-info-card {
  min-height: 255px;
  padding: 26px 24px 24px;
  background: linear-gradient(180deg, #151515 0%, #111 100%);
  border: 1px solid #202020;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 18px 40px rgba(0,0,0,0.22);
  transition: transform 0.25s, border-color 0.25s, box-shadow 0.25s;
}

.ndl-contact-info-card:hover {
  transform: translateY(-5px);
  border-color: rgba(185,28,28,0.65);
  box-shadow: 0 22px 52px rgba(0,0,0,0.32);
}

.ndl-contact-card-icon {
  width: 66px;
  height: 66px;
  margin: 0 auto 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.ndl-contact-card-icon .material-symbols-outlined {
  font-size: 34px;
}

.ndl-contact-card-red {
  background: #c91521;
}

.ndl-contact-card-green {
  background: #18b947;
}

.ndl-contact-info-card h2 {
  color: #fff;
  font-size: 15px;
  line-height: 1.1;
  margin: 0;
  font-weight: 800;
  text-transform: uppercase;
}

.ndl-contact-info-card .ndl-contact-card-rule {
  width: 50px;
  margin: 12px auto 18px;
}

.ndl-contact-info-card p {
  color: #aaa;
  margin: 0 0 14px;
  font-size: 13px;
  line-height: 1.6;
}

.ndl-contact-info-card .ndl-contact-strong {
  color: #fff;
  font-weight: 700;
  font-size: 14px;
}

.ndl-contact-card-link {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: #d8a900;
  font-size: 13px;
  font-weight: 850;
  transition: color 0.25s;
}

.ndl-contact-card-link .material-symbols-outlined {
  font-size: 16px;
}

.ndl-contact-card-link:hover {
  color: #fff;
}

.ndl-contact-green-link {
  color: #1ed553;
}

.ndl-contact-branches {
  padding-top: 8px;
  padding-bottom: 16px;
}

.ndl-contact-section-title {
  margin: 0 0 18px;
  color: #fff;
  font-size: 32px;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.ndl-contact-section-title span {
  color: #b91c1c;
}

.ndl-contact-branch-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.ndl-contact-branch-card {
  overflow: hidden;
  background: #121212;
  border: 1px solid #242424;
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0,0,0,0.2);
  transition: transform 0.25s, border-color 0.25s;
}

.ndl-contact-branch-card:hover {
  transform: translateY(-5px);
  border-color: rgba(185,28,28,0.7);
}

.ndl-contact-branch-img {
  position: relative;
  height: 150px;
  overflow: hidden;
  background: #191919;
}

.ndl-contact-branch-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.05), rgba(0,0,0,0.58));
}

.ndl-contact-branch-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s;
}

.ndl-contact-branch-card:hover .ndl-contact-branch-img img {
  transform: scale(1.06);
}

.ndl-contact-branch-number {
  position: absolute;
  top: 12px;
  left: 12px;
  z-index: 2;
  width: 33px;
  height: 33px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #b91c1c;
  color: #fff;
  border-radius: 4px;
  font-weight: 900;
  font-size: 15px;
  box-shadow: 0 8px 18px rgba(185,28,28,0.3);
}

.ndl-contact-branch-body {
  padding: 18px 16px 16px;
}

.ndl-contact-branch-body h3 {
  margin: 0 0 6px;
  color: #fff;
  font-size: 14px;
  line-height: 1.2;
  font-weight: 700;
}

.ndl-contact-address {
  min-height: 44px;
  margin: 0 0 12px;
  color: #aaa;
  font-size: 13px;
  line-height: 1.45;
}

.ndl-contact-branch-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin: 0 0 11px;
  color: #cfcfcf;
  font-size: 12px;
  line-height: 1.45;
}

.ndl-contact-branch-line .material-symbols-outlined {
  flex-shrink: 0;
  color: #b91c1c;
  font-size: 17px;
  line-height: 1.25;
}

.ndl-contact-directions {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  margin-top: 14px;
  padding: 9px 11px;
  border: 1px solid #9e1818;
  border-radius: 3px;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  transition: background 0.25s, border-color 0.25s;
}

.ndl-contact-directions .material-symbols-outlined {
  color: #ef101f;
  font-size: 17px;
}

.ndl-contact-directions .ndl-contact-arrow {
  margin-left: auto;
  color: #d8a900;
}

.ndl-contact-directions:hover {
  background: #b91c1c;
  border-color: #b91c1c;
  color: #fff;
}

.ndl-contact-directions:hover .material-symbols-outlined {
  color: #fff;
}

.ndl-contact-map-row {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(360px, 0.95fr);
  gap: 18px;
  padding-top: 2px;
  padding-bottom: 20px;
}

.ndl-contact-map-card,
.ndl-contact-near-card {
  min-height: 340px;
  overflow: hidden;
  border: 1px solid #242424;
  border-radius: 8px;
  background: #121212;
  box-shadow: 0 18px 40px rgba(0,0,0,0.18);
}

.ndl-contact-map-card {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgba(12,18,20,0.84), rgba(12,18,20,0.9)),
    repeating-linear-gradient(28deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 34px),
    repeating-linear-gradient(118deg, rgba(185,28,28,0.12) 0 1px, transparent 1px 42px),
    #121719;
}

.ndl-contact-map-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 26% 30%, rgba(185,28,28,0.17), transparent 12%),
    radial-gradient(circle at 48% 58%, rgba(185,28,28,0.2), transparent 14%),
    radial-gradient(circle at 70% 16%, rgba(185,28,28,0.14), transparent 12%);
  opacity: 0.75;
}

.ndl-contact-map-shape {
  position: relative;
  width: min(78%, 520px);
  aspect-ratio: 0.82;
}

.ndl-contact-map-shape::before {
  content: '';
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255,255,255,0.07);
  background:
    linear-gradient(148deg, transparent 4%, rgba(37,48,48,0.78) 5% 15%, transparent 16%),
    linear-gradient(122deg, transparent 8%, rgba(42,56,56,0.95) 9% 72%, transparent 73%),
    linear-gradient(38deg, transparent 16%, rgba(27,37,37,0.92) 17% 78%, transparent 79%);
  clip-path: polygon(42% 2%, 56% 8%, 64% 21%, 71% 34%, 68% 47%, 75% 61%, 66% 76%, 59% 96%, 45% 87%, 35% 70%, 25% 60%, 30% 43%, 22% 31%, 34% 18%);
  box-shadow: inset 0 0 40px rgba(255,255,255,0.035), 0 0 80px rgba(0,0,0,0.45);
}

.ndl-contact-map-shape strong {
  position: absolute;
  right: 13%;
  bottom: 25%;
  color: rgba(255,255,255,0.72);
  font-size: clamp(22px, 3vw, 42px);
  font-weight: 850;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.ndl-contact-map-pin {
  position: absolute;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 7px;
  color: #fff;
  font-size: 12px;
  font-weight: 850;
  text-shadow: 0 2px 10px rgba(0,0,0,0.65);
  white-space: nowrap;
}

.ndl-contact-map-pin b {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #cf1421;
  border-radius: 50%;
  color: #fff;
  font-size: 13px;
  box-shadow: 0 8px 20px rgba(207,20,33,0.36);
}

.ndl-contact-pin-port {
  left: 16%;
  top: 25%;
}

.ndl-contact-pin-quatre {
  left: 39%;
  top: 48%;
}

.ndl-contact-pin-curepipe {
  left: 24%;
  top: 65%;
}

.ndl-contact-pin-riviere {
  right: -10%;
  top: 9%;
}

.ndl-contact-near-card {
  padding: 52px 40px 30px;
  background:
    radial-gradient(circle at 92% 0%, rgba(185,28,28,0.13), transparent 30%),
    linear-gradient(180deg, #151515 0%, #101010 100%);
}

.ndl-contact-near-card h2 {
  margin: 0 0 22px;
  color: #fff;
  font-size: 32px;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}

.ndl-contact-near-card h2 span {
  color: #b91c1c;
}

.ndl-contact-near-card h2::after {
  margin-top: 12px;
}

.ndl-contact-near-card > p {
  max-width: 500px;
  margin: 0 0 30px;
  color: #aaa;
  font-size: 15px;
  line-height: 1.7;
}

.ndl-contact-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid #242424;
}

.ndl-contact-features div {
  min-height: 104px;
  padding: 22px 12px 0;
  text-align: center;
  border-right: 1px solid #242424;
}

.ndl-contact-features div:last-child {
  border-right: none;
}

.ndl-contact-features .material-symbols-outlined {
  color: #ef101f;
  font-size: 34px;
  margin-bottom: 8px;
}

.ndl-contact-features p {
  margin: 0;
  color: #d9d9d9;
  font-size: 12px;
  line-height: 1.35;
  font-weight: 750;
}

.ndl-contact-whatsapp-strip {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  margin-top: 0;
  margin-bottom: 28px;
  padding-top: 20px;
  padding-bottom: 20px;
  background: linear-gradient(95deg, #8f1016 0%, #c01622 46%, #8f1016 100%);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  box-shadow: 0 18px 45px rgba(185,28,28,0.22);
}

.ndl-contact-whatsapp-icon {
  width: 74px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #1fbd4f;
  border: 4px solid rgba(255,255,255,0.88);
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(0,0,0,0.18);
}

.ndl-contact-whatsapp-icon .material-symbols-outlined {
  font-size: 39px;
}

.ndl-contact-whatsapp-strip h2 {
  margin: 0 0 4px;
  color: #fff;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.15;
}

.ndl-contact-whatsapp-strip p {
  max-width: 560px;
  margin: 0;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.55;
}

.ndl-contact-whatsapp-strip .ndl-contact-btn {
  min-width: 280px;
}

@media (max-width: 1200px) {
  .ndl-contact-quick-grid,
  .ndl-contact-branch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ndl-contact-map-row {
    grid-template-columns: 1fr;
  }

  .ndl-contact-pin-riviere {
    right: 2%;
  }
}

@media (max-width: 900px) {
  .ndl-contact-hero {
    min-height: 350px;
  }

  .ndl-contact-whatsapp-strip {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .ndl-contact-whatsapp-strip .ndl-contact-btn {
    grid-column: 1 / -1;
    justify-self: stretch;
    min-width: 0;
  }
}

@media (max-width: 768px) {
  .ndl-contact-hero {
    min-height: 330px;
  }

  .ndl-contact-hero-inner {
    padding-top: 22px;
    padding-bottom: 44px;
  }

  .ndl-contact-breadcrumb {
    margin-bottom: 28px;
  }

  .ndl-contact-hero-copy p {
    font-size: 14px;
  }

  .ndl-contact-quick-grid,
  .ndl-contact-branch-grid {
    grid-template-columns: 1fr;
  }

  .ndl-contact-info-card {
    min-height: auto;
  }

  .ndl-contact-branch-card {
    display: grid;
    grid-template-columns: 190px 1fr;
  }

  .ndl-contact-branch-img {
    height: 100%;
    min-height: 250px;
  }

  .ndl-contact-map-card,
  .ndl-contact-near-card {
    min-height: 300px;
  }

  .ndl-contact-near-card {
    padding: 34px 24px 24px;
  }

  .ndl-contact-hero-copy h1,
  .ndl-contact-section-title,
  .ndl-contact-near-card h2 {
    font-size: 28px;
  }

  .ndl-contact-features {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ndl-contact-features div:nth-child(2) {
    border-right: none;
  }

  .ndl-contact-features div:nth-child(-n+2) {
    border-bottom: 1px solid #242424;
  }
}

@media (max-width: 560px) {
  .ndl-contact-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ndl-contact-btn {
    width: 100%;
  }

  .ndl-contact-branch-card {
    grid-template-columns: 1fr;
  }

  .ndl-contact-branch-img {
    height: 180px;
    min-height: auto;
  }

  .ndl-contact-map-card {
    min-height: 260px;
  }

  .ndl-contact-map-shape {
    width: 92%;
  }

  .ndl-contact-map-pin {
    font-size: 10px;
  }

  .ndl-contact-map-pin b {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }

  .ndl-contact-pin-riviere {
    right: -22%;
  }

  .ndl-contact-whatsapp-strip {
    grid-template-columns: 1fr;
    gap: 14px;
    text-align: center;
  }

  .ndl-contact-whatsapp-icon {
    margin: 0 auto;
  }
}
/* Branch page hero height refinement */
body.page-template-template-branches .branches-hero,
body.page-template-template-branches .branch-hero,
body.page-template-template-branches .ndl-branches-hero,
body.page-template-template-branches .ndl-page-hero,
body.page-template-template-branches .page-hero,
body.page-template-template-branches main > section:first-child,
body.page-template-template-branches #primary > section:first-child {
    min-height: 520px !important;
    padding-top: 140px !important;
    padding-bottom: 140px !important;
    display: flex !important;
    align-items: center !important;
}

body.page-template-template-branches .branches-hero h1,
body.page-template-template-branches .branch-hero h1,
body.page-template-template-branches .ndl-branches-hero h1,
body.page-template-template-branches .ndl-page-hero h1,
body.page-template-template-branches .page-hero h1,
body.page-template-template-branches main > section:first-child h1,
body.page-template-template-branches #primary > section:first-child h1 {
    font-size: clamp(46px, 4.8vw, 82px) !important;
    line-height: 0.98 !important;
}

@media (max-width: 780px) {
    body.page-template-template-branches .branches-hero,
    body.page-template-template-branches .branch-hero,
    body.page-template-template-branches .ndl-branches-hero,
    body.page-template-template-branches .ndl-page-hero,
    body.page-template-template-branches .page-hero,
    body.page-template-template-branches main > section:first-child,
    body.page-template-template-branches #primary > section:first-child {
        min-height: 460px !important;
        padding-top: 82px !important;
        padding-bottom: 82px !important;
    }
}
/* NDL WooCommerce cart and checkout buttons */
.woocommerce-cart .wc-proceed-to-checkout a.checkout-button,
.woocommerce-cart table.cart td.actions .button,
.woocommerce-cart table.cart td.actions .button:disabled,
.woocommerce-cart table.cart td.actions .button[disabled],
.woocommerce-checkout #payment #place_order,
.woocommerce-checkout button.button,
.woocommerce-checkout input.button,
.woocommerce a.button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce .button.wc-forward,
.woocommerce-mini-cart__buttons a.button,
.woocommerce-message a.button,
.woocommerce-info a.button,
.woocommerce-error a.button,
.woocommerce a.button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
    background-color: #ed1c24 !important;
    border-color: #ed1c24 !important;
    color: #ffffff !important;
}

.woocommerce-cart .wc-proceed-to-checkout a.checkout-button:hover,
.woocommerce-cart table.cart td.actions .button:hover,
.woocommerce-checkout #payment #place_order:hover,
.woocommerce-checkout button.button:hover,
.woocommerce-checkout input.button:hover,
.woocommerce a.button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce .button.wc-forward:hover,
.woocommerce-mini-cart__buttons a.button:hover,
.woocommerce-message a.button:hover,
.woocommerce-info a.button:hover,
.woocommerce-error a.button:hover,
.woocommerce a.button.alt:hover,
.woocommerce button.button.alt:hover,
.woocommerce input.button.alt:hover {
    background-color: #c9151b !important;
    border-color: #c9151b !important;
    color: #ffffff !important;
}

/* NDL WooCommerce cart and checkout typography consistency */
.ndl-cart-page,
.ndl-cart-page .woocommerce,
.ndl-cart-page .woocommerce-cart-form,
.ndl-cart-page .woocommerce-checkout {
    color: #f4f4f4;
}

.ndl-cart-page h1,
.ndl-cart-page h2,
.ndl-cart-page h3,
.ndl-cart-page .cart_totals h2,
.ndl-cart-page .woocommerce-billing-fields h3,
.ndl-cart-page .woocommerce-additional-fields h3,
.ndl-cart-page #order_review_heading {
    color: #ffffff !important;
    font-size: clamp(26px, 5vw, 40px);
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: 0;
}

.ndl-cart-page label,
.ndl-cart-page .woocommerce table.shop_table th,
.ndl-cart-page .woocommerce table.shop_table td,
.ndl-cart-page .woocommerce-checkout-review-order-table th,
.ndl-cart-page .woocommerce-checkout-review-order-table td,
.ndl-cart-page .woocommerce form .form-row label,
.ndl-cart-page .woocommerce form .form-row .required {
    color: #f4f4f4 !important;
    font-size: 16px;
    line-height: 1.4;
    font-weight: 700;
}

.ndl-cart-page .woocommerce table.shop_table td.product-name,
.ndl-cart-page .woocommerce table.shop_table td.product-name a,
.ndl-cart-page .woocommerce-checkout-review-order-table .product-name,
.ndl-cart-page .woocommerce-checkout-review-order-table .product-name strong,
.ndl-cart-page .woocommerce-checkout-review-order-table .product-name .product-quantity {
    color: #ffffff !important;
    font-size: 18px;
    line-height: 1.45;
    font-weight: 500;
}

.ndl-cart-page .woocommerce table.shop_table td.product-name a,
.ndl-cart-page .woocommerce-cart-form .product-name a {
    color: #ed1c24 !important;
    font-weight: 500;
}

.ndl-cart-page .woocommerce form .form-row input.input-text,
.ndl-cart-page .woocommerce form .form-row textarea,
.ndl-cart-page .woocommerce form .form-row select,
.ndl-cart-page .select2-container--default .select2-selection--single,
.ndl-cart-page .woocommerce-cart table.cart td.actions .coupon .input-text,
.ndl-cart-page .woocommerce-cart table.cart input.qty {
    min-height: 52px;
    background: #191919 !important;
    border: 1px solid rgba(255, 255, 255, 0.28) !important;
    border-radius: 6px;
    color: #ffffff !important;
    font-size: 16px !important;
    line-height: 1.3;
    font-weight: 400;
}

.ndl-cart-page .woocommerce form .form-row input.input-text::placeholder,
.ndl-cart-page .woocommerce form .form-row textarea::placeholder,
.ndl-cart-page .woocommerce-cart table.cart td.actions .coupon .input-text::placeholder {
    color: rgba(255, 255, 255, 0.58) !important;
}

.ndl-cart-page .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #ffffff !important;
    font-size: 16px;
    line-height: 50px;
}

.ndl-cart-page .select2-container--default .select2-selection--single .select2-selection__arrow {
    min-height: 50px;
}

.ndl-cart-page .woocommerce-info,
.ndl-cart-page .woocommerce-message,
.ndl-cart-page .woocommerce-error,
.ndl-cart-page .woocommerce-privacy-policy-text,
.ndl-cart-page .woocommerce-privacy-policy-text p,
.ndl-cart-page #payment,
.ndl-cart-page #payment div.payment_box,
.ndl-cart-page #payment ul.payment_methods li,
.ndl-cart-page #payment .payment_method_cod label {
    color: #f4f4f4 !important;
    font-size: 16px;
    line-height: 1.65;
}

.ndl-cart-page #payment div.payment_box {
    background: #f4f4f4 !important;
    color: #333333 !important;
    border-radius: 4px;
}

.ndl-cart-page #payment div.payment_box::before {
    border-bottom-color: #f4f4f4 !important;
}

@media (max-width: 600px) {
    .ndl-cart-page label,
    .ndl-cart-page .woocommerce table.shop_table th,
    .ndl-cart-page .woocommerce table.shop_table td,
    .ndl-cart-page .woocommerce form .form-row label,
    .ndl-cart-page .woocommerce form .form-row input.input-text,
    .ndl-cart-page .woocommerce form .form-row textarea,
    .ndl-cart-page .woocommerce form .form-row select,
    .ndl-cart-page .select2-container--default .select2-selection--single .select2-selection__rendered,
    .ndl-cart-page .woocommerce-info,
    .ndl-cart-page .woocommerce-message,
    .ndl-cart-page .woocommerce-error,
    .ndl-cart-page .woocommerce-privacy-policy-text,
    .ndl-cart-page #payment,
    .ndl-cart-page #payment div.payment_box,
    .ndl-cart-page #payment ul.payment_methods li {
        font-size: 15px !important;
    }

    .ndl-cart-page .woocommerce table.shop_table td.product-name,
    .ndl-cart-page .woocommerce table.shop_table td.product-name a,
    .ndl-cart-page .woocommerce-checkout-review-order-table .product-name {
        font-size: 17px !important;
    }
}

/* Final branch hero size override */
body.ndl-branches-page .ndl-branches-hero,
body.page-id-branches .ndl-branches-hero,
body.page-id-about-branches .ndl-branches-hero,
body:has(.ndl-branches-hero) .ndl-branches-hero {
    min-height: 560px !important;
    padding-top: 150px !important;
    padding-bottom: 150px !important;
}

@media (max-width: 768px) {
    body.ndl-branches-page .ndl-branches-hero,
    body.page-id-branches .ndl-branches-hero,
    body.page-id-about-branches .ndl-branches-hero,
    body:has(.ndl-branches-hero) .ndl-branches-hero {
        min-height: 460px !important;
        padding-top: 90px !important;
        padding-bottom: 90px !important;
    }
}

/* ============================================
   SITE-WIDE PAGE TYPOGRAPHY CONSISTENCY
   Match informational pages to home/shop/product sizing.
   ============================================ */
body.ndl-branches-page,
body.ndl-about-body,
body.page-template-template-contact,
body.page-template-template-contact-php {
    font-family: 'Inter', Arial, sans-serif !important;
}

body.ndl-branches-page .ndl-branches-hero-content h1,
body.ndl-about-body .ndl-about-title,
body.page-template-template-contact .ndl-contact-hero-copy h1,
body.page-template-template-contact-php .ndl-contact-hero-copy h1 {
    font-size: clamp(32px, 4vw, 44px) !important;
    line-height: 1.15 !important;
    font-weight: 800 !important;
    letter-spacing: -0.5px !important;
}

body.ndl-branches-page .ndl-branches-hero-content p,
body.ndl-about-body .ndl-about-lede,
body.ndl-about-body .ndl-about-intro,
body.page-template-template-contact .ndl-contact-hero-copy p,
body.page-template-template-contact-php .ndl-contact-hero-copy p {
    font-size: 15px !important;
    line-height: 1.7 !important;
    font-weight: 400 !important;
    color: #aaa !important;
}

body.ndl-about-body .ndl-about-lede {
    color: #ffffff !important;
    font-weight: 600 !important;
}

body.ndl-branches-page .ndl-promise-text h2,
body.ndl-about-body .ndl-about-section-kicker,
body.ndl-about-body .ndl-about-why__title h2,
body.ndl-about-body .ndl-about-cta h2,
body.page-template-template-contact .ndl-contact-section-title,
body.page-template-template-contact .ndl-contact-near-card h2,
body.page-template-template-contact .ndl-contact-whatsapp-strip h2,
body.page-template-template-contact-php .ndl-contact-section-title,
body.page-template-template-contact-php .ndl-contact-near-card h2,
body.page-template-template-contact-php .ndl-contact-whatsapp-strip h2 {
    font-size: 26px !important;
    line-height: 1.2 !important;
    font-weight: 800 !important;
    letter-spacing: -0.3px !important;
    color: #ffffff !important;
}

body.ndl-branches-page .ndl-branch-detail-row strong,
body.ndl-branches-page .ndl-contact-bar-item h5,
body.ndl-about-body .ndl-about-feature h3,
body.ndl-about-body .ndl-about-value h3,
body.page-template-template-contact .ndl-contact-info-card h2,
body.page-template-template-contact .ndl-contact-branch-body h3,
body.page-template-template-contact .ndl-contact-features p,
body.page-template-template-contact-php .ndl-contact-info-card h2,
body.page-template-template-contact-php .ndl-contact-branch-body h3,
body.page-template-template-contact-php .ndl-contact-features p {
    font-size: 14px !important;
    line-height: 1.35 !important;
    font-weight: 700 !important;
    letter-spacing: 0 !important;
    color: #ffffff !important;
}

body.ndl-branches-page .ndl-branch-detail-row,
body.ndl-branches-page .ndl-promise-text > p,
body.ndl-branches-page .ndl-promise-features li,
body.ndl-branches-page .ndl-contact-bar-item p,
body.ndl-about-body .ndl-about-story__text p,
body.ndl-about-body .ndl-about-feature p,
body.ndl-about-body .ndl-about-value p,
body.ndl-about-body .ndl-about-stat span,
body.ndl-about-body .ndl-about-cta p,
body.page-template-template-contact .ndl-contact-info-card p,
body.page-template-template-contact .ndl-contact-address,
body.page-template-template-contact .ndl-contact-branch-line,
body.page-template-template-contact .ndl-contact-near-card > p,
body.page-template-template-contact .ndl-contact-whatsapp-strip p,
body.page-template-template-contact-php .ndl-contact-info-card p,
body.page-template-template-contact-php .ndl-contact-address,
body.page-template-template-contact-php .ndl-contact-branch-line,
body.page-template-template-contact-php .ndl-contact-near-card > p,
body.page-template-template-contact-php .ndl-contact-whatsapp-strip p {
    font-size: 13px !important;
    line-height: 1.6 !important;
    font-weight: 400 !important;
    color: #aaa !important;
}

body.ndl-branches-page .ndl-branch-directions,
body.ndl-branches-page .ndl-contact-bar-btn,
body.ndl-about-body .ndl-about-btn,
body.page-template-template-contact .ndl-contact-btn,
body.page-template-template-contact .ndl-contact-directions,
body.page-template-template-contact-php .ndl-contact-btn,
body.page-template-template-contact-php .ndl-contact-directions {
    font-size: 14px !important;
    line-height: 1 !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
}

body.ndl-about-body .ndl-about-stat strong {
    font-size: 32px !important;
    line-height: 1 !important;
    font-weight: 800 !important;
}

@media (max-width: 768px) {
    body.ndl-branches-page .ndl-branches-hero-content h1,
    body.ndl-about-body .ndl-about-title,
    body.page-template-template-contact .ndl-contact-hero-copy h1,
    body.page-template-template-contact-php .ndl-contact-hero-copy h1 {
        font-size: 30px !important;
    }

    body.ndl-branches-page .ndl-promise-text h2,
    body.ndl-about-body .ndl-about-section-kicker,
    body.ndl-about-body .ndl-about-why__title h2,
    body.ndl-about-body .ndl-about-cta h2,
    body.page-template-template-contact .ndl-contact-section-title,
    body.page-template-template-contact .ndl-contact-near-card h2,
    body.page-template-template-contact .ndl-contact-whatsapp-strip h2,
    body.page-template-template-contact-php .ndl-contact-section-title,
    body.page-template-template-contact-php .ndl-contact-near-card h2,
    body.page-template-template-contact-php .ndl-contact-whatsapp-strip h2 {
        font-size: 24px !important;
    }
}

/* About page final white text override */
body.ndl-about-body.ndl-about-body .ndl-about-story__text h2,
body.ndl-about-body.ndl-about-body .ndl-about-why__title h2,
body.ndl-about-body.ndl-about-body .ndl-about-feature h3,
body.ndl-about-body.ndl-about-body .ndl-about-value h3,
body.ndl-about-body.ndl-about-body .ndl-about-cta h2,
body.ndl-about-body.ndl-about-body .ndl-about-section-kicker,
body.ndl-about-body.ndl-about-body .ndl-about-stat strong,
body.ndl-about-body.ndl-about-body .ndl-about-stat span,
body.page-template-template-about.page-template-template-about .ndl-about-story__text h2,
body.page-template-template-about.page-template-template-about .ndl-about-why__title h2,
body.page-template-template-about.page-template-template-about .ndl-about-feature h3,
body.page-template-template-about.page-template-template-about .ndl-about-value h3,
body.page-template-template-about.page-template-template-about .ndl-about-cta h2,
body.page-template-template-about.page-template-template-about .ndl-about-section-kicker,
body.page-template-template-about.page-template-template-about .ndl-about-stat strong,
body.page-template-template-about.page-template-template-about .ndl-about-stat span {
    color: #ffffff !important;
}

body.ndl-about-body.ndl-about-body .ndl-about-feature p,
body.ndl-about-body.ndl-about-body .ndl-about-value p,
body.ndl-about-body.ndl-about-body .ndl-about-cta p,
body.page-template-template-about.page-template-template-about .ndl-about-feature p,
body.page-template-template-about.page-template-template-about .ndl-about-value p,
body.page-template-template-about.page-template-template-about .ndl-about-cta p {
    color: #ffffff !important;
}

/* About visible section override - wrapper based */
.ndl-about-page .ndl-about-why__title h2,
.ndl-about-page .ndl-about-why__title h2 span:first-child,
.ndl-about-page .ndl-about-feature h3,
.ndl-about-page .ndl-about-feature p,
.ndl-about-page .ndl-about-value h3,
.ndl-about-page .ndl-about-value p,
.ndl-about-page .ndl-about-stat strong,
.ndl-about-page .ndl-about-stat span,
.ndl-about-page .ndl-about-story__text h2,
.ndl-about-page .ndl-about-section-kicker,
.ndl-about-page .ndl-about-story__text p,
.ndl-about-page .ndl-about-cta h2,
.ndl-about-page .ndl-about-cta p {
    color: #ffffff !important;
}

.ndl-about-page .ndl-about-why__title h2 span:not(:first-child),
.ndl-about-page .ndl-about-red,
.ndl-about-page .ndl-about-accent {
    color: #ff1f2d !important;
}

/* ============================================
   CONTACT PAGE COMPLETE REDESIGN OVERRIDE
   Distinct from branches page.
   ============================================ */
.ndl-contact-page {
    background:
        radial-gradient(circle at 18% 12%, rgba(237, 28, 36, 0.16), transparent 28%),
        radial-gradient(circle at 86% 38%, rgba(216, 169, 0, 0.08), transparent 26%),
        #070707 !important;
}

.ndl-contact-hero {
    min-height: 520px !important;
    background:
        linear-gradient(96deg, rgba(0,0,0,0.96) 0%, rgba(0,0,0,0.86) 42%, rgba(0,0,0,0.42) 100%),
        var(--ndl-contact-hero-img) center 42% / cover no-repeat !important;
}

.ndl-contact-hero-shade {
    background:
        linear-gradient(90deg, rgba(0,0,0,0.55), transparent 62%),
        repeating-linear-gradient(135deg, rgba(255,255,255,0.035) 0 1px, transparent 1px 18px) !important;
}

.ndl-contact-hero-inner {
    justify-content: flex-end !important;
    padding-top: 70px !important;
    padding-bottom: 76px !important;
}

.ndl-contact-breadcrumb {
    margin-bottom: 26px !important;
    color: #d8a900 !important;
}

.ndl-contact-hero-copy {
    max-width: 700px !important;
}

.ndl-contact-hero-copy h1 {
    color: #ffffff !important;
    font-size: clamp(36px, 5vw, 64px) !important;
    line-height: 0.98 !important;
    letter-spacing: 0 !important;
}

.ndl-contact-hero-copy p {
    max-width: 560px !important;
    color: #f1f1f1 !important;
    font-size: 16px !important;
}

.ndl-contact-hero-copy p::after {
    width: 86px !important;
    background: #ed1c24 !important;
}

.ndl-contact-hero-actions {
    gap: 10px !important;
}

.ndl-contact-btn {
    border-radius: 999px !important;
    padding: 13px 24px !important;
    font-size: 13px !important;
    letter-spacing: 0.2px !important;
}

.ndl-contact-quick-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
    padding-top: 36px !important;
    padding-bottom: 34px !important;
}

.ndl-contact-info-card {
    min-height: 220px !important;
    padding: 26px 22px !important;
    background:
        linear-gradient(180deg, rgba(255,255,255,0.05), rgba(255,255,255,0.015)),
        #101010 !important;
    border-color: rgba(255,255,255,0.12) !important;
    border-radius: 16px !important;
    text-align: left !important;
    box-shadow: none !important;
}

.ndl-contact-info-card:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(237,28,36,0.75) !important;
}

.ndl-contact-card-icon {
    width: 54px !important;
    height: 54px !important;
    margin: 0 0 18px !important;
    border-radius: 14px !important;
}

.ndl-contact-info-card h2 {
    color: #ffffff !important;
    font-size: 14px !important;
}

.ndl-contact-info-card p,
.ndl-contact-info-card .ndl-contact-strong {
    color: #ffffff !important;
}

.ndl-contact-card-rule {
    display: none !important;
}

.ndl-contact-card-link {
    color: #ed1c24 !important;
}

.ndl-contact-branches {
    padding-top: 18px !important;
    padding-bottom: 36px !important;
}

.ndl-contact-section-title {
    margin-bottom: 24px !important;
    color: #ffffff !important;
    font-size: 28px !important;
    text-align: left !important;
}

.ndl-contact-branch-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 16px !important;
}

.ndl-contact-branch-card {
    display: grid !important;
    grid-template-columns: 180px minmax(0, 1fr) !important;
    min-height: 190px !important;
    background: #0f0f0f !important;
    border-radius: 16px !important;
    border-color: rgba(255,255,255,0.12) !important;
    box-shadow: none !important;
}

.ndl-contact-branch-card:hover {
    transform: none !important;
    border-color: rgba(237,28,36,0.72) !important;
}

.ndl-contact-branch-img {
    height: 100% !important;
    min-height: 190px !important;
}

.ndl-contact-branch-number {
    border-radius: 999px !important;
}

.ndl-contact-branch-body {
    padding: 22px !important;
}

.ndl-contact-branch-body h3 {
    color: #ffffff !important;
    font-size: 16px !important;
}

.ndl-contact-address,
.ndl-contact-branch-line {
    color: #e8e8e8 !important;
    font-size: 13px !important;
}

.ndl-contact-directions {
    width: fit-content !important;
    min-height: 38px !important;
    padding: 10px 15px !important;
    border-radius: 999px !important;
    background: rgba(237,28,36,0.08) !important;
    color: #ffffff !important;
}

.ndl-contact-map-row {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) !important;
    gap: 18px !important;
    padding-top: 10px !important;
    padding-bottom: 34px !important;
}

.ndl-contact-map-card,
.ndl-contact-near-card {
    min-height: 420px !important;
    border-radius: 18px !important;
    border-color: rgba(255,255,255,0.12) !important;
    box-shadow: none !important;
}

.ndl-contact-map-card {
    background:
        linear-gradient(rgba(9,9,9,0.72), rgba(9,9,9,0.86)),
        repeating-linear-gradient(0deg, rgba(255,255,255,0.05) 0 1px, transparent 1px 42px),
        repeating-linear-gradient(90deg, rgba(237,28,36,0.12) 0 1px, transparent 1px 46px),
        #101010 !important;
}

.ndl-contact-near-card {
    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    padding: 52px 44px !important;
    background:
        radial-gradient(circle at 100% 0%, rgba(237,28,36,0.18), transparent 34%),
        #101010 !important;
}

.ndl-contact-near-card h2 {
    color: #ffffff !important;
    font-size: 30px !important;
}

.ndl-contact-near-card > p {
    color: #ffffff !important;
}

.ndl-contact-features {
    border-top-color: rgba(255,255,255,0.12) !important;
}

.ndl-contact-features p {
    color: #ffffff !important;
}

.ndl-contact-whatsapp-strip {
    grid-template-columns: auto minmax(0, 1fr) auto !important;
    padding: 26px var(--ndl-spacing-x) !important;
    margin-bottom: 42px !important;
    background:
        linear-gradient(90deg, #0f2a17 0%, #118b38 52%, #0f2a17 100%) !important;
    border-radius: 18px !important;
}

.ndl-contact-whatsapp-strip h2,
.ndl-contact-whatsapp-strip p {
    color: #ffffff !important;
}

@media (max-width: 1024px) {
    .ndl-contact-quick-grid,
    .ndl-contact-branch-grid,
    .ndl-contact-map-row {
        grid-template-columns: 1fr !important;
    }

    .ndl-contact-branch-card {
        grid-template-columns: 220px minmax(0, 1fr) !important;
    }
}

@media (max-width: 640px) {
    .ndl-contact-hero {
        min-height: 430px !important;
    }

    .ndl-contact-hero-inner {
        padding-top: 44px !important;
        padding-bottom: 52px !important;
    }

    .ndl-contact-branch-card {
        grid-template-columns: 1fr !important;
    }

    .ndl-contact-branch-img {
        min-height: 190px !important;
    }

    .ndl-contact-whatsapp-strip {
        grid-template-columns: 1fr !important;
        text-align: center !important;
    }
}

/* Single product page final white text override */
body.single-product .ndl-trust-desc,
body.single-product .ndl-info-label,
body.single-product .ndl-compat-list li,
body.single-product .ndl-spec-label,
body.single-product .ndl-spec-value,
body.single-product .ndl-specs-header h4,
body.single-product .ndl-whatsapp-text p,
body.single-product .woocommerce-tabs .panel,
body.single-product .woocommerce-tabs table.shop_attributes th,
body.single-product .woocommerce-tabs table.shop_attributes td {
    color: #ffffff !important;
}

body.single-product .ndl-trust-title,
body.single-product .ndl-info-heading,
body.single-product .ndl-whatsapp-text h4,
body.single-product .product_title,
body.single-product section.related.products > h2,
body.single-product section.up-sells > h2 {
    color: #ffffff !important;
}
