/*
Theme Name: Nandi Automobile
Theme URI: https://nandiautomobile.example.com
Author: Nandi Automobile
Author URI: https://nandiautomobile.example.com
Description: Professional custom WordPress theme for Nandi Automobile - specialists in premium automotive parts and accessories. Automotive brand theme with orange and steel accents, mega menu product navigation, optimized for parts catalogs and fast-loading pages.
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: nandi-automobile
Tags: custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, one-column, two-columns, dark-theme, automotive
*/

/* ============================================
   Nandi Automobile - Custom Theme Styles
   Automotive Brand Theme
   ============================================ */

:root {
  /* Light Theme Palette */
  --na-bg: #ffffff;
  --na-bg-alt: #f4f6f8;
  --na-surface: #ffffff;
  --na-surface-light: #eef1f4;
  --na-border: #d8dee6;
  --na-border-light: #c5cdd8;

  /* Text */
  --na-text: #1a2332;
  --na-text-muted: #5c6b7e;
  --na-text-inverse: #ffffff;

  /* Brand - automotive orange (primary) */
  --na-brand: #e85d04;
  --na-brand-dark: #c2410c;
  --na-brand-light: #f97316;
  --na-brand-50: rgba(232, 93, 4, 0.1);

  /* Legacy token aliases (site-wide consistency) */
  --na-teal: var(--na-brand);
  --na-teal-dark: var(--na-brand-dark);
  --na-teal-light: var(--na-brand-light);
  --na-teal-50: var(--na-brand-50);

  /* Steel - automotive secondary */
  --na-steel: #334155;
  --na-steel-dark: #1e293b;
  --na-steel-light: #475569;

  /* Accents */
  --na-red: #ef4444;
  --na-success: #22c55e;

  /* Typography */
  --font-heading: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  --font-body: 'Roboto', -apple-system, BlinkMacSystemFont, 'Segoe UI', Helvetica, Arial, sans-serif;

  /* Spacing */
  --container-width: 1280px;
  --header-topbar-height: 40px;
  --header-main-height: 80px;
  --header-height: calc(var(--header-topbar-height) + var(--header-main-height));
  --header-offset: var(--header-height);
  --mega-menu-max-height: 600px;

  /* Footer */
  --na-footer-bg: #0f172a;
  --na-footer-surface: #1e293b;
  --na-footer-text: #e2e8f0;
  --na-footer-muted: #94a3b8;
  --na-footer-border: rgba(148, 163, 184, 0.18);

  /* Menu surfaces (solid) */
  --na-menu-bg: #ffffff;
  --na-menu-border: var(--na-border);
}

/* Reset & Base */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  overflow-x: clip;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--na-text);
  background-color: var(--na-bg);
  margin: 0;
  padding: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  line-height: 1.25;
  color: var(--na-text);
  margin: 0 0 0.75em;
}

h1 { font-size: 2.75rem; font-weight: 700; }
h2 { font-size: 2.1rem; }
h3 { font-size: 1.65rem; }
h4 { font-size: 1.35rem; }
h5 { font-size: 1.15rem; }

a {
  color: var(--na-teal);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--na-teal-light);
}

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

.site-container {
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 1.5rem;
  width: 100%;
}

/* UI lives inside .site-container; section backgrounds may span full viewport */
.nandi-section-band,
.brand-banner,
.home-patch,
.home-summary {
  width: 100%;
  max-width: none;
  margin-left: 0;
  margin-right: 0;
}

/* Header */
.site-header {
  background-color: transparent;
  border-bottom: none;
  box-shadow: none;
  position: sticky;
  top: 0;
  z-index: 200;
}

.main-navigation,
.nav-menu-wrapper,
.primary-nav-list,
.menu-item-has-mega-menu {
  position: relative;
  overflow: visible;
}

/* Top Bar */
.header-topbar {
  background: linear-gradient(90deg, var(--na-steel-dark) 0%, var(--na-steel) 100%);
  color: #fff;
  font-size: 0.82rem;
  min-height: var(--header-topbar-height);
  max-height: var(--header-topbar-height);
  overflow: hidden;
  border-bottom: 1px solid rgb(255 255 255 / 0.08);
  transition: opacity 0.22s ease, border-color 0.22s ease;
}

.site-header.topbar-hidden .header-topbar {
  max-height: 0;
  min-height: 0;
  opacity: 0;
  border-bottom-color: transparent;
  pointer-events: none;
}

.header-topbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-topbar-height);
}

.topbar-left,
.topbar-right {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.topbar-left {
  min-width: 0;
  flex: 1 1 auto;
}

.topbar-right {
  justify-content: flex-end;
  flex-shrink: 0;
}

.topbar-item {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255, 255, 255, 0.92);
  font-weight: 500;
  transition: color 0.2s ease;
}

.topbar-item:hover {
  color: #fff;
}

.topbar-item svg {
  flex-shrink: 0;
  opacity: 0.9;
}

.topbar-social {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.topbar-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  transition: background 0.2s ease, transform 0.2s ease;
}

.topbar-social-link:hover {
  background: rgba(255, 255, 255, 0.22);
  color: #fff;
  transform: translateY(-1px);
}

/* Main Header Row: Logo | Menu | Contact */
.header-main {
  background: var(--na-menu-bg);
  opacity: 1;
  border-bottom: 1px solid var(--na-menu-border);
  box-shadow: 0 1px 3px rgba(15, 23, 42, 0.05);
}

.header-main-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: var(--header-main-height);
  position: relative;
}

.site-branding {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  flex: 1 1 0;
  min-width: 0;
  z-index: 2;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 1 1 0;
  min-width: 0;
  gap: 0.65rem;
  z-index: 2;
}

.custom-logo-link {
  display: block;
}

.custom-logo {
  display: block;
  height: 48px;
  width: auto;
  max-width: 240px;
  object-fit: contain;
}

.site-title {
  font-family: var(--font-heading);
  font-size: 1.65rem;
  font-weight: 700;
  letter-spacing: -0.025em;
  margin: 0;
}

.site-title a {
  color: var(--na-text);
}

.site-title a:hover {
  color: var(--na-teal);
}

.site-description {
  font-size: 0.75rem;
  color: var(--na-text-muted);
  margin: 0;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/* Primary Navigation - dead center of header row (no transform: fixed mega menu anchors to viewport) */
.main-navigation {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  pointer-events: none;
}

.main-navigation .nav-menu-wrapper,
.main-navigation ul,
.main-navigation a,
.main-navigation button,
.main-navigation .mega-menu-dropdown {
  pointer-events: auto;
}

.nav-menu-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-nav-drawer-head,
.mobile-nav-backdrop {
  display: none;
}

.mobile-nav-drawer-body {
  display: contents;
}

.main-navigation ul,
.primary-nav-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  flex-wrap: wrap;
}

.main-navigation > .nav-menu-wrapper > ul > li,
.primary-nav-list > li {
  position: relative;
}

.main-navigation > .nav-menu-wrapper > ul > li > a,
.primary-nav-list > li > a {
  color: var(--na-text);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.65rem 1rem 0.8rem;
  position: relative;
  border-radius: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  background: transparent;
  transition: color 0.2s ease;
  overflow: visible;
}

/* Hover: underline animates left → right, no background */
.main-navigation > .nav-menu-wrapper > ul > li > a::after,
.primary-nav-list > li > a::after {
  content: '';
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.42rem;
  height: 2px;
  background: var(--na-teal);
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.28s ease;
}

.main-navigation > .nav-menu-wrapper > ul > li > a:hover,
.primary-nav-list > li > a:hover {
  color: var(--na-teal);
  background: transparent;
}

.main-navigation > .nav-menu-wrapper > ul > li > a:hover::after,
.primary-nav-list > li > a:hover::after {
  transform: scaleX(1);
}

/* Active tab: teal text + dot below (no background) */
.main-navigation > .nav-menu-wrapper > ul > li.current-menu-item > a,
.primary-nav-list > li.current-menu-item > a,
.main-navigation > .nav-menu-wrapper > ul > li.current-menu-ancestor > a,
.primary-nav-list > li.current-menu-ancestor > a {
  color: var(--na-teal);
  background: transparent;
}

.main-navigation > .nav-menu-wrapper > ul > li.current-menu-item > a::before,
.primary-nav-list > li.current-menu-item > a::before,
.main-navigation > .nav-menu-wrapper > ul > li.current-menu-ancestor > a::before,
.primary-nav-list > li.current-menu-ancestor > a::before {
  content: '';
  position: absolute;
  left: 50%;
  bottom: 0.16rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--na-teal);
  box-shadow: 0 0 0 0 rgb(232 93 4 / 0.35);
  transform: translateX(-50%);
  transition: opacity 0.22s ease, transform 0.22s ease;
  animation: nav-active-dot-pulse 2.2s ease-out infinite;
  z-index: 1;
}

/* Active + hover: hide dot, show underline only */
.main-navigation > .nav-menu-wrapper > ul > li.current-menu-item > a:hover::before,
.primary-nav-list > li.current-menu-item > a:hover::before,
.main-navigation > .nav-menu-wrapper > ul > li.current-menu-ancestor > a:hover::before,
.primary-nav-list > li.current-menu-ancestor > a:hover::before {
  opacity: 0;
  transform: translateX(-50%) scale(0);
  animation: none;
}

@keyframes nav-active-dot-pulse {
  0% {
    box-shadow: 0 0 0 0 rgb(232 93 4 / 0.42);
  }

  70% {
    box-shadow: 0 0 0 8px rgb(232 93 4 / 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgb(232 93 4 / 0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .main-navigation > .nav-menu-wrapper > ul > li.current-menu-item > a::before,
  .primary-nav-list > li.current-menu-item > a::before,
  .main-navigation > .nav-menu-wrapper > ul > li.current-menu-ancestor > a::before,
  .primary-nav-list > li.current-menu-ancestor > a::before {
    animation: none;
    box-shadow: 0 0 0 3px rgb(232 93 4 / 0.22);
  }
}

.menu-chevron {
  transition: transform 0.2s ease;
}

.menu-item-has-mega-menu.is-open .menu-chevron,
.menu-item-has-mega-menu:hover .menu-chevron {
  transform: rotate(180deg);
}

/* Mega menu replaces standard WP submenu on Products */
.menu-item-has-mega-menu > .sub-menu {
  display: none !important;
}

/* Products Mega Menu - full container width, flush under header */
#products-mega-menu.mega-menu-dropdown,
.mega-menu-dropdown {
  position: fixed;
  top: var(--header-offset, var(--header-height));
  left: 50%;
  transform: translateX(-50%);
  width: max-content;
  max-width: min(var(--container-width), calc(100vw - 3rem));
  margin: 0;
  padding: 0;
  background: #ffffff;
  border: none;
  border-radius: 0;
  box-shadow: none;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.15s ease, visibility 0.15s ease;
  z-index: 390;
}

.mega-menu-dropdown > .mega-menu-inner {
  background: #ffffff;
  opacity: 1;
  margin-top: 0;
  height: auto;
  min-height: 0;
  max-height: min(var(--mega-menu-max-height), calc(100vh - var(--header-offset, var(--header-height)) - 1.5rem));
  overflow-y: auto;
  overflow-x: hidden;
  border: 1px solid var(--na-menu-border);
  border-top: 0;
  border-radius: 0 0 14px 14px;
  box-shadow: 0 16px 36px rgba(15, 23, 42, 0.12);
}

/* Invisible bridge so the pointer can reach the panel without closing */
.menu-item-has-mega-menu::after {
  content: '';
  position: absolute;
  left: -12px;
  right: -12px;
  top: 100%;
  height: 14px;
  z-index: 399;
  display: none;
}

.menu-item-has-mega-menu.is-open::after,
.menu-item-has-mega-menu.mega-open::after {
  display: block;
}

#products-mega-menu::before {
  content: '';
  position: absolute;
  top: -8px;
  left: 0;
  right: 0;
  height: 8px;
}

.menu-item-has-mega-menu.is-open #products-mega-menu,
.menu-item-has-mega-menu:focus-within #products-mega-menu,
.menu-item-has-mega-menu.mega-open #products-mega-menu {
  opacity: 1 !important;
  visibility: visible;
  pointer-events: auto;
}

.mega-menu-inner {
  padding: 1rem 1.35rem 0.85rem;
  text-align: left;
}

.mega-menu-layout {
  display: flex;
  gap: 2rem;
}

/* Products dropdown: Category | Company | Shop Location */
.mega-menu-layout--three {
  display: grid;
  grid-template-columns: repeat(3, minmax(140px, 1fr));
  gap: 1.5rem 2rem;
  align-items: start;
}

.mega-menu-layout--three .mega-menu-column {
  margin: 0;
  min-width: 0;
}

.mega-menu-layout--three .mega-menu-parent {
  margin: 0 0 0.55rem;
  padding-bottom: 0.45rem;
  border-bottom: 1px solid var(--na-border);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--na-text-muted);
}

.mega-menu-layout--three .mega-menu-children {
  margin: 0;
  padding: 0;
  list-style: none;
}

.mega-menu-layout--three .mega-menu-children a {
  display: block;
  padding: 0.35rem 0;
  color: var(--na-text);
  text-decoration: none;
  font-size: 0.92rem;
  font-weight: 600;
}

.mega-menu-layout--three .mega-menu-children a:hover {
  color: var(--na-teal);
}

.mega-menu-main {
  flex: 1;
}

.mega-menu-sidebar {
  width: 200px;
  flex-shrink: 0;
  border-left: 1px solid var(--na-border);
  padding-left: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.mega-menu-sidebar .mega-menu-column {
  margin: 0;
}

@media (max-width: 900px) {
  .mega-menu-layout {
    flex-direction: column;
    gap: 1.5rem;
  }

  .mega-menu-layout--three {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }

  .mega-menu-sidebar {
    width: 100%;
    border-left: none;
    padding-left: 0;
    border-top: 1px solid var(--na-border);
    padding-top: 1.5rem;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 2rem;
  }
}

.mega-menu-categories {
  overflow: visible;
  padding-right: 0.15rem;
}

/* Flex layout for categories so max-content works horizontally */
.mega-menu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.mega-menu-grid .mega-menu-column {
  flex: 1 1 180px;
  width: auto;
  max-width: 250px;
  margin: 0;
}

.mega-menu-no-children {
  margin: 0;
  font-size: 0.82rem;
}

.mega-menu-no-children a {
  color: var(--na-text-muted);
  padding: 0;
}

.mega-menu-no-children a:hover {
  color: var(--na-teal);
  background: transparent;
}

.mega-menu-column {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.3rem;
  width: 100%;
  min-width: 0;
  margin: 0 0 0.75rem;
  padding: 0;
  text-align: left;
  background: transparent;
  border: none;
  border-radius: 0;
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}

.mega-menu-dropdown a {
  background: transparent !important;
  border-radius: 0;
}

.mega-menu-subgroup {
  margin-bottom: 0.85rem;
  padding-bottom: 0.65rem;
  border-bottom: 1px dashed var(--na-border);
}

.mega-menu-subgroup:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.mega-menu-subtitle {
  margin: 0 0 0.35rem;
  font-size: 0.82rem;
  font-weight: 600;
}

.mega-menu-subtitle a {
  color: var(--na-teal-dark);
  padding: 0;
  font-weight: 600;
}

.mega-menu-subtitle a:hover {
  color: var(--na-teal);
  background: transparent;
}

.mega-menu-products {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.15rem;
  text-align: left;
}

.mega-menu-products li {
  margin: 0;
  display: block;
  width: 100%;
  text-align: left;
}

.mega-menu-products a {
  display: block;
  width: 100%;
  padding: 0.2rem 0;
  font-size: 0.78rem;
  font-weight: 400;
  color: var(--na-text-muted);
  line-height: 1.4;
  border-radius: 0;
  text-align: left;
  white-space: normal;
  word-break: break-word;
}

.mega-menu-products a:hover {
  color: var(--na-teal);
  background: transparent;
  padding-left: 0;
}

.mega-menu-view-category {
  margin: 0.35rem 0 0;
  width: 100%;
  font-size: 0.78rem;
  font-weight: 600;
  text-align: left;
}

.mega-menu-view-category a {
  color: var(--na-teal);
  padding: 0;
}

.mega-menu-view-category a:hover {
  color: var(--na-teal-dark);
  background: transparent;
}

.mega-menu-no-products {
  margin: 0;
  font-size: 0.75rem;
}

.mega-menu-no-products a {
  color: var(--na-text-muted);
  padding: 0;
}

.mega-menu-parent {
  margin: 0 0 0.35rem;
  width: 100%;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  padding-bottom: 0.3rem;
  border-bottom: 2px solid var(--na-teal-50);
  text-align: left;
}

.mega-menu-parent a {
  color: var(--na-text);
  padding: 0;
  font-weight: 700;
}

.mega-menu-parent a:hover {
  color: var(--na-teal);
  background: transparent;
}

.mega-menu-children {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  text-align: left;
}

.mega-menu-children li {
  margin: 0;
  width: 100%;
  text-align: left;
}

.mega-menu-children a {
  display: block;
  width: 100%;
  padding: 0.28rem 0;
  font-size: 0.82rem;
  font-weight: 400;
  color: var(--na-text-muted);
  border-radius: 0;
  text-align: left;
}

.mega-menu-children a:hover {
  color: var(--na-teal);
  background: transparent;
  padding-left: 0;
}

.mega-menu-footer {
  margin-top: 0.35rem;
  padding-top: 0.35rem;
  border-top: 1px solid var(--na-border);
  text-align: left;
}

.mega-menu-view-all {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--na-teal) !important;
}

.mega-menu-empty {
  text-align: center;
  color: var(--na-text-muted);
  margin: 0;
  padding: 1rem 0;
}

/* Header CTA / Contact Button */
.header-cta,
.header-contact-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: var(--na-teal);
  color: var(--na-text-inverse);
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all 0.2s ease;
  white-space: nowrap;
  border: 2px solid var(--na-teal);
}

.header-cta:hover,
.header-contact-btn:hover {
  background-color: var(--na-teal-dark);
  border-color: var(--na-teal-dark);
  color: var(--na-text-inverse);
  transform: translateY(-1px);
}

button.header-contact-btn {
  cursor: pointer;
  font-family: inherit;
}

/* Mobile Menu Toggle */
.menu-toggle {
  display: none;
  background: transparent;
  border: 1px solid var(--na-border);
  color: var(--na-text);
  padding: 0.55rem 0.75rem;
  border-radius: 8px;
  font-size: 1rem;
  cursor: pointer;
}

.menu-toggle-icon {
  display: flex;
  flex-direction: column;
  gap: 4px;
  width: 20px;
}

.menu-toggle-icon span {
  display: block;
  height: 2px;
  background: var(--na-text);
  border-radius: 2px;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.main-navigation.toggled ~ .header-actions .menu-toggle-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.main-navigation.toggled ~ .header-actions .menu-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.main-navigation.toggled ~ .header-actions .menu-toggle-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* Main Content */
.site-main {
  padding: 3rem 0 4rem;
  min-height: 60vh;
}

.entry-header {
  margin-bottom: 2rem;
}

.entry-title {
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.entry-meta {
  color: var(--na-text-muted);
  font-size: 0.875rem;
}

.entry-content,
.entry-summary {
  margin-bottom: 2rem;
}

.entry-content a,
.entry-summary a {
  text-decoration: underline;
}

/* Parts / Product Cards (automotive theme) */
.part-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 1.75rem;
  margin: 2rem 0;
}

.part-card {
  background-color: var(--na-surface);
  border: 1px solid var(--na-border);
  border-radius: 8px;
  overflow: hidden;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.part-card:hover {
  transform: translateY(-4px);
  border-color: var(--na-teal);
  box-shadow: 0 12px 24px -8px rgba(15, 23, 42, 0.15);
}

.part-card .part-image {
  height: 180px;
  background-color: var(--na-bg-alt);
  position: relative;
  overflow: hidden;
}

.part-card .part-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s ease;
}

.part-card:hover .part-image img {
  transform: scale(1.06);
}

.part-card .part-image .badge {
  position: absolute;
  top: 12px;
  right: 12px;
  background-color: var(--na-teal);
  color: var(--na-text-inverse);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 2px 9px;
  border-radius: 999px;
  letter-spacing: 0.5px;
}

.part-card .part-content {
  padding: 1.15rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.part-card .part-title {
  font-size: 1.05rem;
  font-weight: 600;
  margin: 0 0 0.4rem;
  line-height: 1.3;
}

.part-card .part-title a {
  color: var(--na-text);
}

.part-card .part-title a:hover {
  color: var(--na-teal);
}

.part-card .part-meta {
  font-size: 0.8rem;
  color: var(--na-text-muted);
  margin-bottom: 0.6rem;
}

.part-card .part-price {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--na-teal);
  margin-bottom: 0.85rem;
}

.part-card .part-price .currency {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--na-text-muted);
}

.part-card .btn {
  display: inline-block;
  width: 100%;
  text-align: center;
  background: transparent;
  border: 1px solid var(--na-teal);
  color: var(--na-teal);
  padding: 0.55rem 1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 0.875rem;
  transition: all 0.2s ease;
}

.part-card .btn:hover {
  background-color: var(--na-teal);
  color: var(--na-text-inverse);
}

/* Hero / Brand Sections */
.hero {
  background: linear-gradient(145deg, var(--na-bg-alt) 0%, var(--na-bg) 100%);
  padding: 4.5rem 0 4rem;
  border-bottom: 1px solid var(--na-border);
  text-align: center;
}

.hero h1 {
  font-size: 3.1rem;
  margin-bottom: 1rem;
}

.hero .lead {
  font-size: 1.25rem;
  max-width: 620px;
  margin: 0 auto 1.75rem;
  color: var(--na-text-muted);
}

