/* ================================================================
   DALTON LED ZONE — Master Stylesheet
   ================================================================
   Typography:     Kumbh Sans 300–800, Instrument Sans 400–700
   Methodology:    BEM (Block__Element--Modifier)
   Strategy:       Mobile-first progressive enhancement
   ================================================================ */

/* ────────────────────────────────────────────────────────────────
   0. DESIGN TOKENS
   ──────────────────────────────────────────────────────────────── */

:root {
  /* Colour palette */
  --c-primary: #181818;
  --c-secondary: #4d4e4f;
  --c-muted: #a0a0a0;
  --c-surface: #f7f7f7;
  --c-line: #e9e9e9;
  --c-white: #ffffff;
  --c-danger: #f03e3e;
  --c-success: #3dab25;
  --c-warning: #f0a750;
  --c-info: #0c74d6;

  /* Typography */
  --ff-base: 'Kumbh Sans', sans-serif;
  --ff-alt: 'Instrument Sans', sans-serif;
  --fs-xs: 13px;
  --fs-sm: 16px;
  --fs-base: 16px;
  --fs-lg: 18px;
  --fs-xl: 20px;
  --fs-2xl: 24px;
  --fs-3xl: 30px;
  --fs-4xl: 40px;
  --fs-5xl: 44px;
  --fs-6xl: 56px;

  /* Spacing (8-point grid) */
  --sp-1: 4px;
  --sp-2: 8px;
  --sp-3: 12px;
  --sp-4: 16px;
  --sp-5: 20px;
  --sp-6: 24px;
  --sp-8: 32px;
  --sp-10: 40px;
  --sp-12: 48px;
  --sp-16: 64px;
  --sp-20: 80px;

  /* Radii */
  --r-sm: 4px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-full: 999px;

  /* Shadows */
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, .08);
  --shadow-md: 0 10px 25px rgba(43, 52, 74, .12);
  --shadow-lg: 0 5px 18px 5px rgba(64, 72, 87, .15);

  /* Transitions */
  --ease: cubic-bezier(.25, .46, .45, .94);
  --dur: .3s;

  /* Layout */
  --container: 1320px;
}

/* ────────────────────────────────────────────────────────────────
   1. RESET & BASE
   ──────────────────────────────────────────────────────────────── */

*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: inherit;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: "Kumbh Sans", sans-serif;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  color: var(--c-primary);
  background: var(--c-white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  height: auto;
  transform: scale(1);
  vertical-align: middle;
}

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

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
  transition: all 0.3s ease;
}

.link {
  transition: all 0.3s ease;
}

.link:hover {
  color: var(--c-secondary) !important;
}

ul,
ol {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: transparent;
  font: inherit;
}

input,
textarea,
select {
  font: inherit;
}

address {
  font-style: normal;
}

/* Accessibility */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.sr-only--focusable:focus {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99999;
  width: auto;
  height: auto;
  padding: var(--sp-3) var(--sp-5);
  clip: auto;
  background: var(--c-primary);
  color: var(--c-white);
  font-weight: 600;
}

/* Layout */
.container {
  width: 100%;
  max-width: 1320px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* ────────────────────────────────────────────────────────────────
   2. TYPOGRAPHY
   ──────────────────────────────────────────────────────────────── */

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 500;
  color: var(--c-primary);
  text-rendering: optimizeLegibility;
}

h1 {
  font-size: 56px;
  line-height: 68px;
}

h2 {
  font-size: 44px;
  line-height: 50px;
}

h3 {
  font-size: 40px;
  line-height: 48px;
}

h4 {
  font-size: 30px;
  line-height: 42px;
}

h5 {
  font-size: 24px;
  line-height: 30px;
}

h6 {
  font-size: 20px;
  line-height: 28px;
}

/* ────────────────────────────────────────────────────────────────
   3. BUTTONS
   ──────────────────────────────────────────────────────────────── */

.btn {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  font-size: var(--fs-base);
  font-weight: 600;
  line-height: 1.625;
  border-radius: var(--r-full);
  transition: all var(--dur) var(--ease);
  text-transform: capitalize;
  white-space: nowrap;
}

.btn--primary {
  padding: 15px 32px;
  background: var(--c-primary);
  color: var(--c-white);
  border: 2px solid var(--c-primary);
}

.btn--primary:hover {
  background: transparent;
  color: var(--c-primary);
}

.btn--primary.btn--white {
  background: var(--c-white);
  color: var(--c-primary);
  border-color: var(--c-white);
}

.btn--primary.btn--white:hover {
  background: transparent;
  color: var(--c-white);
}

.btn--outline {
  padding: 12px 28px;
  background: transparent;
  color: var(--c-primary);
  border: 2px solid var(--c-primary);
  font-size: var(--fs-sm);
}

.btn--outline:hover {
  background: var(--c-primary);
  color: var(--c-white);
}

.btn--add-quote {
  width: 100%;
  justify-content: center;
  padding: 12px 20px;
  background: var(--c-primary);
  color: var(--c-white);
  border: none;
  font-size: var(--fs-sm);
}

.btn--add-quote:hover {
  background: var(--c-white);
  color: var(--c-primary);
  box-shadow: var(--shadow-sm);
}

/* ────────────────────────────────────────────────────────────────
   4. SECTION FRAMEWORK
   ──────────────────────────────────────────────────────────────── */

.section {
  padding: var(--sp-20) 0;
}

.section__header {
  margin-bottom: var(--sp-10);
}

.section__header--center {
  text-align: center;
}

.section__header--split {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.section__title {
  font-size: var(--fs-4xl);
  line-height: 1.2;
  margin-bottom: var(--sp-2);
}

.section__subtitle {
  font-size: var(--fs-base);
  color: var(--c-secondary);
}

.section__notice {
  text-align: center;
  color: var(--c-muted);
  font-size: var(--fs-sm);
  margin-top: var(--sp-5);
}

.section__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: var(--fs-base);
  font-weight: 600;
}

.section__link:hover {
  gap: 10px;
}

/* ────────────────────────────────────────────────────────────────
   5. TOPBAR
   ──────────────────────────────────────────────────────────────── */

.topbar {
  background: var(--c-primary);
  color: rgba(255, 255, 255, .85);
  font-size: 13px;
  line-height: 20px;
  padding: 10px 0;
}

.topbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.topbar__right {
  display: flex;
  align-items: center;
  gap: var(--sp-5);
}

.topbar__link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(255, 255, 255, .85);
}

.topbar__link:hover {
  color: var(--c-white);
}

.topbar__link .icon {
  opacity: .7;
}

/* ────────────────────────────────────────────────────────────────
   6. HEADER
   ──────────────────────────────────────────────────────────────── */

.header {
  background: var(--c-white);
  border-bottom: 1px solid var(--c-line);
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: box-shadow var(--dur) var(--ease);
  padding: 15px 0;
}

.header--scrolled {
  box-shadow: var(--shadow-md);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: var(--sp-8);
}

/* Branding */
.site-branding a {
  display: inline-flex;
  align-items: center;
}

.site-branding__title {
  font-size: var(--fs-2xl);
  font-weight: 700;
  letter-spacing: -.5px;
  text-transform: uppercase;
}

.custom-logo {
  max-height: 50px;
  width: auto;
}

/* Desktop navigation */
.header__nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--sp-2);
}

.nav-menu li {
  position: relative;
}

.nav-menu>li>a {
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 10px 16px;
  font-size: var(--fs-base);
  font-weight: 600;
  border-radius: var(--r-full);
  transition: color var(--dur) var(--ease);
}

.nav-menu>li>a:hover,
.nav-menu>.current-menu-item>a,
.nav-menu>.current_page_item>a {
  color: var(--c-secondary);
}

/* Dropdown arrow for items with children */
.nav-menu .menu-item-has-children>a::after {
  content: '';
  display: inline-block;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  margin-left: 2px;
  transition: transform 0.3s ease;
}

.nav-menu .menu-item-has-children:hover>a::after {
  transform: rotate(-135deg) translateY(-2px);
}

/* Dropdown */
.nav-menu .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--c-white);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-md);
  padding: var(--sp-2) 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all var(--dur) var(--ease);
  z-index: 100;
}

.nav-menu li:hover>.sub-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.nav-menu .sub-menu a {
  padding: 10px 20px;
  font-size: var(--fs-sm);
  font-weight: 500;
  border-radius: 0;
}

.nav-menu .sub-menu a:hover {
  background: var(--c-surface);
}

/* ── Mega Menu ── */
.header {
  position: relative;
}

.nav-menu li.has-mega-menu {
  position: static;
}

.mega-menu-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 100%;
  background: #ffffff;
  border-top: 2px solid var(--c-primary, #0f172a);
  border-bottom: 1px solid var(--c-line, #e2e8f0);
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.12), 0 10px 20px -5px rgba(0, 0, 0, 0.04);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
  padding: 24px 0 20px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.25s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.25s cubic-bezier(0.4, 0, 0.2, 1), transform 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 999;
}

.nav-menu li.has-mega-menu:hover .mega-menu-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Mega Menu Container & Header */
.mega-menu-container {
  display: flex;
  flex-direction: column;
}

.mega-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 14px;
  margin-bottom: 18px;
  border-bottom: 1px solid #e5e7eb;
}

.mega-menu-header__left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mega-menu-header__title {
  font-family: var(--ff-base);
  font-size: 14px;
  font-weight: 700;
  color: #0f172a;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.mega-menu-header__badge {
  background: #f1f5f9;
  color: #334155;
  font-size: 11px;
  font-weight: 600;
  padding: 3px 9px;
  border-radius: 20px;
  border: 1px solid #cbd5e1;
}

.mega-menu-header__link {
  font-family: var(--ff-base);
  font-size: 13px;
  font-weight: 600;
  color: var(--c-primary, #0f172a);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mega-menu-header__link:hover {
  color: #2563eb;
  transform: translateX(3px);
}

/* Columns Grid */
.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(var(--mega-cols, 4), minmax(0, 1fr));
  gap: 20px;
}

.mega-menu-col {
  padding-right: 16px;
  border-right: 1px solid #f1f5f9;
}

.mega-menu-col:last-child {
  border-right: none;
  padding-right: 0;
}

.mega-menu-list {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.mega-menu-item-link {
  list-style: none;
}

.mega-menu-link {
  font-family: var(--ff-base);
  font-size: 13.5px;
  font-weight: 500;
  color: #334155;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 6px 10px;
  border-radius: 8px;
  line-height: 1.35;
  text-decoration: none;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
  overflow: hidden;
}

.mega-menu-link__icon {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #cbd5e1;
  flex-shrink: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.mega-menu-link__text {
  flex: 1;
  min-width: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.mega-menu-link__arrow {
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  color: #2563eb;
  flex-shrink: 0;
}

.mega-menu-link:hover {
  background: #f8fafc;
  color: #0f172a;
  font-weight: 600;
  transform: translateX(3px);
}

.mega-menu-link:hover .mega-menu-link__icon {
  background: #2563eb;
  transform: scale(1.3);
}

.mega-menu-link:hover .mega-menu-link__arrow {
  opacity: 1;
  transform: translateX(0);
}

/* Subcategories */
.mega-menu-sublist {
  list-style: none;
  padding-left: 16px;
  margin: 4px 0 6px 14px;
  border-left: 2px solid #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mega-menu-sublink {
  font-size: 12.5px;
  color: #64748b;
  display: block;
  max-width: 100%;
  padding: 3px 0;
  text-decoration: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.2s ease, transform 0.2s ease;
}

.mega-menu-sublink:hover {
  color: #0f172a;
  font-weight: 600;
  transform: translateX(3px);
}

/* Footer CTA Bar */
.mega-menu-footer {
  margin-top: 20px;
  padding-top: 14px;
  border-top: 1px solid #e5e7eb;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mega-menu-footer__info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: #475569;
  font-weight: 500;
}

.mega-menu-footer__info svg {
  color: #2563eb;
  flex-shrink: 0;
}

.mega-menu-footer__btn {
  font-size: 12.5px;
  font-weight: 600;
  background: #0f172a;
  color: #ffffff !important;
  padding: 7px 15px;
  border-radius: 6px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: background 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.mega-menu-footer__btn:hover {
  background: #1e293b;
  transform: translateY(-1px);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

/* ── Responsive Adaptations ── */
@media (max-width: 1199px) and (min-width: 992px) {
  .mega-menu-grid {
    grid-template-columns: repeat(min(var(--mega-cols, 4), 4), minmax(0, 1fr));
    gap: 12px;
  }

  .mega-menu-col {
    padding-right: 10px;
  }

  .mega-menu-link {
    font-size: 12.5px;
    padding: 5px 6px;
  }
}

@media (max-width: 991px) {
  .nav-menu li.has-mega-menu {
    position: relative;
  }

  .mobile-menu__list>li:not(.is-open)>.mega-menu-dropdown {
    display: none;
  }

  .mobile-menu__list>li.is-open>.mega-menu-dropdown {
    display: block;
  }

  .mega-menu-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border: none;
    background: #f8fafc;
    border-radius: 12px;
    padding: 16px 14px;
    margin-top: 8px;
    max-height: 480px;
    overflow-y: auto;
  }

  .mega-menu-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px 12px;
  }

  .mega-menu-col {
    border-right: none;
    padding-right: 0;
  }

  .mega-menu-header {
    flex-wrap: wrap;
    gap: 8px;
    padding-bottom: 10px;
    margin-bottom: 12px;
  }

  .mega-menu-footer {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    margin-top: 14px;
    padding-top: 10px;
  }

  .mega-menu-footer__btn {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 575px) {
  .mega-menu-grid {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .mega-menu-dropdown {
    max-height: 420px;
    padding: 12px 10px;
  }

  .mega-menu-link {
    font-size: 13px;
    padding: 5px 8px;
  }
}

/* ────────────────────────────────────────────────────────────────
   PRODUCTS 5-GRID MEGA MENU
   ──────────────────────────────────────────────────────────────── */

.mega-menu-dropdown--products {
  padding: 28px 0 24px 0;
  background: #ffffff;
  border-top: 3px solid #0284c7;
  border-bottom: 1px solid #e2e8f0;
  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12), 0 0 0 1px rgba(15, 23, 42, 0.04);
  border-bottom-left-radius: 16px;
  border-bottom-right-radius: 16px;
}

.mega-menu-header--products {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid #e2e8f0;
  gap: 16px;
}

.mega-menu-header__left {
  display: flex;
  align-items: center;
  gap: 14px;
}

.mega-menu-header__icon-box {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(2, 132, 199, 0.12), rgba(14, 165, 233, 0.05));
  border: 1px solid rgba(2, 132, 199, 0.2);
  color: #0284c7;
  flex-shrink: 0;
}

.mega-menu-header__meta {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.mega-menu-header__title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.mega-menu-header__cat-title {
  font-size: 1.25rem;
  font-weight: 700;
  color: #0f172a;
  margin: 0;
  letter-spacing: -0.015em;
  line-height: 1.2;
}

.mega-menu-header__count {
  display: inline-flex;
  align-items: center;
  padding: 3px 10px;
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 9999px;
  background: #f1f5f9;
  color: #475569;
  border: 1px solid #e2e8f0;
  line-height: 1;
}

.mega-menu-header__subtitle {
  font-size: 0.82rem;
  color: #64748b;
  margin: 0;
  font-weight: 400;
  line-height: 1.3;
}

.mega-menu-header__right {
  display: flex;
  align-items: center;
}

.mega-menu-header__viewall {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  font-weight: 600;
  color: #0f172a !important;
  background: #f8fafc;
  border: 1px solid #cbd5e1;
  padding: 8px 16px;
  border-radius: 8px;
  text-decoration: none;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  white-space: nowrap;
}

.mega-menu-header__viewall svg {
  transition: transform 0.2s ease;
}

.mega-menu-header__viewall:hover {
  background: #0284c7;
  color: #ffffff !important;
  border-color: #0284c7;
  box-shadow: 0 4px 12px rgba(2, 132, 199, 0.25);
  transform: translateY(-1px);
}

.mega-menu-header__viewall:hover svg {
  transform: translateX(3px);
}

/* 5-Column Grid */
.mega-menu-products-grid.product-grid--5 {
  display: grid !important;
  grid-template-columns: repeat(5, minmax(0, 1fr)) !important;
  gap: 16px !important;
  margin-bottom: 20px !important;
}

.mega-menu-prod-col {
  min-width: 0;
  width: 100%;
}

.mega-menu-prod-col .product-card {
  width: 100% !important;
  height: 100% !important;
}

/* Modern Commercial Trust Footer Banner */
.mega-menu-footer--products {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px 20px;
  gap: 16px;
  margin-top: 6px;
}

.mega-menu-footer__features {
  display: flex;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
}

.mega-menu-footer__feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  color: #334155;
}

.mega-menu-footer__feature-item svg {
  color: #0284c7;
  flex-shrink: 0;
}

.mega-menu-footer__action {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.mega-menu-footer__quote-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #0f172a;
  color: #ffffff !important;
  padding: 8px 18px;
  border-radius: 8px;
  font-size: 0.82rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: all 0.2s ease;
  box-shadow: 0 2px 5px rgba(15, 23, 42, 0.15);
}

.mega-menu-footer__quote-btn svg {
  transition: transform 0.2s ease;
}

.mega-menu-footer__quote-btn:hover {
  background: #0284c7;
  transform: translateY(-1px);
  box-shadow: 0 4px 14px rgba(2, 132, 199, 0.3);
}

.mega-menu-footer__quote-btn:hover svg {
  transform: translateX(3px);
}

/* ── Cross-Device Responsiveness ── */
@media (max-width: 1279px) and (min-width: 992px) {
  .mega-menu-products-grid {
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 10px;
  }

  .mega-menu-prod-card {
    padding: 8px !important;
  }

  .mega-menu-prod-card__title {
    font-size: 0.8rem;
  }

  .mega-menu-footer__features {
    gap: 16px;
  }

  .mega-menu-footer__feature-item {
    font-size: 0.78rem;
  }
}

@media (max-width: 991px) {
  .mobile-menu__list li.is-open>.mega-menu-dropdown--products {
    display: block;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 16px 14px;
    margin-top: 10px;
  }

  .mobile-menu__list .mega-menu-header--products {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding-bottom: 12px;
    margin-bottom: 14px;
  }

  .mobile-menu__list .mega-menu-header__subtitle {
    display: none;
  }

  .mobile-menu__list .mega-menu-header__viewall {
    width: 100%;
    justify-content: center;
  }

  /* App-Style Horizontal Touch Scroll on Mobile Devices */
  .mobile-menu__list .mega-menu-products-grid {
    display: flex !important;
    gap: 12px !important;
    overflow-x: auto !important;
    scroll-snap-type: x mandatory !important;
    -webkit-overflow-scrolling: touch !important;
    padding: 4px 2px 14px 2px !important;
    margin-bottom: 14px !important;
  }

  .mobile-menu__list .mega-menu-products-grid::-webkit-scrollbar {
    height: 5px;
  }

  .mobile-menu__list .mega-menu-products-grid::-webkit-scrollbar-track {
    background: #f1f5f9;
    border-radius: 10px;
  }

  .mobile-menu__list .mega-menu-products-grid::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 10px;
  }

  .mobile-menu__list .mega-menu-prod-col {
    flex: 0 0 200px !important;
    min-width: 200px !important;
    scroll-snap-align: start !important;
  }

  .mobile-menu__list .mega-menu-footer--products {
    flex-direction: column;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
  }

  .mobile-menu__list .mega-menu-footer__features {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .mobile-menu__list .mega-menu-footer__quote-btn {
    width: 100%;
    justify-content: center;
  }
}

/* Action icons */
.header__actions {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
}

.header__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: var(--c-primary);
  position: relative;
  transition: background var(--dur) var(--ease);
}

.header__action:hover {
  background: var(--c-surface);
}

.header__cart-count {
  position: absolute;
  top: 2px;
  right: 2px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  font-size: 10px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Hamburger */
.header__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: var(--sp-2);
}

.header__hamburger-line {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--c-primary);
  border-radius: 2px;
  transition: all var(--dur) var(--ease);
}

/* ────────────────────────────────────────────────────────────────
   7. SEARCH MODAL (Modave — Bootstrap-style animation)
   ──────────────────────────────────────────────────────────────── */

/* Outer wrapper — overlay container */
.modal-search {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 60px 15px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
  overflow-x: hidden;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.modal-search.modal-search--active {
  opacity: 1;
  visibility: visible;
}

/* Semi-transparent backdrop */
.modal-search__backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 0;
  opacity: 0;
  transition: opacity 0.35s ease;
}

.modal-search--active .modal-search__backdrop {
  opacity: 1;
}

/* Dialog box — slide down + scale */
.modal-search__dialog {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1100px;
  transform: translateY(-40px) scale(0.97);
  opacity: 0;
  transition: transform 0.4s cubic-bezier(0.22, 0.61, 0.36, 1),
    opacity 0.35s ease;
}

.modal-search--active .modal-search__dialog {
  transform: translateY(0) scale(1);
  opacity: 1;
}

/* Content panel */
.modal-search__content {
  background: var(--c-white);
  border-radius: 12px;
  border: 0;
  padding: 40px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15),
    0 0 0 1px rgba(0, 0, 0, 0.04);
  max-height: calc(100vh - 120px);
  overflow: hidden;
}

