  :root {
    --red: #CC1A1A;
    --red-dark: #A01010;
    --red-light: #E52222;
    --red-glow: rgba(204, 26, 26, 0.35);
    --black: #0D0D0D;
    --charcoal: #1A1A1A;
    --dark: #222222;
    --dark-mid: #1F1F1F;
    --white: #FFFFFF;
    --off-white: #F6F6F6;
    --gray-light: #E4E4E4;
    --gray: #9A9A9A;
    --text-dark: #111111;
    --text-body: #3D3D3D;
    --grad-red: linear-gradient(135deg, #A01010 0%, #E52222 100%);
    --font-body: 'Barlow', sans-serif;
    --font-display: 'Barlow Condensed', sans-serif;
    --container-padding: 1.5rem;
  }

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

  html {
    scroll-behavior: smooth;
    font-size: 16px;
  }

  body {
    font-family: var(--font-body);
    background: var(--off-white);
    color: var(--text-body);
    overflow-x: hidden;
  }

  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
  }

  /* TOP BAR */
  .topbar {
    background: var(--black);
    padding: 0.5rem 0;
    font-size: 0.75rem;
    color: var(--gray);
    border-bottom: 2px solid var(--red);
    overflow-x: auto;
  }

  .topbar-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: center;
  }

  @media (min-width: 768px) {
    .topbar-inner {
      flex-wrap: nowrap;
      justify-content: flex-start;
      gap: 1.75rem;
    }
  }

  .topbar a {
    color: var(--gray);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    transition: color 0.2s;
    white-space: nowrap;
  }

  .topbar a:hover {
    color: var(--red-light);
  }

  .topbar-dot {
    width: 0.3rem;
    height: 0.3rem;
    background: var(--red);
    border-radius: 50%;
    flex-shrink: 0;
  }

  /* NAVIGATION */
  nav {
    background: var(--white);
    border-bottom: 1px solid var(--gray-light);
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
  }

  .nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem var(--container-padding);
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
  }

  @media (min-width: 992px) {
    .nav-inner {
      flex-wrap: nowrap;
      padding: 0 var(--container-padding);
      height: 70px;
    }
  }

  .logo {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
    flex-shrink: 0;
  }

  .logo-icon {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: var(--black);
    border: 3px solid var(--red);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
  }

  .logo-icon::before {
    content: '';
    position: absolute;
    width: 2px;
    height: 150%;
    background: var(--red);
    transform: rotate(-35deg);
  }

  .logo-icon::after {
    content: 'X';
    position: absolute;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 900;
    color: var(--white);
  }

  .logo-text strong {
    display: block;
    font-size: 1.375rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
  }

  .logo-text strong em {
    font-style: normal;
    color: var(--red);
  }

  .logo-text span {
    display: block;
    font-size: 0.6rem;
    font-weight: 600;
    color: var(--gray);
    letter-spacing: 0.18em;
    text-transform: uppercase;
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    flex-wrap: wrap;
    justify-content: center;
  }

  @media (min-width: 768px) {
    .nav-links {
      flex-wrap: nowrap;
    }
  }

  .nav-links a {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-dark);
    text-decoration: none;
    padding: 0.5rem 0.875rem;
    border-radius: 0.375rem;
    transition: background 0.2s, color 0.2s;
    white-space: nowrap;
    position: relative;
  }

  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 80%;
    height: 2px;
    background: var(--red);
    transition: transform 0.25s;
  }

  .nav-links a:hover {
    color: var(--red);
    background: rgba(204, 26, 26, 0.05);
  }

  .nav-links a:hover::after {
    transform: translateX(-50%) scaleX(1);
  }

  .nav-cta {
    background: var(--red) !important;
    color: var(--white) !important;
    padding: 0.5625rem 1.25rem !important;
    border-radius: 0.375rem !important;
    font-weight: 700 !important;
    box-shadow: 0 3px 12px rgba(204, 26, 26, 0.3);
  }

  .nav-cta::after {
    display: none !important;
  }

  .nav-cta:hover {
    background: var(--red-dark) !important;
    box-shadow: 0 5px 18px rgba(204, 26, 26, 0.45) !important;
  }

  /* SUB NAV */
  .sub-nav {
    background: var(--black);
    border-bottom: 2px solid var(--red);
    position: sticky;
    top: 70px;
    z-index: 90;
  }

  .sub-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    display: flex;
    gap: 1rem;
    overflow-x: auto;
  }

  .sub-nav-inner a {
    display: inline-block;
    padding: 0.75rem 1rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--white);
    text-decoration: none;
    white-space: nowrap;
    border-bottom: 2px solid transparent;
    transition: all 0.2s;
  }

  .sub-nav-inner a:hover {
    color: var(--red-light);
    border-bottom-color: var(--red);
  }

  /* HERO CARRUSEL */
  .hero-carousel {
    position: relative;
    background: var(--black);
    overflow: hidden;
  }

  .carousel-container {
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
  }

  .carousel-slides {
    display: flex;
    transition: transform 0.5s ease-in-out;
  }

  .carousel-slide {
    min-width: 100%;
    position: relative;
  }

  .carousel-slide img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
  }

  @media (max-width: 768px) {
    .carousel-slide img {
      height: 320px;
    }
  }

  .slide-caption {
    position: absolute;
    bottom: 40px;
    left: 40px;
    right: 40px;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.6) 100%);
    backdrop-filter: blur(4px);
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    border-left: 4px solid var(--red);
  }

  .slide-caption h3 {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.25rem;
  }

  .slide-caption p {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
  }

  @media (max-width: 768px) {
    .slide-caption {
      bottom: 20px;
      left: 20px;
      right: 20px;
      padding: 0.75rem 1rem;
    }
    .slide-caption h3 {
      font-size: 1rem;
    }
    .slide-caption p {
      font-size: 0.75rem;
    }
  }

  .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: white;
    font-size: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .carousel-btn:hover {
    background: var(--red);
  }

  .btn-prev {
    left: 20px;
  }

  .btn-next {
    right: 20px;
  }

  .carousel-dots {
    position: absolute;
    bottom: 20px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 10;
  }

  .dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
  }

  .dot.active {
    background: var(--red);
    width: 28px;
    border-radius: 10px;
  }

  /* SHOP NAV */
  .shop-nav {
    background: var(--white);
    border-bottom: 2px solid var(--red);
    position: sticky;
    top: 70px;
    z-index: 80;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  }

  .shop-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0.75rem var(--container-padding);
    display: flex;
    align-items: center;
    gap: 1rem;
  }

  .shop-search-wrap {
    position: relative;
    flex: 1;
    max-width: 320px;
  }

  .shop-search {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--off-white);
    border: 1.5px solid var(--gray-light);
    border-radius: 2rem;
    padding: 0.5rem 1rem;
    transition: all 0.2s;
  }

  .shop-search:focus-within {
    border-color: var(--red);
    background: var(--white);
  }

  .shop-search input {
    border: none;
    outline: none;
    background: transparent;
    font-family: var(--font-body);
    font-size: 0.875rem;
    width: 100%;
  }

  .shop-search svg {
    color: var(--gray);
    flex-shrink: 0;
  }

  .search-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-top: 2px solid var(--red);
    border-radius: 0.75rem;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.13);
    z-index: 300;
  }

  .search-dropdown.visible {
    display: block;
  }

  .search-results-grid {
    padding: 0.75rem;
    max-height: 360px;
    overflow-y: auto;
  }

  .search-result-item {
    padding: 0.625rem;
    border-radius: 0.5rem;
    cursor: pointer;
    transition: background 0.2s;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .search-result-item:hover {
    background: var(--off-white);
  }

  .search-result-icon {
    font-size: 1.5rem;
  }

  .search-result-info {
    flex: 1;
  }

  .search-result-name {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--text-dark);
  }

  .search-result-price {
    font-size: 0.75rem;
    color: var(--red);
    font-weight: 700;
  }

  /* CATALOG SECTION */
  .shop-catalog {
    padding: 2.5rem 0 4rem;
    background: var(--off-white);
  }

  .shop-catalog-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
  }

  .cat-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
  }

  .cat-chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.8125rem;
    font-weight: 700;
    border: 1.5px solid var(--gray-light);
    background: var(--white);
    color: var(--text-dark);
    cursor: pointer;
    transition: all 0.18s;
  }

  .cat-chip:hover {
    border-color: var(--red);
    color: var(--red);
    background: rgba(204, 26, 26, 0.08);
  }

  .cat-chip.active {
    background: var(--grad-red);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 3px 12px rgba(204, 26, 26, 0.35);
  }

  .cat-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
  }

  #catCount {
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray);
  }

  .cat-prod-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1rem;
  }

  @media (max-width: 1100px) {
    .cat-prod-grid {
      grid-template-columns: repeat(4, 1fr);
    }
  }

  @media (max-width: 700px) {
    .cat-prod-grid {
      grid-template-columns: repeat(3, 1fr);
    }
  }

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

  .prod-card {
    background: var(--white);
    border-radius: 0.75rem;
    border: 1px solid var(--gray-light);
    overflow: hidden;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    display: block;
  }

  .prod-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(204, 26, 26, 0.12);
    border-color: var(--red-border);
  }

  .prod-img {
    background: var(--off-white);
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
  }

  .prod-info {
    padding: 0.75rem;
  }

  .prod-brand {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
  }

  .prod-name {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0.25rem 0;
    line-height: 1.3;
  }

  .prod-price {
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 800;
    color: var(--red);
    margin-top: 0.5rem;
  }

  /* PRODUCT DIALOG */
  .prod-dialog-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 900;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(4px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
  }

  .prod-dialog-backdrop.open {
    display: flex;
  }

  .prod-dialog {
    background: var(--white);
    border-radius: 1rem;
    width: 100%;
    max-width: 420px;
    overflow: hidden;
    position: relative;
  }

  .prod-dialog::before {
    content: '';
    display: block;
    height: 4px;
    background: var(--grad-red);
  }

  .dlg-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--off-white);
    border: none;
    cursor: pointer;
    font-size: 1rem;
    transition: all 0.2s;
    z-index: 2;
  }

  .dlg-close:hover {
    background: rgba(204, 26, 26, 0.1);
    color: var(--red);
  }

  .dlg-body {
    padding: 1.5rem;
  }

  .dlg-product-row {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--gray-light);
    margin-bottom: 1rem;
  }

  .dlg-prod-icon {
    width: 80px;
    height: 80px;
    background: var(--off-white);
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
  }

  .dlg-prod-brand {
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--gray);
  }

  .dlg-prod-name {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0.25rem 0;
  }

  .dlg-prod-price {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--red);
  }

  .dlg-contact-info {
    background: var(--off-white);
    border-radius: 0.75rem;
    padding: 0.875rem;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
  }

  .dlg-contact-info svg {
    color: var(--red);
    flex-shrink: 0;
  }

  .dlg-contact-info p {
    font-size: 0.8125rem;
    color: var(--text-body);
  }

  .dlg-contact-info strong {
    color: var(--text-dark);
    display: block;
  }

  .dlg-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.75rem;
    padding: 0 1.5rem 1.5rem;
  }

  .dlg-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    border: none;
    cursor: pointer;
  }

  .dlg-btn-cart {
    background: var(--off-white);
    color: var(--text-dark);
    border: 2px solid var(--gray-light);
  }

  .dlg-btn-cart:hover {
    border-color: var(--red);
    color: var(--red);
  }

  .dlg-btn-buy {
    background: var(--grad-red);
    color: var(--white);
    box-shadow: 0 4px 16px rgba(204, 26, 26, 0.35);
  }

  .dlg-btn-buy:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(204, 26, 26, 0.5);
  }

  .dlg-note {
    text-align: center;
    font-size: 0.6875rem;
    color: var(--gray);
    padding-bottom: 1rem;
  }

  .dlg-note a {
    color: var(--red);
    text-decoration: none;
    font-weight: 700;
  }

  /* SOLUTIONS SECTION */
  .solutions {
    padding: 4rem 0;
    background: var(--off-white);
  }

  .section-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
  }

  .section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 0.75rem;
  }

  .section-tag::before {
    content: '';
    width: 1.5rem;
    height: 2px;
    background: var(--red);
  }

  .section-title {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 6vw, 2.75rem);
    font-weight: 800;
    color: var(--text-dark);
    line-height: 1.08;
    margin-bottom: 1rem;
    text-transform: uppercase;
  }

  .solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
  }

  .sol-card {
    background: var(--white);
    border-radius: 0.875rem;
    border: 1px solid var(--gray-light);
    border-top: 3px solid transparent;
    padding: 1.5rem;
    transition: all 0.25s;
    position: relative;
  }

  .sol-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(204, 26, 26, 0.1);
    border-color: rgba(204, 26, 26, 0.15);
  }

  .sol-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.3s;
  }

  .sol-card:hover::before {
    transform: scaleX(1);
  }

  .sol-icon {
    width: 3.25rem;
    height: 3.25rem;
    border-radius: 0.625rem;
    background: rgba(204, 26, 26, 0.08);
    border: 1px solid rgba(204, 26, 26, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    margin-bottom: 1rem;
  }

  .sol-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
    font-family: var(--font-display);
    text-transform: uppercase;
  }

  .sol-card p {
    font-size: 0.8125rem;
    line-height: 1.65;
    color: var(--text-body);
  }

  .sol-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 1rem;
    font-size: 0.8125rem;
    font-weight: 700;
    color: var(--red);
    text-decoration: none;
    text-transform: uppercase;
    transition: gap 0.2s;
  }

  .sol-link:hover {
    gap: 0.625rem;
  }

  /* PARTNERS */
  .partners {
    background: var(--off-white);
    padding: 2.5rem 0;
    border-top: 1px solid var(--gray-light);
    border-bottom: 1px solid var(--gray-light);
  }

  .partners-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
    text-align: center;
  }

  .partners h4 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gray);
    margin-bottom: 2rem;
  }

  .partner-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
  }

  .partner-logo {
    background: var(--white);
    border: 1px solid var(--gray-light);
    border-radius: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-dark);
    transition: all 0.2s;
  }

  .partner-logo:hover {
    border-bottom-color: var(--red);
    transform: translateY(-2px);
  }

  /* CTA SECTION */
  .cta-section {
    background: var(--charcoal);
    border-top: 3px solid var(--red);
    padding: 4rem 0;
    text-align: center;
  }

  .cta-section .section-tag {
    color: var(--red-light);
  }

  .cta-section .section-tag::before {
    background: var(--red-light);
  }

  .cta-section .section-title {
    color: var(--white);
  }

  .cta-section .section-sub {
    color: rgba(255, 255, 255, 0.55);
    max-width: 500px;
    margin: 0 auto 2rem;
  }

  .cta-btns {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
  }

  .btn-primary, .btn-blue {
    background: var(--red);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.875rem 1.75rem;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
  }

  .btn-primary:hover, .btn-blue:hover {
    background: var(--red-dark);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(204, 26, 26, 0.45);
  }

  .btn-ghost {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.25);
    color: var(--white);
    font-size: 0.875rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 0.75rem 1.75rem;
    border-radius: 0.375rem;
    text-decoration: none;
    transition: all 0.2s;
  }

  .btn-ghost:hover {
    border-color: var(--red);
    background: rgba(204, 26, 26, 0.1);
  }

  /* FOOTER */
  footer {
    background: var(--black);
    border-top: 3px solid var(--red);
    padding: 3rem 0 1.75rem;
  }

  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--container-padding);
  }

  .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
  }

  @media (max-width: 768px) {
    .footer-grid {
      grid-template-columns: 1fr;
      gap: 1.5rem;
    }
  }

  .footer-brand p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.7;
    margin-top: 0.5rem;
    max-width: 280px;
  }

  .footer-col h5 {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 1rem;
  }

  .footer-col ul {
    list-style: none;
  }

  .footer-col ul li {
    margin-bottom: 0.5rem;
  }

  .footer-col ul a {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-col ul a:hover {
    color: var(--white);
  }

  .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 1.5rem;
    display: flex;
    justify-content: space-between;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.25);
  }

  @media (max-width: 768px) {
    .footer-bottom {
      flex-direction: column;
      align-items: center;
      gap: 0.5rem;
      text-align: center;
    }
  }

  /* WHATSAPP FLOAT */
  .wa-btn {
    position: fixed;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 999;
    width: 3.5rem;
    height: 3.5rem;
    border-radius: 50%;
    background: #25D366;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.75rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.45);
    transition: transform 0.2s;
  }

  .wa-btn:hover {
    transform: scale(1.1);
  }

  /* ============================================================
   XCROSSPLAY — DARK MODE COMPLETO
   Pega este bloque al FINAL de tu styles.css
   Se activa cuando <body> tiene la clase "dark"
   ============================================================ */