.hero-actions {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background-color: var(--na-teal);
  color: var(--na-text-inverse);
  padding: 0.85rem 2.1rem;
  border-radius: 6px;
  font-weight: 600;
  font-size: 1rem;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  transition: all 0.2s ease;
}

.btn-primary:hover {
  background-color: var(--na-teal-light);
  color: var(--na-text-inverse);
  transform: translateY(-2px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--na-text);
  border: 1px solid var(--na-border-light);
  padding: 0.85rem 1.8rem;
  border-radius: 6px;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn-secondary:hover {
  border-color: var(--na-teal);
  color: var(--na-teal);
}

/* Blog / Posts */
.sticky {
  border-left: 4px solid var(--na-teal);
  padding-left: 1.25rem;
}

.post {
  margin-bottom: 3rem;
}

.post .entry-title {
  font-size: 1.75rem;
}

/* Pagination */
.navigation {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
}

.navigation a,
.navigation .current {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  padding: 0 0.75rem;
  border: 1px solid var(--na-border-light);
  border-radius: 6px;
  color: var(--na-text);
  font-weight: 500;
}

.navigation .current {
  background-color: var(--na-teal);
  border-color: var(--na-teal);
  color: var(--na-text-inverse);
}

/* Sidebar */
.widget-area {
  background-color: var(--na-surface);
  border: 1px solid var(--na-border);
  border-radius: 8px;
  padding: 1.75rem;
}

.widget {
  margin-bottom: 2rem;
}

.widget:last-child {
  margin-bottom: 0;
}

.widget-title {
  font-size: 1.1rem;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 1px solid var(--na-border);
}

.widget ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.widget ul li {
  padding: 0.4rem 0;
  border-bottom: 1px solid var(--na-border);
}

.widget ul li:last-child {
  border-bottom: none;
}

/* Footer */
.site-footer {
  margin-top: 0;
  color: var(--na-footer-muted);
  font-size: 1rem;
}

.footer-accent-bar {
  height: 5px;
  background: linear-gradient(90deg, var(--na-brand-dark) 0%, var(--na-brand) 45%, var(--na-brand-light) 100%);
}

/* Pre-footer CTA - contained card above footer */
.pre-footer-cta {
  padding: 3.25rem 0 3.5rem;
  background: transparent;
  border-top: none;
}

.pre-footer-cta-card {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  border: 1px solid rgb(255 255 255 / 0.08);
  box-shadow:
    0 28px 60px -28px rgb(15 23 42 / 0.55),
    0 0 0 1px rgb(15 23 42 / 0.04);
}

.pre-footer-cta-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.pre-footer-cta-media > picture {
  display: block;
  width: 100%;
  height: 100%;
}

.pre-footer-cta-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.pre-footer-cta-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgb(15 23 42 / 0.94) 0%, rgb(30 41 59 / 0.86) 46%, rgb(15 23 42 / 0.78) 100%),
    linear-gradient(to top, rgb(15 23 42 / 0.65) 0%, transparent 55%);
}

.pre-footer-cta-accent {
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--na-brand-light), var(--na-brand-dark));
}

.pre-footer-cta-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(240px, 0.85fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
  padding: clamp(1.85rem, 3.5vw, 2.65rem);
  color: var(--na-text-inverse);
}

.pre-footer-cta-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 0.85rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #fed7aa;
}

.pre-footer-cta-mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--na-brand-light);
  box-shadow: 0 0 0 3px rgb(249 115 22 / 0.25);
}

.pre-footer-cta-title {
  margin: 0 0 0.75rem;
  font-size: clamp(1.55rem, 2.8vw, 2.2rem);
  line-height: 1.15;
  color: var(--na-text-inverse);
}

.pre-footer-cta-text {
  margin: 0 0 1.25rem;
  max-width: 52ch;
  font-size: clamp(0.95rem, 1.5vw, 1.04rem);
  line-height: 1.65;
  color: rgb(226 232 240 / 0.9);
}

.pre-footer-cta-highlights {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.pre-footer-cta-highlights li {
  padding: 0.42rem 0.85rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffedd5;
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.14);
  border-radius: 999px;
}

.pre-footer-cta-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
  padding: clamp(1.25rem, 2.5vw, 1.65rem);
  background: rgb(255 255 255 / 0.06);
  border: 1px solid rgb(255 255 255 / 0.12);
  border-radius: 14px;
  backdrop-filter: blur(8px);
}

.pre-footer-cta-panel-label {
  margin: 0;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgb(226 232 240 / 0.72);
}

.pre-footer-cta-buttons {
  justify-content: flex-start;
  gap: 0.75rem;
}

.pre-footer-cta-buttons .btn-primary,
.pre-footer-cta-buttons .btn-secondary {
  flex: 1 1 auto;
  justify-content: center;
  min-width: 0;
}

.pre-footer-cta-contact {
  color: var(--na-text-inverse);
  border-color: rgb(255 255 255 / 0.45);
  background: transparent;
}

.pre-footer-cta-contact:hover {
  color: var(--na-text-inverse);
  border-color: var(--na-text-inverse);
  background: rgb(255 255 255 / 0.1);
}

.pre-footer-cta-catalog {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.86rem;
  font-weight: 600;
  color: rgb(226 232 240 / 0.88);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.pre-footer-cta-catalog:hover {
  color: var(--na-brand-light);
  gap: 0.6rem;
}

.pre-footer-cta-phone {
  margin: 0.15rem 0 0;
  padding-top: 0.85rem;
  border-top: 1px solid rgb(255 255 255 / 0.12);
  font-size: 0.9rem;
}

.pre-footer-cta-phone-label {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgb(226 232 240 / 0.62);
}

.pre-footer-cta-phone a {
  color: var(--na-text-inverse);
  font-weight: 700;
  text-decoration: none;
}

.pre-footer-cta-phone a:hover {
  color: var(--na-brand-light);
}

.footer-main-wrap {
  position: relative;
  background:
    linear-gradient(180deg, #0c1220 0%, var(--na-footer-bg) 28%, var(--na-footer-bg) 100%);
  padding: 5rem 0 3.5rem;
  overflow: hidden;
}

.footer-main-wrap::before {
  content: "";
  position: absolute;
  top: -120px;
  right: -80px;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgb(232 93 4 / 0.12);
  filter: blur(80px);
  pointer-events: none;
}

.footer-main,
.footer-widgets--modern {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.45fr repeat(3, minmax(0, 1fr));
  gap: 3rem 2.5rem;
  padding-bottom: 3.5rem;
  border-bottom: 1px solid var(--na-footer-border);
}

.footer-brand-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  color: var(--na-brand-light);
}

.footer-brand-text {
  margin: 1.15rem 0 1.65rem;
  max-width: 420px;
  font-size: 1.02rem;
  line-height: 1.75;
  color: var(--na-footer-muted);
}

.footer-site-title {
  font-family: var(--font-heading);
  font-size: clamp(1.65rem, 2.5vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--na-footer-text);
  text-decoration: none;
}

.footer-site-title:hover {
  color: var(--na-brand-light);
}

.site-footer .custom-logo-link img {
  max-height: 72px;
  width: auto;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 0.85rem;
}

.footer-social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  border: 1px solid var(--na-footer-border);
  color: var(--na-footer-text);
  background: var(--na-footer-surface);
  transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.footer-social-link:hover {
  color: var(--na-brand-light);
  border-color: var(--na-brand);
  background: rgb(232 93 4 / 0.12);
  transform: translateY(-2px);
}

.footer-column-title,
.footer-widget .widget-title {
  margin: 0 0 1.35rem;
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--na-footer-text);
  border: 0;
  padding: 0;
}

.footer-menu-list,
.site-footer .footer-menu-list,
.site-footer .menu {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-menu-list li,
.site-footer .menu li {
  margin: 0;
  padding: 0;
  border: 0;
}

.footer-menu-list a,
.site-footer .menu a {
  display: inline-flex;
  padding: 0.48rem 0;
  font-size: 0.98rem;
  color: var(--na-footer-muted);
  text-decoration: none;
  transition: color 0.2s ease, transform 0.2s ease;
}

.footer-menu-list a:hover,
.site-footer .menu a:hover {
  color: var(--na-brand-light);
  transform: translateX(4px);
}

.footer-location-list,
.footer-contact-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-location-list li + li,
.footer-contact-list li + li {
  margin-top: 1rem;
}

.footer-location-list a {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

.footer-location-list a:hover {
  color: var(--na-brand-light);
}

.footer-location-name {
  color: var(--na-footer-text);
  font-weight: 600;
  font-size: 1rem;
}

.footer-location-city {
  font-size: 0.9rem;
  color: var(--na-footer-muted);
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.7rem;
  line-height: 1.55;
}

.footer-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--na-footer-surface);
  color: var(--na-brand-light);
}

.footer-contact-list a {
  color: var(--na-footer-text);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.98rem;
}

.footer-contact-list a:hover {
  color: var(--na-brand-light);
}

.footer-widgets--modern .footer-widget {
  min-width: 0;
}

.site-footer .widget {
  color: var(--na-footer-muted);
}

.site-footer .widget a {
  color: var(--na-footer-text);
}

.site-footer .widget a:hover {
  color: var(--na-brand-light);
}

.footer-bottom-bar {
  position: relative;
  z-index: 1;
  margin-top: 0;
  background: linear-gradient(90deg, var(--na-brand-dark) 0%, var(--na-brand) 48%, var(--na-brand-light) 100%);
  border-top: 1px solid rgb(255 255 255 / 0.12);
}

.footer-bottom-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1.25rem;
  padding: 0.7rem 0 0.8rem;
}

.footer-copyright {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 300;
  color: rgb(255 255 255 / 0.9);
}

.footer-copyright a {
  color: var(--na-text-inverse);
  text-decoration: none;
  font-weight: 300;
}

.footer-copyright a:hover {
  color: #ffedd5;
}

.footer-developed {
  margin: 0;
  text-align: center;
  font-size: 0.82rem;
  font-weight: 300;
  color: rgb(255 255 255 / 0.88);
  letter-spacing: 0.02em;
}

.footer-developed-name {
  display: inline-block;
  margin-left: 0.35rem;
  font-weight: 300;
  font-size: 0.84rem;
  color: var(--na-text-inverse);
  letter-spacing: 0.01em;
}

.footer-bottom-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
}

.footer-bottom-nav a {
  font-size: 0.82rem;
  font-weight: 300;
  color: rgb(255 255 255 / 0.88);
  text-decoration: none;
  transition: color 0.2s ease;
}

.footer-bottom-nav a:hover {
  color: var(--na-text-inverse);
}

/* Forms */
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
textarea,
select {
  background-color: var(--na-surface);
  border: 1px solid var(--na-border);
  color: var(--na-text);
  padding: 0.65rem 0.9rem;
  border-radius: 6px;
  font-size: 0.95rem;
  width: 100%;
  font-family: var(--font-body);
}

input:focus,
textarea:focus,
select:focus {
  outline: none;
  border-color: var(--na-teal);
  box-shadow: 0 0 0 3px var(--na-teal-50);
}

button,
input[type="submit"],
input[type="button"] {
  background-color: var(--na-teal);
  color: var(--na-text-inverse);
  border: none;
  padding: 0.65rem 1.5rem;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.2s ease;
}

button:hover,
input[type="submit"]:hover {
  background-color: var(--na-teal-dark);
}

/* Comments */
.comments-area {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--na-border);
}

.comment-list {
  list-style: none;
  padding: 0;
}

.comment {
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--na-border);
}

.comment-body {
  display: flex;
  gap: 1rem;
}

.comment-meta {
  font-size: 0.8rem;
  color: var(--na-text-muted);
}

.comment-content {
  margin-top: 0.5rem;
}

/* 404 / Search */
.search-form {
  max-width: 520px;
  margin: 2rem auto;
  display: flex;
  gap: 0.5rem;
}

/* Accessibility */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
  word-wrap: normal !important;
}

.skip-link {
  position: absolute;
  top: -100px;
  left: 0;
  background: var(--na-teal);
  color: var(--na-text-inverse);
  padding: 0.6rem 1rem;
  z-index: 9999;
}

.skip-link:focus {
  top: 0;
}

/* Hide sidebar on front page */
.home .widget-area,
.front-page .widget-area {
  display: none;
}

.home .site-main,
.front-page .site-main {
  width: 100%;
}

.home .site-main.site-main--home,
.front-page .site-main.site-main--home {
  padding: 0;
  min-height: 0;
}

/* Responsive */
@media (max-width: 1200px) {
  .mega-menu-grid {
    column-width: 10.5rem;
  }
}

@media (max-width: 980px) {
  .mega-menu-grid {
    column-width: 9.5rem;
  }
}

@media (max-width: 900px) {
  :root {
    --header-topbar-height: 36px;
    --header-main-height: 68px;
  }

  .header-topbar-inner {
    font-size: 0.75rem;
  }

  .topbar-left,
  .topbar-right {
    gap: 0.75rem;
  }

  .topbar-item--email span {
    max-width: 160px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .topbar-social {
    display: none;
  }

  .header-main-inner {
    flex-wrap: wrap;
    gap: 0.75rem;
  }

  .site-branding,
  .header-actions {
    flex: 0 1 auto;
  }

  .main-navigation {
    position: static;
    left: auto;
    right: auto;
    top: auto;
    bottom: auto;
    width: auto;
    height: auto;
    display: block;
    flex: 0 0 auto;
    pointer-events: none;
  }

  .header-contact-btn {
    padding: 0.5rem 0.85rem;
    font-size: 0.78rem;
  }

  .topbar-item--phone span {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .menu-toggle {
    display: block;
  }

  body.nav-open .site-header {
    z-index: 10002;
  }

  .mobile-nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgb(15 23 42 / 0.45);
    pointer-events: auto;
  }

  .mobile-nav-backdrop[hidden] {
    display: none;
    pointer-events: none;
  }

  .nav-menu-wrapper {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: auto;
    width: min(380px, 92vw);
    height: 100dvh;
    max-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 0;
    background: var(--na-menu-bg);
    border: none;
    border-left: 1px solid var(--na-border);
    border-radius: 0;
    box-shadow: -14px 0 42px rgb(15 23 42 / 0.2);
    gap: 0;
    overflow: hidden;
    z-index: 10003;
    transform: translateX(105%);
    visibility: hidden;
    pointer-events: none;
    transition: transform 0.3s ease, visibility 0.3s ease;
  }

  .main-navigation.toggled .nav-menu-wrapper {
    transform: translateX(0);
    visibility: visible;
    pointer-events: auto;
  }

  .mobile-nav-drawer-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    flex-shrink: 0;
    padding: 1rem 1.15rem;
    border-bottom: 1px solid var(--na-border);
    background: var(--na-surface);
  }

  .mobile-nav-drawer-title {
    margin: 0;
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--na-text);
  }

  .mobile-nav-close {
    width: 44px;
    height: 44px;
    border: 1px solid var(--na-border);
    border-radius: 8px;
    background: var(--na-bg);
    color: var(--na-text-muted);
    font-size: 1.45rem;
    line-height: 1;
    cursor: pointer;
    flex-shrink: 0;
  }

  .mobile-nav-close:hover {
    color: var(--na-brand);
    border-color: rgb(232 93 4 / 0.35);
  }

  .mobile-nav-drawer-body {
    display: block;
    flex: 1;
    min-height: 0;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 0.35rem 1rem 1.5rem;
  }

  .main-navigation ul,
  .primary-nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    width: 100%;
  }

  .main-navigation > .nav-menu-wrapper .mobile-nav-drawer-body > ul > li,
  .primary-nav-list > li {
    width: 100%;
    border-bottom: 1px solid var(--na-border);
  }

  .main-navigation > .nav-menu-wrapper .mobile-nav-drawer-body > ul > li > a,
  .primary-nav-list > li > a {
    width: 100%;
    padding: 0.9rem 0.35rem 1rem;
    justify-content: space-between;
  }

  .main-navigation > .nav-menu-wrapper .mobile-nav-drawer-body > ul > li > a::after,
  .primary-nav-list > li > a::after {
    left: 0.35rem;
    right: 0.35rem;
    bottom: 0.55rem;
  }

  .main-navigation > .nav-menu-wrapper .mobile-nav-drawer-body > ul > li.current-menu-item > a::before,
  .main-navigation > .nav-menu-wrapper .mobile-nav-drawer-body > ul > li.current-menu-ancestor > a::before,
  .primary-nav-list > li.current-menu-item > a::before,
  .primary-nav-list > li.current-menu-ancestor > a::before {
    display: none;
  }

  .menu-item-has-mega-menu::after {
    display: none !important;
  }

  #products-mega-menu.mega-menu-dropdown,
  .mega-menu-dropdown {
    position: static;
    transform: none;
    width: 100%;
    max-width: none;
    padding-top: 0;
    box-shadow: none;
    border: none;
    border-radius: 0;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    display: none;
    background: transparent;
    margin: 0;
    top: auto;
    left: auto;
  }

  .mega-menu-dropdown > .mega-menu-inner {
    background: var(--na-menu-bg);
    opacity: 1;
    margin-top: 0;
    min-height: 0;
    max-height: none;
    border: none;
    border-radius: 0;
    box-shadow: none;
    display: block;
  }

  #products-mega-menu::before {
    display: none;
  }

  .menu-item-has-mega-menu.is-open #products-mega-menu,
  .menu-item-has-mega-menu.mega-open #products-mega-menu {
    display: block;
  }

  .mega-menu-categories {
    max-height: none;
    overflow: visible;
  }

  .mega-menu-grid {
    column-width: 8.5rem;
    column-gap: 0.65rem;
  }

  .mega-menu-column {
    margin-bottom: 0.6rem;
    padding: 0;
  }

  .mega-menu-inner {
    padding: 0.75rem 0.5rem;
  }

  .hero h1 {
    font-size: 2.35rem;
  }
}

@media (max-width: 600px) {
  .site-container {
    padding: 0 1rem;
  }

  h1 { font-size: 2.1rem; }
  .entry-title { font-size: 1.85rem; }

  /* Default part grids: single column; product lists override below */
  .part-grid {
    grid-template-columns: 1fr;
  }

  .header-contact-btn {
    display: none;
  }

  .site-main {
    padding: 2rem 0 3rem;
  }
}

/* Product list: 2 cards per row on mobile */
@media (max-width: 768px) {
  .products-grid.part-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem;
    margin: 1rem 0;
  }

  .products-grid.part-grid .part-card .part-image {
    height: 140px;
  }

  .products-grid.part-grid .part-card .part-content {
    padding: 0.75rem;
  }
}

/* Very narrow screens: 1 card per row */
@media (max-width: 300px) {
  .products-grid.part-grid {
    grid-template-columns: 1fr;
    gap: 0.85rem;
  }

  .products-grid.part-grid .part-card .part-image {
    height: 160px;
  }
}

/* Product cards: stacked full-width CTAs + slightly smaller type */
@media (max-width: 576px) {
  .products-grid .part-card.product-card .product-card-actions {
    grid-template-columns: 1fr;
    gap: 0.4rem;
  }

  .products-grid .part-card.product-card .view-details-btn,
  .products-grid .part-card.product-card .btn-enquire {
    width: 100%;
    white-space: normal;
  }

  .products-grid .part-card.product-card .part-title {
    font-size: 0.92rem;
  }

  .products-grid .part-card.product-card .part-price {
    font-size: 1.1rem;
  }
}

/* Print */
@media print {
  .site-header,
  .site-footer,
  .widget-area,
  .navigation,
  .comments-area {
    display: none;
  }
}

/* ============================================
   PRODUCT (CPT) STYLES - Single & Archive
   ============================================ */

/* Archive / Catalog Grid */
.product-archive .products-grid {
  margin-top: 1.5rem;
}

.product-card .part-number {
  font-family: var(--font-heading);
  font-size: 0.75rem;
  letter-spacing: 0.5px;
  color: var(--na-teal);
  margin-bottom: 0.25rem;
  font-weight: 600;
}

.product-card .part-price .original {
  color: var(--na-text-muted);
  font-size: 0.9rem;
  text-decoration: line-through;
  margin-right: 0.4rem;
}

.product-card .part-price .sale {
  color: var(--na-teal-light);
  font-weight: 700;
}

.product-card .no-price {
  font-size: 0.85rem;
  color: var(--na-text-muted);
}

.part-card.product-card .part-image > .stock-status,
.part-card .part-image .stock-status {
  position: absolute;
  top: 10px;
  left: 10px;
  right: auto;
  bottom: auto;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  width: auto;
  max-width: calc(100% - 20px);
  margin: 0;
  padding: 0.14rem 0.5rem;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.02em;
  box-shadow: 0 2px 8px rgb(15 23 42 / 0.12);
  pointer-events: none;
}

.part-card .part-content > .stock-status {
  display: none;
}

.product-card .stock-in_stock {
  background: rgb(220 252 231 / 0.96);
  color: #15803d;
  border: 1px solid rgb(34 197 94 / 0.28);
}

.product-card .stock-low_stock {
  background: rgb(254 249 195 / 0.96);
  color: #a16207;
  border: 1px solid rgb(234 179 8 / 0.35);
}

.product-card .stock-out_of_stock {
  background: rgb(254 226 226 / 0.96);
  color: #b91c1c;
  border: 1px solid rgb(239 68 68 / 0.3);
}

.product-card .stock-preorder {
  background: rgb(204 251 241 / 0.96);
  color: #0f766e;
  border: 1px solid rgb(20 184 166 / 0.3);
}

/* Single Product Page */
.nandi-product-single .product-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 3rem;
}

.nandi-product-single .product-image {
  background: var(--na-surface);
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid var(--na-border);
}

.nandi-product-single .product-featured,
.nandi-product-single .product-image-placeholder img {
  width: 100%;
  height: auto;
  display: block;
}