/* Scrollable product area only */
.modal-search .js-search-results,
.modal-search .js-recent-products {
  overflow-y: auto;
  max-height: 420px;
  padding-right: 10px;
  margin-right: -10px;
  scrollbar-width: thin;
  scrollbar-color: var(--c-muted) transparent;
}

.modal-search .js-search-results::-webkit-scrollbar,
.modal-search .js-recent-products::-webkit-scrollbar {
  width: 5px;
}

.modal-search .js-search-results::-webkit-scrollbar-track,
.modal-search .js-recent-products::-webkit-scrollbar-track {
  background: transparent;
}

.modal-search .js-search-results::-webkit-scrollbar-thumb,
.modal-search .js-recent-products::-webkit-scrollbar-thumb {
  background: var(--c-muted);
  border-radius: 10px;
}

/* Header row */
.modal-search__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.modal-search__header h5 {
  font-size: 22px;
  font-weight: 600;
  line-height: 1.3;
  margin: 0;
  color: var(--c-primary);
}

/* Close button */
.modal-search__close {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--c-surface);
  border-radius: 50%;
  cursor: pointer;
  border: 0;
  padding: 0;
  color: var(--c-primary);
  flex-shrink: 0;
  transition: background-color 0.25s ease, transform 0.25s ease;
}

.modal-search__close:hover {
  background-color: var(--c-primary);
  color: var(--c-white);
  transform: rotate(90deg);
}

.modal-search__close svg {
  transition: color 0.25s ease;
}

.modal-search__close:hover svg {
  stroke: var(--c-white);
}

/* ── Search form ── */
.modal-search .form-search {
  position: relative;
  display: flex;
  align-items: center;
}

.modal-search .form-search fieldset {
  flex: 1;
  margin: 0;
  padding: 0;
  border: 0;
}

.modal-search .form-search input {
  width: 100%;
  height: 52px;
  border: 1px solid var(--c-line);
  border-radius: 4px;
  padding: 0 52px 0 18px;
  font-size: 16px;
  line-height: 52px;
  font-family: inherit;
  color: var(--c-primary);
  background: transparent;
  outline: none;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.modal-search .form-search input::placeholder {
  color: var(--c-muted);
  font-weight: 400;
}

.modal-search .form-search input:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(24, 24, 24, 0.06);
}

.modal-search .form-search__btn {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
  display: flex;
  transition: opacity 0.2s ease;
}

.modal-search .form-search__btn:hover {
  opacity: 0.55;
}

/* ── Featured keywords tags ── */
.modal-search__section-title {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
  color: var(--c-primary);
  margin: 0 0 16px;
}

ul.list-tags {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.list-tags a {
  display: inline-flex;
  align-items: center;
  padding: 6px 18px;
  border-radius: 60px;
  border: 1px solid var(--c-line);
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
  color: var(--c-primary);
  white-space: nowrap;
  transition: all 0.25s ease;
}

ul.list-tags a:hover {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}

/* ── Product grid inside modal ── */
.modal-search .tf-grid-layout {
  display: grid;
  gap: 20px;
  min-height: 60px;
}

.modal-search .tf-grid-layout.tf-col-2 {
  grid-template-columns: repeat(2, 1fr);
}

@media (min-width: 1200px) {

  .modal-search .tf-grid-layout.xl-col-5,
  .modal-search .tf-grid-layout.xl-col-4 {
    grid-template-columns: repeat(5, 1fr);
  }
}

/* Product cards in modal */
.modal-search .card-product {
  opacity: 0;
  transform: translateY(12px);
  animation: searchCardIn 0.4s ease forwards;
}

.modal-search .card-product:nth-child(1) {
  animation-delay: 0s;
}

.modal-search .card-product:nth-child(2) {
  animation-delay: 0.06s;
}

.modal-search .card-product:nth-child(3) {
  animation-delay: 0.12s;
}

.modal-search .card-product:nth-child(4) {
  animation-delay: 0.18s;
}

.modal-search .card-product:nth-child(5) {
  animation-delay: 0.24s;
}

.modal-search .card-product:nth-child(6) {
  animation-delay: 0.30s;
}

.modal-search .card-product:nth-child(7) {
  animation-delay: 0.36s;
}

.modal-search .card-product:nth-child(8) {
  animation-delay: 0.42s;
}

@keyframes searchCardIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.modal-search .card-product .card-product-wrapper {
  border-radius: 8px;
  overflow: hidden;
  background: var(--c-surface);
}

.modal-search .card-product .product-img {
  display: block;
  overflow: hidden;
}

.modal-search .card-product .product-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.modal-search .card-product:hover .product-img img {
  transform: scale(1.05);
}

.modal-search .card-product .card-product-info {
  padding-top: 12px;
}

.modal-search .card-product .card-product-info .title {
  font-size: 15px;
  line-height: 22px;
  font-weight: 500;
  color: var(--c-primary);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.25s ease;
}

.modal-search .card-product .card-product-info .title:hover {
  color: var(--c-secondary);
}

/* ── Loading spinner ── */
.modal-search .search-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 0;
  grid-column: 1 / -1;
}

.modal-search .search-loading::after {
  content: '';
  width: 30px;
  height: 30px;
  border: 2.5px solid var(--c-line);
  border-top-color: var(--c-primary);
  border-radius: 50%;
  animation: spin 0.7s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

/* ── No results ── */
.modal-search .search-no-results {
  text-align: center;
  padding: 40px 0;
  color: var(--c-muted);
  font-size: 16px;
  line-height: 26px;
  grid-column: 1 / -1;
}

/* ── Section fade transitions ── */
.modal-search .js-search-results>.tf-grid-layout,
.modal-search .js-recent-products>.tf-grid-layout {
  animation: sectionFadeIn 0.35s ease;
}

@keyframes sectionFadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ── Responsive ── */
@media (max-width: 991px) {
  .modal-search {
    padding: 30px 15px;
  }

  .modal-search__content {
    padding: 30px 24px;
    gap: 24px;
  }

  .modal-search__header h5 {
    font-size: 20px;
  }
}

@media (max-width: 575px) {
  .modal-search {
    padding: 15px 10px;
  }

  .modal-search__content {
    padding: 24px 16px;
    gap: 20px;
    border-radius: 8px;
    max-height: calc(100vh - 30px);
  }

  .modal-search__header h5 {
    font-size: 18px;
  }

  .modal-search .form-search input {
    height: 46px;
    font-size: 15px;
  }

  ul.list-tags a {
    padding: 5px 14px;
    font-size: 13px;
  }

  .modal-search .tf-grid-layout {
    gap: 12px;
  }

  .modal-search .card-product .card-product-info .title {
    font-size: 14px;
    line-height: 20px;
  }
}

/* ────────────────────────────────────────────────────────────────
   8. MOBILE MENU
   ──────────────────────────────────────────────────────────────── */

.mobile-menu {
  position: fixed;
  inset: 0;
  background: rgba(24, 24, 24, .5);
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur) var(--ease);
}

.mobile-menu--active {
  opacity: 1;
  visibility: visible;
}

.mobile-menu__panel {
  position: absolute;
  inset-block: 0;
  left: 0;
  width: 320px;
  max-width: 85vw;
  background: var(--c-white);
  transform: translateX(-100%);
  transition: transform .35s var(--ease);
  overflow-y: auto;
}

.mobile-menu--active .mobile-menu__panel {
  transform: translateX(0);
}

.mobile-menu__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-5);
  border-bottom: 1px solid var(--c-line);
}

.mobile-menu__close {
  color: var(--c-primary);
  padding: var(--sp-1);
}

.mobile-menu__nav {
  padding: var(--sp-5);
}

.mobile-menu__list li {
  border-bottom: 1px solid var(--c-line);
}

.mobile-menu__list>li>a {
  display: block;
  padding: 14px 0;
  font-size: var(--fs-base);
  font-weight: 500;
}

.mobile-menu__list .sub-menu {
  padding-left: var(--sp-4);
  display: none;
}

.mobile-menu__list li.is-open>.sub-menu {
  display: block;
}

.mobile-menu__list .sub-menu a {
  font-size: var(--fs-sm);
  font-weight: 400;
  color: var(--c-secondary);
}

/* ────────────────────────────────────────────────────────────────
   9. HERO SLIDER (MODERN & RESPONSIVE)
   ──────────────────────────────────────────────────────────────── */

.hero {
  position: relative;
  overflow: hidden;
  height: 70vh;
  min-height: 460px;
  max-height: 580px;
  background-color: var(--c-primary);
}

.hero__track {
  position: relative;
  width: 100%;
  height: 100%;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1),
    visibility 0.8s cubic-bezier(0.25, 1, 0.5, 1);
  z-index: 1;
}

.hero__slide--active {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}

.hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1);
  transition: transform 6s cubic-bezier(0.25, 1, 0.5, 1);
}

.hero__slide--active .hero__bg {
  transform: scale(1.06);
}

.hero__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.2);
}

.hero__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(15, 23, 42, 0.72) 0%, rgba(15, 23, 42, 0.45) 50%, rgba(15, 23, 42, 0.15) 100%);
  z-index: 2;
}

.hero__content {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  z-index: 3;
}

/* Staggered entrance animations on active slide */
.hero__slide--active .hero__subtitle {
  animation: heroFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.15s both;
}

.hero__slide--active .hero__title {
  animation: heroFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.3s both;
}

.hero__slide--active .hero__btn {
  animation: heroFadeInUp 0.6s cubic-bezier(0.16, 1, 0.3, 1) 0.45s both;
}

.hero__subtitle {
  display: inline-flex;
  align-items: center;
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #ffffff;
  margin-bottom: 18px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
}

.hero__title {
  font-size: clamp(26px, 3.8vw, 42px);
  line-height: 1.22;
  font-weight: 600;
  color: #ffffff;
  max-width: 580px;
  margin-bottom: 24px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

/* Hero Button - refined, modern & compact */
.hero__btn,
.btn--primary.btn--white.hero__btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 24px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.5;
  border-radius: 999px;
  background: #ffffff;
  color: var(--c-primary);
  border: 1.5px solid #ffffff;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.15);
}

.hero__btn:hover,
.btn--primary.btn--white.hero__btn:hover {
  background: var(--c-primary);
  color: #ffffff;
  border-color: var(--c-primary);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
}

.hero__btn svg {
  transition: transform 0.3s ease;
}

.hero__btn:hover svg {
  transform: translateX(4px);
}

/* Navigation arrows */
.hero__nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  transition: all 0.3s ease;
  cursor: pointer;
}

.hero__nav-btn:hover {
  background: #ffffff;
  color: var(--c-primary);
  transform: translateY(-50%) scale(1.08);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.js-hero-prev {
  left: 24px;
}

.js-hero-next {
  right: 24px;
}

/* Modern Dots Pill Bar */
.hero__dots {
  position: absolute;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 8px;
  z-index: 10;
  padding: 6px 14px;
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  padding: 0;
  border: none;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: all 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.hero__dot:hover {
  background: rgba(255, 255, 255, 0.8);
}

.hero__dot--active {
  background: #ffffff;
  width: 26px;
  border-radius: 999px;
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.5);
}

@keyframes heroFadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Breakpoints for Hero Slider */
@media (max-width: 991px) {
  .hero {
    height: 55vh;
    min-height: 380px;
    max-height: 460px;
  }

  .hero__title {
    max-width: 480px;
    margin-bottom: 20px;
  }

  .hero__nav-btn {
    width: 38px;
    height: 38px;
  }

  .js-hero-prev {
    left: 16px;
  }

  .js-hero-next {
    right: 16px;
  }
}

@media (max-width: 575px) {
  .hero {
    height: 48vh;
    min-height: 340px;
    max-height: 400px;
  }

  .hero__subtitle {
    font-size: 11px;
    padding: 4px 12px;
    margin-bottom: 12px;
  }

  .hero__title {
    font-size: 22px;
    line-height: 1.25;
    margin-bottom: 18px;
  }

  .hero__btn {
    padding: 9px 18px;
    font-size: 13px;
  }

  .hero__nav-btn {
    display: none;
  }

  .hero__dots {
    bottom: 14px;
    padding: 4px 10px;
  }
}

/* ────────────────────────────────────────────────────────────────
   10. MARQUEE
   ──────────────────────────────────────────────────────────────── */

.marquee {
  background: var(--c-surface);
  padding: 14px 0;
  overflow: hidden;
  position: relative;
}

.marquee--dark {
  background: var(--c-primary);
  color: var(--c-white);
}

.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 30s linear infinite;
}

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: var(--sp-2);
  white-space: nowrap;
  font-size: var(--fs-sm);
  font-weight: 500;
  padding: 0 30px;
  flex-shrink: 0;
}

.marquee--dark .marquee__item {
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .05em;
}

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

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

/* ────────────────────────────────────────────────────────────────
   11. COLLECTIONS GRID
   ──────────────────────────────────────────────────────────────── */

.collections-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--sp-4);
}

.collection-card {
  display: block;
  text-align: center;
  transition: transform var(--dur) var(--ease);
}

.collection-card:hover {
  transform: translateY(-4px);
}

.collection-card__image {
  aspect-ratio: 3/3.5;
  border-radius: var(--r-lg);
  overflow: hidden;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #e5e5e5;
}

.collection-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.collection-card:hover .collection-card__image img {
  transform: scale(1.05);
}

.collection-card__title {
  font-size: var(--fs-base);
  font-weight: 600;
}

/* ────────────────────────────────────────────────────────────────
   12. PRODUCT CARD (UNIFIED, MODERN & RESPONSIVE)
   ──────────────────────────────────────────────────────────────── */

.product-grid,
.woocommerce ul.products,
ul.products,
.products,
.tf-sw-product-grid {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
  gap: 20px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 30px 0 !important;
  float: none !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
}

.woocommerce ul.products li.product,
.product-grid>*,
.product-card-li {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  padding: 0;
  float: none !important;
  list-style: none !important;
  min-width: 0 !important;
  box-sizing: border-box !important;
}

.product-card,
.card-product {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  background: #ffffff;
  border-radius: 14px;
  border: 1px solid #e2e8f0;
  padding: 12px;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  box-sizing: border-box;
}

.product-card:hover,
.card-product:hover {
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.09);
  border-color: rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}

.product-card__media,
.card-product-wrapper {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
  background: #f0f4f8;
  aspect-ratio: 1 / 1;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 12px;
  border: 1px solid #f1f5f9;
}

.product-card__link,
.card-product-wrapper .product-img {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  text-decoration: none;
}

