    :root {
      --color-red: #d72b2b;
      --color-red-dark: #b01e1e;
      --color-bg-footer: #1a1a1a;
      --color-bg-bottom: #111111;
      --color-text-white: #ffffff;
      --color-text-muted: #aaaaaa;
      --color-text-link: #cccccc;
      --color-divider: #333333;
      --color-accent: #e63535;
      --font-heading: 'Barlow Condensed', sans-serif;
      --font-body: 'Barlow', sans-serif;
    }

    body {
      font-family: var(--font-body);
      background: #2a2a2a;
    }

    /* ─── FOOTER WRAPPER ─────────────────────────────── */
    .site-footer {
      background-color: var(--color-bg-footer);
      color: var(--color-text-white);
      padding: 64px 0 0 0;
      position: relative;
      overflow: hidden;
    }

    /* subtle diagonal accent stripe */
    .site-footer::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 6px;
      height: 100%;
      background: var(--color-red);
    }

    /* ─── INNER CONTAINER ────────────────────────────── */
    .footer-container {
      max-width: 1200px;
      margin: 0 auto;
      padding: 0 32px;
    }

    /* ─── TOP GRID ───────────────────────────────────── */
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.6fr;
      gap: 48px;
      padding-bottom: 56px;
      border-bottom: 1px solid var(--color-divider);
    }

 

    .footer-logo-wrap {
      display: inline-block;
      padding: 12px 0px;
      border-radius: 4px;
      margin-bottom: 20px;
    }


    .footer-tagline {
      font-family: var(--font-heading);
      font-size: 13px;
      font-weight: 600;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: var(--color-red);
      margin-bottom: 12px;
    }

    .footer-desc {
      font-size: 14px;
      line-height: 1.7;
      color: var(--color-text-muted);
      margin-bottom: 28px;
    }

    /* Social icons */
    .footer-social {
      display: flex;
      gap: 12px;
    }

    .footer-social a {
      display: flex;
      align-items: center;
      justify-content: center;
      width: 38px;
      height: 38px;
      border-radius: 50%;
      background: #2a2a2a;
      border: 1px solid var(--color-divider);
      color: var(--color-text-muted);
      text-decoration: none;
      transition: background 0.25s, color 0.25s, border-color 0.25s;
    }

    .footer-social a:hover {
      background: var(--color-red);
      color: #fff;
      border-color: var(--color-red);
    }

    .footer-social svg {
      width: 16px;
      height: 16px;
      fill: currentColor;
    }

    /* ─── COLUMN HEADINGS ────────────────────────────── */
    .footer-col-title {
      font-family: var(--font-heading);
      font-size: 15px;
      font-weight: 700;
      letter-spacing: 2.5px;
      text-transform: uppercase;
      color: var(--color-text-white);
      margin-bottom: 24px;
      position: relative;
      padding-bottom: 12px;
    }

    .footer-col-title::after {
      content: '';
      position: absolute;
      bottom: 0;
      left: 0;
      width: 32px;
      height: 2px;
      background: var(--color-red);
    }

    /* ─── USEFUL LINKS ───────────────────────────────── */
    .footer-links {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 12px;
    }

    .footer-links li a {
      display: flex;
      align-items: center;
      gap: 10px;
      font-size: 14px;
      color: var(--color-text-link);
      text-decoration: none;
      transition: color 0.2s, gap 0.2s;
    }

    .footer-links li a::before {
      content: '';
      display: inline-block;
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--color-red);
      flex-shrink: 0;
      transition: transform 0.2s;
    }

    .footer-links li a:hover {
      color: var(--color-text-white);
      gap: 14px;
    }

    .footer-links li a:hover::before {
      transform: scale(1.4);
    }

    /* ─── PRODUCTS LIST ──────────────────────────────── */
    .footer-products {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 0;
    }

    .footer-products > li {
      border-bottom: 1px solid #2a2a2a;
    }

    .footer-products > li:first-child {
      border-top: 1px solid #2a2a2a;
    }

    /* Parent product link row */
    .footer-prod-parent {
      display: flex;
      align-items: center;
      justify-content: space-between;
      font-size: 14px;
      color: var(--color-text-link);
      text-decoration: none;
      border-left: 2px solid transparent;
      padding: 10px 8px 10px 12px;
      cursor: pointer;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
      user-select: none;
    }

    .footer-prod-parent:hover {
      color: var(--color-text-white);
      border-left-color: var(--color-red);
      background: #222;
    }

    /* Arrow chevron */
    .footer-prod-arrow {
      display: inline-block;
      width: 16px;
      height: 16px;
      flex-shrink: 0;
      transition: transform 0.28s ease;
      color: var(--color-red);
    }

    .footer-prod-arrow svg {
      width: 14px;
      height: 14px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2.5;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    /* Checkbox toggle trick — hidden */
    .footer-prod-toggle {
      display: none;
    }
    .footer-prod-toggle1 {
      display: none;
    }
    .footer-prod-toggle2 {
      display: none;
    }


    /* Sub-list hidden by default */
    .footer-prod-sub {
      list-style: none;
      max-height: 0;
      overflow: hidden;
      transition: max-height 0.35s ease, padding 0.2s;
      background: #161616;
      padding: 0 0 0 24px;
    }

    .footer-prod-sub li a {
      display: flex;
      align-items: center;
      gap: 8px;
      font-size: 13px;
      color: #999;
      text-decoration: none;
      padding: 7px 8px;
      transition: color 0.2s, padding-left 0.2s;
    }

    .footer-prod-sub li a::before {
      content: '';
      display: inline-block;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background: var(--color-red);
      flex-shrink: 0;
      opacity: 0.6;
    }

    .footer-prod-sub li a:hover {
      color: #fff;
      padding-left: 14px;
    }

    /* When checkbox checked → expand sub-list + rotate arrow */
    .footer-prod-toggle:checked ~ .footer-prod-sub {
      max-height: 300px;
      padding: 6px 0 10px 24px;
    }

    .footer-prod-toggle:checked ~ .footer-prod-parent .footer-prod-arrow {
      transform: rotate(180deg);
    }

     .footer-prod-toggle1:checked ~ .footer-prod-sub {
      max-height: 300px;
      padding: 6px 0 10px 24px;
    }

    .footer-prod-toggle1:checked ~ .footer-prod-parent .footer-prod-arrow {
      transform: rotate(180deg);
    }

    .footer-prod-toggle2:checked ~ .footer-prod-sub {
      max-height: 300px;
      padding: 6px 0 10px 24px;
    }

    .footer-prod-toggle2:checked ~ .footer-prod-parent .footer-prod-arrow {
      transform: rotate(180deg);
    }

    /* Plain (no-dropdown) product link */
    .footer-prod-plain {
      display: flex;
      align-items: center;
      font-size: 14px;
      color: var(--color-text-link);
      text-decoration: none;
      border-left: 2px solid transparent;
      padding: 10px 8px 10px 12px;
      transition: color 0.2s, border-color 0.2s, background 0.2s;
    }

    .footer-prod-plain:hover {
      color: var(--color-text-white);
      border-left-color: var(--color-red);
      background: #222;
    }

    /* ─── CONTACT COLUMN ─────────────────────────────── */
    .footer-contact-list {
      list-style: none;
      display: flex;
      flex-direction: column;
      gap: 18px;
    }

    .footer-contact-list li {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }

    .contact-icon {
      flex-shrink: 0;
      width: 36px;
      height: 36px;
      border-radius: 6px;
      background: #2a2a2a;
      border: 1px solid var(--color-divider);
      display: flex;
      align-items: center;
      justify-content: center;
      color: var(--color-red);
    }

    .contact-icon svg {
      width: 15px;
      height: 15px;
      fill: currentColor;
    }

    .contact-text {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .contact-label {
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--color-red);
    }

    .contact-value {
      font-size: 13.5px;
      color: var(--color-text-link);
      line-height: 1.5;
    }

    .contact-value a {
      color: inherit;
      text-decoration: none;
      transition: color 0.2s;
    }

    .contact-value a:hover {
      color: #fff;
    }

    /* ─── BOTTOM BAR ─────────────────────────────────── */
    .footer-bottom {
      background: var(--color-bg-bottom);
      padding: 20px 32px;
    }

    .footer-bottom-inner {
      max-width: 1200px;
      margin: 0 auto;
      display: flex;
      align-items: center;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }

    .footer-copyright {
      font-size: 13px;
      color: var(--color-text-muted);
    }

    .footer-copyright a {
      color: var(--color-red);
      text-decoration: none;
      font-weight: 600;
    }

    .footer-copyright a:hover {
      text-decoration: underline;
    }

    .footer-since {
      font-family: var(--font-heading);
      font-size: 12px;
      letter-spacing: 2px;
      text-transform: uppercase;
      color: #555;
    }

    /* ─── RESPONSIVE: TABLET ─────────────────────────── */
    @media (max-width: 960px) {
      .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
      }

      .footer-brand {
        grid-column: 1 / -1;
      }
    }

    /* ─── RESPONSIVE: MOBILE ─────────────────────────── */
    @media (max-width: 600px) {
      .site-footer {
        padding: 48px 0 0 0;
      }

      .footer-container {
        padding: 0 20px;
      }

      .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }

      .footer-brand {
        grid-column: auto;
        text-align: center;
      }

      .footer-social {
        justify-content: center;
      }

      .footer-col-title::after {
        left: 50%;
        transform: translateX(-50%);
      }

      .footer-links li a,
      .footer-products li a {
        justify-content: flex-start;
      }

      .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
      }
    }