.nandi-product-single .product-meta-main {
  display: flex;
  flex-direction: column;
}

.nandi-product-single .product-brand {
  font-family: var(--font-heading);
  color: var(--na-teal);
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nandi-product-single .entry-title {
  font-size: 2.1rem;
  margin: 0.3rem 0 0.6rem;
  line-height: 1.15;
}

.nandi-product-single .product-part-number,
.nandi-product-single .product-sku {
  font-size: 0.9rem;
  color: var(--na-text-muted);
  margin-bottom: 0.25rem;
}

.nandi-product-single .product-part-number span,
.nandi-product-single .product-sku span {
  color: var(--na-text);
  font-weight: 500;
}

.nandi-product-single .product-price-block {
  margin: 1rem 0 0.75rem;
  font-family: var(--font-heading);
}

.nandi-product-single .price {
  font-size: 2rem;
  font-weight: 700;
  color: var(--na-teal);
}

.nandi-product-single .original-price {
  font-size: 1.35rem;
  color: var(--na-text-muted);
  margin-right: 0.5rem;
}

.nandi-product-single .sale-price {
  color: var(--na-teal-light);
}

.nandi-product-single .sale-badge {
  display: inline-block;
  background: var(--na-teal);
  color: var(--na-text-inverse);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 3px 10px;
  border-radius: 999px;
  margin-left: 0.6rem;
  vertical-align: middle;
}

.nandi-product-single .product-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  margin-bottom: 1rem;
}

.nandi-product-single .stock-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: currentColor;
}

.nandi-product-single .stock-in_stock { color: var(--na-success); }
.nandi-product-single .stock-low_stock { color: #eab308; }
.nandi-product-single .stock-out_of_stock { color: var(--na-red); }
.nandi-product-single .stock-preorder { color: var(--na-teal); }

.nandi-product-single .product-weight {
  font-size: 0.85rem;
  color: var(--na-text-muted);
  margin-bottom: 1.25rem;
}

.nandi-product-single .product-actions {
  display: flex;
  gap: 0.75rem;
  margin-bottom: 1rem;
  flex-wrap: wrap;
}

.nandi-product-single .product-locations {
  font-size: 0.875rem;
  color: var(--na-text-muted);
}

.nandi-product-single .product-content-area {
  max-width: 980px;
}

.nandi-product-single .product-content-area h2 {
  margin-top: 2.5rem;
  font-size: 1.35rem;
  border-bottom: 1px solid var(--na-border);
  padding-bottom: 0.4rem;
}

.nandi-product-single .compat-table,
.nandi-product-single .specs-table {
  width: 100%;
  border-collapse: collapse;
  margin: 1rem 0;
  background: var(--na-surface);
  border: 1px solid var(--na-border);
  border-radius: 6px;
  overflow: hidden;
}

.nandi-product-single .compat-table th,
.nandi-product-single .compat-table td,
.nandi-product-single .specs-table th,
.nandi-product-single .specs-table td {
  padding: 0.7rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--na-border);
}

.nandi-product-single .compat-table th,
.nandi-product-single .specs-table th {
  background: var(--na-bg-alt);
  font-weight: 600;
  width: 160px;
  color: var(--na-text-muted);
}

.nandi-product-single .compat-table tr:last-child td,
.nandi-product-single .specs-table tr:last-child td {
  border-bottom: none;
}

.nandi-product-single .table-wrapper {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.nandi-product-single .product-categories {
  margin-top: 2rem;
  font-size: 0.9rem;
}

/* Responsive for products */
@media (max-width: 900px) {
  .nandi-product-single .product-header {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .nandi-product-single .product-actions {
    flex-direction: column;
  }

  .nandi-product-single .product-actions .btn-secondary {
    text-align: center;
  }
}

/* ============================================
   HOME PAGE - MODERN HERO + SECTIONS
   ============================================ */

.has-hero .site-content > .site-container {
  padding-top: 0;
}

/* Brand Introduction Banner */
.brand-banner {
  position: relative;
  min-height: clamp(560px, 88vh, 820px);
  display: flex;
  align-items: center;
  padding: 4rem 0 5rem;
  overflow: hidden;
  color: var(--na-text-inverse);
}

.brand-banner-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.brand-banner-media > picture {
  display: block;
  width: 100%;
  height: 100%;
}

.brand-banner-bg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.brand-banner-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgb(15 23 42 / 0.92) 0%, rgb(30 41 59 / 0.82) 42%, rgb(15 23 42 / 0.55) 100%),
    linear-gradient(to top, rgb(15 23 42 / 0.75) 0%, transparent 45%);
}

.brand-banner-accent-line {
  position: absolute;
  left: 0;
  top: 0;
  width: 5px;
  height: 100%;
  background: linear-gradient(to bottom, var(--na-brand-light), var(--na-brand-dark));
}

.brand-banner-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 2rem;
}

.brand-banner-content {
  width: 100%;
  min-width: 0;
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}

.brand-banner.is-loaded .brand-banner-content,
.brand-banner .brand-banner-content.animate-in,
.modern-hero.is-loaded .brand-banner-content,
.modern-hero .hero-content.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.brand-banner-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin: 0 0 1.1rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: #fed7aa;
}

.brand-banner-mark {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--na-brand-light);
  box-shadow: 0 0 0 4px rgb(249 115 22 / 0.28);
}

.brand-banner-title {
  margin: 0 0 1rem;
  font-size: clamp(2.4rem, 5.5vw, 4rem);
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: -0.03em;
  color: var(--na-text-inverse);
  max-width: 100%;
  text-wrap: balance;
}

.brand-banner-title-accent {
  display: inline;
  color: var(--na-brand-light);
}

.brand-banner-lead {
  margin: 0 0 1.35rem;
  max-width: 100%;
  font-size: clamp(1rem, 1.9vw, 1.15rem);
  line-height: 1.7;
  color: rgb(226 232 240 / 0.92);
}

.brand-banner-pills {
  list-style: none;
  margin: 0 0 1.6rem;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.brand-banner-pills li {
  padding: 0.4rem 0.8rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: #ffedd5;
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.16);
  border-radius: 999px;
}

.brand-banner-actions {
  justify-content: flex-start;
}

.brand-banner-btn-secondary {
  color: var(--na-text-inverse);
  border-color: rgb(255 255 255 / 0.45);
  background: transparent;
}

.brand-banner-btn-secondary:hover {
  color: var(--na-text-inverse);
  border-color: var(--na-text-inverse);
  background: rgb(255 255 255 / 0.1);
}

.brand-banner-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  width: 100%;
}

.brand-banner-stat {
  padding: 0.95rem 1.1rem;
  border-radius: 12px;
  background: rgb(255 255 255 / 0.08);
  border: 1px solid rgb(255 255 255 / 0.14);
  backdrop-filter: blur(8px);
}

.brand-banner-stat strong {
  display: block;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.1;
  color: var(--na-brand-light);
}

.brand-banner-stat span {
  display: block;
  margin-top: 0.2rem;
  font-size: 0.78rem;
  color: rgb(226 232 240 / 0.85);
  letter-spacing: 0.02em;
}

.brand-banner-scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--na-text-inverse);
  text-decoration: none;
  animation: bounce 2.2s infinite;
}

.brand-banner-scroll span {
  display: block;
  width: 2px;
  height: 28px;
  background: linear-gradient(to bottom, var(--na-brand-light), transparent);
  border-radius: 2px;
}

.brand-banner-scroll:hover {
  color: rgb(255 255 255 / 0.88);
}

/* Homepage - banner extends behind transparent header */
.has-hero .brand-banner {
  margin-top: calc(-1 * var(--header-height));
  padding-top: calc(4rem + var(--header-height));
}

.has-hero .site-header {
  background-color: transparent;
}

.has-hero .site-header .header-main {
  position: relative;
  background: transparent;
  border-bottom-color: rgb(255 255 255 / 0.12);
  box-shadow: none;
  transition: background 0.35s ease, border-color 0.35s ease, box-shadow 0.35s ease;
}

/* Blur on ::before so fixed mega menu / search panel anchor to the viewport, not header-main */
.has-hero .site-header:not(.header-scrolled) .header-main::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: rgb(15 23 42 / 0.42);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.has-hero .site-header .header-main-inner {
  position: relative;
  z-index: 1;
}

.has-hero .site-header.header-scrolled .header-main {
  background: var(--na-menu-bg);
  border-bottom-color: var(--na-menu-border);
  box-shadow: 0 1px 3px rgb(15 23 42 / 0.08);
}

.has-hero .site-header.header-scrolled .header-main::before {
  display: none;
}

.has-hero .site-header:not(.header-scrolled) .site-title a,
.has-hero .site-header:not(.header-scrolled) .main-navigation > .nav-menu-wrapper > ul > li > a,
.has-hero .site-header:not(.header-scrolled) .primary-nav-list > li > a {
  color: rgb(255 255 255 / 0.94);
}

.has-hero .site-header:not(.header-scrolled) .site-title a:hover,
.has-hero .site-header:not(.header-scrolled) .main-navigation > .nav-menu-wrapper > ul > li > a:hover,
.has-hero .site-header:not(.header-scrolled) .primary-nav-list > li > a:hover {
  color: var(--na-brand-light);
}

.has-hero .site-header:not(.header-scrolled) .main-navigation > .nav-menu-wrapper > ul > li.current-menu-item > a,
.has-hero .site-header:not(.header-scrolled) .primary-nav-list > li.current-menu-item > a,
.has-hero .site-header:not(.header-scrolled) .main-navigation > .nav-menu-wrapper > ul > li.current-menu-ancestor > a,
.has-hero .site-header:not(.header-scrolled) .primary-nav-list > li.current-menu-ancestor > a {
  color: var(--na-brand-light);
}

.has-hero .site-header:not(.header-scrolled) .menu-toggle {
  border-color: rgb(255 255 255 / 0.35);
  color: var(--na-text-inverse);
}

.has-hero .site-header:not(.header-scrolled) .menu-toggle-icon span {
  background: var(--na-text-inverse);
}

.home-hero .hero-content {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.9s cubic-bezier(0.22, 1, 0.36, 1);
}

.home-hero.is-loaded .hero-content,
.home-hero .hero-content.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.home-hero .scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.7rem;
  color: var(--na-text-muted);
  opacity: 0.6;
  animation: bounce 2.2s infinite;
}

.home-hero .scroll-indicator span {
  display: block;
  width: 1px;
  height: 28px;
  background: currentColor;
}

/* Homepage About Company */
.home-about {
  background: transparent;
}

.home-about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: start;
}

.home-about-eyebrow {
  margin: 0 0 0.65rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--na-teal);
}

.home-about-title {
  margin: 0 0 1rem;
  font-size: clamp(1.85rem, 3.5vw, 2.5rem);
  line-height: 1.2;
}

.home-about-text {
  margin: 0 0 1rem;
  color: var(--na-text-muted);
  line-height: 1.7;
  max-width: 100%;
}

.home-about-points {
  list-style: none;
  margin: 1.25rem 0 1.75rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.home-about-points li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: var(--na-text);
  line-height: 1.5;
}

.home-about-point-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--na-teal-50);
  color: var(--na-teal);
  font-size: 0.72rem;
  font-weight: 700;
}

.home-about-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.home-about-aside {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.home-about-media {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--na-border);
  box-shadow: 0 18px 40px -22px rgb(15 23 42 / 0.25);
}

.home-about-media > picture {
  display: block;
  width: 100%;
}

.home-about-image {
  display: block;
  width: 100%;
  height: auto;
  min-height: 280px;
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.home-about-media-badge {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  max-width: calc(100% - 2rem);
  padding: 0.75rem 0.95rem;
  border-radius: 12px;
  background: rgb(255 255 255 / 0.94);
  border: 1px solid var(--na-border);
  box-shadow: 0 12px 28px -16px rgb(15 23 42 / 0.35);
  backdrop-filter: blur(6px);
}

.home-about-media-badge strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 0.95rem;
  color: var(--na-text);
}

.home-about-media-badge span {
  display: block;
  font-size: 0.82rem;
  color: var(--na-text-muted);
}

.home-about-stats-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
}

.home-about-card {
  background: var(--na-bg-alt);
  border: 1px solid var(--na-border);
  border-radius: 12px;
  padding: 1.25rem 1.35rem;
}

.home-about-card--main h3 {
  margin: 0.35rem 0 0.65rem;
  font-size: 1.35rem;
}

.home-about-card--main p {
  margin: 0;
  color: var(--na-text-muted);
  line-height: 1.6;
}

.home-about-card-label {
  margin: 0;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--na-teal-dark);
}

.home-about-card--mini {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.home-about-card--mini strong {
  font-size: 1rem;
  color: var(--na-text);
}

.home-about-card--mini span {
  font-size: 0.88rem;
  color: var(--na-text-muted);
}

.home-about-card--link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: var(--na-teal);
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.home-about-card--link:hover {
  border-color: var(--na-teal);
  background: var(--na-teal-50);
  color: var(--na-teal-dark);
}

/* Section common styles */
.section-eyebrow {
  margin: 0 0 0.45rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--na-brand);
}

.home-section {
  padding: 3.75rem 0;
}

.home-section .section-header {
  text-align: center;
  max-width: 100%;
  width: 100%;
  margin: 0 auto 2.25rem;
}

.home-section .section-header h2 {
  font-size: clamp(1.75rem, 3vw, 2.1rem);
  margin-bottom: 0.6rem;
  line-height: 1.2;
}

.home-section .section-header p {
  color: var(--na-text-muted);
  font-size: 1rem;
  line-height: 1.55;
  margin: 0;
}

/* Quick business summary strip */
.home-summary {
  padding: clamp(3.25rem, 5vw, 4.25rem) 0 3.5rem;
  background: var(--na-surface);
  border-bottom: 1px solid var(--na-border);
}

.home-summary-grid {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

@media (max-width: 900px) {
  .home-summary-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
  }
}

.home-summary-item {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
}

.home-summary-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: var(--na-brand-50);
  color: var(--na-brand);
}

.home-summary-icon svg {
  width: 22px;
  height: 22px;
}

.home-summary-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.home-summary-copy strong {
  font-size: 0.95rem;
  line-height: 1.3;
  color: var(--na-text);
}

.home-summary-copy span {
  font-size: 0.84rem;
  line-height: 1.4;
  color: var(--na-text-muted);
}

.home-summary-cta {
  margin: 1.5rem 0 0;
  text-align: center;
  font-size: 0.88rem;
}

.home-summary-cta a {
  font-weight: 600;
  color: var(--na-brand);
  text-decoration: none;
  border-bottom: 1px solid rgb(232 93 4 / 0.35);
  padding-bottom: 0.1rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.home-summary-cta a:hover {
  color: var(--na-brand-dark);
  border-color: var(--na-brand);
}

/* Homepage - Visit Us / Shop Locations (full width, no white patch) */
body.home .site-content,
body.page-template-home-page .site-content {
  overflow-x: clip;
}

.home-shop-locations,
.home-visit-us {
  background: transparent;
  border-top: none;
  padding-bottom: 4rem;
}

.home-shop-locations-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--na-teal);
}

.home-visit-us-header {
  margin-bottom: 2rem;
}

.home-shop-locations-footer {
  margin: 3rem 0 0;
  padding-top: 0.5rem;
  text-align: center;
}

.home-visit-us-content {
  margin-top: 2rem;
}

.home-visit-us-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.95fr) minmax(320px, 1.05fr);
  min-height: 440px;
  border: 1px solid var(--na-border);
  border-radius: 14px;
  overflow: hidden;
  background: var(--na-surface);
}

.home-visit-us-form-panel {
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.home-visit-us-form-panel h3 {
  margin: 0 0 0.45rem;
  font-size: 1.35rem;
  color: var(--na-text);
}

.home-visit-us-form-panel > p {
  margin: 0 0 1.25rem;
  color: var(--na-text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.home-visit-form label {
  color: var(--na-text);
}

.home-visit-form input,
.home-visit-form textarea {
  background: var(--na-bg);
  border-color: var(--na-border);
  color: var(--na-text);
}

.home-visit-form input::placeholder,
.home-visit-form textarea::placeholder {
  color: var(--na-text-muted);
}

.home-visit-form input:focus,
.home-visit-form textarea:focus {
  border-color: var(--na-brand);
  box-shadow: 0 0 0 3px rgb(232 93 4 / 0.15);
}

.home-visit-form .btn-primary {
  width: 100%;
}

.home-visit-us-quick-contact {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.25rem;
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid var(--na-border);
}

.home-visit-us-phone,
.home-visit-us-whatsapp {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--na-teal);
  text-decoration: none;
}

.home-visit-us-whatsapp {
  color: #16a34a;
}

.home-visit-us-phone:hover,
.home-visit-us-whatsapp:hover {
  text-decoration: underline;
}

.home-visit-us-map-panel {
  min-height: 440px;
  background: var(--na-bg);
  border-left: 1px solid var(--na-border);
}

.home-visit-us-map-panel iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 440px;
  border: 0;
}

.home-visit-us-addresses {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 1.25rem 0 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  border-top: 1px solid var(--na-border);
}

.home-visit-us-addresses li {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  font-size: 0.86rem;
  color: var(--na-text-muted);
}

.home-visit-us-addresses strong {
  color: var(--na-text);
  font-size: 0.95rem;
}

.home-visit-us-addresses a {
  margin-top: 0.25rem;
  color: var(--na-teal);
  font-weight: 600;
  text-decoration: none;
  font-size: 0.82rem;
}

.home-visit-us-addresses a:hover {
  text-decoration: underline;
}

.home-shop-map-link strong {
  font-size: 0.95rem;
  color: var(--na-text);
}

.home-shop-map-link span {
  font-size: 0.82rem;
  color: var(--na-text-muted);
  line-height: 1.45;
}

.home-shop-map-link:hover strong {
  color: var(--na-brand);
}

.home-shop-map-directions {
  display: inline-block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--na-brand);
  text-decoration: none;
}

.home-shop-map-directions:hover {
  color: var(--na-brand-dark);
}

/* Homepage FAQ */
.home-faq {
  background: var(--na-bg);
  border-top: 1px solid var(--na-border);
}

.home-faq-layout {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 2.5rem;
  align-items: start;
}

.home-faq-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--na-teal);
}

.home-faq-intro h2 {
  font-size: 2.35rem;
  margin: 0 0 0.75rem;
}

.home-faq-intro p {
  color: var(--na-text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
  margin: 0 0 1.5rem;
}

.home-faq-cta {
  display: inline-flex;
}

.home-faq-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.home-faq-item {
  background: var(--na-surface);
  border: 1px solid var(--na-border);
  border-radius: 12px;
  overflow: hidden;
  transition: border-color 0.32s ease, box-shadow 0.32s ease, background-color 0.32s ease;
}

.home-faq-item[open],
.home-faq-item.is-animating {
  border-color: var(--na-teal);
  box-shadow: 0 12px 28px -18px rgb(15 118 110 / 0.45);
}

.home-faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  font-weight: 600;
  font-size: 0.98rem;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
  transition: color 0.25s ease;
}

.home-faq-question::-webkit-details-marker {
  display: none;
}

.home-faq-icon {
  position: relative;
  flex-shrink: 0;
  width: 18px;
  height: 18px;
}

.home-faq-icon::before,
.home-faq-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: var(--na-teal);
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.home-faq-icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.home-faq-item[open] .home-faq-icon::after,
.home-faq-item.is-animating .home-faq-icon::after {
  opacity: 0;
  transform: translate(-50%, -50%) rotate(90deg) scale(0.6);
}

.home-faq-answer {
  overflow: hidden;
  height: 0;
  padding: 0 1.25rem;
  box-sizing: border-box;
  transition: height 0.32s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: height;
}

.home-faq-item[open] .home-faq-answer {
  padding-bottom: 1.15rem;
}

.home-faq-answer p {
  margin: 0;
  color: var(--na-text-muted);
  font-size: 0.94rem;
  line-height: 1.65;
  opacity: 0.55;
  transform: translateY(-6px);
  transition: opacity 0.28s ease 0.04s, transform 0.32s cubic-bezier(0.4, 0, 0.2, 1) 0.04s;
}

.home-faq-item[open] .home-faq-answer p,
.home-faq-item.is-animating .home-faq-answer p {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  .home-faq-answer,
  .home-faq-answer p,
  .home-faq-icon::before,
  .home-faq-icon::after,
  .home-faq-item {
    transition: none;
  }
}

/* Homepage Map */
.home-map {
  background: var(--na-bg-alt);
  border-top: 1px solid var(--na-border);
}

.home-map .section-header {
  margin-bottom: 2.5rem;
}

.home-map-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--na-teal);
}

.home-map-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: stretch;
}