.product-card__media img,
.card-product-wrapper .product-img img {
  width: 100%;
  height: 100%;
  object-fit: contain !important;
  padding: 10px;
  box-sizing: border-box;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: block;
}

.product-card:hover .product-card__media img,
.card-product:hover .product-img img {
  transform: scale(1.06);
}

/* Badges */
.product-card__badge {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  z-index: 3;
}

.product-card__badge--sale {
  background: #f03e3e;
  color: #ffffff;
}

.product-card__badge--hot {
  background: #f0a750;
  color: #181818;
}

/* Quick View Hover action */
.product-card__actions,
.list-product-btn {
  position: absolute;
  top: 10px;
  right: 10px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 4;
}

.product-card:hover .product-card__actions,
.card-product:hover .list-product-btn {
  opacity: 1;
  transform: translateX(0);
}

.product-card__action,
.box-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.9);
  color: var(--c-primary, #181818);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: all 0.25s ease;
  text-decoration: none;
  cursor: pointer;
}

.product-card__action:hover,
.box-icon:hover {
  background: var(--c-primary, #181818);
  color: #ffffff;
  transform: scale(1.08);
}

/* Quote button overlay bar */
.product-card__quote-bar,
.btn-main-product {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 8px;
  transform: translateY(100%);
  transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  z-index: 4;
}

.product-card:hover .product-card__quote-bar,
.card-product:hover .btn-main-product {
  transform: translateY(0);
}

.btn--add-quote,
.btn-style-2 {
  width: 100%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 9px 14px;
  background: var(--c-primary, #181818);
  color: #ffffff !important;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border: none;
  cursor: pointer;
  transition: all 0.25s ease;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.15);
  text-decoration: none !important;
}

.btn--add-quote:hover,
.btn-style-2:hover {
  background: var(--c-accent, #e43131) !important;
  color: #ffffff !important;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
}

/* Title & Info */
.product-card__info,
.card-product-info {
  padding: 4px 2px 2px;
  min-width: 0;
  width: 100%;
}

.product-card__title,
.card-product-info .title,
.woocommerce ul.products li.product .woocommerce-loop-product__title {
  font-size: 14px !important;
  font-weight: 600 !important;
  color: var(--c-primary, #181818) !important;
  margin: 0 !important;
  line-height: 1.4 !important;
  display: block !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  width: 100% !important;
  max-width: 100% !important;
}

.product-card__title a,
.card-product-info .title,
.card-product-info a {
  color: var(--c-primary, #181818);
  text-decoration: none;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  transition: color 0.25s ease;
}

.product-card__title a:hover,
.card-product-info .title:hover,
.card-product-info a:hover {
  color: var(--c-accent, #e43131);
}

/* Responsive Grid Breakpoints */
@media (max-width: 1199px) and (min-width: 992px) {

  .product-grid,
  .woocommerce ul.products,
  ul.products,
  .products,
  .tf-sw-product-grid {
    grid-template-columns: repeat(4, 1fr) !important;
    gap: 16px !important;
  }
}

@media (max-width: 991px) and (min-width: 576px) {

  .product-grid,
  .woocommerce ul.products,
  ul.products,
  .products,
  .tf-sw-product-grid {
    grid-template-columns: repeat(3, 1fr) !important;
    gap: 16px !important;
  }
}

@media (max-width: 575px) {

  .product-grid,
  .woocommerce ul.products,
  ul.products,
  .products,
  .tf-sw-product-grid {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
  }

  .product-card,
  .card-product {
    padding: 8px;
  }

  .product-card__title,
  .card-product-info .title {
    font-size: 13px !important;
  }

  .btn--add-quote,
  .btn-style-2 {
    padding: 7px 10px;
    font-size: 11px;
  }
}

/* Placeholder */
.placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--c-line);
}

/* ────────────────────────────────────────────────────────────────
   13. BANNER CARDS
   ──────────────────────────────────────────────────────────────── */

.banner-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-8);
}

.banner-card {
  border-radius: var(--r-xl);
  overflow: hidden;
  position: relative;
  display: flex;
  min-height: 400px;
}

.banner-card__image {
  position: absolute;
  top: 0;
  right: 0;
  width: 55%;
  height: 100%;
}

.banner-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-card__content {
  position: relative;
  z-index: 2;
  padding: var(--sp-10);
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 55%;
  background: #f0f4f8;
}

.banner-card__title {
  font-size: var(--fs-3xl);
  font-weight: 500;
  margin-bottom: var(--sp-2);
}

.banner-card__subtitle {
  font-size: var(--fs-base);
  color: var(--c-secondary);
  margin-bottom: var(--sp-6);
}

/* ────────────────────────────────────────────────────────────────
   14. SPECIAL OFFER
   ──────────────────────────────────────────────────────────────── */

.section--offer {
  padding: 0;
}

.offer {
  position: relative;
  background-size: cover;
  background-position: center;
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.offer__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, .4);
}

.offer__content {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: var(--sp-20) var(--sp-5);
}

.offer__title {
  font-size: var(--fs-5xl);
  color: var(--c-white);
  font-weight: 500;
  margin-bottom: var(--sp-3);
}

.offer__subtitle {
  font-size: var(--fs-lg);
  color: rgba(255, 255, 255, .8);
  margin-bottom: var(--sp-8);
}

/* ────────────────────────────────────────────────────────────────
   15. FEATURES
   ──────────────────────────────────────────────────────────────── */

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-8);
}

.feature-box {
  text-align: center;
  padding: 30px var(--sp-5);
  border-radius: var(--r-xl);
  border: 1px solid var(--c-line);
  transition: all var(--dur) var(--ease);
}

.feature-box:hover {
  box-shadow: var(--shadow-md);
  border-color: transparent;
  transform: translateY(-4px);
}

.feature-box__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto var(--sp-4);
  color: var(--c-primary);
}

.feature-box__title {
  font-size: var(--fs-lg);
  font-weight: 600;
  margin-bottom: var(--sp-2);
}

.feature-box__text {
  font-size: var(--fs-sm);
  color: var(--c-secondary);
}

/* ────────────────────────────────────────────────────────────────
   16. TESTIMONIALS
   ──────────────────────────────────────────────────────────────── */

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.testimonial-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.testimonial-card__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 16px;
}

.testimonial-card__text {
  font-size: 15px;
  line-height: 26px;
  color: var(--c-secondary);
  font-style: italic;
  flex: 1;
  margin-bottom: 20px;
}

.testimonial-card__author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid var(--c-line);
  padding-top: 16px;
}

.testimonial-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  flex-shrink: 0;
}

.testimonial-card__name {
  display: block;
  font-size: 15px;
  font-weight: 700;
  color: var(--c-primary);
  font-style: normal;
}

.testimonial-card__role {
  display: block;
  font-size: 13px;
  color: var(--c-muted);
  line-height: 1.4;
}

@media (max-width: 991px) {
  .testimonial-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 575px) {
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-card {
    padding: 24px 20px;
  }
}

/* ────────────────────────────────────────────────────────────────
   17. SHOP INSTAGRAM GALLERY (Modave)
   ──────────────────────────────────────────────────────────────── */

.section--instagram {
  padding-bottom: 80px;
}

.heading-section {
  padding-bottom: 30px;
}

/* Heading */
.section--instagram .heading-section {
  margin-bottom: 40px;
}

.section--instagram .heading-section .heading {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 12px;
  text-transform: capitalize;
  color: var(--c-primary);
}

.section--instagram .heading-section .subheading {
  font-size: 16px;
  line-height: 26px;
  color: #64666c;
  margin: 0;
}

/* Grid */
.instagram-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

/* Gallery item */
.gallery-item {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

.gallery-item .img-style {
  display: block;
  width: 100%;
  overflow: hidden;
}

.gallery-item .img-style img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  display: block;
  transition: opacity 0.5s ease, transform 2s cubic-bezier(0, 0, 0.44, 1.18);
}

.gallery-item:hover .img-style img {
  transform: scale(1.06);
}

/* Dark overlay on hover */
.gallery-item.hover-overlay::before {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  background-color: rgba(0, 0, 0, 0.1);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s ease 0.1s, visibility 0.4s ease 0.1s;
}

.gallery-item.hover-overlay:hover::before {
  opacity: 1;
  visibility: visible;
}

/* Centered action icon */
.gallery-item__action {
  position: absolute;
  z-index: 5;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.7);
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--c-white);
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease, background-color 0.25s ease;
}

.gallery-item:hover .gallery-item__action {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, -50%) scale(1);
}

.gallery-item__action:hover {
  background: var(--c-primary);
  color: var(--c-white);
}

.gallery-item__action:hover svg {
  stroke: var(--c-white);
}

/* Tooltip above icon */
.gallery-item__tooltip {
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  padding: 2px 10px;
  border-radius: 3px;
  background: var(--c-primary);
  color: var(--c-white);
  font-size: 12px;
  line-height: 22px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease 0.15s, visibility 0.3s ease 0.15s;
}

.gallery-item__tooltip::after {
  content: '';
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 4px solid transparent;
  border-top-color: var(--c-primary);
}

.gallery-item:hover .gallery-item__tooltip {
  opacity: 1;
  visibility: visible;
}

/* ────────────────────────────────────────────────────────────────
   17b. ABOUT US PAGE (Modave)
   ──────────────────────────────────────────────────────────────── */

/* About page section spacing */
.about-section.flat-spacing {
  padding: 60px 0;
}

.about-features.flat-spacing {
  padding: 60px 0;
}

.about-why.flat-spacing {
  padding: 60px 0;
}

.about-testimonials.flat-spacing {
  padding: 60px 0;
}

.pb_0 {
  padding-bottom: 0 !important;
}

/* ── About Main (image + tabs) ── */
.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

.about-image {
  border-radius: 10px;
  overflow: hidden;
  background: var(--c-surface);
  min-height: 480px;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.about-image--branded {
  background: linear-gradient(145deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-image__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 30px;
  gap: 20px;
}

.about-image__logo {
  max-width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
  opacity: 0.95;
}

.about-image__tagline {
  font-size: 18px;
  font-weight: 500;
  line-height: 28px;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
  letter-spacing: 0.02em;
}

.about-image__since {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(255, 255, 255, 0.5);
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  padding-top: 16px;
}

/* Content */
.about-content__title {
  font-size: 28px;
  line-height: 1.35;
  font-weight: 600;
  color: var(--c-primary);
  margin-bottom: 28px;
}

/* Tabs */
.about-tabs {
  margin-bottom: 32px;
}

.about-tabs__menu {
  display: flex;
  gap: 0;
  list-style: none;
  padding: 0;
  margin: 0 0 24px;
  border-bottom: 1px solid var(--c-line);
}

.about-tabs__item {
  padding: 10px 20px;
  cursor: pointer;
  position: relative;
  transition: color 0.3s ease;
  white-space: nowrap;
}

.about-tabs__item::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0;
  right: 0;
  height: 2px;
  background: transparent;
  transition: background 0.3s ease;
}

.about-tabs__item.active {
  color: var(--c-primary);
}

.about-tabs__item.active::after {
  background: var(--c-primary);
}

.about-tabs__item:not(.active) {
  color: var(--c-secondary);
}

.about-tabs__item:hover {
  color: var(--c-primary);
}

.about-tabs__label {
  font-size: 14px;
  font-weight: 600;
  line-height: 22px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.about-tabs__panels {
  min-height: 100px;
}

.about-tabs__panel {
  display: none;
  animation: tabFadeIn 0.4s ease;
}

.about-tabs__panel.active {
  display: block;
}

.about-tabs__panel p {
  font-size: 16px;
  line-height: 28px;
  color: var(--c-secondary);
  margin: 0;
}

@keyframes tabFadeIn {
  from {
    opacity: 0;
    transform: translateY(6px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* CTA button */
.about-content .tf-btn.btn-fill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  background: var(--c-primary);
  color: var(--c-white);
  border: 2px solid var(--c-primary);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  transition: all 0.3s ease;
}

.about-content .tf-btn.btn-fill:hover {
  background: transparent;
  color: var(--c-primary);
}

/* ── Feature Icon Boxes ── */
.about-features {
  border-bottom: 1px solid var(--c-line);
}

.about-features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
}

.about-feature-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}

.about-feature-box__icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--c-surface);
  color: var(--c-primary);
}

.about-feature-box__content h6 {
  font-size: 16px;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 4px;
  color: var(--c-primary);
}

.about-feature-box__content p {
  font-size: 14px;
  line-height: 22px;
  color: var(--c-secondary);
  margin: 0;
}

/* ── Why Choose Us ── */
.about-why .heading-section {
  margin-bottom: 40px;
}

.about-why .heading-section .heading {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--c-primary);
}

.about-why .heading-section .subheading {
  font-size: 16px;
  line-height: 26px;
  color: #64666c;
  max-width: 600px;
  margin: 0 auto;
}

.about-why__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-why__card {
  background: var(--c-surface);
  border-radius: 10px;
  padding: 32px 28px;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.about-why__card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.about-why__card-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--c-primary);
}

.about-why__card h6 {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--c-primary);
}

.about-why__card p {
  font-size: 15px;
  line-height: 24px;
  color: var(--c-secondary);
  margin: 0;
}

/* ── Testimonials ── */
.about-testimonials .heading-section {
  margin-bottom: 40px;
}

.about-testimonials .heading-section .heading {
  font-size: 30px;
  line-height: 1.3;
  font-weight: 600;
  margin-bottom: 12px;
  color: var(--c-primary);
}

.about-testimonials .heading-section .subheading {
  font-size: 16px;
  line-height: 26px;
  color: #64666c;
  max-width: 560px;
  margin: 0 auto;
}

.about-testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.about-testimonial {
  border: 1px solid var(--c-line);
  border-radius: 10px;
  padding: 30px 28px;
  transition: box-shadow 0.3s ease;
}

.about-testimonial:hover {
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
}

.about-testimonial__stars {
  display: flex;
  gap: 3px;
  margin-bottom: 14px;
}

.about-testimonial__title {
  font-size: 17px;
  font-weight: 600;
  margin-bottom: 10px;
  color: var(--c-primary);
}

.about-testimonial__text {
  font-size: 15px;
  line-height: 25px;
  color: var(--c-secondary);
  margin-bottom: 16px;
  font-style: italic;
}

.about-testimonial__author {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-primary);
}

/* ── About page responsive ── */
@media (max-width: 991px) {
  .about-row {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image img {
    min-height: 300px;
  }

  .about-features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
  }

  .about-why__grid,
  .about-testimonials__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-why .heading-section .heading,
  .about-testimonials .heading-section .heading {
    font-size: 26px;
  }
}

@media (max-width: 575px) {

  .about-section.flat-spacing,
  .about-features.flat-spacing,
  .about-why.flat-spacing,
  .about-testimonials.flat-spacing {
    padding: 40px 0;
  }

  .about-content__title {
    font-size: 22px;
  }

  .about-tabs__menu {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .about-tabs__item {
    padding: 8px 14px;
  }

  .about-tabs__label {
    font-size: 12px;
  }

  .about-features__grid {
    grid-template-columns: 1fr;
  }

  .about-feature-box {
    gap: 12px;
  }
}

/* ────────────────────────────────────────────────────────────────
   17c. USER GUIDES
   ──────────────────────────────────────────────────────────────── */

.guide-section {
  padding: 60px 0;
}

.guide-section--alt {
  background: var(--c-surface);
}

/* Intro */
.guide-intro {
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.guide-intro__icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
}

.guide-intro h4 {
  font-size: 28px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 12px;
  color: var(--c-primary);
}

.guide-intro p {
  font-size: 16px;
  line-height: 28px;
  color: var(--c-secondary);
  margin: 0;
}

/* Block: image + content side-by-side */
.guide-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.guide-block--reverse .guide-block__content {
  order: 1;
}

.guide-block--reverse .guide-block__image {
  order: 0;
}

.guide-block__badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: 60px;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

.guide-block__content h4 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 16px;
  color: var(--c-primary);
}

.guide-block__content p {
  font-size: 15px;
  line-height: 26px;
  color: var(--c-secondary);
  margin-bottom: 20px;
}

.guide-block__image {
  border-radius: 12px;
  overflow: hidden;
  background: var(--c-white);
  padding: 24px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.guide-block__image img {
  width: 100%;
  height: auto;
  display: block;
}

/* Highlights */
.guide-block__highlights {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.guide-highlight {
  display: flex;
  gap: 12px;
  align-items: baseline;
  padding: 12px 16px;
  background: var(--c-white);
  border-radius: 8px;
  border-left: 3px solid var(--c-primary);
}

.guide-highlight strong {
  font-size: 14px;
  font-weight: 700;
  color: var(--c-primary);
  white-space: nowrap;
  min-width: 120px;
}

.guide-highlight span {
  font-size: 14px;
  color: var(--c-secondary);
}

/* Stats row */
.guide-stats {
  display: flex;
  gap: 24px;
  margin-top: 8px;
}

.guide-stat {
  text-align: center;
  flex: 1;
  padding: 20px 12px;
  background: var(--c-surface);
  border-radius: 10px;
}

.guide-stat__value {
  font-size: 32px;
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1.1;
  margin-bottom: 4px;
}

.guide-stat__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-secondary);
  text-transform: uppercase;
  letter-spacing: 0.03em;
}

/* Text section (two columns) */
.guide-text-section__header {
  text-align: center;
  margin-bottom: 36px;
}

.guide-text-section__header h4 {
  font-size: 28px;
  font-weight: 700;
  color: var(--c-primary);
}

.guide-text-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.guide-text-cols p {
  font-size: 15px;
  line-height: 26px;
  color: var(--c-secondary);
  margin-bottom: 16px;
}

/* Specs */
.guide-specs {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
}

.guide-spec {
  flex: 1;
  text-align: center;
  padding: 16px 10px;
  background: var(--c-white);
  border-radius: 8px;
  border: 1px solid var(--c-line);
}