body.dark {
  --red:        #E0201A;
  --red-dark:   #A01010;
  --red-light:  #FF3B32;
  --red-glow:   rgba(224,32,26,.45);
  --black:      #080808;
  --charcoal:   #111111;
  --dark:       #161616;
  --dark-mid:   #1C1C1C;
  --white:      #F0F0F0;
  --off-white:  #141414;
  --gray-light: rgba(255,255,255,.08);
  --gray:       #555555;
  --text-dark:  #F0F0F0;
  --text-body:  rgba(255,255,255,.6);
  --grad-red:   linear-gradient(135deg,#A01010 0%,#FF3B32 100%);
  background:   #080808;
  color:        rgba(255,255,255,.6);
}

/* ── TOP BAR ── */
body.dark .topbar {
  background: #080808;
  border-bottom: 1px solid rgba(224,32,26,.4);
  box-shadow: 0 1px 0 rgba(224,32,26,.5), 0 2px 16px rgba(224,32,26,.1);
}
body.dark .topbar a       { color: #555; }
body.dark .topbar a:hover { color: #FF3B32; text-shadow: 0 0 8px rgba(255,59,50,.6); }
body.dark .topbar-dot     { background: #FF3B32; box-shadow: 0 0 6px rgba(255,59,50,.8); }

/* ── NAV PRINCIPAL ── */
body.dark nav {
  background: rgba(8,8,8,.97);
  border-bottom: 1px solid rgba(224,32,26,.3);
  box-shadow: 0 1px 0 rgba(224,32,26,.4), 0 4px 24px rgba(0,0,0,.6);
}
body.dark .logo-icon {
  border-color: #FF3B32;
  box-shadow: 0 0 8px rgba(255,59,50,.5), 0 0 20px rgba(224,32,26,.2), inset 0 0 12px rgba(224,32,26,.15);
}
body.dark .logo-icon::before {
  background: linear-gradient(to bottom, transparent, #FF3B32, transparent);
  box-shadow: 0 0 6px #FF3B32;
}
body.dark .logo-text strong    { color: #F0F0F0; }
body.dark .logo-text strong em { color: #FF3B32; text-shadow: 0 0 12px rgba(255,59,50,.5); }
body.dark .logo-text span      { color: #444; }
body.dark .nav-links a         { color: rgba(255,255,255,.6); }
body.dark .nav-links a::after  { background: #FF3B32; box-shadow: 0 0 6px #FF3B32; }
body.dark .nav-links a:hover   { color: #fff; background: rgba(255,255,255,.04); text-shadow: 0 0 10px rgba(255,255,255,.2); }
body.dark .nav-cta             { background: #CC1A1A !important; box-shadow: 0 0 10px rgba(204,26,26,.5), 0 0 20px rgba(224,32,26,.2) !important; }
body.dark .nav-cta:hover       { background: #FF3B32 !important; box-shadow: 0 0 16px rgba(255,59,50,.7) !important; }

body.dark .dark-toggle-btn {
  color: rgba(255,255,255,.8);
  border-color: rgba(255,59,50,.4);
  box-shadow: 0 0 10px rgba(255,59,50,.2);
}
body.dark .dark-toggle-btn:hover { border-color: #FF3B32; box-shadow: 0 0 14px rgba(255,59,50,.4); }

/* ── SUB NAV ── */
body.dark .sub-nav {
  background: #111111;
  border-bottom: 1px solid rgba(224,32,26,.4);
  box-shadow: 0 1px 0 rgba(224,32,26,.5), 0 4px 20px rgba(0,0,0,.5);
}
body.dark .sub-nav-inner a       { color: rgba(255,255,255,.45); }
body.dark .sub-nav-inner a:hover { color: #FF3B32; border-bottom-color: #FF3B32; text-shadow: 0 0 10px rgba(255,59,50,.5); }

/* ── HERO CARRUSEL ── */
body.dark .carousel-slide img { filter: brightness(.8) saturate(1.1); }
body.dark .slide-caption {
  background: rgba(0,0,0,.8);
  border-left-color: #FF3B32;
  box-shadow: -3px 0 14px rgba(255,59,50,.35), 0 8px 32px rgba(0,0,0,.5);
}
body.dark .slide-caption h3 { text-shadow: 0 0 20px rgba(255,255,255,.15); }
body.dark .carousel-btn     { background: rgba(0,0,0,.7); border: 1px solid rgba(224,32,26,.3); }
body.dark .carousel-btn:hover { background: #CC1A1A; box-shadow: 0 0 12px rgba(224,32,26,.5); }
body.dark .dot              { background: rgba(255,255,255,.2); }
body.dark .dot.active       { background: #FF3B32; box-shadow: 0 0 8px #FF3B32, 0 0 16px rgba(255,59,50,.4); }

/* ── SHOP NAV ── */
body.dark .shop-nav {
  background: rgba(10,10,10,.98);
  border-bottom: 1px solid rgba(224,32,26,.35);
  box-shadow: 0 1px 0 rgba(224,32,26,.45), 0 4px 24px rgba(0,0,0,.5);
}
body.dark .shop-nav-inner    { background: rgba(10,10,10,.98); }
body.dark .shop-search       { background: #1C1C1C; border-color: rgba(224,32,26,.2); }
body.dark .shop-search:focus-within {
  background: #111; border-color: #FF3B32;
  box-shadow: 0 0 0 2px rgba(224,32,26,.2), 0 0 14px rgba(224,32,26,.25);
}
body.dark .shop-search input             { color: #F0F0F0; }
body.dark .shop-search input::placeholder { color: #444; }
body.dark .shop-search svg               { color: #444; }

body.dark .search-dropdown {
  background: #161616;
  border-color: rgba(224,32,26,.3);
  border-top-color: #FF3B32;
  box-shadow: 0 20px 60px rgba(0,0,0,.7), 0 0 30px rgba(224,32,26,.1);
}
body.dark .search-result-item:hover { background: rgba(224,32,26,.1); }
body.dark .search-result-name       { color: #F0F0F0; }
body.dark .search-result-price      { color: #FF3B32; text-shadow: 0 0 8px rgba(255,59,50,.3); }

body.dark .shop-nav-btn              { color: rgba(255,255,255,.5); }
body.dark .shop-nav-btn:hover,
body.dark .shop-nav-item.active .shop-nav-btn {
  color: #FF3B32; text-shadow: 0 0 10px rgba(255,59,50,.5); border-bottom-color: #FF3B32;
}
body.dark .shop-nav-link             { color: rgba(255,255,255,.5); }
body.dark .shop-nav-link:hover       { color: #FF3B32; border-bottom-color: #FF3B32; text-shadow: 0 0 10px rgba(255,59,50,.5); }
body.dark .shop-nav-link.highlight   { color: #FF3B32; }
body.dark .shop-action-btn           { color: rgba(255,255,255,.5); }
body.dark .shop-action-btn:hover     { color: #FF3B32; background: rgba(224,32,26,.08); }
body.dark .shop-badge                { background: #FF3B32; box-shadow: 0 0 8px rgba(255,59,50,.6); }

body.dark .mega-menu {
  background: #161616;
  border-color: rgba(224,32,26,.3);
  border-top-color: #FF3B32;
  box-shadow: 0 20px 60px rgba(0,0,0,.8), 0 0 30px rgba(224,32,26,.1);
}
body.dark .mega-header          { border-bottom-color: rgba(255,255,255,.06); }
body.dark .mega-header h4       { color: #F0F0F0; }
body.dark .mega-header a        { color: #FF3B32; }
body.dark .mega-banner {
  background: rgba(224,32,26,.08);
  border-color: rgba(224,32,26,.2);
  border-left-color: #FF3B32;
  box-shadow: -3px 0 10px rgba(224,32,26,.2);
}
body.dark .mega-banner strong   { color: #fff; }
body.dark .mega-banner p        { color: rgba(255,255,255,.5); }
body.dark .mega-banner a        { color: #FF3B32; }

/* ── PRODUCT CARDS ── */
body.dark .prod-card            { background: #1C1C1C; border-color: rgba(255,255,255,.07); }
body.dark .prod-card::after     { background: #FF3B32; box-shadow: 0 0 8px #FF3B32; }
body.dark .prod-card:hover      { border-color: rgba(224,32,26,.35); box-shadow: 0 12px 40px rgba(224,32,26,.2), 0 0 0 1px rgba(224,32,26,.25); }
body.dark .prod-img             { background: #161616; }
body.dark .prod-brand           { color: #444; }
body.dark .prod-name            { color: rgba(255,255,255,.82); }
body.dark .prod-price           { color: #FF3B32; text-shadow: 0 0 10px rgba(255,59,50,.35); }

/* ── CATÁLOGO ── */
body.dark .shop-catalog         { background: #080808; }
body.dark .cat-chip             { background: #1C1C1C; border-color: rgba(255,255,255,.08); color: rgba(255,255,255,.5); }
body.dark .cat-chip:hover       { border-color: rgba(224,32,26,.5); color: #FF3B32; background: rgba(224,32,26,.08); box-shadow: 0 0 10px rgba(224,32,26,.15); }
body.dark .cat-chip.active      { background: linear-gradient(135deg,#A01010,#FF3B32); border-color: transparent; color: #fff; box-shadow: 0 0 12px rgba(255,59,50,.5), 0 0 24px rgba(224,32,26,.25); }
body.dark #catCount             { color: #444; }
body.dark #catCount strong      { color: #F0F0F0; }
body.dark #catActiveLabel       { color: #FF3B32; background: rgba(224,32,26,.1); border-color: rgba(224,32,26,.3); box-shadow: 0 0 8px rgba(224,32,26,.15); }

/* ── DIALOG ── */
body.dark .prod-dialog-backdrop { background: rgba(0,0,0,.88); }
body.dark .prod-dialog {
  background: #161616;
  border: 1px solid rgba(224,32,26,.25);
  box-shadow: 0 0 0 1px rgba(224,32,26,.15), 0 0 20px rgba(224,32,26,.4),
              0 0 60px rgba(224,32,26,.15), 0 24px 60px rgba(0,0,0,.7);
}
body.dark .prod-dialog::before  { background: linear-gradient(90deg,#A01010,#FF3B32,#FF6B5B); box-shadow: 0 0 12px #FF3B32, 0 0 24px rgba(255,59,50,.3); }
body.dark .dlg-close            { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08); color: #555; }
body.dark .dlg-close:hover      { background: rgba(224,32,26,.15); border-color: rgba(224,32,26,.4); color: #FF3B32; box-shadow: 0 0 8px rgba(224,32,26,.3); }
body.dark .dlg-product-row      { border-bottom-color: rgba(255,255,255,.07); }
body.dark .dlg-prod-icon        { background: #1C1C1C; border: 1px solid rgba(224,32,26,.2); box-shadow: inset 0 0 16px rgba(224,32,26,.06); }
body.dark .dlg-prod-brand       { color: #555; }
body.dark .dlg-prod-name        { color: #F0F0F0; }
body.dark .dlg-prod-price       { color: #FF3B32; text-shadow: 0 0 12px rgba(255,59,50,.4); }
body.dark .dlg-contact-info     { background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.06); }
body.dark .dlg-contact-info svg { filter: drop-shadow(0 0 4px rgba(255,59,50,.5)); color: #FF3B32; }
body.dark .dlg-contact-info p   { color: rgba(255,255,255,.45); }
body.dark .dlg-contact-info strong { color: #F0F0F0; }
body.dark .dlg-btn-cart         { background: rgba(255,255,255,.05); color: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.1); }
body.dark .dlg-btn-cart:hover   { border-color: rgba(224,32,26,.5); color: #FF3B32; background: rgba(224,32,26,.08); box-shadow: 0 0 10px rgba(224,32,26,.2); }
body.dark .dlg-btn-buy          { background: linear-gradient(135deg,#A01010,#FF3B32); box-shadow: 0 0 12px rgba(224,32,26,.5), 0 0 24px rgba(255,59,50,.2); }
body.dark .dlg-btn-buy:hover    { box-shadow: 0 0 20px rgba(224,32,26,.7), 0 0 40px rgba(255,59,50,.3); }
body.dark .dlg-note             { color: rgba(255,255,255,.25); }
body.dark .dlg-note a           { color: #FF3B32; text-shadow: 0 0 8px rgba(255,59,50,.4); }

/* ── SOLUTIONS ── */
body.dark .solutions            { background: #111111; }
body.dark .section-tag          { color: #FF3B32; text-shadow: 0 0 8px rgba(255,59,50,.4); }
body.dark .section-tag::before  { background: #FF3B32; box-shadow: 0 0 6px #FF3B32; }
body.dark .section-title        { color: #F0F0F0; }
body.dark .sol-card             { background: #1C1C1C; border-color: rgba(255,255,255,.07); }
body.dark .sol-card::before     { background: #FF3B32; box-shadow: 0 0 10px #FF3B32; }
body.dark .sol-card:hover       { border-color: rgba(224,32,26,.25); box-shadow: 0 12px 40px rgba(224,32,26,.2), 0 0 0 1px rgba(224,32,26,.2); }
body.dark .sol-icon             { background: rgba(224,32,26,.1); border-color: rgba(224,32,26,.2); }
body.dark .sol-card h3          { color: #F0F0F0; }
body.dark .sol-card p           { color: rgba(255,255,255,.45); }
body.dark .sol-link             { color: #FF3B32; text-shadow: 0 0 8px rgba(255,59,50,.3); }

/* ── PARTNERS ── */
body.dark .partners             { background: #080808; border-top-color: rgba(224,32,26,.2); border-bottom-color: rgba(224,32,26,.2); }
body.dark .partners h4          { color: rgba(255,255,255,.2); }
body.dark .partner-logo         { background: #1C1C1C; border-color: rgba(255,255,255,.07); color: rgba(255,255,255,.4); }
body.dark .partner-logo:hover   { border-color: rgba(224,32,26,.35); color: #F0F0F0; box-shadow: 0 0 14px rgba(224,32,26,.15); }

/* ── CTA ── */
body.dark .cta-section          { background: #111111; border-top-color: #CC1A1A; }
body.dark .cta-section .section-title { color: #F0F0F0; }
body.dark .cta-section .section-sub   { color: rgba(255,255,255,.45); }
body.dark .btn-primary,
body.dark .btn-blue             { background: #CC1A1A; box-shadow: 0 0 12px rgba(204,26,26,.5), 0 0 24px rgba(224,32,26,.2); }
body.dark .btn-primary:hover,
body.dark .btn-blue:hover       { background: #FF3B32; box-shadow: 0 0 20px rgba(255,59,50,.7), 0 0 40px rgba(224,32,26,.3); }
body.dark .btn-ghost            { border-color: rgba(255,255,255,.15); color: rgba(255,255,255,.7); }
body.dark .btn-ghost:hover      { border-color: #FF3B32; color: #FF3B32; box-shadow: 0 0 12px rgba(255,59,50,.2); }

/* ── FOOTER ── */
body.dark footer                { background: #080808; border-top-color: #CC1A1A; box-shadow: 0 -1px 0 rgba(224,32,26,.5), 0 -4px 20px rgba(224,32,26,.08); }
body.dark .footer-brand p       { color: rgba(255,255,255,.3); }
body.dark .footer-col h5        { color: #FF3B32; text-shadow: 0 0 8px rgba(255,59,50,.3); }
body.dark .footer-col ul a      { color: rgba(255,255,255,.3); }
body.dark .footer-col ul a:hover { color: #fff; text-shadow: 0 0 8px rgba(255,255,255,.2); }
body.dark .footer-bottom        { border-top-color: rgba(255,255,255,.05); color: rgba(255,255,255,.18); }

/* ── WHATSAPP ── */
body.dark .wa-btn       { box-shadow: 0 4px 20px rgba(37,211,102,.5), 0 0 20px rgba(37,211,102,.3); }
body.dark .wa-btn:hover { box-shadow: 0 6px 28px rgba(37,211,102,.65), 0 0 32px rgba(37,211,102,.4); }

/* ── SCROLLBAR ── */
body.dark ::-webkit-scrollbar       { width: 5px; height: 5px; }
body.dark ::-webkit-scrollbar-track { background: #080808; }
body.dark ::-webkit-scrollbar-thumb { background: #A01010; border-radius: 3px; }
body.dark ::-webkit-scrollbar-thumb:hover { background: #FF3B32; box-shadow: 0 0 6px rgba(255,59,50,.6); }


/* ============================================================
   BOTÓN TOGGLE — añadir en tu styles.css
   ============================================================ */
.dark-toggle-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 15px;
  border: 1.5px solid rgba(204,26,26,.3);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: .8125rem;
  font-weight: 700;
  color: var(--text-dark);
  transition: all .2s;
  white-space: nowrap;
}
.dark-toggle-btn:hover {
  border-color: var(--red);
  color: var(--red);
  background: rgba(204,26,26,.06);
}
.dark-toggle-btn .toggle-icon { font-size: 14px; line-height: 1; }

  