.home-map-locations {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.home-map-location-card {
  background: var(--na-surface);
  border: 1px solid var(--na-border);
  border-radius: 12px;
  padding: 1.1rem 1.2rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-map-location-card:hover {
  border-color: var(--na-teal);
  box-shadow: 0 10px 24px -16px rgb(15 118 110 / 0.4);
}

.home-map-location-name {
  margin: 0 0 0.45rem;
  font-size: 1rem;
}

.home-map-location-name a {
  color: var(--na-text);
  text-decoration: none;
}

.home-map-location-name a:hover {
  color: var(--na-teal);
}

.home-map-location-address {
  margin: 0 0 0.65rem;
  color: var(--na-text-muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.home-map-directions {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--na-teal);
  text-decoration: none;
  transition: gap 0.2s ease, color 0.2s ease;
}

.home-map-directions:hover {
  gap: 10px;
  color: var(--na-teal-light);
}

.home-map-contact {
  margin-top: 0.35rem;
  padding: 1rem 1.1rem;
  border-radius: 12px;
  background: var(--na-teal-50);
  border: 1px solid rgb(13 148 136 / 0.15);
}

.home-map-contact p {
  margin: 0;
  font-size: 0.9rem;
  line-height: 1.55;
}

.home-map-contact p + p {
  margin-top: 0.35rem;
}

.home-map-contact a {
  color: var(--na-teal);
  font-weight: 600;
}

.home-map-contact-sep {
  margin: 0 0.35rem;
  color: var(--na-text-muted);
}

.home-map-embed {
  position: relative;
  min-height: 420px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--na-border);
  background: var(--na-surface);
}

.home-map-embed iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
}

.home-map-attribution {
  position: absolute;
  right: 0.65rem;
  bottom: 0.45rem;
  margin: 0;
  padding: 0.2rem 0.45rem;
  font-size: 0.68rem;
  background: rgb(255 255 255 / 0.92);
  border-radius: 6px;
}

.home-map-attribution a {
  color: var(--na-text-muted);
  text-decoration: none;
}

.home-map-attribution a:hover {
  color: var(--na-teal);
}

/* 2. Shop Highlights */
.shop-highlights-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.75rem;
  max-width: 820px;
  margin-inline: auto;
}

.shop-highlight-card {
  display: flex;
  flex-direction: column;
  background: var(--na-surface);
  border: 1px solid var(--na-border);
  border-radius: 14px;
  padding: 1.85rem 1.65rem 1.65rem;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.3s ease,
              box-shadow 0.3s ease;
}

.shop-highlight-card:hover {
  transform: translateY(-6px);
  border-color: var(--na-brand-light);
  box-shadow: 0 20px 36px -18px rgb(15 23 42 / 0.18);
}

.shop-icon-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 58px;
  margin-bottom: 1rem;
  border-radius: 50%;
  background: var(--na-brand-50);
  border: 1px solid rgb(232 93 4 / 0.18);
}

.shop-highlight-card .shop-icon {
  width: 28px;
  height: 28px;
  color: var(--na-brand);
}

.shop-highlight-card .shop-icon svg {
  width: 100%;
  height: 100%;
}

.shop-highlight-card .shop-tagline {
  margin: 0 0 0.35rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--na-brand);
}

.shop-highlight-card .shop-name {
  font-size: 1.28rem;
  margin: 0 0 0.45rem;
  line-height: 1.2;
}

.shop-highlight-card .shop-location {
  margin: 0 0 1.1rem;
  font-size: 0.84rem;
  color: var(--na-text-muted);
  font-weight: 500;
  line-height: 1.5;
}

.shop-location-sep {
  margin: 0 0.3rem;
  color: var(--na-border-light);
}

.shop-quick-highlights {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  flex: 1;
}

.shop-quick-highlights li {
  position: relative;
  padding-left: 1.35rem;
  font-size: 0.9rem;
  line-height: 1.45;
  color: var(--na-text);
}

.shop-quick-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--na-brand);
  box-shadow: 0 0 0 3px var(--na-brand-50);
}

.shop-highlight-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  margin-top: auto;
  padding-top: 0.25rem;
}

.shop-highlight-card .shop-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  color: var(--na-brand);
  font-size: 0.92rem;
  transition: gap 0.2s ease, color 0.2s ease;
}

.shop-highlight-card .shop-cta:hover {
  gap: 10px;
  color: var(--na-brand-dark);
}

.shop-highlight-card .shop-directions {
  font-size: 0.84rem;
  font-weight: 600;
  color: var(--na-text-muted);
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color 0.2s ease;
}

.shop-highlight-card .shop-directions:hover {
  color: var(--na-brand);
}

/* 3. Featured Products - uses existing .part-grid */
.featured-products-grid {
  margin-bottom: 1.5rem;
}

.home-section .view-all {
  display: block;
  text-align: center;
  margin-top: 2rem;
  font-weight: 600;
}

/* Homepage - Why Choose (neutral break between colored patches) */
.home-why-choose {
  background: transparent;
  padding: 4rem 0;
  border-top: 1px solid var(--na-border);
  border-bottom: 1px solid var(--na-border);
}

.home-why-choose-eyebrow {
  color: var(--na-brand);
}

.home-why-choose .section-header {
  margin-bottom: 2.5rem;
}

.home-why-choose-cta {
  margin: 2.25rem 0 0;
  text-align: center;
  font-size: 0.9rem;
}

.home-why-choose-cta a {
  font-weight: 600;
  color: var(--na-teal);
  text-decoration: none;
  border-bottom: 1px solid rgb(20 184 166 / 0.35);
  padding-bottom: 0.1rem;
  transition: color 0.2s ease, border-color 0.2s ease;
}

.home-why-choose-cta a:hover {
  color: var(--na-teal-dark, var(--na-teal));
  border-color: var(--na-teal);
}

/* 4. Why Choose Us */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}

.why-choose-item {
  text-align: center;
  padding: 1.5rem 1rem;
}

.why-choose-item .icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.25rem;
  background: var(--na-surface);
  border: 1px solid var(--na-border);
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--na-teal);
  transition: transform 0.3s ease, border-color 0.3s ease;
}

.why-choose-item:hover .icon {
  transform: scale(1.08);
  border-color: var(--na-teal);
}

.why-choose-item .icon svg {
  width: 32px;
  height: 32px;
}

.why-choose-item h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.why-choose-item p {
  font-size: 0.9rem;
  color: var(--na-text-muted);
  line-height: 1.55;
}

/* Full-width vibrant homepage patches */
.home-patch {
  position: relative;
  overflow: hidden;
  padding: 4rem 0;
}

.home-patch.home-section {
  padding: 4rem 0;
}

.home-patch-content {
  position: relative;
  z-index: 2;
}

.home-patch-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.home-patch-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}

.home-patch--categories {
  background: linear-gradient(128deg, #9a3412 0%, var(--na-brand-dark) 28%, var(--na-brand) 58%, var(--na-brand-light) 100%);
  color: var(--na-text-inverse);
}

.home-patch--categories .home-patch-orb--one {
  width: 420px;
  height: 420px;
  top: -160px;
  left: -80px;
  background: rgb(255 237 213 / 0.45);
}

.home-patch--categories .home-patch-orb--two {
  width: 360px;
  height: 360px;
  bottom: -120px;
  right: -40px;
  background: rgb(124 45 18 / 0.55);
}

.home-patch--products {
  background: linear-gradient(135deg, #0f172a 0%, var(--na-steel-dark) 32%, var(--na-steel) 62%, #1e3a5f 100%);
  color: var(--na-text-inverse);
}

.home-patch--products .home-patch-orb--one {
  width: 440px;
  height: 440px;
  top: -140px;
  right: -60px;
  background: rgb(249 115 22 / 0.42);
}

.home-patch--products .home-patch-orb--two {
  width: 320px;
  height: 320px;
  bottom: -100px;
  left: 8%;
  background: rgb(56 189 248 / 0.22);
}

.home-patch--products .home-patch-orb--three {
  width: 280px;
  height: 280px;
  top: 40%;
  right: 22%;
  background: rgb(232 93 4 / 0.28);
}

.home-patch-header h2 {
  color: var(--na-text-inverse);
}

.home-patch-header p {
  color: rgb(255 255 255 / 0.9);
}

.home-patch--categories .section-eyebrow,
.home-patch--products .section-eyebrow {
  color: #ffedd5;
}

/* Homepage Categories */
.home-categories-inner,
.home-featured-products-inner {
  position: relative;
  z-index: 1;
}

.home-categories .section-header,
.home-patch--categories .home-patch-header {
  margin-bottom: 2.25rem;
  text-align: center;
  max-width: 100%;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.home-categories .section-header .section-eyebrow,
.home-categories .section-header p {
  color: var(--na-text-inverse);
}

.home-featured-products .section-header .section-eyebrow,
.home-featured-products .section-header p {
  color: var(--na-text-inverse);
}

.home-categories-grid,
.popular-categories-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1.35rem 1rem;
  width: 100%;
  margin: 0 auto;
  justify-items: center;
}

@media (max-width: 1100px) {
  .home-categories-grid,
  .popular-categories-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .home-categories-grid,
  .popular-categories-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1rem 0.75rem;
  }
}

@media (max-width: 480px) {
  .home-categories-grid,
  .popular-categories-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 0.65rem;
  }
}

.home-category-card--round {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 0.55rem;
  width: 100%;
  max-width: 150px;
  margin: 0 auto;
  text-align: center;
  text-decoration: none;
  color: inherit;
  transition: transform 0.25s ease;
}

.home-category-card--round:hover {
  transform: translateY(-4px);
}

.home-category-icon-ring {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 96px;
  height: 96px;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.14);
  border: 2px solid rgb(255 255 255 / 0.35);
  box-shadow: 0 16px 34px -18px rgb(15 23 42 / 0.45);
  backdrop-filter: blur(6px);
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.home-category-card--round:hover .home-category-icon-ring {
  border-color: var(--na-text-inverse);
  background: rgb(255 255 255 / 0.24);
  box-shadow: 0 20px 38px -14px rgb(15 23 42 / 0.5);
  transform: scale(1.05);
}

.home-category-card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.92);
  color: var(--na-brand);
}

.home-category-card-icon svg {
  display: block;
}

.home-category-card--round:hover .home-category-card-icon {
  color: var(--na-brand-dark);
}

.home-category-card-name {
  font-weight: 600;
  font-size: 0.9rem;
  line-height: 1.35;
  color: var(--na-text-inverse);
  max-width: 130px;
}

.home-category-card--round:hover .home-category-card-name {
  color: #ffedd5;
}

.home-category-card-meta {
  font-size: 0.74rem;
  color: rgb(255 255 255 / 0.78);
  line-height: 1.3;
}

.home-category-card-count {
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--na-brand-dark);
  background: rgb(255 255 255 / 0.92);
  border-radius: 999px;
  padding: 0.15rem 0.55rem;
}

.home-categories-note {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgb(255 255 255 / 0.82);
}

.home-categories-footer {
  margin: 2rem 0 0;
  text-align: center;
}

.home-categories .view-all {
  display: inline-block;
  color: var(--na-text-inverse);
  text-decoration: none;
  border-bottom: none;
  padding-bottom: 0;
  font-weight: 600;
  transition: color 0.2s ease;
}

.home-categories .view-all:hover {
  color: #ffedd5;
}

/* Homepage Clients Marquee */
.home-clients {
  background: var(--na-bg);
  border-top: 1px solid var(--na-border);
  border-bottom: 1px solid var(--na-border);
  padding-bottom: 4rem;
  overflow: hidden;
}

.home-clients .section-header {
  margin-bottom: 2.5rem;
}

.home-clients-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--na-teal);
}

.home-clients-marquee {
  position: relative;
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    #000 8%,
    #000 92%,
    transparent 100%
  );
}

.home-clients-track {
  display: flex;
  width: max-content;
  animation: home-clients-marquee 42s linear infinite;
  will-change: transform;
}

.home-clients-track.is-paused {
  animation-play-state: paused;
}

.home-clients-set {
  display: flex;
  align-items: stretch;
  gap: 1.25rem;
  padding: 0 0.625rem;
}

.home-client-slide {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  flex-shrink: 0;
  min-width: 240px;
  padding: 1rem 1.25rem;
  background: var(--na-surface);
  border: 1px solid var(--na-border);
  border-radius: 12px;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.home-client-slide:hover {
  border-color: var(--na-teal);
  box-shadow: 0 10px 24px -12px rgb(15 118 110 / 0.35);
}

.home-client-logo {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--na-teal-50);
  color: var(--na-teal);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.home-client-info {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.home-client-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--na-text);
  white-space: nowrap;
}

.home-client-type {
  font-size: 0.78rem;
  color: var(--na-text-muted);
  white-space: nowrap;
}

@keyframes home-clients-marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* Homepage Featured Products Slider */
.home-featured-products-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.home-featured-products-header .section-header {
  margin: 0;
  text-align: left;
  max-width: 100%;
  flex: 1;
  min-width: 0;
}

.home-featured-products-band {
  width: 100%;
  padding: 0;
}

.product-slider-nav {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  flex-shrink: 0;
}

.product-slider-btn {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid rgb(255 255 255 / 0.35);
  background: rgb(255 255 255 / 0.14);
  color: var(--na-text-inverse);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
  transition: border-color 0.2s ease, color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.product-slider-btn:hover:not(:disabled) {
  border-color: var(--na-text-inverse);
  background: rgb(255 255 255 / 0.24);
  transform: translateY(-2px);
}

.product-slider-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.product-slider-viewport {
  overflow: hidden;
  width: 100%;
  /* Vertical breathing room so the card hover-lift + shadow aren't clipped,
     cancelled by negative margins so surrounding layout is unchanged. */
  padding-top: 14px;
  padding-bottom: 28px;
  margin-top: -14px;
  margin-bottom: -28px;
}

.product-slider-track {
  display: flex;
  gap: 1.35rem;
  transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.product-slider-slide {
  flex: 0 0 calc(25% - 1.0125rem);
  min-width: 0;
}

.home-featured-products .product-slider-slide .part-card {
  height: 100%;
  margin: 0;
  background: rgb(255 255 255 / 0.1);
  border: 1px solid rgb(255 255 255 / 0.22);
  border-radius: 16px;
  box-shadow: 0 20px 40px -24px rgb(15 23 42 / 0.55);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background-color 0.25s ease;
}

.home-featured-products .product-slider-slide .part-card:hover {
  transform: translateY(-6px);
  background: rgb(255 255 255 / 0.15);
  border-color: rgb(255 255 255 / 0.34);
  box-shadow: 0 28px 50px -18px rgb(15 23 42 / 0.62);
}

.home-featured-products .product-slider-slide .part-card .part-image {
  position: relative;
  height: 168px;
  min-height: 168px;
  overflow: hidden;
  background: rgb(255 255 255 / 0.08);
  border-bottom: 1px solid rgb(255 255 255 / 0.12);
}

.home-featured-products .product-slider-slide .part-card .part-image .stock-status {
  top: 10px;
  left: 10px;
  z-index: 5;
}

.home-featured-products .product-slider-slide .part-card .part-content {
  background: rgb(15 23 42 / 0.12);
}

.home-featured-products .product-slider-slide .part-card .part-number {
  color: rgb(255 237 213 / 0.92);
}

.home-featured-products .product-slider-slide .part-card .part-title a {
  color: var(--na-text-inverse);
}

.home-featured-products .product-slider-slide .part-card .part-title a:hover {
  color: var(--na-brand-light);
}

.home-featured-products .product-slider-slide .part-card .part-meta,
.home-featured-products .product-slider-slide .part-card .no-price {
  color: rgb(226 232 240 / 0.78);
}

.home-featured-products .product-slider-slide .part-card .part-price {
  color: var(--na-text-inverse);
}

.home-featured-products .product-slider-slide .part-card .part-price .currency,
.home-featured-products .product-slider-slide .part-card .part-price .original {
  color: rgb(226 232 240 / 0.72);
}

.home-featured-products .product-slider-slide .part-card .part-price .sale {
  color: #ffedd5;
}

.home-featured-products .product-slider-slide .part-card .view-details-btn {
  background: rgb(255 255 255 / 0.08);
  border-color: rgb(255 255 255 / 0.34);
  color: var(--na-text-inverse);
}

.home-featured-products .product-slider-slide .part-card .view-details-btn:hover {
  background: rgb(255 255 255 / 0.16);
  border-color: rgb(255 255 255 / 0.5);
  color: var(--na-text-inverse);
}

.home-featured-products .product-slider-slide .part-card .btn-enquire {
  background: var(--na-brand);
  border-color: var(--na-brand);
  color: var(--na-text-inverse);
}

.home-featured-products .product-slider-slide .part-card .btn-enquire:hover {
  background: var(--na-brand-dark);
  border-color: var(--na-brand-dark);
  color: var(--na-text-inverse);
}

.home-featured-products .product-slider-slide .part-card .product-locations-meta,
.home-featured-products .product-slider-slide .part-card .product-locations-meta small {
  color: var(--na-text-inverse);
}

.product-slider-slide .part-card .product-locations-meta {
  margin-top: 0.35rem;
  font-size: 0.72rem;
  color: rgb(255 255 255 / 0.72);
}

.product-slider-slide .part-card .product-locations-meta small {
  color: inherit;
}

.product-slider-slide .part-card .view-details-btn {
  width: 100%;
}

.home-featured-products-note {
  margin: 1rem 0 0;
  text-align: center;
  font-size: 0.85rem;
  color: rgb(255 255 255 / 0.82);
}

.home-featured-products-footer {
  margin: 2rem 0 0;
  text-align: center;
}

.home-featured-products .view-all {
  display: inline-block;
  color: var(--na-text-inverse);
  text-decoration: none;
  border-bottom: none;
  padding-bottom: 0;
  transition: color 0.2s ease;
}

.home-featured-products .view-all:hover {
  color: var(--na-brand-light);
}

.category-card {
  background: var(--na-surface);
  border: 1px solid var(--na-border);
  border-radius: 8px;
  padding: 1.35rem 1.25rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  text-decoration: none;
  color: inherit;
  transition: all 0.25s ease;
}

.category-card:hover {
  border-color: var(--na-teal);
  color: var(--na-teal);
  transform: translateY(-2px);
}

.category-card .cat-name {
  font-weight: 600;
  font-size: 0.975rem;
}

.category-card .cat-count {
  font-size: 0.8rem;
  background: var(--na-bg-alt);
  padding: 2px 9px;
  border-radius: 999px;
  color: var(--na-text-muted);
  white-space: nowrap;
}

/* Homepage Testimonials */
.home-testimonials {
  background: linear-gradient(180deg, var(--na-bg) 0%, var(--na-bg-alt) 100%);
  border-top: 1px solid var(--na-border);
  padding-bottom: 4.5rem;
}

.home-testimonials-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--na-teal);
}

.home-testimonials .section-header {
  margin-bottom: 2rem;
}

.home-testimonials-fullwidth {
  width: 100%;
}

.home-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  min-height: 100%;
  padding: 1.5rem 1.45rem 1.35rem;
  background: var(--na-surface);
  border: 1px solid var(--na-border);
  border-radius: 16px;
  box-shadow: 0 16px 36px -24px rgb(15 23 42 / 0.28);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgb(13 148 136 / 0.35);
  box-shadow: 0 22px 42px -20px rgb(13 148 136 / 0.28);
}

.testimonial-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.testimonial-quote-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--na-teal-50);
  color: var(--na-teal);
}

.testimonial-stars {
  display: inline-flex;
  align-items: center;
  gap: 0.15rem;
  font-size: 0.95rem;
  line-height: 1;
}

.testimonial-star {
  color: #cbd5e1;
}

.testimonial-star.is-filled {
  color: #f59e0b;
}

.testimonial-card-quote {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.7;
  color: var(--na-text);
  font-style: normal;
  flex: 1;
}

.testimonial-card-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 0.85rem;
  border-top: 1px solid var(--na-border);
}

.testimonial-avatar {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--na-teal) 0%, var(--na-teal-dark) 100%);
  color: var(--na-text-inverse);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.testimonial-author-info {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
}

.testimonial-author-info strong {
  font-size: 0.92rem;
  color: var(--na-text);
}

.testimonial-author-info span {
  font-size: 0.8rem;
  color: var(--na-text-muted);
  line-height: 1.35;
}

.animate-on-scroll .testimonial-card {
  transition-delay: calc(80ms * var(--delay, 0));
}

/* 7. Final CTA */
.home-cta-section {
  background: linear-gradient(90deg, var(--na-surface) 0%, var(--na-bg-alt) 100%);
  border-top: 1px solid var(--na-border);
  border-bottom: 1px solid var(--na-border);
  padding: 4.5rem 0;
  text-align: center;
}

.home-cta-section h2 {
  font-size: 2.1rem;
  margin-bottom: 0.75rem;
}

.home-cta-section p {
  color: var(--na-text-muted);
  max-width: 520px;
  margin: 0 auto 1.75rem;
}

.home-cta-section .btn-primary {
  font-size: 1.05rem;
  padding-left: 2.6rem;
  padding-right: 2.6rem;
}

/* =====================
   Scroll Reveal Animation Classes
   ===================== */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.5s ease, transform 0.5s ease;
  will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Stagger support for grids inside sections */
.animate-on-scroll .shop-highlight-card,
.animate-on-scroll .why-choose-item,
.animate-on-scroll .home-category-card,
.animate-on-scroll .category-card {
  transition-delay: calc(80ms * var(--delay, 0));
}

/* =====================
   RESPONSIVE
   ===================== */