.guide-spec__label {
  font-size: 12px;
  font-weight: 600;
  color: var(--c-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  display: block;
  margin-bottom: 4px;
}

.guide-spec__value {
  font-size: 18px;
  font-weight: 800;
  color: var(--c-primary);
}

/* Quote */
.guide-quote {
  font-size: 20px;
  line-height: 1.5;
  font-weight: 600;
  font-style: italic;
  color: var(--c-primary);
  border-left: 3px solid var(--c-primary);
  padding: 16px 0 16px 24px;
  margin: 0 0 24px;
}

/* Ratings */
.guide-ratings {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.guide-rating {
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 32px 28px;
  position: relative;
  overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.guide-rating:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  transform: translateY(-4px);
}

.guide-rating__badge {
  display: inline-block;
  padding: 5px 16px;
  border-radius: 60px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  color: var(--c-white);
}

.guide-rating--pro .guide-rating__badge {
  background: #16a34a;
}

.guide-rating--std .guide-rating__badge {
  background: #2563eb;
}

.guide-rating--eco .guide-rating__badge {
  background: #d97706;
}

.guide-rating--pro {
  border-top: 3px solid #16a34a;
}

.guide-rating--std {
  border-top: 3px solid #2563eb;
}

.guide-rating--eco {
  border-top: 3px solid #d97706;
}

.guide-rating h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--c-primary);
}

.guide-rating ul {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.guide-rating li {
  font-size: 14px;
  line-height: 22px;
  color: var(--c-secondary);
  padding: 8px 0;
  border-bottom: 1px solid var(--c-line);
}

.guide-rating li:last-child {
  border-bottom: 0;
}

.guide-rating li strong {
  color: var(--c-primary);
}

.guide-rating>p {
  font-size: 14px;
  line-height: 22px;
  color: var(--c-muted);
  margin: 0;
}

/* CTA */
.guide-section--cta {
  background: var(--c-primary);
  padding: 70px 0;
}

.guide-cta {
  text-align: center;
  max-width: 600px;
  margin: 0 auto;
}

.guide-cta h4 {
  font-size: 30px;
  font-weight: 700;
  color: var(--c-white);
  margin-bottom: 12px;
}

.guide-cta p {
  font-size: 16px;
  line-height: 26px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 28px;
}

.guide-cta__actions {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.guide-cta .tf-btn.btn-fill {
  background: var(--c-white);
  color: var(--c-primary);
  border-color: var(--c-white);
}

.guide-cta .tf-btn.btn-fill:hover {
  background: transparent;
  color: var(--c-white);
}

.guide-cta .tf-btn.btn-outline {
  border-color: rgba(255, 255, 255, 0.4);
  color: var(--c-white);
}

.guide-cta .tf-btn.btn-outline:hover {
  background: var(--c-white);
  color: var(--c-primary);
  border-color: var(--c-white);
}

/* Responsive */
@media (max-width: 991px) {
  .guide-block {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .guide-block--reverse .guide-block__content,
  .guide-block--reverse .guide-block__image {
    order: unset;
  }

  .guide-text-cols {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .guide-ratings {
    grid-template-columns: 1fr;
  }

  .guide-stats {
    flex-wrap: wrap;
  }
}

@media (max-width: 575px) {
  .guide-section {
    padding: 40px 0;
  }

  .guide-intro h4,
  .guide-block__content h4 {
    font-size: 22px;
  }

  .guide-specs {
    flex-direction: column;
  }

  .guide-block__highlights {
    gap: 8px;
  }

  .guide-highlight {
    flex-direction: column;
    gap: 4px;
  }

  .guide-cta h4 {
    font-size: 24px;
  }

  .guide-cta__actions {
    flex-direction: column;
  }
}

/* ────────────────────────────────────────────────────────────────
   17d. CONTACT PAGE
   ──────────────────────────────────────────────────────────────── */

.contact-section {
  padding: 60px 0 80px;
}

/* Info Cards Row */
.contact-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 50px;
}

.contact-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 28px 24px;
  text-align: center;
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: var(--c-primary);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
  transform: translateY(-2px);
}

.contact-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--c-surface);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  color: var(--c-primary);
  transition: all 0.3s ease;
}

.contact-card:hover .contact-card__icon {
  background: var(--c-primary);
  color: var(--c-white);
}

.contact-card__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 8px;
}

.contact-card__text {
  font-size: 14px;
  line-height: 22px;
  color: var(--c-secondary);
  margin: 0;
}

.contact-card__text a {
  color: var(--c-secondary);
  text-decoration: none;
  transition: color 0.2s;
}

.contact-card__text a:hover {
  color: var(--c-primary);
}

/* Main Grid */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}

/* Form Wrap */
.contact-form-wrap {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 36px;
}

.contact-form__heading {
  font-size: 24px;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 8px;
}

.contact-form__subtext {
  font-size: 15px;
  line-height: 24px;
  color: var(--c-muted);
  margin-bottom: 28px;
}

.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-form__field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-form__field:not(.contact-form__row .contact-form__field) {
  margin-bottom: 16px;
}

.contact-form__field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--c-primary);
}

.contact-form__field label .required {
  color: #e53e3e;
}

.contact-form__field input,
.contact-form__field select,
.contact-form__field textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  font-family: inherit;
  font-size: 15px;
  color: var(--c-primary);
  background: var(--c-white);
  transition: all 0.25s ease;
  outline: none;
}

.contact-form__field input:focus,
.contact-form__field select:focus,
.contact-form__field textarea:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.06);
}

.contact-form__field input.is-invalid,
.contact-form__field select.is-invalid,
.contact-form__field textarea.is-invalid {
  border-color: #e53e3e;
  box-shadow: 0 0 0 3px rgba(229, 62, 62, 0.1);
}

.contact-form__field select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%23666' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 40px;
}

.contact-form__field textarea {
  resize: vertical;
  min-height: 140px;
}

.contact-form__charcount {
  font-size: 12px;
  color: var(--c-muted);
  text-align: right;
  display: block;
  margin-top: 4px;
}

.contact-form__footer {
  margin-top: 4px;
}

.contact-form__submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 36px;
  background: var(--c-primary);
  color: var(--c-white);
  border: none;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s ease;
  min-width: 180px;
}

.contact-form__submit:hover:not(:disabled) {
  background: var(--c-secondary);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.contact-form__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.contact-form__submit-loader {
  animation: cfSpin 1s linear infinite;
}

@keyframes cfSpin {
  to {
    transform: rotate(360deg);
  }
}

.contact-form__feedback {
  margin-top: 16px;
  padding: 14px 18px;
  border-radius: 8px;
  font-size: 14px;
  line-height: 22px;
  font-weight: 500;
}

.contact-form__feedback--success {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  color: #166534;
}

.contact-form__feedback--error {
  background: #fef2f2;
  border: 1px solid #fecaca;
  color: #991b1b;
}

/* Map Wrap */
.contact-map-wrap {
  border: 1px solid var(--c-line);
  border-radius: 12px;
  overflow: hidden;
  background: var(--c-white);
}

.contact-map {
  height: 380px;
  background: var(--c-surface);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
}

.contact-map-info {
  padding: 20px 24px;
}

.contact-map-info h6 {
  font-size: 16px;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 4px;
}

.contact-map-info p {
  font-size: 14px;
  color: var(--c-secondary);
  line-height: 22px;
  margin-bottom: 8px;
}

.contact-map-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-primary);
  text-decoration: none;
  transition: gap 0.2s ease;
}

.contact-map-link:hover {
  gap: 10px;
}

@media (max-width: 991px) {
  .contact-cards {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 575px) {
  .contact-section {
    padding: 40px 0 60px;
  }

  .contact-cards {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-form-wrap {
    padding: 24px 20px;
  }

  .contact-form__row {
    grid-template-columns: 1fr;
  }

  .contact-form__heading {
    font-size: 20px;
  }

  .contact-map {
    height: 260px;
  }
}

/* ────────────────────────────────────────────────────────────────
   17d-b. LEGAL PAGES (FAQ, Terms, Privacy)
   ──────────────────────────────────────────────────────────────── */

.legal-section {
  padding: 60px 0 80px;
}

.legal-section .container {
  max-width: 860px;
}

.legal-card {
  background: var(--c-white);
  border-radius: 12px;
  border: 1px solid var(--c-line);
  padding: 40px;
}

.legal-updated {
  font-size: 13px;
  color: var(--c-muted);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 20px;
}

.legal-intro {
  margin-bottom: 32px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-line);
}

.legal-intro p {
  font-size: 16px;
  line-height: 28px;
  color: var(--c-secondary);
  margin: 0;
}

.legal-block {
  margin-bottom: 28px;
}

.legal-block h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 12px;
}

.legal-block p {
  font-size: 15px;
  line-height: 26px;
  color: var(--c-secondary);
  margin-bottom: 12px;
}

.legal-block p:last-child {
  margin-bottom: 0;
}

.legal-block ul {
  list-style: none;
  padding: 0;
  margin: 12px 0;
}

.legal-block li {
  font-size: 15px;
  line-height: 26px;
  color: var(--c-secondary);
  padding: 6px 0 6px 20px;
  position: relative;
}

.legal-block li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--c-primary);
}

/* FAQ Accordion */
.faq-group {
  margin-bottom: 36px;
}

.faq-group__title {
  font-size: 22px;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--c-primary);
  display: inline-block;
}

.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.faq-item {
  border: 1px solid var(--c-line);
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}

.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.faq-item.active {
  border-color: var(--c-primary);
}

.faq-item__question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 18px 22px;
  border: none;
  background: var(--c-white);
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--c-primary);
  text-align: left;
  gap: 16px;
  line-height: 1.5;
  transition: background 0.2s ease;
}

.faq-item__question:hover {
  background: var(--c-surface);
}

.faq-item.active .faq-item__question {
  background: var(--c-surface);
}

.faq-item__icon {
  flex-shrink: 0;
  transition: transform 0.3s ease;
  color: var(--c-muted);
}

.faq-item.active .faq-item__icon {
  transform: rotate(180deg);
  color: var(--c-primary);
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 22px;
}

.faq-item.active .faq-item__answer {
  max-height: 500px;
  padding: 0 22px 20px;
}

.faq-item__answer p {
  font-size: 15px;
  line-height: 26px;
  color: var(--c-secondary);
  margin: 0;
}

@media (max-width: 575px) {
  .legal-card {
    padding: 24px 20px;
  }

  .faq-item__question {
    padding: 14px 16px;
    font-size: 14px;
  }

  .faq-item__answer {
    padding: 0 16px;
  }

  .faq-item.active .faq-item__answer {
    padding: 0 16px 16px;
  }

  .faq-group__title {
    font-size: 18px;
  }

  .legal-block h5 {
    font-size: 16px;
  }
}

/* ────────────────────────────────────────────────────────────────
   17e. ROI CALCULATOR
   ──────────────────────────────────────────────────────────────── */

.roi-section {
  padding: 60px 0 80px;
}

.roi-card {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 40px;
  margin-bottom: 30px;
}

.roi-card__header h4 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 8px;
  color: var(--c-primary);
}

.roi-card__header p {
  font-size: 15px;
  line-height: 24px;
  color: var(--c-secondary);
  margin: 0;
}

.roi-card__divider {
  height: 1px;
  background: var(--c-line);
  margin: 32px 0;
}

/* Form fields */
.roi-form__group {
  margin-bottom: 20px;
}

.roi-form__group--row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.roi-form__group fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.roi-form__group label,
.roi-param label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: var(--c-primary);
  margin-bottom: 6px;
}

.roi-form__group input,
.roi-form__group select,
.roi-param input {
  width: 100%;
  height: 48px;
  border: 1px solid var(--c-line);
  border-radius: 6px;
  padding: 0 14px;
  font-size: 15px;
  font-family: inherit;
  color: var(--c-primary);
  background: var(--c-white);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  outline: none;
}

.roi-form__group input:focus,
.roi-form__group select:focus,
.roi-param input:focus {
  border-color: var(--c-primary);
  box-shadow: 0 0 0 3px rgba(24, 24, 24, 0.06);
}

.roi-form__group input::placeholder,
.roi-param input::placeholder {
  color: var(--c-muted);
}

/* Parameter rows */
.roi-params__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.roi-param {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  background: var(--c-surface);
  border-radius: 8px;
  padding: 16px;
  transition: box-shadow 0.25s ease;
}

.roi-param:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.roi-param__num {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: 50%;
  font-size: 13px;
  font-weight: 700;
  margin-top: 2px;
}

.roi-param__body {
  flex: 1;
  min-width: 0;
}

.roi-param__body label {
  font-size: 13px;
  font-weight: 500;
  margin-bottom: 8px;
}

.roi-param input {
  height: 42px;
  font-size: 14px;
}

/* Notes */
.roi-notes {
  margin-top: 24px;
  padding: 16px 20px;
  background: #fffbe6;
  border: 1px solid #f0e6b8;
  border-radius: 8px;
}

.roi-notes h6 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--c-primary);
}

.roi-notes ul {
  list-style: disc;
  padding-left: 18px;
  margin: 0;
}

.roi-notes li {
  font-size: 14px;
  line-height: 22px;
  color: var(--c-secondary);
}

/* Actions */
.roi-form__actions {
  margin-top: 32px;
  text-align: center;
}

.roi-form__actions--split {
  display: flex;
  gap: 16px;
  justify-content: center;
}

.tf-btn.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 34px;
  background: transparent;
  color: var(--c-primary);
  border: 2px solid var(--c-primary);
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tf-btn.btn-outline:hover {
  background: var(--c-primary);
  color: var(--c-white);
}

/* ── Results ── */
.roi-results__branding {
  text-align: center;
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--c-line);
}

.roi-results__branding img {
  max-width: 220px;
  height: auto;
}

.roi-results__header {
  margin-bottom: 30px;
}

.roi-results__header h4 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--c-primary);
  text-align: center;
}

.roi-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  justify-content: center;
  font-size: 14px;
  color: var(--c-secondary);
}

.roi-meta span {
  font-weight: 400;
}

.roi-meta strong {
  font-weight: 600;
  color: var(--c-primary);
}

/* KPI Cards */
.roi-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-bottom: 40px;
}

.roi-kpi {
  text-align: center;
  padding: 28px 16px;
  border-radius: 10px;
  border: 1px solid var(--c-line);
}

.roi-kpi__label {
  font-size: 13px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--c-secondary);
  margin-bottom: 10px;
}

.roi-kpi__value {
  font-size: 36px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4px;
}

.roi-kpi__unit {
  font-size: 13px;
  font-weight: 500;
  color: var(--c-muted);
}

.roi-kpi--primary {
  background: #f0f4ff;
}

.roi-kpi--primary .roi-kpi__value {
  color: #2563eb;
}

.roi-kpi--success {
  background: #ecfdf5;
}

.roi-kpi--success .roi-kpi__value {
  color: #16a34a;
}

.roi-kpi--warning {
  background: #fffbeb;
}

.roi-kpi--warning .roi-kpi__value {
  color: #d97706;
}

.roi-kpi--info {
  background: #fdf2f8;
}

.roi-kpi--info .roi-kpi__value {
  color: #db2777;
}

/* Tables */
.roi-tables-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 32px;
}

.roi-table-wrap h5 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 16px;
  color: var(--c-primary);
}

.roi-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
  line-height: 20px;
}

.roi-table thead th {
  background: var(--c-primary);
  color: var(--c-white);
  padding: 10px 14px;
  text-align: center;
  font-weight: 600;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.roi-table thead th:first-child {
  text-align: left;
}

.roi-table tbody td,
.roi-table tbody th {
  padding: 10px 14px;
  border-bottom: 1px solid var(--c-line);
  text-align: center;
  font-weight: 500;
}

.roi-table tbody td:first-child {
  text-align: left;
  font-weight: 400;
  color: var(--c-secondary);
}

.roi-table__highlight {
  background: var(--c-surface);
}

.roi-table__highlight td:first-child {
  font-weight: 600 !important;
  color: var(--c-primary) !important;
}

.roi-table__value--success {
  color: #16a34a !important;
  font-weight: 700 !important;
}

.roi-table__value--danger {
  color: #dc2626 !important;
  font-weight: 700 !important;
}

/* Payback badge */
.roi-payback-badge {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  padding: 14px 20px;
  background: linear-gradient(135deg, #16a34a, #22c55e);
  border-radius: 8px;
  color: var(--c-white);
}

.roi-payback-badge span {
  font-size: 15px;
  font-weight: 600;
}

.roi-payback-badge strong {
  font-size: 20px;
  font-weight: 800;
}

/* Environmental */
.roi-env {
  margin-bottom: 32px;
}

.roi-env h5 {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 6px;
  color: var(--c-primary);
  text-align: center;
}

.roi-env__note {
  font-size: 13px;
  color: var(--c-muted);
  text-align: center;
  margin-bottom: 24px;
}

/* Chart */
.roi-chart-section {
  margin: 32px 0;
}

.roi-chart-section h5 {
  font-size: 18px;
  font-weight: 700;
  color: var(--c-primary);
  margin-bottom: 20px;
}

.roi-chart-wrap {
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  padding: 24px;
  height: 420px;
  position: relative;
}

.roi-chart-wrap canvas {
  width: 100% !important;
  height: 100% !important;
}

.roi-env__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}

.roi-env__card {
  text-align: center;
  padding: 24px 12px;
  border: 1px solid var(--c-line);
  border-radius: 10px;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.roi-env__card:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.06);
  transform: translateY(-3px);
}

.roi-env__card svg {
  color: #16a34a;
  margin-bottom: 12px;
}

.roi-env__label {
  font-size: 13px;
  font-weight: 600;
  color: var(--c-secondary);
  margin-bottom: 8px;
  line-height: 18px;
}

.roi-env__value {
  font-size: 22px;
  font-weight: 800;
  color: var(--c-primary);
  line-height: 1.2;
}

.roi-env__sub {
  font-size: 13px;
  color: var(--c-muted);
  margin-top: 2px;
}

/* Print */
@media print {

  .header,
  .topbar,
  .footer,
  .page-header,
  .roi-form__actions,
  #roiInput {
    display: none !important;
  }

  .roi-section {
    padding: 0;
  }

  .roi-card {
    border: none;
    padding: 0;
    box-shadow: none;
  }

  .roi-kpi {
    border: 1px solid #ccc;
  }

  .roi-env__card {
    border: 1px solid #ccc;
  }
}

/* Responsive */
@media (max-width: 991px) {
  .roi-card {
    padding: 28px 24px;
  }

  .roi-params__grid {
    grid-template-columns: 1fr;
  }

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

  .roi-tables-row {
    grid-template-columns: 1fr;
  }

  .roi-env__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 575px) {
  .roi-section {
    padding: 40px 0 50px;
  }

  .roi-card {
    padding: 20px 16px;
  }

  .roi-card__header h4 {
    font-size: 20px;
  }

  .roi-form__group--row {
    grid-template-columns: 1fr;
  }

  .roi-kpi-grid {
    grid-template-columns: 1fr 1fr;
  }

  .roi-kpi__value {
    font-size: 28px;
  }

  .roi-env__grid {
    grid-template-columns: 1fr 1fr;
  }

  .roi-chart-wrap {
    height: 300px;
    padding: 16px;
  }

  .roi-form__actions--split {
    flex-direction: column;
  }
}

/* ────────────────────────────────────────────────────────────────
   18. FOOTER
   ──────────────────────────────────────────────────────────────── */

.footer {
  background: var(--c-primary);
  color: rgba(255, 255, 255, .7);
}

.footer__main {
  padding: var(--sp-20) 0 50px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
  gap: var(--sp-10);
}

.footer__logo {
  margin-bottom: var(--sp-4);
}

.footer__logo .custom-logo {
  filter: brightness(0) invert(1);
}

.footer__desc {
  font-size: var(--fs-sm);
  line-height: 1.7;
  margin-bottom: var(--sp-5);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, .7);
  transition: color var(--dur) var(--ease);
}

.footer__contact-item .icon {
  opacity: .6;
  flex-shrink: 0;
}

.footer__contact-item:hover {
  color: var(--c-white);
}

.footer__heading {
  font-size: var(--fs-lg);
  font-weight: 600;
  color: var(--c-white);
  margin-bottom: var(--sp-5);
}

.footer__menu li {
  margin-bottom: 10px;
}

.footer__menu a {
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, .65);
  transition: all var(--dur) var(--ease);
}

.footer__menu a:hover {
  color: var(--c-white);
  padding-left: 4px;
}

.footer__newsletter-text {
  font-size: var(--fs-sm);
  margin-bottom: var(--sp-4);
}

.footer__newsletter-msg {
  margin-top: var(--sp-2);
  font-size: var(--fs-xs);
  line-height: 1.4;
  color: rgba(255, 255, 255, .75);
}

.footer__newsletter-field {
  display: flex;
  background: rgba(255, 255, 255, .1);
  border-radius: var(--r-full);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, .15);
}

.footer__newsletter-field input {
  flex: 1;
  padding: 12px 18px;
  background: transparent;
  border: none;
  color: var(--c-white);
  font-size: var(--fs-sm);
  outline: none;
}

.footer__newsletter-field input::placeholder {
  color: rgba(255, 255, 255, .4);
}

.footer__newsletter-field button {
  padding: 0;
  background: var(--c-white);
  color: var(--c-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--dur) var(--ease);
}

.footer__newsletter-field button:hover {
  background: rgba(255, 255, 255, .85);
}

.footer__social {
  display: flex;
  gap: 10px;
  margin-top: var(--sp-5);
}

.footer__social-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .7);
  transition: all var(--dur) var(--ease);
}

.footer__social-icon:hover {
  background: var(--c-white);
  color: var(--c-primary);
  border-color: var(--c-white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .1);
  padding: var(--sp-5) 0;
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.footer__copyright {
  font-size: 13px;
  color: rgba(255, 255, 255, .5);
}

.footer__payments {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
}

.footer__payments-label {
  color: rgba(255, 255, 255, .5);
}

.footer__payments-badge {
  padding: 4px 12px;
  background: rgba(255, 255, 255, .1);
  border-radius: var(--r-sm);
  font-size: var(--fs-xs);
  font-weight: 500;
  color: rgba(255, 255, 255, .7);
}

/* ────────────────────────────────────────────────────────────────
   19. SCROLL TO TOP
   ──────────────────────────────────────────────────────────────── */

.scroll-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--c-primary);
  color: var(--c-white);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99;
  opacity: 0;
  visibility: hidden;
  transition: all var(--dur) var(--ease);
  box-shadow: var(--shadow-md);
}

.scroll-top--visible {
  opacity: 1;
  visibility: visible;
}

.scroll-top:hover {
  transform: translateY(-4px);
  background: var(--c-secondary);
}

/* ────────────────────────────────────────────────────────────────
   20. TOAST NOTIFICATION
   ──────────────────────────────────────────────────────────────── */

.toast {
  position: fixed;
  top: 90px;
  right: 20px;
  background: #0f172a;
  color: var(--c-white);
  padding: 14px 20px;
  border-radius: 10px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.25), 0 8px 10px -6px rgba(0, 0, 0, 0.2);
  z-index: 99999;
  transform: translateX(120%);
  transition: transform .35s cubic-bezier(0.16, 1, 0.3, 1), opacity .35s ease;
  font-size: var(--fs-sm);
  font-weight: 500;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 380px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  pointer-events: auto;
}

.toast--visible {
  transform: translateX(0);
}

.toast--success {
  background: #064e3b;
  border-color: #059669;
  color: #ecfdf5;
}

.toast--success svg {
  color: #34d399;
  flex-shrink: 0;
}

.toast--warning {
  background: #78350f;
  border-color: #d97706;
  color: #fffbeb;
}

.toast--warning svg {
  color: #fbbf24;
  flex-shrink: 0;
}

.toast--error {
  background: #7f1d1d;
  border-color: #dc2626;
  color: #fef2f2;
}

.toast--error svg {
  color: #f87171;
  flex-shrink: 0;
}

.toast--info {
  background: #1e3a8a;
  border-color: #2563eb;
  color: #eff6ff;
}

.toast--info svg {
  color: #60a5fa;
  flex-shrink: 0;
}

/* ────────────────────────────────────────────────────────────────
   21. PAGE TEMPLATES
   ──────────────────────────────────────────────────────────────── */

.site-main {
  min-height: 60vh;
}

.page-header {
  background: linear-gradient(87deg, #fbf1f1 3.59%, #f4f1fa 95.02%);
  padding: 60px 0 80px;
  text-align: center;
  margin-bottom: 0;
}

.page-header__title {
  font-size: 28px;
  font-weight: 500;
  line-height: 38px;
  margin-bottom: 12px;
  color: var(--c-primary);
}

/* Breadcrumbs */
ul.breadcrumbs {
  display: flex;
  gap: 4px;
  align-items: center;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

ul.breadcrumbs li {
  color: var(--c-secondary);
  font-size: 16px;
  line-height: 22px;
}

ul.breadcrumbs li a {
  color: var(--c-secondary);
  transition: color 0.3s ease;
}

ul.breadcrumbs li a:hover {
  color: var(--c-primary);
}

.breadcrumb-sep {
  color: var(--c-secondary);
  margin: 0 2px;
  font-size: 12px;
}

.page-content {
  max-width: 1320px;
  margin: 0 auto;
  padding: var(--sp-10) var(--sp-4) var(--sp-20);
}

.page-content p {
  margin-bottom: var(--sp-5);
  line-height: 1.8;
}

/* WooCommerce pages — full-width content, Modave gradient hero */
.woocommerce-cart .page-header,
.woocommerce-checkout .page-header {
  background: linear-gradient(87deg, #fbf1f1 3.59%, #f4f1fa 95.02%);
  padding: 60px 0 80px;
  margin-bottom: 0;
}

.woocommerce-cart .page-header__title,
.woocommerce-checkout .page-header__title {
  font-size: 28px;
  font-weight: 500;
  line-height: 38px;
  margin-bottom: 0;
}

.woocommerce-cart .page-content,
.woocommerce-checkout .page-content {
  max-width: 100%;
  padding: 0;
}

/* 404 */
.error-404 {
  text-align: center;
  padding: 120px var(--sp-5);
}

.error-404__code {
  font-size: 120px;
  font-weight: 700;
  color: var(--c-line);
  line-height: 1;
}

.error-404__title {
  font-size: var(--fs-3xl);
  margin: var(--sp-5) 0 var(--sp-3);
}

.error-404__text {
  color: var(--c-secondary);
  margin-bottom: var(--sp-8);
}

/* Blog grid */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-8);
  padding-bottom: var(--sp-16);
}

.blog-card__image {
  aspect-ratio: 16/10;
  overflow: hidden;
  border-radius: var(--r-lg);
  margin-bottom: var(--sp-4);
}

.blog-card__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s var(--ease);
}

.blog-card:hover .blog-card__image img {
  transform: scale(1.05);
}

.blog-card__meta {
  font-size: 13px;
  color: var(--c-muted);
  display: flex;
  gap: var(--sp-3);
  margin-bottom: var(--sp-2);
}

.blog-card__title {
  font-size: var(--fs-xl);
  font-weight: 500;
  margin-bottom: var(--sp-2);
}

.blog-card__title a:hover {
  color: var(--c-secondary);
}

/* Single post */
.single-post__header {
  text-align: center;
  padding: 60px 0 30px;
}

.single-post__header h1 {
  font-size: 36px;
  max-width: 700px;
  margin: 0 auto;
}

.single-post__body {
  max-width: 800px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.8;
  padding-bottom: var(--sp-20);
}

.single-post__body p {
  margin-bottom: var(--sp-6);
}

.single-post__body img {
  border-radius: var(--r-lg);
  margin: var(--sp-6) 0;
}

/* ────────────────────────────────────────────────────────────────
   22. WOOCOMMERCE OVERRIDES
   ──────────────────────────────────────────────────────────────── */

.woo-wrapper {
  padding: 60px 0;
}

/* ── WooCommerce Base (replaces dequeued woocommerce.css) ─────── */

.woocommerce {
  font-family: "Kumbh Sans", sans-serif;
}

.woocommerce-notices-wrapper {
  margin-bottom: 0;
}

.woocommerce .woocommerce-info,
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-error {
  padding: 14px 20px;
  margin-bottom: 20px;
  border-radius: 8px;
  font-size: 16px;
  line-height: 22px;
  border-left: 4px solid;
}

.woocommerce .woocommerce-message {
  background-color: #f0faf0;
  border-color: var(--c-success);
  color: #155724;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.woocommerce .woocommerce-info {
  background-color: #e8f4fd;
  border-color: var(--c-info);
  color: #0c5460;
}

.woocommerce .woocommerce-error {
  background-color: #fdf0f0;
  border-color: var(--c-danger);
  color: #721c24;
  list-style: none;
}

.woocommerce .woocommerce-error li {
  list-style: none;
}

.woocommerce .woocommerce-message a,
.woocommerce .woocommerce-info a,
.woocommerce .woocommerce-error a {
  font-weight: 600;
  text-decoration: underline;
}

.woocommerce .woocommerce-result-count {
  font-size: 16px;
  line-height: 22px;
  color: var(--c-secondary);
  margin: 0;
  padding: 0;
}

.woocommerce .woocommerce-ordering {
  margin: 0;
}

.woocommerce .woocommerce-ordering select {
  border: 1px solid var(--c-line);
  border-radius: 8px;
  padding: 8px 14px;
  font-size: 16px;
  line-height: 22px;
  font-family: "Kumbh Sans", sans-serif;
  color: var(--c-primary);
  background: var(--c-white);
  cursor: pointer;
  outline: none;
  appearance: auto;
  min-width: 160px;
}

.woocommerce .woocommerce-ordering select:hover,
.woocommerce .woocommerce-ordering select:focus {
  border-color: var(--c-primary);
}

/* WC cart table & checkout base styles */
.woocommerce table.shop_table {
  width: 100%;
  border-collapse: collapse;
  border: 0;
  margin: 0 0 24px;
}

.woocommerce table.shop_table th,
.woocommerce table.shop_table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--c-line);
  text-align: left;
  font-size: 16px;
  line-height: 22px;
  vertical-align: middle;
}

.woocommerce table.shop_table thead th {
  font-weight: 600;
  font-size: 16px;
  border-bottom: 2px solid var(--c-line);
}

.woocommerce table.shop_table img {
  width: 60px;
  height: auto;
  border-radius: 8px;
}

.woocommerce table.shop_table .product-remove a {
  color: var(--c-danger);
  font-size: 18px;
  font-weight: 700;
}

.woocommerce table.shop_table .product-name a {
  font-weight: 500;
  color: var(--c-primary);
}

.woocommerce table.shop_table .product-name a:hover {
  color: var(--c-secondary);
}

.woocommerce table.shop_table input[type="number"] {
  width: 60px;
  padding: 6px 10px;
  border: 1px solid var(--c-line);
  border-radius: 6px;
  text-align: center;
  font-size: 16px;
}

.woocommerce .button,
.woocommerce button.button,
.woocommerce input.button,
.woocommerce a.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background-color: var(--c-primary);
  color: var(--c-white);
  font-size: 16px;
  line-height: 22px;
  font-weight: 600;
  font-family: "Kumbh Sans", sans-serif;
  border: 2px solid var(--c-primary);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.woocommerce .button:hover,
.woocommerce button.button:hover,
.woocommerce input.button:hover,
.woocommerce a.button:hover {
  background-color: transparent;
  color: var(--c-primary);
}

.woocommerce .button.alt,
.woocommerce button.button.alt,
.woocommerce input.button.alt {
  background-color: var(--c-primary);
  color: var(--c-white);
}

.woocommerce .quantity {
  display: inline-flex;
  align-items: center;
}

.woocommerce .quantity .qty {
  width: 60px;
  text-align: center;
  padding: 6px;
  border: 1px solid var(--c-line);
  border-radius: 6px;
  font-size: 16px;
}

/* ── Shop Breadcrumb Hero ─────────────────────────────────────── */

.tf-breadcrumb-shop {
  position: relative;
  background: var(--c-primary);
  background-size: cover;
  background-position: center right;
  padding: 50px 0;
  text-align: center;
  overflow: hidden;
  min-height: 140px;
  display: flex;
  align-items: center;
}

.tf-breadcrumb-shop__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 24, 24, .92) 0%, rgba(24, 24, 24, .7) 50%, rgba(24, 24, 24, .45) 100%);
  z-index: 1;
}

.tf-breadcrumb-shop .container {
  position: relative;
  z-index: 2;
}

.tf-breadcrumb-shop__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.tf-breadcrumb-shop__title {
  font-size: 40px;
  font-weight: 500;
  line-height: 48px;
  color: var(--c-white);
}

.tf-breadcrumb-shop__path {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 16px;
  line-height: 22px;
  color: rgba(255, 255, 255, .6);
}

.tf-breadcrumb-shop__path a {
  color: rgba(255, 255, 255, .6);
  transition: color var(--dur) var(--ease);
}

.tf-breadcrumb-shop__path a:hover {
  color: var(--c-white);
}

.tf-breadcrumb-shop__path .breadcrumb-sep {
  color: rgba(255, 255, 255, .35);
  font-size: 12px;
}

/* ── Shop Content Spacing ─────────────────────────────────────── */

.flat-spacing-shop {
  padding-top: 30px;
  padding-bottom: 80px;
}

/* ── Shop Toolbar (Modave tf-shop-control) ────────────────────── */

.tf-shop-control {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-bottom: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--c-line);
}

.tf-control-filter .woocommerce-result-count {
  font-size: 15px;
  line-height: 22px;
  color: var(--c-secondary);
  margin: 0;
}

/* Category filter pills */
.tf-cat-filter {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tf-cat-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 18px;
  border: 1px solid var(--c-line);
  border-radius: 60px;
  background: var(--c-white);
  color: var(--c-secondary);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.25s ease;
  white-space: nowrap;
}

.tf-cat-pill:hover {
  border-color: var(--c-primary);
  color: var(--c-primary);
}

.tf-cat-pill.active {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-white);
}

.tf-cat-pill__count {
  font-size: 12px;
  font-weight: 600;
  background: rgba(0, 0, 0, 0.06);
  border-radius: 20px;
  padding: 1px 7px;
  line-height: 18px;
}

.tf-cat-pill.active .tf-cat-pill__count {
  background: rgba(255, 255, 255, 0.2);
}

/* AJAX Pagination */
.tf-ajax-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--c-line);
}

.tf-page-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 40px;
  height: 40px;
  padding: 0 10px;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  background: var(--c-white);
  color: var(--c-secondary);
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.25s ease;
}

.tf-page-btn:hover:not([disabled]) {
  border-color: var(--c-primary);
  color: var(--c-primary);
}

.tf-page-btn.active {
  background: var(--c-primary);
  border-color: var(--c-primary);
  color: var(--c-white);
}

.tf-page-btn[disabled] {
  opacity: 0.35;
  cursor: not-allowed;
}

.tf-page-dots {
  font-size: 14px;
  color: var(--c-muted);
  padding: 0 4px;
}

.tf-page-prev,
.tf-page-next {
  min-width: 40px;
}

/* Loading state for grid */
.woocommerce ul.products {
  transition: opacity 0.3s ease;
}

.no-products-found {
  grid-column: 1 / -1;
  text-align: center;
  padding: 60px 20px;
  color: var(--c-muted);
  font-size: 16px;
  list-style: none;
}

/* ── Product Grid (WC archive — exact Modave values) ──────────── */

.woocommerce ul.products {
  display: grid !important;
  grid-template-columns: repeat(4, 1fr) !important;
  column-gap: 15px !important;
  row-gap: 30px !important;
  list-style: none !important;
  padding: 0 !important;
  margin: 0 0 0 0 !important;
  float: none !important;
}