@media (max-width: 900px) {
  .shop-highlights-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .brand-banner-content {
    width: 100%;
    text-align: left;
  }

  .brand-banner-lead {
    max-width: 100%;
  }

  .brand-banner-pills {
    justify-content: flex-start;
  }

  .brand-banner-actions {
    justify-content: flex-start;
  }

  .brand-banner-eyebrow {
    justify-content: flex-start;
  }

  .brand-banner-stats {
    grid-template-columns: 1fr;
  }

  .home-about-grid {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .home-faq-layout {
    grid-template-columns: 1fr;
    gap: 1.75rem;
  }

  .home-map-layout {
    grid-template-columns: 1fr;
  }

  .home-map-embed {
    min-height: 320px;
  }

  .home-map-embed iframe {
    min-height: 320px;
  }

  .footer-main,
  .footer-widgets--modern {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .pre-footer-cta-grid {
    grid-template-columns: 1fr;
  }

  .home-category-icon-ring {
    width: 88px;
    height: 88px;
  }

  .home-category-card-icon {
    width: 66px;
    height: 66px;
  }

  .product-slider-slide {
    flex: 0 0 calc(50% - 0.625rem);
  }

  .home-testimonials-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .brand-banner {
    min-height: auto;
    padding-top: calc(2.5rem + var(--header-height));
    padding-bottom: 4rem;
  }

  .brand-banner-title {
    font-size: 2.15rem;
  }

  .brand-banner-stats {
    grid-template-columns: 1fr;
  }

  .brand-banner-scroll {
    display: none;
  }

  .home-about-stats-row {
    grid-template-columns: 1fr;
  }

  .home-about {
    padding: 3rem 0;
  }

  .home-about-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .home-about-actions .btn-primary,
  .home-about-actions .btn-secondary {
    justify-content: center;
    text-align: center;
  }

  .home-summary-grid {
    grid-template-columns: 1fr;
  }

  .why-choose-grid {
    grid-template-columns: 1fr;
  }

  .home-category-card--round {
    max-width: 130px;
  }

  .home-patch {
    padding: 3rem 0;
  }

  .home-patch.home-section {
    padding: 3rem 0;
  }

  .home-category-icon-ring {
    width: 82px;
    height: 82px;
  }

  .home-category-card-icon {
    width: 60px;
    height: 60px;
  }

  .home-client-slide {
    min-width: 210px;
    padding: 0.85rem 1rem;
  }

  .home-featured-products-header {
    flex-direction: column;
    align-items: stretch;
  }

  .product-slider-nav {
    justify-content: flex-end;
  }

  .product-slider-slide {
    flex: 0 0 100%;
  }

  .footer-main,
  .footer-widgets--modern {
    grid-template-columns: 1fr;
  }

  .pre-footer-cta {
    padding: 2.25rem 0 2.75rem;
  }

  .pre-footer-cta-card {
    border-radius: 14px;
  }

  .pre-footer-cta-grid {
    padding: 1.5rem 1.25rem;
  }

  .pre-footer-cta-buttons {
    flex-direction: column;
  }

  .pre-footer-cta-buttons .btn-primary,
  .pre-footer-cta-buttons .btn-secondary {
    width: 100%;
  }

  .footer-main-wrap {
    padding-top: 3.5rem;
  }

  .footer-bottom-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 0.75rem;
    padding: 0.7rem 0 0.8rem;
  }

  .footer-developed {
    order: 3;
  }

  .footer-bottom-nav {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
    order: 2;
  }

  .home-visit-us-layout {
    grid-template-columns: 1fr;
  }

  .home-visit-us-map-panel {
    border-left: none;
    border-top: 1px solid var(--na-border);
  }

  .home-visit-us-map-panel,
  .home-visit-us-map-panel iframe {
    min-height: 300px;
  }

  .home-visit-us-addresses {
    grid-template-columns: 1fr;
  }

  .home-section {
    padding: 3.5rem 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-clients-track {
    animation: none;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 1.25rem;
    gap: 1rem;
  }

  .home-clients-set {
    flex-wrap: wrap;
    justify-content: center;
    padding: 0;
  }

  .home-clients-marquee {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* ============================================
   PRODUCT ARCHIVE + FILTERS + SINGLE + MODAL
   ============================================ */

/* Archive Header */
.product-archive {
  padding: 0;
  min-height: 0;
}

.product-catalog-hero {
  margin-bottom: 2rem;
}

.catalog-breadcrumbs {
  margin-bottom: 0.85rem;
}

.catalog-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
  color: var(--na-text-muted);
}

.catalog-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.catalog-breadcrumbs li + li::before {
  content: "/";
  color: var(--na-border);
}

.catalog-breadcrumbs a {
  color: var(--na-teal);
  text-decoration: none;
}

.catalog-breadcrumbs a:hover {
  text-decoration: underline;
}

.catalog-parent-label {
  margin: 0 0 0.5rem;
  font-size: 0.9rem;
  color: var(--na-text-muted);
}

.catalog-subcategory-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.25rem;
}

.catalog-subcategory-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.45rem 0.9rem;
  border-radius: 999px;
  border: 1px solid var(--na-border);
  background: var(--na-bg);
  color: var(--na-text);
  font-size: 0.84rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.catalog-subcategory-pill:hover,
.catalog-subcategory-pill.is-active {
  border-color: var(--na-teal);
  background: var(--na-teal);
  color: var(--na-text-inverse);
}

.catalog-subcategory-count {
  font-size: 0.72rem;
  font-weight: 700;
  opacity: 0.85;
}

/* Product Category taxonomy archive */
.product-category-archive {
  padding-bottom: 3.5rem;
}

.category-archive-hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(128deg, #9a3412 0%, var(--na-brand-dark) 30%, var(--na-brand) 62%, var(--na-brand-light) 100%);
  color: var(--na-text-inverse);
  padding: clamp(1.1rem, 2.2vw, 1.55rem) 0;
  margin-bottom: 1.35rem;
}

/* Categories listing page */
.categories-page {
  padding: 0;
  min-height: 0;
}

.categories-page-hero {
  margin-bottom: 0;
}

.categories-page-hero-grid {
  align-items: center;
}

.categories-listing-section {
  padding: 2.75rem 0 4rem;
  background: var(--na-bg-alt);
}

.categories-listing-group + .categories-listing-group {
  margin-top: 2.75rem;
  padding-top: 2.75rem;
  border-top: 1px solid var(--na-border);
}

.categories-listing-group-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.35rem;
}

.categories-listing-group-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.35rem, 2.4vw, 1.75rem);
  line-height: 1.2;
  color: var(--na-text);
}

.categories-listing-group-text {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--na-text-muted);
}

.categories-listing-group-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex-shrink: 0;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--na-brand);
  text-decoration: none;
  transition: color 0.2s ease, gap 0.2s ease;
}

.categories-listing-group-link:hover {
  color: var(--na-brand-dark);
  gap: 0.55rem;
}

.categories-listing-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.categories-listing-empty {
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--na-surface);
  border: 1px solid var(--na-border);
  border-radius: 14px;
}

.categories-listing-empty p {
  margin: 0 0 1.25rem;
  color: var(--na-text-muted);
}

.category-archive-hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.category-archive-hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(72px);
}

.category-archive-hero-orb--one {
  width: 380px;
  height: 380px;
  top: -140px;
  left: -60px;
  background: rgb(255 237 213 / 0.42);
}

.category-archive-hero-orb--two {
  width: 320px;
  height: 320px;
  bottom: -100px;
  right: -40px;
  background: rgb(124 45 18 / 0.5);
}

.category-archive-hero-inner {
  position: relative;
  z-index: 1;
}

.category-archive-hero .catalog-breadcrumbs {
  margin-bottom: 0.55rem;
}

.category-archive-hero .catalog-breadcrumbs,
.category-archive-hero .catalog-breadcrumbs ol,
.category-archive-hero .catalog-breadcrumbs li,
.category-archive-hero .catalog-breadcrumbs a,
.category-archive-hero .catalog-breadcrumbs span {
  color: var(--na-text-inverse);
}

.category-archive-hero .catalog-breadcrumbs li + li::before {
  color: rgb(255 255 255 / 0.7);
}

.category-archive-hero .catalog-breadcrumbs a:hover {
  color: #ffedd5;
}

.category-archive-hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 0.85rem 1.5rem;
  align-items: start;
}

.category-archive-icon {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgb(255 255 255 / 0.14);
  border: 2px solid rgb(255 255 255 / 0.32);
  color: #ffedd5;
  margin-bottom: 0.45rem;
}

.category-archive-icon svg {
  width: 22px;
  height: 22px;
}

.category-archive-eyebrow {
  margin: 0 0 0.3rem;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffedd5;
}

.category-archive-hero .page-title {
  margin: 0 0 0.35rem;
  font-size: clamp(1.45rem, 2.6vw, 1.95rem);
  line-height: 1.15;
  color: var(--na-text-inverse);
}

.category-archive-hero .catalog-parent-label {
  color: rgb(255 255 255 / 0.82);
  margin-bottom: 0.35rem;
  font-size: 0.84rem;
}

.category-archive-description {
  margin: 0 0 0.55rem;
  max-width: 620px;
  font-size: 0.84rem;
  line-height: 1.5;
  color: rgb(255 255 255 / 0.9);
}

.category-archive-meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 0.75rem;
}

.category-archive-count-badge {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem 0.6rem;
  border-radius: 999px;
  background: rgb(255 255 255 / 0.16);
  border: 1px solid rgb(255 255 255 / 0.28);
  font-size: 0.76rem;
  font-weight: 700;
}

.category-archive-back-link {
  font-size: 0.8rem;
  font-weight: 600;
  color: #ffedd5;
  text-decoration: none;
}

.category-archive-back-link:hover {
  text-decoration: underline;
  color: var(--na-text-inverse);
}

.category-archive-hero-actions {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 148px;
}

.category-archive-hero-actions .btn-primary,
.category-archive-hero-actions .btn-secondary {
  padding: 0.5rem 0.95rem;
  font-size: 0.82rem;
  line-height: 1.2;
}

.category-archive-hero-actions .btn-secondary {
  background: rgb(255 255 255 / 0.1);
  border-color: rgb(255 255 255 / 0.35);
  color: var(--na-text-inverse);
  text-align: center;
}

.category-archive-hero-actions .btn-secondary:hover {
  background: rgb(255 255 255 / 0.18);
  color: var(--na-text-inverse);
}

.category-subnav-band {
  background: var(--na-surface);
  border-bottom: 1px solid var(--na-border);
  padding: 0.75rem 0;
  margin-bottom: 1.35rem;
}

.category-subnav-band .catalog-subcategory-nav {
  margin-top: 0;
}

.category-subnav-band .catalog-subcategory-pill {
  padding: 0.38rem 0.75rem;
  font-size: 0.8rem;
}

.category-archive-subnav {
  margin-top: 0;
}

.category-filter-current {
  margin-bottom: 1rem;
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  background: var(--na-brand-50);
  border: 1px solid rgb(232 93 4 / 0.22);
  font-size: 0.86rem;
  line-height: 1.45;
}

.category-filter-label {
  display: block;
  color: var(--na-text-muted);
  margin-bottom: 0.15rem;
}

.category-filter-current strong {
  color: var(--na-brand-dark);
}

.filter-subcategory-links {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.filter-subcategory-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.5rem 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--na-border);
  background: var(--na-bg);
  color: var(--na-text);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.filter-subcategory-link:hover {
  border-color: var(--na-brand);
  color: var(--na-brand);
}

.filter-subcategory-link.is-active {
  border-color: var(--na-brand);
  background: var(--na-brand-50);
  color: var(--na-brand-dark);
}

.filter-subcategory-link.is-active .count {
  color: var(--na-brand-dark);
  background: rgb(255 255 255 / 0.85);
}

.catalog-listing-head {
  margin-bottom: 0.85rem;
  background: transparent;
  border: none;
  border-radius: 0;
  overflow: visible;
}

.catalog-listing-head .catalog-toolbar {
  margin-bottom: 0;
  padding: 0.45rem 0;
  border: none;
  border-radius: 0;
  background: transparent;
  align-items: center;
}

.catalog-listing-head .catalog-toolbar-left {
  flex: 1;
  flex-direction: row;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
}

.catalog-listing-head .catalog-toolbar .results-count {
  display: flex;
  align-items: center;
  min-height: 34px;
}

.catalog-listing-head .catalog-toolbar-actions {
  align-items: center;
}

.catalog-listing-head .catalog-active-filters {
  align-items: center;
}

.catalog-subcategory-panel {
  padding: 0 0 0.5rem;
  border-bottom: 1px solid var(--na-border);
  background: transparent;
}

.catalog-subcategory-panel:only-child {
  border-bottom: none;
  padding-bottom: 0;
}

.catalog-subcategory-panel-nav {
  margin-top: 0;
  gap: 0.35rem;
  align-items: center;
}

.catalog-subcategory-panel-label {
  flex-shrink: 0;
  margin-right: 0.15rem;
  padding-right: 0.55rem;
  border-right: 1px solid var(--na-border);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--na-text-muted);
  line-height: 1.2;
}

.catalog-subcategory-panel-nav .catalog-subcategory-pill {
  flex-shrink: 0;
  padding: 0.3rem 0.62rem;
  font-size: 0.76rem;
  background: var(--na-surface);
  border-color: var(--na-border);
  color: var(--na-text);
  box-shadow: none;
}

.catalog-subcategory-panel-nav .catalog-subcategory-pill:hover {
  border-color: var(--na-brand);
  background: var(--na-surface);
  color: var(--na-brand-dark);
}

.catalog-subcategory-panel-nav .catalog-subcategory-pill.is-active {
  border-color: var(--na-brand);
  background: var(--na-brand);
  color: var(--na-text-inverse);
  box-shadow: none;
}

.catalog-subcategory-panel-nav .catalog-subcategory-pill.is-active .catalog-subcategory-count {
  color: var(--na-text-inverse);
  opacity: 0.9;
}

.catalog-subcategory-panel-nav .catalog-subcategory-count {
  min-width: 0;
  padding: 0;
  border-radius: 0;
  background: transparent;
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  opacity: 0.72;
}

.catalog-subcategory-panel-nav .catalog-subcategory-pill.is-active .catalog-subcategory-count {
  background: transparent;
  opacity: 0.88;
}

.filter-subcategory-link .count {
  font-size: 0.72rem;
  color: var(--na-text-muted);
  background: var(--na-surface);
  padding: 1px 6px;
  border-radius: 10px;
}

.filter-category-group.is-current-branch .filter-checkbox--parent .label-text {
  color: var(--na-brand-dark);
  font-weight: 700;
}

.filter-checkbox input:disabled + .checkmark {
  opacity: 0.55;
  background: var(--na-bg-alt);
}

.filter-checkbox input:disabled ~ .label-text {
  opacity: 0.75;
}

.catalog-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding: 0.55rem 0.85rem;
  background: var(--na-surface);
  border: 1px solid var(--na-border);
  border-radius: 10px;
}

.catalog-toolbar-left {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  min-width: 0;
}

.catalog-toolbar .results-count {
  margin: 0;
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.25;
  color: var(--na-text);
}

.catalog-toolbar-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.45rem;
  flex-shrink: 0;
}

.catalog-toolbar-enquire {
  padding: 0.45rem 0.9rem;
  font-size: 0.82rem;
  line-height: 1.2;
  border-radius: 8px;
  white-space: nowrap;
}

.catalog-filter-toggle {
  display: none;
  padding: 0.45rem 0.85rem;
  font-size: 0.82rem;
  line-height: 1.2;
  border-radius: 8px;
}

.catalog-active-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
}

.catalog-filter-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.3rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--na-border);
  background: var(--na-bg);
  color: var(--na-text);
  font-size: 0.78rem;
  font-weight: 600;
  cursor: pointer;
  transition: border-color 0.2s ease, background-color 0.2s ease;
}

.catalog-filter-chip:hover {
  border-color: var(--na-brand);
  background: var(--na-brand-50);
}

.catalog-filter-chip span:last-child {
  font-size: 0.95rem;
  line-height: 1;
  opacity: 0.7;
}

.catalog-empty-state {
  grid-column: 1 / -1;
  text-align: center;
  padding: 3rem 1.5rem;
  background: var(--na-surface);
  border: 1px dashed var(--na-border);
  border-radius: 14px;
}

.catalog-empty-state h3 {
  margin: 0 0 0.5rem;
}

.catalog-empty-state p {
  margin: 0 0 1.25rem;
  color: var(--na-text-muted);
}

.product-category-archive .products-grid {
  margin-top: 0;
}

.product-category-archive .part-grid {
  gap: 1.5rem;
}

.product-category-archive .part-card {
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.product-category-archive .part-card .part-content {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.product-category-archive .part-card .product-card-actions {
  margin-top: 0.4rem;
  padding-top: 0;
}

.product-category-archive .part-card .part-image {
  height: 200px;
}

.catalog-filters-mobile-head {
  display: none;
}

.catalog-filter-backdrop {
  display: none;
}

.products-main .pagination,
.products-main .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 2rem;
}

.products-main .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--na-border);
  background: var(--na-surface);
  color: var(--na-text);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
}

.products-main .page-numbers:hover,
.products-main .page-numbers.current {
  border-color: var(--na-brand);
  background: var(--na-brand);
  color: var(--na-text-inverse);
}

/* Catalog Layout (filters + grid) */
.product-catalog-layout {
  display: grid;
  grid-template-columns: minmax(280px, 320px) 1fr;
  gap: 2rem;
  align-items: start;
}

.product-filters-sidebar {
  position: sticky;
  top: calc(var(--header-height) + 1.25rem);
  background: var(--na-surface);
  border: 1px solid var(--na-border);
  border-radius: 16px;
  padding: 1.15rem 1.15rem 1rem;
  font-size: 0.9rem;
  box-shadow: 0 18px 40px -28px rgb(15 23 42 / 0.18);
}

.product-filters {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid var(--na-border);
}

.filter-header h3 {
  margin: 0;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--na-text);
  letter-spacing: -0.01em;
}

.clear-filters {
  background: var(--na-bg-alt);
  border: 1px solid var(--na-border);
  color: var(--na-brand);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.clear-filters:hover {
  text-decoration: none;
  background: var(--na-brand-50);
  border-color: rgb(232 93 4 / 0.35);
  color: var(--na-brand-dark);
}

.filter-group {
  margin-bottom: 1.1rem;
  padding-bottom: 0;
  border-bottom: none;
}

.filter-group:last-of-type {
  margin-bottom: 0;
}

.filter-group h4 {
  display: flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.65rem;
  color: var(--na-text-muted);
  font-weight: 700;
}

.filter-group h4::before {
  content: "";
  width: 3px;
  height: 12px;
  border-radius: 999px;
  background: var(--na-brand);
  flex-shrink: 0;
}

.filter-group-hint {
  margin: 0 0 0.65rem;
  font-size: 0.76rem;
  line-height: 1.45;
  color: var(--na-text-muted);
}

/* Vehicle type + model (flat row above product list — no card/background level) */
.catalog-vehicle-bar {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem 1rem;
  margin: 0 0 1rem;
  padding: 0;
  border: none;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.catalog-vehicle-field {
  display: flex;
  flex-direction: column;
  gap: 0;
  min-width: 0;
}

.filter-select,
.catalog-vehicle-select {
  display: block;
  width: 100%;
  margin: 0;
  padding: 0.7rem 2.25rem 0.7rem 0.9rem;
  border: 1px solid var(--na-border);
  border-radius: 12px;
  background-color: var(--na-surface);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%2364748b' stroke-width='2.5'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.85rem center;
  background-size: 12px;
  color: var(--na-text);
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.3;
  appearance: none;
  -webkit-appearance: none;
  cursor: pointer;
  /* transform breaks native <select> menus in Safari/WebKit */
  transform: none !important;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.filter-select:hover,
.catalog-vehicle-select:hover {
  border-color: rgb(232 93 4 / 0.4);
}

.filter-select:focus,
.catalog-vehicle-select:focus {
  outline: none;
  border-color: var(--na-brand);
  box-shadow: 0 0 0 3px rgb(232 93 4 / 0.15);
  transform: none !important;
}

@media (max-width: 600px) {
  .catalog-vehicle-bar {
    grid-template-columns: 1fr;
  }
}

.filter-category-tree {
  display: flex;
  flex-direction: column;
  gap: 0;
  max-height: 380px;
  overflow-y: auto;
  padding: 0.3rem;
  border: 1px solid var(--na-border);
  border-radius: 12px;
  background: var(--na-bg-alt);
  scrollbar-width: thin;
  scrollbar-color: var(--na-border-light) transparent;
}

.filter-category-tree::-webkit-scrollbar {
  width: 6px;
}

.filter-category-tree::-webkit-scrollbar-thumb {
  background: var(--na-border-light);
  border-radius: 999px;
}

.filter-category-group {
  border-bottom: 1px solid var(--na-border);
  background: transparent;
  overflow: visible;
}

.filter-category-group:last-child {
  border-bottom: none;
}

.filter-category-group.is-open,
.filter-category-group:has(.filter-checkbox input:checked) {
  background: rgb(255 255 255 / 0.45);
}

.filter-category-group-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.25rem;
  padding: 0;
}

.filter-category-group-head .filter-checkbox--parent {
  flex: 1;
  min-width: 0;
  padding: 0.48rem 0.45rem;
  font-weight: 600;
  border-radius: 8px;
  align-items: center;
}

.filter-category-group-head .filter-checkbox--parent .label-text {
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.filter-category-toggle {
  width: 28px;
  height: 28px;
  align-self: center;
  margin: 0 0.3rem 0 0;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--na-text-muted);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.filter-category-toggle:hover {
  color: var(--na-brand);
  background: var(--na-brand-50);
}

.filter-category-toggle span[aria-hidden="true"]::before {
  content: "";
  display: block;
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  margin-top: -2px;
  transition: transform 0.2s ease;
}

.filter-category-group:not(.is-open) .filter-category-toggle span[aria-hidden="true"]::before {
  transform: rotate(-45deg);
  margin-top: 1px;
}

.filter-category-children {
  display: none;
  flex-direction: column;
  gap: 0;
  padding: 0 0.35rem 0.35rem 1.55rem;
  margin: 0;
  border: none;
  border-radius: 0;
  background: transparent;
}

.filter-category-group.is-open .filter-category-children {
  display: flex;
}

.filter-checkbox--child {
  padding: 0.4rem 0.45rem;
  font-size: 0.84rem;
  border-radius: 8px;
  align-items: flex-start;
}

.filter-checkbox--child .label-text {
  overflow-wrap: anywhere;
  word-break: break-word;
  hyphens: auto;
}

.filter-checkbox--child .label-text::before {
  content: none;
}

.filter-empty {
  margin: 0;
  padding: 0.95rem;
  font-size: 0.82rem;
  line-height: 1.5;
  color: var(--na-text-muted);
  text-align: center;
}

.filter-options {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  padding: 0.4rem;
  border: 1px solid var(--na-border);
  border-radius: 12px;
  background: var(--na-bg-alt);
}

.products-grid.is-loading {
  opacity: 0.45;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

.filter-checkbox {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  cursor: pointer;
  padding: 0.5rem 0.55rem;
  border-radius: 8px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.filter-checkbox:hover {
  background: rgb(255 255 255 / 0.82);
}

.filter-checkbox:has(input:checked) {
  background: var(--na-brand-50);
}

.filter-checkbox:hover .label-text {
  color: var(--na-brand-dark);
}

.filter-checkbox input {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.filter-checkbox .checkmark {
  width: 18px;
  height: 18px;
  margin-top: 0.1rem;
  border: 2px solid var(--na-border-light);
  border-radius: 5px;
  display: inline-block;
  position: relative;
  flex-shrink: 0;
  background: var(--na-surface);
  transition: border-color 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
}

.filter-checkbox:hover .checkmark {
  border-color: rgb(232 93 4 / 0.45);
}

.filter-checkbox input:checked + .checkmark {
  background: var(--na-brand);
  border-color: var(--na-brand);
  box-shadow: 0 0 0 3px rgb(232 93 4 / 0.15);
}

.filter-checkbox input:checked + .checkmark::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 9px;
  border: solid var(--na-text-inverse);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.filter-checkbox input:checked ~ .label-text {
  color: var(--na-text);
  font-weight: 600;
}

.filter-checkbox .label-text {
  flex: 1;
  min-width: 0;
  line-height: 1.35;
  color: var(--na-text);
}

.filter-checkbox .count {
  font-size: 0.68rem;
  font-weight: 700;
  color: var(--na-text-muted);
  background: var(--na-bg);
  padding: 0.18rem 0.5rem;
  border-radius: 999px;
  border: 1px solid var(--na-border);
  min-width: 1.65rem;
  text-align: center;
  flex-shrink: 0;
  margin-top: 0.05rem;
}

.filter-checkbox input:checked ~ .count {
  color: var(--na-brand-dark);
  background: rgb(255 255 255 / 0.9);
  border-color: rgb(232 93 4 / 0.28);
}

.filter-actions {
  margin-top: 1rem;
  padding-top: 0;
  border-top: none;
}

.filter-actions .results-count {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  margin: 0;
  padding: 0.75rem 0.85rem;
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--na-text);
  text-align: center;
  background: linear-gradient(180deg, var(--na-bg-alt) 0%, var(--na-surface) 100%);
  border: 1px solid var(--na-border);
  border-radius: 10px;
}

.filter-actions .results-count::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--na-brand);
  box-shadow: 0 0 0 3px rgb(232 93 4 / 0.18);
  flex-shrink: 0;
}

.results-count {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--na-text);
  margin: 0;
}

/* Enhanced Product Cards */
.part-card.product-card {
  position: relative;
  overflow: hidden;
}

.part-card.product-card .part-image {
  position: relative;
  overflow: hidden;
}

.part-card.product-card .product-image-link {
  position: absolute;
  inset: 0;
  display: block;
  overflow: hidden;
}

.part-card.product-card .part-image img {
  object-fit: cover;
  object-position: center;
  transition: transform 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.part-card.product-card:hover .part-image img {
  transform: scale(1.08);
}

/* Hover overlay with Enquire button (featured slider only) */
.part-card.product-card .product-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.65), transparent 55%);
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding: 1rem;
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.part-card.product-card:hover .product-overlay {
  opacity: 1;
  pointer-events: all;
}

.products-grid .part-card.product-card .product-overlay {
  display: none;
}

.part-card.product-card .overlay-btn {
  background: var(--na-brand);
  color: var(--na-text-inverse);
  border: none;
  padding: 0.5rem 1rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s ease;
}

.part-card.product-card .overlay-btn:hover {
  background: var(--na-brand-dark);
}

.part-card.product-card .part-content {
  padding: 0.9rem 1rem 0.6rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.part-card.product-card .part-meta {
  margin-bottom: 0.4rem;
}

.part-card.product-card .part-price {
  margin-bottom: 0.35rem;
}

.part-card.product-card .product-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.4rem;
  margin-top: 0.4rem;
}

.part-card.product-card .view-details-btn,
.part-card.product-card .btn-enquire {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0.42rem 0.55rem;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  border-radius: 8px;
  white-space: nowrap;
}

.part-card.product-card .view-details-btn {
  background: var(--na-bg);
  border: 1px solid var(--na-border);
  color: var(--na-text);
}

.part-card.product-card .view-details-btn:hover {
  border-color: var(--na-brand);
  color: var(--na-brand);
  background: var(--na-brand-50);
}

.part-card.product-card .btn-enquire {
  background: var(--na-brand);
  border: 1px solid var(--na-brand);
  color: var(--na-text-inverse);
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease;
}

.part-card.product-card .btn-enquire:hover {
  background: var(--na-brand-dark);
  border-color: var(--na-brand-dark);
  color: var(--na-text-inverse);
}

.part-card.product-card .product-locations-meta {
  margin-top: auto;
  padding-top: 0.4rem;
  font-size: 0.7rem;
  color: var(--na-text-muted);
}

/* Loading state for AJAX grid */
.products-grid.is-loading {
  opacity: 0.5;
  pointer-events: none;
  transition: opacity 0.2s ease;
}

/* Single Product Page */
.product-breadcrumbs {
  margin-bottom: 1.25rem;
}

.product-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.82rem;
  color: var(--na-text-muted);
}

.product-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  max-width: 100%;
}

.product-breadcrumbs li + li::before {
  content: "/";
  color: var(--na-border);
}

.product-breadcrumbs a {
  color: var(--na-teal);
  text-decoration: none;
}

.product-breadcrumbs a:hover {
  text-decoration: underline;
}

.product-breadcrumbs span {
  color: var(--na-text);
  font-weight: 600;
  overflow-wrap: anywhere;
  word-break: break-word;
}

.product-detail-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 3rem;
  margin-bottom: 3rem;
}

.product-image-gallery {
  background: var(--na-surface);
  border: 1px solid var(--na-border);
  border-radius: 14px;
  padding: 1rem;
}

.product-gallery-slider {
  position: relative;
}

.product-gallery-viewport {
  overflow: hidden;
  border-radius: 10px;
  background: var(--na-bg);
  aspect-ratio: 4 / 3;
}

.product-gallery-track {
  display: flex;
  height: 100%;
  will-change: transform;
}

.product-gallery-slide {
  flex: 0 0 100%;
  margin: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-gallery-slide img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  object-position: center;
}

.product-gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  padding: 0;
  margin: 0;
  border: none;
  border-radius: 50%;
  /* Dark solid control — high contrast over light or busy product photos */
  background: var(--na-steel-dark);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow:
    0 2px 8px rgb(15 23 42 / 0.28),
    0 10px 28px rgb(15 23 42 / 0.22),
    0 0 0 2px rgb(255 255 255 / 0.55);
  cursor: pointer;
  line-height: 1;
  transition:
    transform 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease,
    opacity 0.2s ease;
  z-index: 2;
}

.product-gallery-nav svg {
  width: 22px;
  height: 22px;
  display: block;
  flex-shrink: 0;
  pointer-events: none;
}

.product-gallery-nav:hover:not(:disabled) {
  background: var(--na-brand);
  color: #fff;
  box-shadow:
    0 4px 12px rgb(232 93 4 / 0.35),
    0 14px 32px rgb(232 93 4 / 0.3),
    0 0 0 2px rgb(255 255 255 / 0.7);
  transform: translateY(-50%) scale(1.06);
}

.product-gallery-nav:active:not(:disabled) {
  transform: translateY(-50%) scale(0.97);
}

.product-gallery-nav:focus {
  outline: none;
}

.product-gallery-nav:focus-visible {
  outline: 2px solid var(--na-brand);
  outline-offset: 3px;
  box-shadow:
    0 2px 8px rgb(15 23 42 / 0.28),
    0 0 0 2px #fff;
}

.product-gallery-nav:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  box-shadow:
    0 2px 6px rgb(15 23 42 / 0.18),
    0 0 0 2px rgb(255 255 255 / 0.35);
}

.product-gallery-nav--prev {
  left: 1rem;
}

.product-gallery-nav--next {
  right: 1rem;
}

.product-gallery-counter {
  position: absolute;
  right: 0.85rem;
  bottom: 0.85rem;
  padding: 0.32rem 0.7rem;
  border-radius: 999px;
  background: rgb(15 23 42 / 0.72);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  line-height: 1.2;
  box-shadow: 0 4px 12px rgb(15 23 42 / 0.18);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 2;
}

@media (max-width: 640px) {
  .product-gallery-nav {
    width: 38px;
    height: 38px;
  }

  .product-gallery-nav svg {
    width: 18px;
    height: 18px;
  }

  .product-gallery-nav--prev {
    left: 0.65rem;
  }

  .product-gallery-nav--next {
    right: 0.65rem;
  }
}

.product-gallery-thumbs {
  display: flex;
  gap: 0.55rem;
  overflow-x: auto;
  margin-top: 0.85rem;
  padding-bottom: 0.15rem;
  scrollbar-width: thin;
}

.product-gallery-thumb {
  flex: 0 0 auto;
  width: 72px;
  height: 72px;
  padding: 0;
  border-radius: 8px;
  border: 2px solid transparent;
  background: var(--na-bg);
  overflow: hidden;
  cursor: pointer;
  opacity: 0.82;
  transition: border-color 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}

.product-gallery-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.product-gallery-thumb:hover,
.product-gallery-thumb.is-active {
  opacity: 1;
  border-color: var(--na-brand);
  transform: translateY(-1px);
}

.product-meta-panel {
  display: flex;
  flex-direction: column;
}

.product-meta-panel .product-brand {
  color: var(--na-teal);
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.product-meta-panel .entry-title {
  font-size: 2rem;
  margin: 0.35rem 0 1rem;
}

.product-meta-row {
  display: flex;
  gap: 2rem;
  margin-bottom: 1rem;
}

.product-meta-row .meta-item .label {
  display: block;
  font-size: 0.75rem;
  color: var(--na-text-muted);
}

.product-meta-row .meta-item .value {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 1.05rem;
}

.product-primary-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.35rem 0 1rem;
}

.product-enquire-btn,
.product-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-height: 46px;
  padding: 0.62rem 1rem;
  border-radius: 10px;
  font-size: 0.9rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.product-enquire-btn {
  background: var(--na-brand);
  border: 1px solid var(--na-brand);
  color: var(--na-text-inverse);
  cursor: pointer;
  box-shadow: 0 8px 18px rgb(232 93 4 / 0.22);
}

.product-enquire-btn:hover {
  background: var(--na-brand-dark);
  border-color: var(--na-brand-dark);
  color: var(--na-text-inverse);
  box-shadow: 0 10px 22px rgb(232 93 4 / 0.28);
}

.product-enquire-btn-icon {
  flex-shrink: 0;
}

.product-quote-btn {
  background: var(--na-surface);
  border: 1px solid var(--na-border);
  color: var(--na-text);
}

.product-quote-btn:hover {
  border-color: var(--na-brand);
  color: var(--na-brand);
  background: var(--na-brand-50);
}

.availability,
.product-taxonomies {
  font-size: 0.875rem;
  color: var(--na-text-muted);
  margin-top: 0.35rem;
}

/* Product single - suggestions */
.product-single-suggestions {
  margin-top: 3.5rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--na-border);
  display: flex;
  flex-direction: column;
  gap: 2.75rem;
}

.product-suggestions-block {
  display: flex;
  flex-direction: column;
  gap: 1.35rem;
}

.product-suggestions-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.product-suggestions-eyebrow {
  margin: 0 0 0.35rem;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--na-brand);
}

.product-suggestions-header h2 {
  margin: 0;
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
}

.product-suggestions-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--na-teal);
  text-decoration: none;
}

.product-suggestions-link:hover {
  text-decoration: underline;
}

.product-suggestions-grid.part-grid {
  margin: 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.product-category-suggestions {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 1rem;
}

.product-category-suggestion-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.5rem;
  padding: 1.15rem 0.85rem;
  border: 1px solid var(--na-border);
  border-radius: 12px;
  background: var(--na-surface);
  text-decoration: none;
  color: inherit;
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.product-category-suggestion-card:hover {
  transform: translateY(-3px);
  border-color: rgb(232 93 4 / 0.35);
  box-shadow: 0 10px 24px -14px rgb(15 23 42 / 0.25);
}

.product-category-suggestion-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--na-brand-50);
  color: var(--na-brand);
}

.product-category-suggestion-icon svg {
  width: 24px;
  height: 24px;
}

.product-category-suggestion-name {
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.3;
  color: var(--na-text);
}

.product-category-suggestion-count {
  font-size: 0.74rem;
  color: var(--na-text-muted);
}

.product-taxonomies {
  margin-top: 0.65rem;
}

/* Shop Location taxonomy archive */
.shop-location-archive {
  padding-bottom: 3rem;
}

.shop-location-hero {
  background: linear-gradient(135deg, #0f172a 0%, var(--na-steel-dark) 48%, #1e3a5f 100%);
  color: var(--na-text-inverse);
  padding: clamp(2rem, 4vw, 3rem) 0;
  margin-bottom: 0;
}

.shop-location-hero .catalog-breadcrumbs {
  margin-bottom: 1.25rem;
}

.shop-location-hero .catalog-breadcrumbs,
.shop-location-hero .catalog-breadcrumbs a {
  color: rgb(255 255 255 / 0.72);
}

.shop-location-hero .catalog-breadcrumbs a:hover {
  color: var(--na-text-inverse);
}

.shop-location-hero-grid {
  display: grid;
  grid-template-columns: minmax(300px, 1fr) minmax(320px, 1.05fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}

.shop-location-hero-content {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.shop-location-hero-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgb(255 255 255 / 0.1);
  color: var(--na-brand-light);
  margin-bottom: 0.25rem;
}

.shop-location-hero-icon svg {
  width: 26px;
  height: 26px;
}

.shop-location-eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--na-brand-light);
}

.shop-location-hero .page-title {
  margin: 0;
  font-size: clamp(1.75rem, 3vw, 2.35rem);
  line-height: 1.15;
  color: var(--na-text-inverse);
}

.shop-location-tagline {
  margin: 0;
  font-size: 1rem;
  line-height: 1.55;
  color: rgb(255 255 255 / 0.86);
}

.shop-location-address {
  margin: 0.35rem 0 0;
  font-style: normal;
  line-height: 1.6;
  color: rgb(255 255 255 / 0.92);
}

.shop-location-hours {
  margin: 0.25rem 0 0;
  font-size: 0.92rem;
  color: rgb(255 255 255 / 0.8);
}

.shop-location-hours strong {
  color: var(--na-text-inverse);
}

.shop-location-highlights {
  margin: 0.5rem 0 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.shop-location-highlights li {
  position: relative;
  padding-left: 1.15rem;
  font-size: 0.9rem;
  color: rgb(255 255 255 / 0.88);
}

.shop-location-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--na-brand);
}

.shop-location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.shop-location-actions .btn-secondary {
  background: rgb(255 255 255 / 0.08);
  border-color: rgb(255 255 255 / 0.28);
  color: var(--na-text-inverse);
}

.shop-location-actions .btn-secondary:hover {
  background: rgb(255 255 255 / 0.14);
  border-color: rgb(255 255 255 / 0.45);
  color: var(--na-text-inverse);
}

.shop-location-map {
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgb(255 255 255 / 0.15);
  min-height: 320px;
  background: rgb(0 0 0 / 0.2);
}

.shop-location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 320px;
  border: 0;
}

.shop-location-switcher {
  background: var(--na-surface);
  border-bottom: 1px solid var(--na-border);
  padding: 1.25rem 0;
}

.shop-location-switcher-label {
  margin: 0 0 0.75rem;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--na-text-muted);
}

.shop-location-catalog {
  margin-top: 2rem;
}

.shop-location-filter-current {
  margin-bottom: 1rem;
  padding: 0.75rem 0.85rem;
  border-radius: 8px;
  background: var(--na-teal-50);
  border: 1px solid rgb(20 184 166 / 0.25);
  font-size: 0.86rem;
  line-height: 1.45;
}

.shop-location-filter-label {
  display: block;
  color: var(--na-text-muted);
  margin-bottom: 0.15rem;
}

.shop-location-filter-current strong {
  color: var(--na-teal-dark, var(--na-teal));
}

.shop-location-products-header {
  margin-bottom: 1.5rem;
}

.shop-location-products-header h2 {
  margin: 0 0 0.35rem;
  font-size: 1.45rem;
}

.shop-location-products-header p {
  margin: 0;
  color: var(--na-text-muted);
  font-size: 0.92rem;
}

.shop-location-footer-cta {
  margin-top: 2.5rem;
  padding: 1.25rem 1.5rem;
  border-radius: 12px;
  background: var(--na-surface);
  border: 1px solid var(--na-border);
  text-align: center;
  font-size: 0.92rem;
  color: var(--na-text-muted);
}

.shop-location-footer-cta a {
  color: var(--na-teal);
  font-weight: 600;
  text-decoration: none;
}

.shop-location-footer-cta a:hover {
  text-decoration: underline;
}

/* Responsive for product pages */
@media (max-width: 980px) {
  .shop-location-hero-grid {
    grid-template-columns: 1fr;
  }

  .shop-location-map {
    min-height: 260px;
  }

  .shop-location-map iframe {
    min-height: 260px;
  }

  .category-archive-hero-grid {
    grid-template-columns: 1fr;
  }

  .category-archive-hero-actions {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .product-catalog-layout .catalog-filter-toggle {
    display: inline-flex;
  }

  .product-catalog-layout {
    grid-template-columns: 1fr;
  }

  .product-catalog-layout .product-filters-sidebar {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    z-index: 10001;
    width: min(320px, 88vw);
    margin: 0;
    border-radius: 0;
    border: none;
    border-right: 1px solid var(--na-border);
    transform: translateX(-105%);
    transition: transform 0.28s ease;
    overflow-y: auto;
    box-shadow: 12px 0 40px rgb(15 23 42 / 0.18);
    padding: 1.15rem;
  }

  .product-catalog-layout .product-filters-sidebar.is-open {
    transform: translateX(0);
  }

  .product-catalog-layout .catalog-filters-mobile-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    margin-bottom: 1rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid var(--na-border);
  }

  .product-catalog-layout .catalog-filters-mobile-head h3 {
    margin: 0;
    font-size: 1rem;
  }

  .product-catalog-layout .catalog-filters-close {
    width: 44px;
    height: 44px;
    border: 1px solid var(--na-border);
    border-radius: 8px;
    background: var(--na-bg);
    color: var(--na-text-muted);
    font-size: 1.35rem;
    line-height: 1;
    cursor: pointer;
  }

  .product-catalog-layout .catalog-filter-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgb(15 23 42 / 0.45);
  }

  .product-catalog-layout .filter-options {
    max-height: none;
  }

  body.catalog-filters-open {
    overflow: hidden;
  }

  .filter-category-tree {
    max-height: none;
  }

  .filter-category-toggle {
    width: 44px;
    height: 44px;
  }

  .catalog-subcategory-nav {
    gap: 0.45rem;
  }

  .product-detail-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .product-image-gallery {
    order: 1;
  }

  .product-meta-panel {
    order: 2;
  }

  .product-suggestions-grid.part-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-category-suggestions,
  .categories-listing-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .categories-listing-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .categories-listing-group-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .catalog-subcategory-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
    scrollbar-width: thin;
  }

  .contact-map-tabs {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.35rem;
    scrollbar-width: thin;
  }

  .search-results-pages-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Extra polish: Mobile filter experience */
@media (max-width: 600px) {
  .product-suggestions-grid.part-grid,
  .product-category-suggestions,
  .categories-listing-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-catalog-layout .product-filters-sidebar {
    padding: 1rem;
  }

  .catalog-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.55rem;
    padding: 0.55rem 0.75rem;
  }

  .catalog-listing-head .catalog-toolbar {
    flex-direction: column;
    align-items: stretch;
    gap: 0.5rem;
    padding: 0.35rem 0;
  }

  .catalog-listing-head .catalog-toolbar-left {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
  }

  .catalog-listing-head .catalog-toolbar .results-count {
    min-height: 0;
  }

  .catalog-listing-head .catalog-toolbar-actions {
    width: 100%;
  }

  .catalog-subcategory-panel {
    padding-bottom: 0.45rem;
  }

  .catalog-subcategory-panel-nav {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 0.2rem;
    scrollbar-width: thin;
  }

  .catalog-subcategory-panel-label {
    width: 100%;
    margin-right: 0;
    padding-right: 0;
    border-right: none;
    margin-bottom: 0.15rem;
  }

  .catalog-toolbar-actions {
    width: 100%;
  }

  .catalog-toolbar-actions .btn-secondary,
  .catalog-toolbar-actions .btn-primary {
    flex: 1;
    justify-content: center;
    text-align: center;
  }

  .filter-category-toggle {
    width: 44px;
    height: 44px;
  }

  .nandi-product-single .table-wrapper {
    margin: 0 -0.25rem;
    padding: 0 0.25rem;
  }

  .nandi-product-single .compat-table,
  .nandi-product-single .specs-table {
    min-width: 520px;
  }

  .product-primary-actions {
    grid-template-columns: 1fr;
  }

  .product-meta-row {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .product-meta-panel .entry-title {
    font-size: 1.65rem;
  }

  .product-suggestions-grid.part-grid {
    grid-template-columns: 1fr;
  }
}

/* Inquiry Modal */
.nandi-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}

.nandi-modal.is-visible {
  display: flex;
}

.nandi-modal .modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.75);
}