.woocommerce ul.products::before,
.woocommerce ul.products::after {
  display: none !important;
}

.woocommerce ul.products li.product {
  margin: 0 !important;
  padding: 0 !important;
  width: 100% !important;
  float: none !important;
  list-style: none !important;
}

/* ── Card Product (shared shop grid + related products) ───────── */

.card-product {
  position: relative;
}

.card-product-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background-color: var(--c-surface);
  margin-bottom: 15px;
}

.card-product-wrapper .product-img {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
}

.card-product-wrapper .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}

.card-product:hover .product-img img {
  transform: scale(1.05);
}

/* Quick-view icons — slide in from right on hover */
.list-product-btn {
  position: absolute;
  top: 15px;
  right: 15px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  opacity: 0;
  transform: translateX(10px);
  transition: all 0.3s ease;
  z-index: 4;
}

.card-product:hover .list-product-btn {
  opacity: 1;
  transform: translateX(0);
}

.box-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  color: var(--c-primary);
  cursor: pointer;
  border: none;
  padding: 0;
}

.box-icon.bg_white {
  background-color: var(--c-white);
  box-shadow: 0px 10px 25px 0px rgba(43, 52, 74, 0.12);
}

.box-icon:hover {
  background-color: var(--c-primary);
  color: var(--c-white);
}

/* "Add to Quote" button — slides up from bottom on hover */
.btn-main-product {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 15px;
  transform: translateY(100%);
  transition: transform 0.35s ease;
  z-index: 4;
}

.card-product:hover .btn-main-product {
  transform: translateY(0);
}

.btn-main-product .btn-style-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 15px;
  border-radius: 999px;
  background-color: var(--c-primary);
  color: var(--c-white);
  letter-spacing: 0.1em;
  border: 2px solid var(--c-primary);
  font-size: 12px;
  line-height: 20px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
  text-decoration: none;
  font-family: "Kumbh Sans", sans-serif;
}

.btn-main-product .btn-style-2:hover {
  background-color: transparent;
  color: var(--c-primary);
}

/* Card product info */
.card-product-info {
  padding-top: 0;
}

.card-product-info .title {
  font-family: "Kumbh Sans", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--c-primary);
  transition: color 0.3s ease;
  display: inline-block;
}

.card-product-info .title:hover {
  color: var(--c-secondary);
}

/* Hide any WC default elements that leak through */
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product .star-rating,
.woocommerce ul.products li.product .button:not(.btn-style-2),
.woocommerce ul.products li.product>.price {
  display: none !important;
}

/* ── Pagination (Modave style) ────────────────────────────────── */

.woocommerce nav.woocommerce-pagination {
  text-align: center;
  margin-top: 40px;
}

.woocommerce nav.woocommerce-pagination ul {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: none;
  list-style: none;
  padding: 0;
  margin: 0;
}

.woocommerce nav.woocommerce-pagination ul li {
  border: none;
  margin: 0;
  padding: 0;
}

.woocommerce nav.woocommerce-pagination ul li a,
.woocommerce nav.woocommerce-pagination ul li span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 4px;
  border: 1px solid var(--c-line);
  font-size: 16px;
  font-weight: 500;
  color: var(--c-primary);
  background: var(--c-white);
  transition: all 0.3s ease;
  text-decoration: none;
  padding: 0;
  line-height: 1;
}

.woocommerce nav.woocommerce-pagination ul li a:hover {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}

.woocommerce nav.woocommerce-pagination ul li span.current {
  background: var(--c-primary);
  color: var(--c-white);
  border-color: var(--c-primary);
}

.woocommerce nav.woocommerce-pagination ul li .next,
.woocommerce nav.woocommerce-pagination ul li .prev {
  font-size: 16px;
}

.woocommerce nav.woocommerce-pagination ul li .dots {
  border: none;
  background: none;
  color: var(--c-muted);
  cursor: default;
  width: auto;
  padding: 0 4px;
}

/* ────────────────────────────────────────────────────────────────
   SINGLE PRODUCT — Pixel-perfect Modave layout
   ──────────────────────────────────────────────────────────────── */

/* Helpers */
.text-caption-1 {
  font-size: 16px;
  line-height: 22px;
}

.text-btn-uppercase {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.text-title {
  font-weight: 500;
}

.text-secondary-2 {
  color: var(--c-muted);
}

.fw-6 {
  font-weight: 600;
}

.mb_10 {
  margin-bottom: 10px;
}

.mb_12 {
  margin-bottom: 12px;
}

.mb_30 {
  margin-bottom: 30px;
}

.flex-grow-1 {
  flex-grow: 1;
}

.text-center {
  text-align: center;
}

.text-success {
  color: var(--c-success);
  font-weight: 600;
}

.text-danger {
  color: var(--c-danger);
  font-weight: 600;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.col-md-6,
.col-12 {
  position: relative;
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
}

@media (min-width: 768px) {
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
}

/* Breadcrumb */
.tf-breadcrumb {
  border-bottom: 1px solid var(--c-line);
}

.tf-breadcrumb-wrap {
  /* padding: 21px 0 0; */
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 15px;
}

.tf-breadcrumb-list {
  display: flex;
  gap: 4px;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1px;
  padding-bottom: 21px;
}

.tf-breadcrumb-list .text {
  font-size: 16px;
  line-height: 22px;
}

.tf-breadcrumb-list a {
  color: var(--c-secondary);
  transition: color var(--dur) var(--ease);
}

.tf-breadcrumb-list a:hover {
  color: var(--c-primary);
}

.tf-breadcrumb-list span:last-child {
  color: var(--c-primary);
  text-decoration: underline;
}

.tf-breadcrumb-sep {
  font-size: 12px;
  color: var(--c-muted);
  margin: 0 2px;
}

/* Main Product Section */
.flat-spacing {
  padding-top: 40px;
  padding-bottom: 40px;
}

.flat-spacing-tabs {
  padding-top: 0;
  padding-bottom: 60px;
}

.flat-spacing-related {
  padding-top: 20px;
  padding-bottom: 80px;
}

.tf-main-product {
  position: relative;
}

/* Thumbs Slider (left thumbnails + main image) */
.tf-product-media-wrap {
  position: sticky;
  top: 100px;
}

.thumbs-slider {
  display: flex;
  gap: 20px;
}

/* Vertical thumbnails */
.tf-product-media-thumbs {
  width: 80px;
  flex-shrink: 0;
  max-height: 687px;
  overflow-y: auto;
  scrollbar-width: thin;
}

.tf-product-media-thumbs::-webkit-scrollbar {
  width: 3px;
}

.tf-product-media-thumbs::-webkit-scrollbar-thumb {
  background: var(--c-line);
  border-radius: 3px;
}

.tf-product-media-thumbs .swiper-wrapper {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tf-product-media-thumbs .swiper-slide {
  height: max-content;
  width: auto;
}

.tf-product-media-thumbs .swiper-slide .item {
  position: relative;
  max-height: 107px;
  max-width: 80px;
  cursor: pointer;
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #e5e5e5;
}

.tf-product-media-thumbs .swiper-slide .item img {
  border-radius: 4px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tf-product-media-thumbs .swiper-slide .item::after {
  position: absolute;
  content: "";
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  border: 1px solid transparent;
  transition: all 0.3s ease;
  border-radius: 4px;
}

.tf-product-media-thumbs .swiper-slide.active .item::after {
  border-color: var(--c-primary);
}

.tf-product-media-thumbs .swiper-slide:hover .item::after {
  border-color: var(--c-primary);
}

/* Main image area */
.tf-product-media-main {
  width: calc(100% - 100px);
  position: relative;
}

.tf-product-media-main .swiper-wrapper {
  position: relative;
  width: 100%;
}

.tf-product-media-main .swiper-slide {
  display: none;
  border: 1px solid #e5e5e5;
  border-radius: 12px;
}

.tf-product-media-main .swiper-slide.active {
  display: block;
}

.tf-product-media-main .swiper-slide .item {
  display: flex;
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  max-height: 687px;
  cursor: crosshair;
}

.tf-product-media-main .swiper-slide .item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .15s ease-out;
  transform-origin: center center;
}

/* Navigation arrows */
.tf-product-media-nav {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
  display: flex;
  justify-content: space-between;
  padding: 0 12px;
  z-index: 10;
  pointer-events: none;
}

.tf-product-media-nav button {
  pointer-events: auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .9);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
  transition: all var(--dur) var(--ease);
  color: var(--c-primary);
}

.tf-product-media-nav button:hover {
  background: var(--c-primary);
  color: var(--c-white);
}

/* Zoom pane — displayed in the info column */
.tf-zoom-main {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: var(--c-white);
  border: 1px solid var(--c-line);
  border-radius: 12px;
  overflow: hidden;
  background-size: 200%;
  background-repeat: no-repeat;
  pointer-events: none;
}

.tf-zoom-main.active {
  display: block;
}

/* Product Info Panel */
.tf-product-info-wrap {
  position: relative;
}

.tf-product-info-list {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Heading block */
.tf-product-info-heading {
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-line);
}

.tf-product-info-name {
  margin-bottom: 20px;
}

.tf-product-info-name>.text {
  color: var(--c-muted);
  letter-spacing: 0.1em;
  margin-bottom: 4px;
}

.tf-product-info-name .name {
  font-size: 30px;
  font-weight: 500;
  line-height: 1.2;
  margin-bottom: 12px;
  color: var(--c-primary);
}

.tf-product-info-desc {
  display: flex;
  gap: 12px;
  flex-direction: column;
}

.tf-product-info-desc>p {
  color: var(--c-secondary);
  font-size: 16px;
  line-height: 28px;
}

/* Choose Options wrapper */
.tf-product-info-choose-option {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

/* Quantity */
.tf-product-info-quantity .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 22px;
}

.wg-quantity {
  width: 180px;
  height: 48px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--c-white);
  border: 2px solid var(--c-line);
  border-radius: 999px;
  overflow: hidden;
}

.wg-quantity input {
  width: 88px;
  height: 44px;
  padding: 0;
  background-color: transparent;
  border: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--c-primary);
  outline: none;
  -moz-appearance: textfield;
}

.wg-quantity input::-webkit-outer-spin-button,
.wg-quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.wg-quantity .btn-quantity {
  width: 44px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: var(--c-primary);
  cursor: pointer;
  transition: all 0.3s ease;
  user-select: none;
}

.wg-quantity .btn-quantity:hover {
  color: var(--c-secondary);
}

/* Add to Quote button */
.tf-product-info-by-btn {
  display: flex;
  align-items: center;
  gap: 10px;
}

.btn-style-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 14px 15px;
  border-radius: 999px;
  background-color: var(--c-primary);
  color: var(--c-white);
  letter-spacing: 0.1em;
  border: 2px solid var(--c-primary);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}

.btn-style-2:hover {
  background-color: transparent;
  color: var(--c-primary);
}

.btn-add-to-cart {
  cursor: pointer;
}

/* Help Section */
.tf-product-info-help {
  padding-bottom: 19px;
  border-bottom: 1px solid var(--c-line);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tf-product-info-extra-link {
  display: flex;
  gap: 15px 34px;
  align-items: center;
  flex-wrap: wrap;
}

.tf-product-extra-icon {
  display: flex;
  gap: 4px;
  align-items: center;
  position: relative;
}

.tf-product-extra-icon .icon {
  font-size: 20px;
  line-height: 20px;
  display: flex;
}

.tf-product-extra-icon .icon svg {
  width: 20px;
  height: 20px;
}

.tf-product-extra-icon:not(:last-child)::after {
  position: absolute;
  content: "";
  width: 1px;
  height: 20px;
  right: -18px;
  top: 1px;
  background-color: var(--c-line);
}

.tf-product-info-time,
.tf-product-info-return {
  display: flex;
  gap: 4px;
  align-items: center;
}

.tf-product-info-time .icon,
.tf-product-info-return .icon {
  font-size: 20px;
  line-height: 20px;
  display: flex;
  flex-shrink: 0;
}

.tf-product-info-time .icon svg,
.tf-product-info-return .icon svg {
  width: 20px;
  height: 20px;
}

.tf-product-info-time p,
.tf-product-info-return p {
  color: var(--c-secondary);
  font-size: 16px;
  line-height: 22px;
}

.tf-product-info-time p span,
.tf-product-info-return p span {
  color: var(--c-primary);
  font-weight: 500;
}

/* SKU / Meta list */
ul.tf-product-info-sku {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding-bottom: 19px;
  border-bottom: 1px solid var(--c-line);
  list-style: none;
}

ul.tf-product-info-sku li {
  display: flex;
  align-items: center;
  gap: 4px;
}

ul.tf-product-info-sku li p {
  font-size: 16px;
  line-height: 22px;
}

ul.tf-product-info-sku li .text-1 {
  color: var(--c-secondary);
}

ul.tf-product-info-sku li a {
  color: var(--c-secondary);
  text-decoration: underline;
}

ul.tf-product-info-sku li a:hover {
  color: var(--c-primary);
}

/* ── Widget Tabs (Description section) ── */
.widget-tabs.style-1 .widget-menu-tab {
  display: flex;
  align-items: center;
  gap: 40px;
  justify-content: center;
  padding-bottom: 28px;
  overflow-x: auto;
  list-style: none;
  border-bottom: 1px solid var(--c-line);
}

.widget-tabs.style-1 .widget-menu-tab .item-title {
  cursor: pointer;
  position: relative;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  min-width: max-content;
  color: var(--c-secondary);
  transition: color 0.3s ease;
}

.widget-tabs.style-1 .widget-menu-tab .item-title:hover {
  color: var(--c-primary);
}

.widget-tabs.style-1 .widget-menu-tab .item-title::after {
  position: absolute;
  content: "";
  background-color: var(--c-primary);
  transition: all 0.3s ease;
  bottom: -1px;
  left: 0;
  width: 0;
  height: 1px;
}

.widget-tabs.style-1 .widget-menu-tab .item-title.active {
  color: var(--c-primary);
}

.widget-tabs.style-1 .widget-menu-tab .item-title.active::after {
  width: 100%;
}

.widget-tabs .widget-content-tab {
  position: relative;
  overflow: hidden;
}

.widget-tabs .widget-content-tab .widget-content-inner {
  display: block;
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(30px);
  transition-timing-function: ease-in;
  transition-duration: 0.2s;
}

.widget-tabs .widget-content-tab .widget-content-inner.active {
  pointer-events: auto;
  opacity: 1;
  visibility: visible;
  position: relative;
  z-index: 2;
  transform: none;
  transition-timing-function: ease-out;
  transition-duration: 0.3s;
  transition-delay: 0.3s;
}

.widget-tabs.style-1 .widget-content-inner {
  padding: 39px;
  border: 1px solid var(--c-line);
  border-radius: 8px;
}

/* Tab description content */
.tab-description {
  display: flex;
  gap: 32px;
}

.tab-description .right,
.tab-description .left {
  width: 100%;
}

.tab-description p {
  font-size: 16px;
  line-height: 28px;
  color: var(--c-secondary);
  margin-bottom: 12px;
}

.tab-description ul {
  padding-left: 24px;
  margin-bottom: 12px;
}

.tab-description li {
  font-size: 16px;
  line-height: 28px;
  color: var(--c-secondary);
  list-style: disc;
  margin-bottom: 4px;
}

/* Specs table inside tabs */
.tf-specs-table {
  width: 100%;
  border-collapse: collapse;
}

.tf-specs-table th,
.tf-specs-table td {
  padding: 12px 16px;
  border: 1px solid var(--c-line);
  font-size: 16px;
}

.tf-specs-table th {
  background: var(--c-surface);
  font-weight: 600;
  color: var(--c-primary);
  width: 200px;
  text-align: left;
}

/* ── Related Products Section ── */
.flat-title {
  text-align: center;
}

.flat-title h5 {
  font-size: 24px;
  font-weight: 500;
  color: var(--c-primary);
}

.tf-sw-product-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 20px;
}

.card-product {
  position: relative;
}

.card-product-wrapper {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  background: var(--c-surface);
  margin-bottom: 14px;
  border: 1px solid #e5e5e5;
}

.card-product-wrapper .product-img {
  display: block;
  width: 100%;
  aspect-ratio: 3/4;
}

.card-product-wrapper .product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.card-product:hover .product-img img {
  transform: scale(1.05);
}

.card-product-info {
  padding: 0 4px;
  min-width: 0;
  overflow: hidden;
}

.card-product-info .title {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--c-primary);
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
  transition: color 0.3s ease;
}

.card-product-info .title:hover {
  color: var(--c-secondary);
}

/* (Old quote-cart styles removed — now using Modave tf-cart-item styles) */

/* ────────────────────────────────────────────────────────────────
   QUOTATION SUBMIT PAGE
   ──────────────────────────────────────────────────────────────── */

.quotation-page {
  padding: var(--sp-10) 0 var(--sp-20);
}

.quotation-page__title {
  font-size: var(--fs-3xl);
  font-weight: 500;
  margin-bottom: var(--sp-2);
}

.quotation-page__subtitle {
  color: var(--c-secondary);
  margin-bottom: var(--sp-10);
}

.quotation-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-12);
  align-items: start;
}

.quotation-form__group {
  margin-bottom: var(--sp-5);
}

.quotation-form__label {
  display: block;
  font-size: var(--fs-sm);
  font-weight: 600;
  margin-bottom: var(--sp-2);
}

.quotation-form__input,
.quotation-form__textarea {
  width: 100%;
  padding: var(--sp-3) var(--sp-4);
  border: 2px solid var(--c-line);
  border-radius: var(--r-md);
  font-size: var(--fs-base);
  transition: border-color var(--dur) var(--ease);
  outline: none;
  background: var(--c-white);
}

.quotation-form__input:focus,
.quotation-form__textarea:focus {
  border-color: var(--c-primary);
}

.quotation-form__textarea {
  resize: vertical;
  min-height: 120px;
}

.quotation-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-4);
}

.quotation-form__submit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--sp-2);
  width: 100%;
  padding: 16px 32px;
  margin-top: var(--sp-4);
  background: var(--c-primary);
  color: var(--c-white);
  border: 2px solid var(--c-primary);
  border-radius: var(--r-full);
  font-size: var(--fs-base);
  font-weight: 600;
  transition: all var(--dur) var(--ease);
}

.quotation-form__submit:hover {
  background: transparent;
  color: var(--c-primary);
}

.quotation-summary {
  background: var(--c-surface);
  border-radius: var(--r-xl);
  padding: var(--sp-8);
}

.quotation-summary__title {
  font-size: var(--fs-xl);
  font-weight: 600;
  margin-bottom: var(--sp-5);
  padding-bottom: var(--sp-4);
  border-bottom: 1px solid var(--c-line);
}

.quotation-summary__items {
  max-height: 400px;
  overflow-y: auto;
}

.quotation-summary__total {
  display: flex;
  justify-content: space-between;
  margin-top: var(--sp-5);
  padding-top: var(--sp-4);
  border-top: 2px solid var(--c-line);
  font-weight: 600;
}

.quotation-summary__count {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--c-primary);
  color: var(--c-white);
  font-size: 13px;
  font-weight: 600;
  min-width: 24px;
  height: 24px;
  border-radius: 50px;
  padding: 0 7px;
  margin-left: 8px;
}

.quotation-summary__note {
  font-size: var(--fs-sm);
  color: var(--c-muted);
  margin-top: var(--sp-4);
  line-height: 1.6;
}

.quotation-item {
  display: flex;
  align-items: center;
  gap: var(--sp-3);
  padding: var(--sp-3);
  border-bottom: 1px solid var(--c-line);
  transition: opacity 0.2s;
}

.quotation-item:last-child {
  border-bottom: none;
}

.quotation-item.is-loading {
  pointer-events: none;
  opacity: 0.5;
}

.quotation-item__img {
  width: 56px;
  height: 56px;
  border-radius: var(--r-md);
  overflow: hidden;
  flex-shrink: 0;
  background: var(--c-white);
}

.quotation-item__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.quotation-item__info {
  flex: 1;
  min-width: 0;
}

.quotation-item__name {
  font-size: var(--fs-sm);
  font-weight: 500;
  line-height: 1.3;
}

.quotation-item__sku {
  display: block;
  font-size: 12px;
  color: var(--c-muted);
  margin-top: 2px;
}

.quotation-item__controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}

.quotation-item__qty-wrap {
  display: inline-flex;
  align-items: center;
  gap: 0;
  border: 1px solid var(--c-line);
  border-radius: 6px;
  overflow: hidden;
}

.quotation-item__qty-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  background: var(--c-surface);
  font-size: 14px;
  font-weight: 600;
  color: var(--c-body);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
  line-height: 1;
  padding: 0;
}

.quotation-item__qty-btn:hover {
  background: var(--c-primary);
  color: var(--c-white);
}

.quotation-item__qty-val {
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 32px;
  height: 28px;
  font-size: 13px;
  font-weight: 600;
  border-left: 1px solid var(--c-line);
  border-right: 1px solid var(--c-line);
  background: var(--c-white);
}

.quotation-item__remove {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border: none;
  border-radius: 6px;
  background: transparent;
  color: var(--c-muted);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.quotation-item__remove:hover {
  background: #fee2e2;
  color: #dc2626;
}

.quotation-form__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--sp-4);
  flex-wrap: wrap;
  margin-top: var(--sp-6);
}

.quotation-form__back {
  color: var(--c-secondary);
  font-size: var(--fs-sm);
  font-weight: 500;
  text-decoration: none;
  transition: color var(--dur) var(--ease);
}

.quotation-form__back:hover {
  color: var(--c-primary);
}

.quotation-empty {
  text-align: center;
  padding: 80px 20px;
}

.quotation-empty svg {
  margin-bottom: 20px;
}

.quotation-empty h3 {
  margin-bottom: 12px;
}

.quotation-empty p {
  color: var(--c-muted);
  margin-bottom: 24px;
}

/* Hide WC default single product elements we replaced */
.woocommerce div.product .product-single__wrapper,
.woocommerce div.product .woocommerce-tabs {
  display: none !important;
}

/* Ensure WC notices look good */
.woocommerce .woocommerce-notices-wrapper {
  margin-bottom: var(--sp-5);
}

/* Hide price/total columns if WC adds them anyway */
.woocommerce-cart .product-subtotal,
.woocommerce-cart .product-price,
.woocommerce-cart th.product-subtotal,
.woocommerce-cart th.product-price {
  display: none !important;
}

/* Cart page */
.woocommerce table.shop_table {
  border: 1px solid var(--c-line);
  border-radius: var(--r-lg);
  overflow: hidden;
  border-collapse: collapse;
}

.woocommerce table.shop_table th {
  background: var(--c-surface);
  font-size: var(--fs-sm);
  font-weight: 600;
  padding: var(--sp-4) var(--sp-5);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-family: "Kumbh Sans", sans-serif;
  border: none;
}

.woocommerce table.shop_table td {
  padding: var(--sp-5);
  vertical-align: middle;
  border-bottom: 1px solid var(--c-line);
  font-family: "Kumbh Sans", sans-serif;
}

.woocommerce table.shop_table td.product-thumbnail img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: var(--r-md);
}

.woocommerce a.checkout-button,
.wc-proceed-to-checkout a.checkout-button {
  background: var(--c-primary) !important;
  color: var(--c-white) !important;
  border-radius: var(--r-full) !important;
  padding: 16px 32px !important;
  font-size: var(--fs-base) !important;
  font-weight: 600 !important;
  font-family: "Kumbh Sans", sans-serif !important;
  display: block;
  text-align: center;
  border: 2px solid var(--c-primary) !important;
  transition: all var(--dur) var(--ease);
}

.woocommerce a.checkout-button:hover {
  background: transparent !important;
  color: var(--c-primary) !important;
}

/* Notices */
.woocommerce .woocommerce-message,
.woocommerce .woocommerce-info,
.woocommerce .woocommerce-error {
  /* border-top-color: var(--c-primary); */
  border-radius: var(--r-md);
  font-family: "Kumbh Sans", sans-serif;
}

.woocommerce .woocommerce-message .button {
  background: var(--c-primary);
  color: var(--c-white);
  border-radius: var(--r-full);
  font-family: "Kumbh Sans", sans-serif;
  font-weight: 600;
}

/* Price hiding (belt-and-suspenders) */
.woocommerce .price,
.woocommerce span.price,
.woocommerce p.price,
.woocommerce-Price-amount {
  display: none !important;
  visibility: hidden !important;
  height: 0 !important;
  overflow: hidden !important;
}

/* Ensure WC loop hover effects work on li.product wrapper */
li.product.card-product:hover .list-product-btn {
  opacity: 1;
  transform: translateX(0);
}

li.product.card-product:hover .btn-main-product {
  transform: translateY(0);
}

/* ────────────────────────────────────────────────────────────────
   23. WP ADMIN BAR FIX
   ──────────────────────────────────────────────────────────────── */

.admin-bar .header {
  top: 32px;
}

.admin-bar .modal-search {
  padding-top: 32px;
}

/* ────────────────────────────────────────────────────────────────
   24. SCROLL ANIMATIONS
   ──────────────────────────────────────────────────────────────── */

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .6s var(--ease), transform .6s var(--ease);
}

.reveal--visible {
  opacity: 1;
  transform: translateY(0);
}

/* ────────────────────────────────────────────────────────────────
   CART / QUOTE PAGE — Modave style (pixel-perfect)
   ──────────────────────────────────────────────────────────────── */

/* Section spacing */
.woocommerce-cart .flat-spacing {
  padding: 80px 0;
}

/* Grid row */
.woocommerce-cart .row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px;
  margin-right: -15px;
}

.woocommerce-cart .col-xl-8 {
  flex: 0 0 auto;
  width: 66.6667%;
  padding: 0 15px;
}

.woocommerce-cart .col-xl-4 {
  flex: 0 0 auto;
  width: 33.3333%;
  padding: 0 15px;
}

/* ── Cart table ── */
.tf-table-page-cart {
  border-spacing: 0;
  border-collapse: collapse;
  margin-bottom: 28px;
  width: 100%;
  line-height: 1.4;
  font-family: "Kumbh Sans", sans-serif;
}

.tf-table-page-cart tr {
  border-bottom: 1px solid var(--c-line);
}

.tf-table-page-cart th {
  padding-bottom: 12px;
  font-weight: 500;
  font-size: 16px;
  line-height: 26px;
  color: var(--c-primary);
  padding-left: 10px;
  padding-right: 10px;
  text-align: left;
}

.tf-table-page-cart th:first-child {
  padding-left: 0;
}

.tf-table-page-cart th:last-child {
  padding-right: 0;
}

.tf-table-page-cart td {
  padding: 18px 10px;
  vertical-align: middle;
}

.tf-table-page-cart td:first-child {
  padding-left: 0;
}

.tf-table-page-cart td:last-child {
  padding-right: 0;
  padding-left: 0;
}

/* ── Product cell ── */
.tf-cart-item .tf-cart-item_product {
  display: flex;
  align-items: center;
}

.tf-cart-item .tf-cart-item_product .img-box {
  border-radius: 4px;
  overflow: hidden;
  width: 90px;
  min-width: 90px;
  height: 120px;
  margin-right: 24px;
  display: block;
  background: var(--c-surface);
}

.tf-cart-item .tf-cart-item_product .img-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.tf-cart-item .tf-cart-item_product .cart-info {
  display: grid;
  gap: 12px;
}

.tf-cart-item .tf-cart-item_product .cart-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  color: var(--c-primary);
  transition: color 0.3s ease;
}

.tf-cart-item .tf-cart-item_product .cart-title:hover {
  color: var(--c-secondary);
}

.tf-cart-item .tf-cart-item_product .cart-sku {
  font-size: 16px;
  color: var(--c-secondary);
  line-height: 22px;
}

/* ── Quantity cell ── */
.tf-cart-item_quantity {
  text-align: center;
}

.tf-cart-item .wg-quantity {
  width: 120px;
  height: 40px;
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  border: 2px solid var(--c-line);
  border-radius: 999px;
  overflow: hidden;
}

.tf-cart-item .wg-quantity .quantity {
  display: flex;
  align-items: center;
  height: 100%;
}

.tf-cart-item .wg-quantity .btn-quantity {
  width: 40px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  line-height: 1;
  color: var(--c-primary);
  cursor: pointer;
  user-select: none;
  background: transparent;
  transition: color 0.3s ease;
}

.tf-cart-item .wg-quantity .btn-quantity:hover {
  color: var(--c-accent, #e43131);
}

.tf-cart-item .wg-quantity input[type="number"],
.tf-cart-item .wg-quantity .quantity-product,
.tf-cart-item .wg-quantity .qty {
  width: 40px;
  height: 38px;
  padding: 0;
  background-color: transparent;
  border: 0;
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
  color: var(--c-primary);
  font-family: "Kumbh Sans", sans-serif;
  -moz-appearance: textfield;
  outline: none;
}

.tf-cart-item .wg-quantity input::-webkit-outer-spin-button,
.tf-cart-item .wg-quantity input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* ── Remove button ── */
.tf-cart-item_remove {
  text-align: center;
}

.tf-cart-item .remove-cart {
  text-decoration: none;
}

.tf-cart-item .remove-cart .icon {
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border: 1px solid #f03e3e;
  border-radius: 1000px;
  font-size: 10px;
  font-style: normal;
  color: #f03e3e;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tf-cart-item .remove-cart .icon:hover {
  background-color: #f03e3e;
  color: #fff;
}

/* ── Cart bottom actions ── */
.tf-cart-bottom {
  padding: 0;
  margin-top: -8px;
}

.tf-cart-bottom_actions {
  display: flex;
  justify-content: flex-start;
  gap: 12px;
}

/* ── Sidebar / Quote Summary ── */
.fl-sidebar-cart {
  position: sticky;
  top: 90px;
}

.box-order {
  border-radius: 12px;
  overflow: hidden;
  padding: 15px;
}

.box-order.bg-surface {
  background-color: var(--c-surface);
}

.box-order .title {
  font-size: 20px;
  font-weight: 600;
  line-height: 30px;
  color: var(--c-primary);
  margin-bottom: 28px;
}

.box-order .summary-row {
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--c-line);
}

.box-order .summary-row .text-button {
  font-size: 16px;
  font-weight: 600;
  line-height: 22px;
}

.box-order .summary-row .total {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-primary);
}

.box-order .total-order {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
}

/* ── Submit Quotation button (Modave tf-btn style) ── */
.box-order .box-progress-checkout {
  display: grid;
  gap: 12px;
}