.nandi-modal .modal-content {
  position: relative;
  background: var(--na-surface);
  border: 1px solid var(--na-border);
  border-radius: 14px;
  width: 100%;
  max-width: 520px;
  margin: 1rem;
  padding: 2rem;
  z-index: 1;
  box-shadow: 0 25px 50px -12px rgb(0 0 0 / 0.4);
}

.nandi-modal .modal-close {
  position: absolute;
  top: 14px;
  right: 18px;
  background: none;
  border: none;
  font-size: 1.8rem;
  line-height: 1;
  color: var(--na-text-muted);
  cursor: pointer;
}

.nandi-modal .modal-header {
  margin-bottom: 1.25rem;
}

.nandi-modal .modal-header h2 {
  margin: 0 0 0.35rem;
  font-size: 1.45rem;
}

.nandi-modal .modal-subtitle {
  color: var(--na-text-muted);
  font-size: 0.9rem;
  margin: 0;
}

.inquiry-form .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.inquiry-form .form-group {
  margin-bottom: 1rem;
}

.inquiry-form label {
  display: block;
  font-size: 0.82rem;
  margin-bottom: 0.35rem;
  color: var(--na-text-muted);
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  background: var(--na-bg);
  border: 1px solid var(--na-border);
  color: var(--na-text);
  padding: 0.65rem 0.85rem;
  border-radius: 6px;
  font-size: 0.95rem;
}

.inquiry-form .form-actions {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.25rem;
}

.inquiry-form .form-feedback {
  margin-top: 1rem;
  font-size: 0.9rem;
}

.inquiry-form .success {
  color: var(--na-success);
  background: rgba(34, 197, 94, 0.1);
  padding: 0.75rem;
  border-radius: 6px;
}

.inquiry-form .error {
  color: var(--na-red);
  background: rgba(239, 68, 68, 0.1);
  padding: 0.75rem;
  border-radius: 6px;
}

.inquiry-form .required {
  color: var(--na-teal);
}

.inquiry-form .form-group.error input,
.inquiry-form .form-group.error textarea,
.contact-form .form-group.error input,
.contact-form .form-group.error textarea {
  border-color: var(--na-red);
  box-shadow: 0 0 0 3px rgb(239 68 68 / 0.12);
}

.inquiry-whatsapp-alt {
  margin: 1rem 0 0;
  padding-top: 1rem;
  border-top: 1px solid var(--na-border);
  font-size: 0.88rem;
  color: var(--na-text-muted);
  text-align: center;
}

.inquiry-whatsapp-alt a {
  color: #128c7e;
  font-weight: 600;
  text-decoration: none;
}

.inquiry-whatsapp-alt a:hover {
  text-decoration: underline;
}

/* Loading / misc */
.btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Gallery on single */
.main-product-image {
  transition: opacity 0.2s ease;
}

/* ============================================
   CONTACT PAGE + FLOATING BUTTONS + SOFT ANIMATIONS
   ============================================ */

/* Contact Hero */
.contact-page {
  padding: 0;
}

.contact-hero {
  padding: 3.5rem 0 2rem;
  text-align: center;
  background: linear-gradient(165deg, rgb(232 93 4 / 0.08) 0%, transparent 55%);
}

.contact-hero-eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--na-teal);
}

.contact-hero .page-title {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.75rem;
}

.contact-hero .lead {
  max-width: 640px;
  margin: 0 auto;
  color: var(--na-text-muted);
  font-size: 1.05rem;
  line-height: 1.65;
}

/* Quick contact bar */
.contact-quick-bar {
  padding: 0 0 2rem;
}

.contact-quick-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1.25rem 2rem;
  padding: 1.25rem 1.5rem;
  background: var(--na-surface);
  border: 1px solid var(--na-border);
  border-radius: 14px;
  box-shadow: 0 8px 24px rgb(0 0 0 / 0.05);
}

.contact-quick-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  text-align: center;
}

.contact-quick-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--na-text-muted);
}

.contact-quick-value {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--na-text);
  text-decoration: none;
}

.contact-quick-value:hover {
  color: var(--na-teal);
}

.contact-quick-phone {
  font-size: 1.2rem;
}

.contact-quick-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-quick-whatsapp {
  background: rgb(22 101 52 / 0.06);
  color: #166534;
  border: 1px solid rgb(22 101 52 / 0.22);
  box-shadow: none;
}

.contact-quick-whatsapp:hover {
  background: rgb(22 101 52 / 0.1);
  border-color: rgb(22 101 52 / 0.38);
  color: #14532d;
  transform: none;
}

.contact-quick-divider {
  width: 1px;
  height: 42px;
  background: var(--na-border);
}

/* Contact Layout */
.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 3rem;
  padding: 2.5rem 0 4rem;
}

.contact-form-wrapper h2,
.contact-info h2 {
  font-size: 1.55rem;
  margin-bottom: 0.75rem;
}

.contact-form-intro,
.contact-info-lead {
  margin: 0 0 1.25rem;
  color: var(--na-text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Native Contact Form (reuses .inquiry-form styles + enhancements) */
.contact-form .form-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1rem;
}

.contact-form .form-group {
  margin-bottom: 1.1rem;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 0.4rem;
  color: var(--na-text-muted);
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  background: var(--na-bg);
  border: 1px solid var(--na-border);
  color: var(--na-text);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--na-teal);
  box-shadow: 0 0 0 3px var(--na-teal-50);
  outline: none;
}

.contact-form .form-actions {
  margin-top: 1rem;
}

.contact-form .btn-primary {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.contact-form .form-note {
  font-size: 0.85rem;
  color: var(--na-text-muted);
  margin-top: 1rem;
}

.contact-form .form-note a {
  color: var(--na-teal);
  text-decoration: underline;
}

/* CF7 Wrapper (for when using Contact Form 7) */
.cf7-wrapper {
  margin-top: 1rem;
}

.cf7-wrapper .wpcf7 form {
  /* Let CF7 handle most markup, but apply theme styling */
}

.cf7-wrapper .wpcf7 input[type="text"],
.cf7-wrapper .wpcf7 input[type="email"],
.cf7-wrapper .wpcf7 input[type="tel"],
.cf7-wrapper .wpcf7 select,
.cf7-wrapper .wpcf7 textarea {
  width: 100%;
  background: var(--na-bg);
  border: 1px solid var(--na-border);
  color: var(--na-text);
  padding: 0.75rem 1rem;
  border-radius: 8px;
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.cf7-wrapper .wpcf7 input:focus,
.cf7-wrapper .wpcf7 select:focus,
.cf7-wrapper .wpcf7 textarea:focus {
  border-color: var(--na-teal);
  box-shadow: 0 0 0 3px var(--na-teal-50);
  outline: none;
}

.cf7-wrapper .wpcf7-submit {
  background: var(--na-teal);
  color: var(--na-text-inverse);
  border: none;
  padding: 0.85rem 2.2rem;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.cf7-wrapper .wpcf7-submit:hover {
  background: var(--na-teal-dark);
  transform: translateY(-1px);
}

.cf7-wrapper .wpcf7-response-output {
  margin-top: 1rem;
  padding: 0.75rem 1rem;
  border-radius: 6px;
  font-size: 0.9rem;
}

.cf7-wrapper .wpcf7-mail-sent-ok {
  background: rgba(34, 197, 94, 0.1);
  border: 1px solid var(--na-success);
  color: var(--na-success);
}

.cf7-wrapper .wpcf7-validation-errors {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid var(--na-red);
  color: var(--na-red);
}

/* Contact Info Sidebar */
.contact-info {
  background: var(--na-surface);
  border: 1px solid var(--na-border);
  border-radius: 12px;
  padding: 2rem;
}

.contact-info-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.contact-info-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.1rem;
  border-radius: 10px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.contact-info-btn--phone {
  background: var(--na-teal);
  color: var(--na-text-inverse);
}

.contact-info-btn--phone:hover {
  background: var(--na-teal-dark);
  color: var(--na-text-inverse);
  transform: translateY(-1px);
}

.contact-info-btn--whatsapp {
  background: var(--na-bg);
  color: #166534;
  border: 1px solid rgb(22 101 52 / 0.24);
  box-shadow: none;
}

.contact-info-btn--whatsapp:hover {
  background: rgb(22 101 52 / 0.06);
  border-color: rgb(22 101 52 / 0.4);
  color: #14532d;
  transform: translateY(-1px);
}

.contact-info-points {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.contact-info-points li {
  position: relative;
  padding: 0.4rem 0 0.4rem 1.25rem;
  color: var(--na-text-muted);
  font-size: 0.92rem;
}

.contact-info-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.85rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--na-teal);
}

.contact-info-catalog a {
  color: var(--na-teal);
  font-weight: 600;
  text-decoration: none;
}

.contact-info-catalog a:hover {
  text-decoration: underline;
}

/* Shop location cards */
.contact-shops-section {
  padding: 3rem 0 2rem;
}

.contact-shops-header {
  text-align: center;
  margin-bottom: 2rem;
}

.contact-shops-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.contact-shop-card {
  background: var(--na-surface);
  border: 1px solid var(--na-border);
  border-radius: 14px;
  padding: 1.5rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.contact-shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 28px rgb(0 0 0 / 0.08);
  border-color: rgb(232 93 4 / 0.35);
}

.contact-shop-card-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 0.85rem;
  border-radius: 10px;
  background: var(--na-teal-50);
  color: var(--na-teal);
}

.contact-shop-card-icon svg {
  width: 22px;
  height: 22px;
}

.contact-shop-card-title {
  margin: 0 0 0.25rem;
  font-size: 1.15rem;
}

.contact-shop-card-title a {
  color: var(--na-text);
  text-decoration: none;
}

.contact-shop-card-title a:hover {
  color: var(--na-teal);
}

.contact-shop-card-tagline {
  margin: 0 0 0.85rem;
  font-size: 0.85rem;
  color: var(--na-text-muted);
}

.contact-shop-card-address {
  margin: 0 0 0.75rem;
  font-style: normal;
  line-height: 1.55;
  color: var(--na-text);
}

.contact-shop-card-hours,
.contact-shop-card-phone {
  margin: 0 0 0.5rem;
  font-size: 0.88rem;
  color: var(--na-text-muted);
}

.contact-shop-card-phone a {
  color: var(--na-text);
  font-weight: 600;
  text-decoration: none;
}

.contact-shop-card-phone a:hover {
  color: var(--na-teal);
}

.contact-shop-card-directions {
  display: inline-block;
  margin-top: 0.65rem;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--na-teal);
  text-decoration: none;
}

.contact-shop-card-directions:hover {
  text-decoration: underline;
}

/* Google Maps section */
.contact-map-section {
  padding: 2.5rem 0 4rem;
}

.contact-map-header {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  margin-bottom: 1.25rem;
}

.contact-map-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.contact-map-tab {
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--na-border);
  border-radius: 999px;
  background: var(--na-surface);
  color: var(--na-text-muted);
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s ease;
}

.contact-map-tab:hover,
.contact-map-tab.is-active {
  border-color: var(--na-teal);
  background: var(--na-teal);
  color: var(--na-text-inverse);
}

.contact-map-embed-wrap {
  width: 100%;
  overflow: hidden;
  border: 1px solid var(--na-border);
  box-shadow: 0 12px 32px rgb(0 0 0 / 0.08);
}

.contact-map-iframe {
  display: block;
  width: 100%;
  height: 420px;
  border: 0;
}

/* Floating Buttons */
.floating-buttons {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 9998;
  display: flex;
  flex-direction: column;
  gap: 12px;
  opacity: 0;
  transform: translateY(20px);
  animation: float-in 0.6s cubic-bezier(0.22, 1, 0.36, 1) 0.8s forwards;
}

@keyframes float-in {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.float-btn {
  display: flex;
  align-items: center;
  gap: 10px;
  background: var(--na-surface);
  color: var(--na-text);
  border: 1px solid var(--na-border);
  border-radius: 999px;
  padding: 10px 16px 10px 14px;
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.2), 0 4px 6px -4px rgb(0 0 0 / 0.2);
  transition: all 0.25s cubic-bezier(0.22, 1, 0.36, 1);
  cursor: pointer;
}

.float-btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.15), 0 8px 10px -6px rgb(0 0 0 / 0.15);
  border-color: var(--na-teal);
  color: var(--na-teal);
}

.float-btn svg {
  flex-shrink: 0;
}

.float-label {
  white-space: nowrap;
}

/* WhatsApp specific */
.whatsapp-float {
  background: #25D366;
  color: white;
  border-color: #25D366;
}

.whatsapp-float:hover {
  background: #128C7E;
  border-color: #128C7E;
  color: white;
  transform: translateY(-3px) scale(1.02);
}

.enquire-float {
  background: var(--na-teal);
  color: var(--na-text-inverse);
  border-color: var(--na-teal);
}

.enquire-float:hover {
  background: var(--na-teal-dark);
  border-color: var(--na-teal-dark);
  color: var(--na-text-inverse);
}

/* Soft animations for interactive elements */
.btn-primary,
.btn-secondary,
.float-btn,
.filter-checkbox,
.part-card,
.category-card,
.shop-highlight-card,
input,
select,
textarea,
button {
  transition: transform 0.2s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.2s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.2s ease,
              background-color 0.2s ease,
              color 0.2s ease;
}

.btn-primary:hover,
.btn-secondary:hover {
  transform: translateY(-2px);
}

input:focus,
textarea:focus {
  transform: translateY(-1px);
}

/* Never transform native selects — it can prevent the option list from opening. */
select:focus,
.filter-select:focus {
  transform: none;
}

/* Modal entrance animation */
.nandi-modal .modal-content {
  transform: scale(0.96) translateY(20px);
  opacity: 0;
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              opacity 0.25s ease;
}

.nandi-modal.is-visible .modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* Form feedback soft appear */
.form-feedback > div {
  animation: fade-slide-up 0.4s ease forwards;
}

@keyframes fade-slide-up {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Existing animate-on-scroll already provides soft reveals.
   Add a bit more polish to common elements */
.part-card,
.shop-highlight-card,
.category-card,
.why-choose-item {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              box-shadow 0.35s cubic-bezier(0.22, 1, 0.36, 1),
              border-color 0.25s ease;
}

.part-card:hover,
.shop-highlight-card:hover,
.category-card:hover {
  transform: translateY(-6px);
}

/* Responsive */
@media (max-width: 900px) {
  .contact-layout {
    grid-template-columns: 1fr;
  }

  .contact-quick-divider {
    display: none;
  }

  .contact-quick-bar-inner {
    flex-direction: column;
    gap: 1rem;
  }

  .contact-shops-grid {
    grid-template-columns: 1fr;
  }

  .contact-map-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-map-iframe {
    height: 320px;
  }

  .floating-buttons {
    bottom: calc(18px + env(safe-area-inset-bottom, 0px));
    right: calc(18px + env(safe-area-inset-right, 0px));
  }
  
  .float-btn .float-label {
    display: none; /* keep icons only on small screens for space */
  }
  
  .float-btn {
    padding: 12px;
    border-radius: 50%;
  }
}

body.nav-open {
  overflow: hidden;
}

.shop-location-catalog-toolbar .shop-location-products-header h2 {
  margin: 0 0 0.35rem;
  font-size: 1.15rem;
}

.shop-location-catalog-toolbar .shop-location-products-header p {
  margin: 0;
  font-size: 0.86rem;
  color: var(--na-text-muted);
}

/* ============================================
   ABOUT PAGE
   ============================================ */
main.about-page,
.about-page.site-main {
  padding: 0;
  min-height: 0;
}

.about-page-hero {
  position: relative;
  min-height: clamp(260px, 34vh, 380px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: var(--na-text-inverse);
}

.about-page-hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-page-hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgb(15 23 42 / 0.9) 0%, rgb(30 41 59 / 0.75) 50%, rgb(15 23 42 / 0.55) 100%),
    linear-gradient(to top, rgb(15 23 42 / 0.8) 0%, transparent 50%);
}

.about-page-hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  /* Vertical only — keep .site-container horizontal gutters (1.5rem) */
  padding-top: 2.5rem;
  padding-bottom: 4rem;
}

.about-page-hero-inner > * {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.75s cubic-bezier(0.22, 1, 0.36, 1), transform 0.75s cubic-bezier(0.22, 1, 0.36, 1);
}

.about-page-hero.is-loaded .about-page-hero-inner > *,
.about-page-hero .about-page-hero-inner > *.animate-in {
  opacity: 1;
  transform: translateY(0);
}

.about-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.82rem;
  color: rgb(226 232 240 / 0.75);
}

.about-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.about-breadcrumbs li + li::before {
  content: "/";
  color: rgb(255 255 255 / 0.35);
}

.about-breadcrumbs a {
  color: #ffedd5;
  text-decoration: none;
}

.about-breadcrumbs a:hover {
  text-decoration: underline;
}

.about-page-eyebrow {
  color: #ffedd5;
}

.about-page-title {
  margin: 0 0 0.85rem;
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  line-height: 1.12;
  max-width: 100%;
  text-wrap: balance;
  color: var(--na-text-inverse);
}

.about-page-lead {
  margin: 0;
  max-width: 100%;
  font-size: clamp(1rem, 1.8vw, 1.12rem);
  line-height: 1.7;
  color: rgb(226 232 240 / 0.92);
}

.about-stats-bar {
  position: relative;
  z-index: 2;
  margin-top: -1rem;
  padding: 0 0 2.75rem;
  background: transparent;
  border-bottom: none;
}

.about-stats-grid {
  list-style: none;
  margin: 0;
  padding: 1.15rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
  background: var(--na-surface);
  border: 1px solid var(--na-border);
  border-radius: 16px;
  box-shadow: 0 20px 40px -24px rgb(15 23 42 / 0.16);
}

.about-stat-item {
  text-align: center;
  padding: 1.15rem 0.9rem;
  border-radius: 12px;
  background: var(--na-bg-alt);
  border: 1px solid var(--na-border);
}

.about-stat-item strong {
  display: block;
  font-size: clamp(1.45rem, 2.5vw, 1.85rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--na-brand);
}

.about-stat-item span {
  display: block;
  margin-top: 0.5rem;
  font-size: 0.84rem;
  color: var(--na-text-muted);
  letter-spacing: 0.02em;
}

.about-story {
  padding: 3.25rem 0 3.75rem;
  background: var(--na-bg);
}

.about-story-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.about-story-eyebrow {
  margin-bottom: 0.5rem;
  color: var(--na-brand);
}

.about-story-content h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.25rem);
  line-height: 1.2;
}

.about-story-content p {
  margin: 0 0 1rem;
  color: var(--na-text-muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.about-story-milestones {
  list-style: none;
  margin: 1.75rem 0 0;
  padding: 0 0 0 36px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
}

.about-story-milestones::before {
  content: '';
  position: absolute;
  top: 8px;
  bottom: 0;
  left: 10px;
  width: 2px;
  background: var(--na-border);
}

.about-story-milestones li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  border: none;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.about-story-milestones li::before {
  content: '';
  position: absolute;
  left: -31px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--na-brand);
  box-shadow: 0 0 0 4px var(--na-bg);
  z-index: 1;
}

.about-story-milestones strong {
  font-size: 1.15rem;
  color: var(--na-brand);
  line-height: 1.2;
}

.about-story-milestones span {
  color: var(--na-text);
  line-height: 1.5;
}

.about-values-bullets {
  margin: 1.5rem 0 0 0;
  padding: 0 0 0 1.5rem;
  list-style: disc;
  color: var(--na-text);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.about-values-bullets li strong {
  color: var(--na-heading);
}

.about-story-media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--na-border);
  box-shadow: 0 24px 48px -28px rgb(15 23 42 / 0.35);
}

.about-story-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-story-media figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: var(--na-text-muted);
  background: var(--na-surface);
}

.about-mission {
  padding: 3.75rem 0;
  background: linear-gradient(180deg, var(--na-bg-alt) 0%, var(--na-surface) 100%);
  border-top: 1px solid var(--na-border);
  border-bottom: 1px solid var(--na-border);
}

.about-mission-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 2.5rem;
  align-items: center;
}

.about-mission-intro .section-eyebrow {
  margin-bottom: 0.5rem;
  color: var(--na-brand);
}

.about-mission-media {
  margin: 0;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--na-border);
  box-shadow: 0 24px 48px -28px rgb(15 23 42 / 0.35);
}

.about-mission-media img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.about-mission-media figcaption {
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: var(--na-text-muted);
  background: var(--na-bg-alt);
}

.about-mission-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.about-mission-intro h2 {
  margin: 0 0 1rem;
  font-size: clamp(1.75rem, 3vw, 2.2rem);
  line-height: 1.2;
}

.about-mission-intro p {
  margin: 0;
  color: var(--na-text-muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.about-values-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}

.about-value-card {
  padding: 1.2rem 1.3rem;
  border-radius: 14px;
  background: var(--na-surface);
  border: 1px solid var(--na-border);
  box-shadow: 0 10px 24px -20px rgb(15 23 42 / 0.1);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.about-value-card:hover {
  transform: translateY(-2px);
  border-color: rgb(232 93 4 / 0.35);
  box-shadow: 0 14px 30px -18px rgb(15 23 42 / 0.18);
}

.about-value-card h3 {
  margin: 0 0 0.45rem;
  font-size: 1.05rem;
}

.about-value-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--na-text-muted);
}

.about-different {
  padding: 4.5rem 0;
  color: var(--na-text-inverse);
}

.about-different-inner {
  position: relative;
  z-index: 1;
}

.about-different .section-header {
  margin-bottom: 2.25rem;
}

.about-different-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.35rem;
}

.about-different-card {
  background: rgb(255 255 255 / 0.96);
  border: 1px solid rgb(255 255 255 / 0.35);
  border-radius: 14px;
  padding: 1.5rem 1.35rem;
  box-shadow: 0 16px 34px -22px rgb(15 23 42 / 0.35);
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.about-different-card:hover {
  transform: translateY(-4px);
  border-color: rgb(255 255 255 / 0.65);
  box-shadow: 0 22px 40px -18px rgb(15 23 42 / 0.4);
}

.about-different-icon {
  width: 44px;
  height: 44px;
  margin-bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  background: var(--na-brand-50);
  color: var(--na-brand);
}

.about-different-icon svg {
  width: 24px;
  height: 24px;
}

.about-different-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1.05rem;
}

.about-different-card p {
  margin: 0;
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--na-text-muted);
}

.about-locations {
  padding: 4.5rem 0;
  background: var(--na-bg);
}

.about-locations-list {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.about-location-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: center;
  padding: 1.25rem;
  border-radius: 16px;
  background: var(--na-surface);
  border: 1px solid var(--na-border);
  box-shadow: 0 20px 40px -28px rgb(15 23 42 / 0.18);
}

.about-location-card--reverse .about-location-media {
  order: 2;
}

.about-location-card--reverse .about-location-body {
  order: 1;
}

.about-location-media {
  border-radius: 12px;
  overflow: hidden;
}

.about-location-media img {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 280px;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.about-location-tagline {
  margin: 0 0 0.35rem;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--na-brand);
}

.about-location-body h3 {
  margin: 0 0 0.65rem;
  font-size: 1.55rem;
}

.about-location-address {
  margin: 0 0 0.75rem;
  color: var(--na-text-muted);
  line-height: 1.55;
}

.about-location-hours,
.about-location-phone {
  margin: 0 0 0.65rem;
  font-size: 0.92rem;
  color: var(--na-text);
  line-height: 1.5;
}

.about-location-hours strong {
  color: var(--na-text);
}

.about-location-phone a {
  font-weight: 600;
  color: var(--na-teal);
  text-decoration: none;
}

.about-location-phone a:hover {
  color: var(--na-brand);
}

.about-location-highlights {
  list-style: none;
  margin: 0 0 1.35rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.about-location-highlights li {
  position: relative;
  padding-left: 1.2rem;
  font-size: 0.92rem;
  color: var(--na-text);
}

.about-location-highlights li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.48rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--na-brand);
}

.about-location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.about-gallery {
  padding: 4.5rem 0;
  background: var(--na-bg-alt);
}

.about-gallery-grid {
  column-count: 3;
  column-gap: 1.15rem;
}

.about-gallery-item {
  margin: 0 0 1.15rem 0;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--na-border);
  background: var(--na-surface);
  display: inline-block;
  width: 100%;
  break-inside: avoid;
}

.about-gallery-item img {
  display: block;
  width: 100%;
  height: auto;
}

.about-gallery-item figcaption {
  padding: 0.75rem 0.95rem;
  font-size: 0.86rem;
  color: var(--na-text-muted);
}

.about-gallery-grid:not(.is-expanded) .about-gallery-item:nth-of-type(n+7) {
  display: none;
}

.about-gallery-actions {
  text-align: center;
  margin-top: 2.5rem;
}

.about-gallery-grid.is-expanded + .about-gallery-actions {
  display: none;
}

.about-page-cta {
  padding: 4rem 0 5rem;
  background: linear-gradient(135deg, var(--na-steel-dark) 0%, var(--na-steel) 100%);
  color: var(--na-text-inverse);
}

.about-page-cta-inner {
  text-align: center;
  max-width: 100%;
  width: 100%;
  margin: 0 auto;
}

.about-page-cta-inner h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: var(--na-text-inverse);
}

.about-page-cta-inner p {
  margin: 0 0 1.5rem;
  color: rgb(226 232 240 / 0.9);
  line-height: 1.65;
}

.about-page-cta .btn-secondary {
  color: var(--na-text-inverse);
  border-color: rgb(255 255 255 / 0.45);
}

.about-page-cta .btn-secondary:hover {
  background: rgb(255 255 255 / 0.1);
  border-color: var(--na-text-inverse);
  color: var(--na-text-inverse);
}

@media (max-width: 900px) {
  .about-page-hero {
    min-height: clamp(240px, 32vh, 320px);
  }

  .about-page-hero-inner {
    padding-top: 2rem;
    padding-bottom: 3.25rem;
  }

  .about-stats-bar {
    margin-top: -0.75rem;
    padding-bottom: 2.25rem;
  }

  .about-stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-story,
  .about-mission {
    padding: 3rem 0;
  }

  .about-mission-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .about-story-grid,
  .about-location-card,
  .about-location-card--reverse {
    grid-template-columns: 1fr;
  }

  .about-location-card--reverse .about-location-media,
  .about-location-card--reverse .about-location-body {
    order: unset;
  }

  .about-different-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 600px) {
  .about-stats-grid {
    grid-template-columns: 1fr;
  }

  .about-different-grid {
    grid-template-columns: 1fr;
  }

  .about-gallery-grid {
    column-count: 1;
  }

  .about-location-actions {
    flex-direction: column;
  }

  .about-location-actions .btn-primary,
  .about-location-actions .btn-secondary {
    justify-content: center;
    text-align: center;
  }
}

/* ============================================
   BLOG - Homepage, archive, single
   ============================================ */

.home-blog {
  background: transparent;
  border-top: 1px solid var(--na-border);
}

.home-shop-locations + .home-blog {
  padding-top: 4.5rem;
}

.home-blog-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.home-blog-eyebrow {
  color: var(--na-teal);
}

.home-blog-view-all {
  flex-shrink: 0;
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--na-surface);
  border: 1px solid var(--na-border);
  border-radius: 14px;
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border-color: rgb(232 93 4 / 0.3);
  box-shadow: 0 16px 34px -18px rgb(15 23 42 / 0.22);
}

.blog-card-media {
  position: relative;
  display: block;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--na-bg-alt);
}

.blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.blog-card:hover .blog-card-media img {
  transform: scale(1.05);
}

.blog-card-category {
  position: absolute;
  left: 0.75rem;
  top: 0.75rem;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  background: rgb(15 23 42 / 0.72);
  color: var(--na-text-inverse);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.blog-card-body {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.15rem 1.15rem 1.25rem;
  flex: 1;
}

.blog-card-date {
  margin: 0;
  font-size: 0.78rem;
  color: var(--na-text-muted);
}

.blog-card-title {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.35;
}

.blog-card-title a {
  color: var(--na-text);
  text-decoration: none;
}

.blog-card-title a:hover {
  color: var(--na-brand);
}

.blog-card-excerpt {
  margin: 0;
  font-size: 0.88rem;
  line-height: 1.6;
  color: var(--na-text-muted);
}

.blog-card-link {
  margin-top: auto;
  padding-top: 0.35rem;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--na-teal);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
}

.blog-card-link:hover {
  color: var(--na-brand);
}

.blog-archive {
  padding: 0 0 3.5rem;
  min-height: 0;
}

.blog-archive-hero.category-archive-hero {
  margin-bottom: 0;
}

.blog-archive-content {
  padding-top: 3rem;
}

.blog-archive-content .pagination,
.blog-archive-content .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 2.5rem;
}

.blog-archive-content .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--na-border);
  background: var(--na-surface);
  color: var(--na-text);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.blog-archive-content .page-numbers:hover,
.blog-archive-content .page-numbers.current {
  border-color: var(--na-brand);
  background: var(--na-brand);
  color: var(--na-text-inverse);
}

.blog-empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  border: 1px dashed var(--na-border);
  border-radius: 14px;
  background: var(--na-surface);
}

.blog-single {
  padding-bottom: 3rem;
}

.blog-single-hero {
  margin-bottom: 2.5rem;
}

.blog-single-hero-inner {
  padding-top: clamp(1.75rem, 3vw, 2.5rem);
}

.blog-single-breadcrumbs {
  margin-bottom: 1.25rem;
}

.blog-single-breadcrumbs ol {
  font-size: 0.86rem;
}

.blog-single-breadcrumbs li:last-child {
  min-width: 0;
}

.blog-single-breadcrumbs li:last-child span {
  color: var(--na-text);
  font-weight: 500;
}

.blog-single-hero-head {
  max-width: 920px;
}

.blog-single-category {
  display: inline-flex;
  margin-bottom: 1rem;
  padding: 0.38rem 0.9rem;
  border-radius: 999px;
  background: rgb(255 237 213 / 0.95);
  color: var(--na-brand-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.blog-single-category:hover {
  background: var(--na-brand);
  color: var(--na-text-inverse);
}

.blog-single-hero .entry-title {
  margin: 0 0 0.9rem;
  font-size: clamp(2rem, 4.2vw, 2.85rem);
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--na-text);
}

.blog-single-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  align-items: center;
  color: var(--na-text-muted);
  font-size: 0.92rem;
}

.blog-single-hero-image {
  margin-top: 1.85rem;
}

.blog-single-hero-image img {
  display: block;
  width: 100%;
  max-height: 480px;
  object-fit: cover;
  border-radius: 18px;
  box-shadow: 0 18px 40px -24px rgb(15 23 42 / 0.28);
}

.blog-single-content-wrap {
  max-width: 760px;
}

.blog-single-content {
  font-size: 1.02rem;
  line-height: 1.75;
}

.blog-single-content > *:first-child {
  margin-top: 0;
}

.blog-single-tags {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 1px solid var(--na-border);
  font-size: 0.9rem;
}

.blog-tag-list {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin-top: 0.5rem;
}

.blog-tag-list a {
  display: inline-flex;
  padding: 0.28rem 0.65rem;
  border-radius: 999px;
  border: 1px solid var(--na-border);
  background: var(--na-bg);
  color: var(--na-text);
  font-size: 0.8rem;
  text-decoration: none;
}

.blog-tag-list a:hover {
  border-color: var(--na-teal);
  color: var(--na-teal);
}

.blog-post-nav-band {
  margin-top: 2.5rem;
  padding: 2rem 0 2.25rem;
  border-top: 1px solid var(--na-border);
  background: var(--na-bg-alt);
}

.blog-post-nav-split {
  display: grid;
  gap: 1rem;
}

.blog-post-nav-split--both {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.blog-post-nav-split--prev,
.blog-post-nav-split--next {
  grid-template-columns: minmax(0, 1fr);
}

.blog-post-nav-split--prev .blog-post-nav-item--prev {
  max-width: min(100%, 560px);
}

.blog-post-nav-split--next .blog-post-nav-item--next {
  justify-self: end;
  max-width: min(100%, 560px);
}

.blog-post-nav-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr);
  gap: 1rem;
  align-items: center;
  min-height: 100%;
  padding: 1rem 1.15rem;
  border: 1px solid var(--na-border);
  border-radius: 16px;
  background: var(--na-surface);
  color: var(--na-text);
  text-decoration: none;
  box-shadow: 0 12px 28px -22px rgb(15 23 42 / 0.28);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

.blog-post-nav-item:hover {
  transform: translateY(-2px);
  border-color: rgb(232 93 4 / 0.35);
  background: var(--na-brand-50);
  box-shadow: 0 18px 34px -18px rgb(232 93 4 / 0.24);
}

.blog-post-nav-item--next {
  grid-template-columns: minmax(0, 1fr) 96px;
}

.blog-post-nav-copy {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
  min-width: 0;
}

.blog-post-nav-item--next .blog-post-nav-copy {
  align-items: flex-end;
  text-align: right;
}

.blog-post-nav-thumb {
  display: block;
  width: 96px;
  height: 72px;
  border-radius: 12px;
  overflow: hidden;
  background: var(--na-bg-alt);
  flex-shrink: 0;
}

.blog-post-nav-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.blog-post-nav-item:hover .blog-post-nav-thumb img {
  transform: scale(1.05);
}

.blog-post-nav-label {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--na-text-muted);
}

.blog-post-nav-item:hover .blog-post-nav-label {
  color: var(--na-brand-dark);
}

.blog-post-nav-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.35rem;
  height: 1.35rem;
  border-radius: 999px;
  background: rgb(232 93 4 / 0.12);
  font-size: 0.82rem;
  line-height: 1;
  color: var(--na-brand);
}

.blog-post-nav-title {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--na-text);
}

.blog-related {
  margin-top: 0;
  padding: 3.5rem 0 4rem;
  border-top: 1px solid var(--na-border);
  background: var(--na-bg);
}

.blog-related-eyebrow {
  color: var(--na-brand);
}

.blog-related-grid {
  margin-top: 0;
}

@media (max-width: 980px) {
  .blog-grid,
  .home-blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-post-nav-split--both,
  .blog-post-nav-split--prev,
  .blog-post-nav-split--next {
    grid-template-columns: 1fr;
  }

  .blog-post-nav-split--next .blog-post-nav-item--next {
    justify-self: stretch;
    max-width: none;
  }

  .blog-post-nav-split--prev .blog-post-nav-item--prev {
    max-width: none;
  }

  .blog-post-nav-item,
  .blog-post-nav-item--next {
    grid-template-columns: 80px minmax(0, 1fr);
  }

  .blog-post-nav-item--next .blog-post-nav-copy {
    align-items: flex-start;
    text-align: left;
    order: 2;
  }

  .blog-post-nav-item--next .blog-post-nav-thumb {
    order: 1;
  }

  .blog-post-nav-thumb {
    width: 80px;
    height: 60px;
  }
}

@media (max-width: 600px) {
  .blog-grid,
  .home-blog-grid {
    grid-template-columns: 1fr;
  }

  .home-blog-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .blog-single-hero-inner {
    padding-top: 1.35rem;
  }

  .blog-single-hero .entry-title {
    font-size: clamp(1.65rem, 7vw, 2rem);
  }

  .blog-single-hero-image {
    margin-top: 1.35rem;
  }

  .blog-single-hero-image img {
    max-height: 260px;
    border-radius: 14px;
  }
}

/* ==========================================================================
   Global Search - header panel + results page
   ========================================================================== */

.header-search {
  position: relative;
}

.header-search-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid var(--na-border);
  border-radius: 10px;
  background: var(--na-surface);
  color: var(--na-text);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.header-search-toggle:hover,
.header-search-toggle[aria-expanded="true"] {
  border-color: var(--na-brand);
  color: var(--na-brand);
  background: var(--na-brand-50);
}

.header-search-panel {
  position: fixed;
  left: 0;
  right: 0;
  top: var(--header-offset, 108px);
  z-index: 9998;
  background: var(--na-surface);
  border-bottom: 1px solid var(--na-border);
  box-shadow: 0 12px 32px rgba(15, 23, 42, 0.12);
  padding: 1.25rem 0 1.5rem;
}

.header-search-panel.is-open {
  animation: searchPanelIn 0.2s ease;
}

@keyframes searchPanelIn {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.header-search-panel-title {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--na-text);
}

.header-search-panel-hint {
  margin: 0.65rem 0 0;
  font-size: 0.82rem;
  color: var(--na-text-muted);
}

.header-search-backdrop {
  position: fixed;
  inset: 0;
  z-index: 9997;
  background: rgba(15, 23, 42, 0.35);
}

.header-search-backdrop.is-open {
  animation: searchBackdropIn 0.2s ease;
}

@keyframes searchBackdropIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

body.header-search-open {
  overflow: hidden;
}

.nandi-search-form {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  max-width: none;
  margin: 0;
}

.nandi-search-field-wrap {
  position: relative;
  flex: 1;
  min-width: 0;
}

.nandi-search-label {
  display: block;
}

.nandi-search-field {
  width: 100%;
  height: 52px;
  padding: 0 1rem;
  border: 1px solid var(--na-border);
  border-radius: 12px;
  background: var(--na-bg);
  color: var(--na-text);
  font-size: 1rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.nandi-search-field:focus {
  outline: none;
  border-color: var(--na-brand);
  box-shadow: 0 0 0 3px var(--na-brand-50);
}

.nandi-search-suggestions {
  margin-top: 0.65rem;
  background: var(--na-surface);
  border: 1px solid var(--na-border);
  border-radius: 14px;
  box-shadow: 0 12px 28px -20px rgb(15 23 42 / 0.18);
  overflow: hidden;
}

.nandi-search-suggestions-label {
  margin: 0;
  padding: 0.7rem 0.95rem 0.45rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--na-text-muted);
}

.nandi-search-suggestions-list {
  display: flex;
  flex-direction: column;
  max-height: min(320px, 42vh);
  overflow-y: auto;
}

.nandi-search-suggestion {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 0.75rem;
  align-items: start;
  padding: 0.8rem 0.95rem;
  color: var(--na-text);
  text-decoration: none;
  border-top: 1px solid var(--na-border);
  transition: background-color 0.18s ease;
}

.nandi-search-suggestion:first-child {
  border-top: none;
}

.nandi-search-suggestion:hover,
.nandi-search-suggestion.is-active {
  background: var(--na-brand-50);
}

.nandi-search-suggestion-type {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 4.6rem;
  padding: 0.22rem 0.5rem;
  border-radius: 999px;
  background: var(--na-bg-alt);
  border: 1px solid var(--na-border);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--na-text-muted);
}

.nandi-search-suggestion-copy {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  min-width: 0;
}

.nandi-search-suggestion-title {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.35;
  color: var(--na-text);
}

.nandi-search-suggestion-subtitle {
  font-size: 0.8rem;
  line-height: 1.4;
  color: var(--na-text-muted);
}

.nandi-search-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  min-width: 52px;
  height: 52px;
  padding: 0 1.15rem;
  border: none;
  border-radius: 12px;
  background: var(--na-brand);
  color: var(--na-text-inverse);
  font-size: 0.9rem;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.nandi-search-submit:hover {
  background: var(--na-brand-dark);
}

.nandi-search-submit-text {
  display: none;
}

.search-results {
  padding-bottom: 3.5rem;
}

.search-results-hero {
  background: linear-gradient(180deg, var(--na-bg-alt) 0%, var(--na-bg) 100%);
  border-bottom: 1px solid var(--na-border);
  padding: 2.5rem 0 2rem;
  margin-bottom: 2rem;
}

.search-breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 0.5rem;
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
  font-size: 0.82rem;
  color: var(--na-text-muted);
}

.search-breadcrumbs li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.search-breadcrumbs li + li::before {
  content: "/";
  color: var(--na-border);
}

.search-breadcrumbs a {
  color: var(--na-teal);
  text-decoration: none;
}

.search-breadcrumbs a:hover {
  text-decoration: underline;
}

.search-results-hero .page-title {
  margin: 0 0 0.5rem;
  font-size: clamp(2rem, 3.5vw, 2.6rem);
}

.search-results-query,
.search-results-count {
  margin: 0 0 0.35rem;
  color: var(--na-text-muted);
  line-height: 1.6;
}

.search-results-hero-form {
  margin-top: 1.25rem;
  max-width: 100%;
}

.search-results-section + .search-results-section {
  margin-top: 2.75rem;
}

.search-results-section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.25rem;
}

.search-results-section-title {
  margin: 0;
  font-size: 1.35rem;
}

.search-results-section-count {
  display: inline-flex;
  align-items: center;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: var(--na-brand-50);
  color: var(--na-brand-dark);
  font-size: 0.78rem;
  font-weight: 700;
}

.search-results-pages-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
}

.search-page-card {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.25rem;
  border: 1px solid var(--na-border);
  border-radius: 14px;
  background: var(--na-surface);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}

.search-page-card:hover {
  border-color: var(--na-brand);
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
  transform: translateY(-2px);
}

.search-page-card-type {
  display: inline-flex;
  align-self: flex-start;
  padding: 0.25rem 0.65rem;
  border-radius: 999px;
  background: var(--na-bg-alt);
  color: var(--na-text-muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.search-page-card-title {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.35;
}

.search-page-card-title a {
  color: var(--na-text);
  text-decoration: none;
}

.search-page-card-title a:hover {
  color: var(--na-brand);
}

.search-page-card-excerpt {
  margin: 0;
  flex: 1;
  color: var(--na-text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
}

.search-page-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--na-teal);
  font-size: 0.86rem;
  font-weight: 700;
  text-decoration: none;
}

.search-page-card-link:hover {
  color: var(--na-brand);
}

.search-results-content .pagination,
.search-results-content .nav-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.4rem;
  margin-top: 2.5rem;
}

.search-results-content .page-numbers {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 38px;
  height: 38px;
  padding: 0 0.65rem;
  border-radius: 8px;
  border: 1px solid var(--na-border);
  background: var(--na-surface);
  color: var(--na-text);
  font-size: 0.86rem;
  font-weight: 600;
  text-decoration: none;
}

.search-results-content .page-numbers:hover,
.search-results-content .page-numbers.current {
  border-color: var(--na-brand);
  background: var(--na-brand);
  color: var(--na-text-inverse);
}

.search-empty-state {
  text-align: center;
  padding: 3rem 1.5rem;
  border: 1px dashed var(--na-border);
  border-radius: 14px;
  background: var(--na-surface);
}

.search-empty-state h2 {
  margin: 0 0 0.65rem;
}

.search-empty-state p {
  margin: 0 0 1.5rem;
  color: var(--na-text-muted);
}

.search-empty-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.search-results-categories-grid {
  margin: 0;
}

.search-results-shops-grid {
  margin: 0;
}

.search-shop-card .shop-name a {
  color: inherit;
  text-decoration: none;
}

.search-shop-card .shop-name a:hover {
  color: var(--na-brand);
}

.search-shop-card-count {
  margin: 0;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--na-brand-dark);
}

@media (min-width: 768px) {
  .nandi-search-submit-text {
    display: inline;
  }
}

@media (max-width: 900px) {
  .header-search-panel {
    top: var(--header-offset, 104px);
  }
}

@media (max-width: 768px) {
  .search-results-pages-grid,
  .search-results-categories-grid,
  .search-results-shops-grid {
    grid-template-columns: 1fr;
  }

  .search-results-section-header {
    align-items: flex-start;
    flex-direction: column;
  }
}