.box-progress-checkout .tf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 32px;
  text-align: center;
  background-color: var(--c-primary);
  color: #fff;
  border: 1px solid var(--c-primary);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  text-transform: capitalize;
  text-decoration: none;
  font-family: "Kumbh Sans", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.box-progress-checkout .tf-btn:hover {
  background-color: var(--c-accent, #e43131);
  border-color: var(--c-accent, #e43131);
}

.box-progress-checkout .continue-shopping {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-secondary);
  text-decoration: none;
  transition: color 0.3s ease;
}

.box-progress-checkout .continue-shopping:hover {
  color: var(--c-primary);
}

/* ── Update Quote button ── */
.tf-cart-bottom .tf-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 32px;
  background: var(--c-primary);
  color: #fff;
  border: 1px solid var(--c-primary);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  line-height: 20px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: "Kumbh Sans", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tf-cart-bottom .tf-btn:hover {
  background: var(--c-accent, #e43131);
  border-color: var(--c-accent, #e43131);
}

.tf-cart-bottom .tf-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

/* ── Empty cart ── */
.woocommerce-cart .wc-empty-cart-message {
  text-align: center;
  padding: 80px 0 20px;
}

.woocommerce-cart .cart-empty {
  font-size: 18px;
  font-weight: 500;
  color: var(--c-secondary);
  background: none !important;
  padding: 0;
}

.woocommerce-cart .cart-empty::before {
  display: none;
}

.woocommerce-cart .return-to-shop {
  text-align: center;
  padding-bottom: 80px;
}

.woocommerce-cart .return-to-shop .button,
.woocommerce-cart .return-to-shop a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  background: var(--c-primary);
  color: #fff;
  border: 1px solid var(--c-primary);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  text-transform: capitalize;
  text-decoration: none;
  font-family: "Kumbh Sans", sans-serif;
  transition: all 0.3s ease;
}

.woocommerce-cart .return-to-shop .button:hover,
.woocommerce-cart .return-to-shop a:hover {
  background: var(--c-accent, #e43131);
  border-color: var(--c-accent, #e43131);
}

/* ── Utility helpers ── */
.d-flex {
  display: flex !important;
}

.d-grid {
  display: grid !important;
}

.justify-content-between {
  justify-content: space-between !important;
}

.align-items-center {
  align-items: center !important;
}

.d-block {
  display: block !important;
}

.text-center {
  text-align: center !important;
}

/* Hide WC default cart pricing elements */
.woocommerce-cart .woocommerce-shipping-calculator,
.woocommerce-cart .cart_totals,
.woocommerce-cart .cross-sells {
  display: none !important;
}

/* WooCommerce notices on cart */
.woocommerce-cart .woocommerce-notices-wrapper {
  max-width: 1320px;
  margin: 25px auto;
  padding: 0 15px;
}

/* ────────────────────────────────────────────────────────────────
   MY ACCOUNT — Modave style (pixel-perfect)
   ──────────────────────────────────────────────────────────────── */

/* Full-width page-content for account pages */
.woocommerce-account .page-content {
  max-width: 100%;
  padding: 0;
}

/* ── Login page ── */
.login-wrap {
  display: flex;
  gap: 120px;
  align-items: center;
  position: relative;
  max-width: 1130px;
  margin: 0 auto;
}

.login-wrap::before {
  position: absolute;
  content: "";
  height: 100%;
  width: 1px;
  background-color: var(--c-line);
  top: 0;
  left: 50%;
}

.login-wrap .left,
.login-wrap .right {
  width: 100%;
}

.login-wrap .left .heading {
  margin-bottom: 28px;
}

.login-wrap .left .heading h4 {
  font-size: 28px;
  font-weight: 500;
  line-height: 34px;
}

.login-wrap .right h4 {
  font-size: 28px;
  font-weight: 500;
  line-height: 34px;
}

.login-wrap .right .mb_8 {
  margin-bottom: 8px;
}

.login-wrap .right p {
  margin-bottom: 28px;
  color: var(--c-secondary);
  font-size: 16px;
  line-height: 22px;
}

/* Form styles */
.form-login .lost-password-intro {
  margin-bottom: 24px;
  color: var(--c-secondary);
  font-size: 16px;
  line-height: 24px;
}

.form-login .wrap {
  display: grid;
  gap: 20px;
  margin-bottom: 28px;
}

.form-login fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

.form-login input[type="text"],
.form-login input[type="email"],
.form-login input[type="password"],
.form-account-details input[type="text"],
.form-account-details input[type="email"],
.form-account-details input[type="password"],
.form-account-details select {
  width: 100%;
  padding: 12px 16px;
  border: 1px solid var(--c-line);
  border-radius: 8px;
  font-size: 16px;
  line-height: 26px;
  font-weight: 400;
  font-family: "Kumbh Sans", sans-serif;
  color: var(--c-primary);
  background: #fff;
  transition: border-color 0.3s ease;
  outline: none;
}

.form-login input:focus,
.form-account-details input:focus,
.form-account-details select:focus {
  border-color: var(--c-primary);
}

.form-login input::placeholder,
.form-account-details input::placeholder {
  color: var(--c-secondary);
  font-weight: 400;
}

/* Password toggle */
.form-has-password .position-relative {
  position: relative;
}

.form-has-password .toggle-password {
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  display: inline-flex;
  cursor: pointer;
  color: var(--c-secondary);
  font-size: 20px;
}

.form-has-password .toggle-password i {
  font-style: normal;
}

.form-has-password .toggle-password .icon-eye-hide::before {
  content: "👁";
  font-size: 16px;
}

/* Remember me row */
.form-login .tf-cart-checkbox {
  display: flex;
  gap: 8px;
  align-items: center;
}

.form-login .tf-cart-checkbox input {
  width: auto;
  margin: 0;
}

.form-login .tf-cart-checkbox span {
  font-size: 16px;
  line-height: 22px;
  color: var(--c-primary);
}

.form-login .forget-password {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-secondary);
  text-decoration: underline;
}

.form-login .forget-password:hover {
  color: var(--c-primary);
}

/* Submit buttons */
.button-submit {
  margin-top: 8px;
}

.tf-btn.btn-fill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 15px 32px;
  background-color: var(--c-primary);
  color: #fff;
  border: 1px solid var(--c-primary);
  border-radius: 999px;
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  text-transform: capitalize;
  text-decoration: none;
  font-family: "Kumbh Sans", sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.tf-btn.btn-fill:hover {
  opacity: 0.85;
}

.tf-btn.btn-fill .text-button {
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* ── Account wrap (logged in) ── */
.my-account-wrap {
  display: flex;
  gap: 81px;
  max-width: 1130px;
  margin: 0 auto;
}

.my-account-wrap .my-account-content {
  width: 100%;
}

.my-account-wrap .wrap-sidebar-account {
  width: 369px;
  flex-shrink: 0;
}

/* Sidebar */
.sidebar-account {
  background-color: var(--c-surface);
  border-radius: 20px;
  padding: 40px 32px;
}

.sidebar-account .account-avatar {
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.sidebar-account .account-avatar .image {
  margin-bottom: 16px;
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
}

.sidebar-account .account-avatar .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}

.sidebar-account .account-avatar h6 {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  color: var(--c-primary);
}

.sidebar-account .account-avatar .mb_4 {
  margin-bottom: 4px;
}

.sidebar-account .account-avatar .body-text-1 {
  font-size: 16px;
  line-height: 22px;
  color: var(--c-secondary);
}

/* Sidebar nav */
.my-account-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  list-style: none;
  padding: 0;
  margin: 0;
}

.my-account-nav .my-account-nav-item {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 20px;
  font-size: 20px;
  font-weight: 500;
  line-height: 28px;
  border-radius: 16px;
  color: var(--c-primary);
  text-decoration: none;
  transition: background-color 0.3s ease;
}

.my-account-nav .my-account-nav-item:hover,
.my-account-nav .my-account-nav-item.active {
  background-color: #fff;
}

.my-account-nav .my-account-nav-item svg {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

/* ── Account details form ── */
.form-account-details {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.account-details .title,
.account-info .title,
.account-password .title {
  font-size: 20px;
  font-weight: 600;
  line-height: 28px;
  margin-bottom: 16px;
  color: var(--c-primary);
}

.account-details .cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.account-details .mb_20 {
  margin-bottom: 20px;
}

.account-details .mb_8 {
  margin-bottom: 8px;
}

/* Orders table */
.account-orders .wrap-account-order,
.woocommerce-account .woocommerce-orders-table {
  overflow-x: auto;
}

.woocommerce-account .woocommerce-orders-table {
  width: 100%;
  min-width: 700px;
  border-collapse: collapse;
}

.woocommerce-account .woocommerce-orders-table thead tr {
  border: 1px solid var(--c-line);
  background-color: var(--c-surface);
}

.woocommerce-account .woocommerce-orders-table thead th,
.woocommerce-account .woocommerce-orders-table td {
  padding: 15px 20px;
  text-align: left;
  font-size: 16px;
  line-height: 22px;
}

.woocommerce-account .woocommerce-orders-table thead th {
  font-weight: 600;
  color: var(--c-primary);
}

.woocommerce-account .woocommerce-orders-table tbody {
  border: 1px solid var(--c-line);
  border-top: 0;
}

.woocommerce-account .woocommerce-orders-table tbody tr:not(:last-child) {
  border-bottom: 1px solid var(--c-line);
}

.woocommerce-account .woocommerce-orders-table .button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  background: var(--c-primary);
  color: #fff;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.woocommerce-account .woocommerce-orders-table .button:hover {
  opacity: 0.85;
}

/* Address page */
.woocommerce-account .woocommerce-Addresses {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}

.woocommerce-account .woocommerce-Address {
  padding: 20px;
  border: 1px solid var(--c-line);
  border-radius: 12px;
}

.woocommerce-account .woocommerce-Address header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--c-line);
}

.woocommerce-account .woocommerce-Address header h3 {
  font-size: 20px;
  font-weight: 600;
}

.woocommerce-account .woocommerce-Address header .edit {
  font-size: 16px;
  font-weight: 600;
  color: var(--c-primary);
  text-decoration: underline;
}

.woocommerce-account .woocommerce-Address address {
  font-style: normal;
  font-size: 16px;
  line-height: 24px;
  color: var(--c-secondary);
}

/* Misc helpers */
.mb_4 {
  margin-bottom: 4px;
}

.mb_8 {
  margin-bottom: 8px;
}

.mb_20 {
  margin-bottom: 20px;
}

.text-secondary {
  color: var(--c-secondary);
}

.position-relative {
  position: relative;
}

.quotation-items-summary h3 {
  padding: 5px 20px;
}

/* ────────────────────────────────────────────────────────────────
   25. RESPONSIVE — TABLET (≤ 1024px)
   ──────────────────────────────────────────────────────────────── */

@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }

  .header__hamburger {
    display: flex;
  }

  .product-grid--4,
  .woocommerce ul.products {
    grid-template-columns: repeat(3, 1fr) !important;
  }

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

  .banner-card {
    min-height: 320px;
  }

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

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--sp-10) var(--sp-8);
  }

  .thumbs-slider {
    flex-direction: column-reverse;
    gap: 10px;
  }

  .tf-product-media-thumbs {
    width: 100%;
    max-height: none;
    overflow-x: auto;
    overflow-y: hidden;
  }

  .tf-product-media-thumbs .swiper-wrapper {
    flex-direction: row;
  }

  .tf-product-media-thumbs .swiper-slide .item {
    max-width: 64px;
    max-height: 64px;
  }

  .tf-product-media-main {
    width: 100%;
  }

  .tf-product-media-wrap {
    position: static;
  }

  .tf-sw-product-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .quotation-grid {
    grid-template-columns: 1fr;
  }

  .tf-breadcrumb-shop__title {
    font-size: 32px;
    line-height: 40px;
  }

  /* Cart responsive — tablet */
  .woocommerce-cart .col-xl-8,
  .woocommerce-cart .col-xl-4 {
    width: 100%;
  }

  .woocommerce-cart .col-xl-4 {
    margin-top: 40px;
  }

  .fl-sidebar-cart {
    position: static;
  }

  .woocommerce-cart .flat-spacing {
    padding: 50px 0;
  }

  /* My Account responsive — tablet */
  .my-account-wrap {
    flex-direction: column;
    gap: 40px;
  }

  .my-account-wrap .wrap-sidebar-account {
    width: 100%;
  }

  .sidebar-account {
    padding: 30px 24px;
  }

  .sidebar-account .account-avatar {
    margin-bottom: 24px;
  }

  .sidebar-account .account-avatar .image {
    width: 100px;
    height: 100px;
  }

  .my-account-nav .my-account-nav-item {
    font-size: 16px;
    padding: 12px 16px;
  }

  .login-wrap {
    flex-direction: column;
    gap: 40px;
  }

  .login-wrap::before {
    display: none;
  }
}

/* ────────────────────────────────────────────────────────────────
   26. RESPONSIVE — MOBILE (≤ 768px)
   ──────────────────────────────────────────────────────────────── */

@media (max-width: 768px) {
  :root {
    --sp-20: 50px;
  }

  .hero {
    height: 65vh;
    min-height: 400px;
  }

  .hero__title {
    font-size: 34px;
    line-height: 1.24;
    max-width: 400px;
  }

  .hero__nav-btn {
    display: none;
  }

  .section__title {
    font-size: var(--fs-3xl);
  }

  .section__header--split {
    flex-direction: column;
    gap: var(--sp-3);
    align-items: flex-start;
  }

  .topbar__right {
    display: none;
  }

  .collections-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: var(--sp-3);
  }

  .collection-card__title {
    font-size: var(--fs-sm);
  }

  .product-grid--4,
  .woocommerce ul.products {
    grid-template-columns: repeat(2, 1fr) !important;
    column-gap: 10px !important;
    row-gap: 20px !important;
  }

  .tf-sw-product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: var(--sp-3);
  }

  .flat-spacing {
    padding-top: 24px;
    padding-bottom: 24px;
  }

  .flat-spacing-shop {
    padding-top: 20px;
    padding-bottom: 50px;
  }

  .widget-tabs.style-1 .widget-menu-tab {
    gap: 20px;
  }

  .widget-tabs.style-1 .widget-menu-tab .item-title {
    font-size: 16px;
  }

  .widget-tabs.style-1 .widget-content-inner {
    padding: 20px;
  }

  .tab-description {
    flex-direction: column;
    gap: 16px;
  }

  .tf-product-info-name .name {
    font-size: 24px;
  }

  .features-grid {
    gap: var(--sp-4);
  }

  .instagram-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .section--instagram {
    padding-bottom: 50px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: var(--sp-8);
  }

  .offer__title {
    font-size: var(--fs-3xl);
  }

  .blog-grid {
    grid-template-columns: 1fr;
    gap: var(--sp-5);
  }

  /* Promo banners — stack image over content so text isn't squeezed into 55% */
  .banner-card {
    flex-direction: column;
    min-height: 0;
  }

  .banner-card__image {
    position: relative;
    width: 100%;
    height: 220px;
  }

  .banner-card__content {
    max-width: 100%;
    background: transparent;
    padding: var(--sp-8);
  }

  .footer__bottom-inner {
    flex-direction: column;
    gap: var(--sp-3);
    text-align: center;
  }

  .admin-bar .header {
    top: 46px;
  }

  .quotation-form__row {
    grid-template-columns: 1fr;
  }

  .tf-breadcrumb-shop {
    padding: 35px 0;
    min-height: 110px;
  }

  .tf-breadcrumb-shop__title {
    font-size: 28px;
    line-height: 36px;
  }

  /* Cart responsive — mobile */
  .tf-table-page-cart thead {
    display: none;
  }

  .tf-table-page-cart,
  .tf-table-page-cart tbody,
  .tf-table-page-cart tr,
  .tf-table-page-cart td {
    display: block;
    width: 100%;
  }

  .tf-table-page-cart tbody td {
    padding: 10px 0;
    border-bottom: none;
  }

  .tf-table-page-cart tbody tr {
    padding: 16px 0;
    border-bottom: 1px solid var(--c-line);
  }

  .tf-cart-item .tf-cart-item_product .img-box {
    width: 80px;
    min-width: 80px;
    height: 100px;
    margin-right: 16px;
  }

  .tf-cart-item_quantity {
    text-align: left;
    padding-left: 104px;
  }

  .tf-cart-item_remove {
    text-align: left;
    padding-left: 104px;
  }

  .woocommerce-cart .flat-spacing {
    padding: 30px 0;
  }

  .woocommerce-cart .page-header {
    padding: 30px 0 40px;
  }

  /* My Account responsive — mobile */
  .account-details .cols {
    grid-template-columns: 1fr;
  }

  .woocommerce-account .woocommerce-Addresses {
    grid-template-columns: 1fr;
  }

  .tf-shop-control {
    gap: 12px;
  }

  .tf-cat-filter {
    gap: 6px;
  }

  .tf-cat-pill {
    padding: 5px 12px;
    font-size: 13px;
  }

  .tf-ajax-pagination {
    gap: 4px;
  }

  .tf-page-btn {
    min-width: 36px;
    height: 36px;
    font-size: 13px;
  }

  .card-product-wrapper {
    border-radius: 8px;
    margin-bottom: 10px;
  }

  .card-product-info .title {
    font-size: 16px;
    line-height: 20px;
  }

  .btn-main-product {
    padding: 8px;
  }

  .btn-main-product .btn-style-2 {
    padding: 8px 12px;
    font-size: 11px;
  }
}

/* ────────────────────────────────────────────────────────────────
   27. RESPONSIVE — SMALL MOBILE (≤ 480px)
   ──────────────────────────────────────────────────────────────── */

@media (max-width: 480px) {
  .hero {
    height: 55vh;
    min-height: 360px;
  }

  .hero__title {
    font-size: 28px;
  }

  .hero__subtitle {
    font-size: var(--fs-xs);
  }

  .btn--primary {
    padding: 12px 24px;
    font-size: var(--fs-sm);
  }

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

  .features-grid {
    grid-template-columns: 1fr;
  }

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

  .section--instagram {
    padding-bottom: 40px;
  }

  .section--instagram .heading-section {
    margin-bottom: 24px;
  }

  .section--instagram .heading-section .heading {
    font-size: 24px;
  }

  .testimonial-card__text {
    font-size: 14px;
  }

  .error-404__code {
    font-size: 80px;
  }
}

/* ────────────────────────────────────────────────────────────────
   28. DESKTOP GRID OVERRIDES — 5 COLUMNS FOR PRODUCTS & CATEGORIES
   ──────────────────────────────────────────────────────────────── */
@media (min-width: 1200px) {

  .collections-grid,
  .product-grid,
  .product-grid--4,
  .product-grid--5,
  .tf-sw-product-grid,
  .woocommerce ul.products,
  ul.products,
  .products {
    display: grid !important;
    grid-template-columns: repeat(5, 1fr) !important;
    gap: 20px !important;
  }
}

/* ────────────────────────────────────────────────────────────────
   29. PRODUCT TITLE SINGLE-LINE TRUNCATION (...)
   ──────────────────────────────────────────────────────────────── */
.product-card__info,
.card-product-info,
.woocommerce ul.products li.product {
  min-width: 0;
}

.product-card__title,
.product-card__title a,
.card-product-info .title,
.card-product-info a,
.woocommerce ul.products li.product .woocommerce-loop-product__title,
.woocommerce ul.products li.product h2,
.woocommerce ul.products li.product h3,
.woocommerce ul.products li.product .woocommerce-loop-category__title {
  display: block !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  width: 100% !important;
  max-width: 100% !important;
}

/* ────────────────────────────────────────────────────────────────
   30. FOOTER (MODERN & RESPONSIVE & DYNAMIC COLOR READY)
   ──────────────────────────────────────────────────────────────── */
.footer {
  background-color: var(--c-footer-bg, #181818);
  color: var(--c-footer-text, #ffffff);
  font-size: 14px;
  line-height: 1.6;
}

.footer a {
  color: rgba(255, 255, 255, 0.75);
  transition: color 0.25s ease;
}

.footer a:hover {
  color: #ffffff;
}

.footer__main {
  padding: 60px 0 45px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.8fr;
  gap: 40px;
}

.footer__logo {
  margin-bottom: 16px;
}

.footer__logo img,
.custom-footer-logo {
  max-height: 48px;
  width: auto;
}

.footer__desc {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 20px;
  font-size: 14px;
  line-height: 1.6;
  max-width: 320px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-style: normal;
}

.footer__contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
}

.footer__contact-item:hover {
  color: #ffffff;
}

.footer__contact-item svg {
  flex-shrink: 0;
  opacity: 0.8;
}

.footer__heading {
  font-size: 16px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.footer__menu {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__menu li a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}

.footer__menu li a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer__newsletter-text {
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 16px;
  font-size: 14px;
}

.footer__newsletter-field {
  display: flex;
  position: relative;
  margin-bottom: 20px;
}

.footer__newsletter-field input {
  width: 100%;
  padding: 12px 50px 12px 16px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: #ffffff;
  font-size: 14px;
  outline: none;
  transition: all 0.3s ease;
}

.footer__newsletter-field input::placeholder {
  color: rgba(255, 255, 255, 0.45);
}

.footer__newsletter-field input:focus {
  background: rgba(255, 255, 255, 0.15);
  border-color: #ffffff;
}

.footer__newsletter-field button {
  position: absolute;
  right: 4px;
  top: 50%;
  transform: translateY(-50%);
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--c-accent, #e43131);
  color: #ffffff;
  border: none;
  padding: 0 !important;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.25s ease;
  z-index: 2;
  box-shadow: 0 2px 8px rgba(228, 49, 49, 0.35);
}

.footer__newsletter-field button svg,
.footer__newsletter-field button .icon {
  width: 18px !important;
  height: 18px !important;
  display: block !important;
  stroke: #ffffff !important;
  fill: none !important;
  stroke-width: 2.5px !important;
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.footer__newsletter-field button:hover {
  background: #c82323;
  transform: translateY(-50%) scale(1.05);
}

.footer__newsletter-field button:hover svg,
.footer__newsletter-field button:hover .icon {
  transform: translateX(2px);
}

.footer__social {
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer__social-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.85);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
}

.footer__social-icon:hover {
  background: #ffffff;
  color: var(--c-primary, #181818);
  transform: translateY(-2px);
}

/* Footer Bottom Bar */
.footer__bottom {
  padding: 20px 0;
  background: rgba(0, 0, 0, 0.15);
}

.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.footer__copyright {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin: 0;
}

.footer__payments {
  display: flex;
  align-items: center;
  gap: 8px;
}

.footer__payments-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  margin-right: 4px;
}

.footer__payments-badge {
  padding: 3px 10px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 4px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.85);
}

.admin-bar #header {
    top: 0;
}
/* Responsive Breakpoints for Footer */
@media (max-width: 991px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}

@media (max-width: 575px) {
  .footer__main {
    padding: 40px 0 30px;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 12px;
  }
}