
    *, *::before, *::after { box-sizing: border-box; }
    html, body { overflow-x: hidden; max-width: 100%; }
    html { scroll-behavior: smooth; }
    body { font-family: 'Outfit', system-ui, sans-serif; background: #ffffff; color: #171717; }
    ::-webkit-scrollbar { width: 5px; }
    ::-webkit-scrollbar-thumb { background: #f97316; border-radius: 3px; }

    .swal2-container { z-index: 10000 !important; }
    .swal2-popup { border-radius: 24px !important; font-family: 'Outfit', sans-serif !important; max-width: 600px !important; }
    .swal2-title { font-weight: 700 !important; font-size: 1.5rem !important; color: #171717 !important; }
    .swal2-html-container { font-size: 0.95rem !important; text-align: left !important; }
    .swal2-confirm, .swal2-cancel, .swal2-deny {
      border-radius: 40px !important; font-weight: 600 !important; padding: 12px 28px !important; font-size: .9rem !important;
    }

    /* Cookie consent bar */
    .cookie-consent-bar {
      position: fixed;
      bottom: 0;
      left: 0;
      right: 0;
      z-index: 9500;
      background: #1e1e1e;
      color: #f5f5f0;
      padding: 14px 20px;
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      transform: translateY(100%);
      transition: transform 0.3s ease;
      box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
      border-top: 2px solid #f97316;
    }
    .cookie-consent-bar.show { transform: translateY(0); }
    .cookie-text { font-size: 0.85rem; max-width: 800px; }
    .cookie-buttons { display: flex; gap: 10px; flex-wrap: wrap; }
    .cookie-btn {
      border: none;
      padding: 8px 18px;
      border-radius: 30px;
      font-weight: 600;
      font-size: 0.8rem;
      cursor: pointer;
      transition: all 0.15s;
    }
    .cookie-btn.accept { background: #f97316; color: white; }
    .cookie-btn.decline { background: #3a3a3a; color: #ddd; }
    .cookie-btn.settings { background: transparent; color: #f97316; border: 1.5px solid #f97316; }

    .modal-backdrop {
      position: fixed; inset: 0; z-index: 9000;
      background: rgba(0,0,0,.4); backdrop-filter: blur(8px);
      display: flex; align-items: center; justify-content: center; padding: 1rem;
      opacity: 0; pointer-events: none; transition: opacity .2s ease;
    }
    .modal-backdrop.open { opacity: 1; pointer-events: all; }
    .modal-box {
      background: #fff; border-radius: 1.5rem; width: 100%; max-width: 420px;
      padding: 2rem 2rem 1.75rem; box-shadow: 0 40px 80px rgba(0,0,0,.15);
      transform: translateY(20px) scale(.96); opacity: 0;
      transition: transform .35s cubic-bezier(.34,1.4,.64,1), opacity .2s ease;
    }
    .modal-backdrop.open .modal-box { transform: none; opacity: 1; }

    /* HERO SLIDER */
    .hero-wrap { position: relative; width: 100%; height: 100svh; min-height: 500px; max-height: 800px; overflow: hidden; }
    .hero-slides { position: relative; width: 100%; height: 100%; }
    .hero-slide {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      opacity: 0;
      visibility: hidden;
      transition: opacity 1.2s ease-in-out, visibility 1.2s;
      z-index: 1;
    }
    .hero-slide.active {
      opacity: 1;
      visibility: visible;
      z-index: 5;
    }
    .hero-slide .slide-media {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      will-change: transform, opacity;
    }
    .hero-slide.active .slide-media.zoom-in { animation: zoomInEffect 8s ease-out forwards; }
    .hero-slide.active .slide-media.zoom-out { animation: zoomOutEffect 8s ease-out forwards; }
    .hero-slide.active .slide-media.diagonal { animation: diagonalPan 9s ease-in-out forwards; }
    .hero-slide.active .slide-media.fade-only { animation: softFade 6s ease-in-out; }
    @keyframes zoomInEffect {
      0% { transform: scale(1); }
      100% { transform: scale(1.15); }
    }
    @keyframes zoomOutEffect {
      0% { transform: scale(1.15); }
      100% { transform: scale(1); }
    }
    @keyframes diagonalPan {
      0% { transform: scale(1.1) translate(0, 0); }
      50% { transform: scale(1.05) translate(-2%, -2%); }
      100% { transform: scale(1.15) translate(2%, 2%); }
    }
    @keyframes softFade {
      0%, 100% { opacity: 1; }
      50% { opacity: 0.85; }
    }
    .hero-content { position: absolute; inset: 0; z-index: 15; display: flex; align-items: center; pointer-events: none; }
    .hero-content .container { pointer-events: auto; }
    .hero-text-container { transition: opacity 0.5s; }
    .hero-rain {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      pointer-events: none;
      z-index: 10;
      opacity: 0.35;
      display: none;
    }
    .hero-rain canvas {
      display: block;
      width: 100%;
      height: 100%;
    }

    #navbar { transition: background .3s, box-shadow .3s, padding .3s; }
    #navbar.scrolled { background: rgba(255,255,255,.98) !important; box-shadow: 0 4px 20px rgba(0,0,0,.08); padding-top: 0.25rem; padding-bottom: 0.25rem; }
    #navbar.scrolled .nav-link { color: #171717 !important; }
    #navbar.scrolled button { background: #f5f5f0; color: #171717; }

    #mob-menu {
      position: fixed;
      inset: 0;
      z-index: 8000;
      background: #ffffff;
      display: none;
      flex-direction: column;
      padding: 5rem 2rem 2rem;
      overflow-y: auto;
    }
    #mob-menu.open { display: flex; }

    .card-hover { transition: box-shadow .25s, transform .25s; }
    .card-hover:hover { transform: translateY(-5px); box-shadow: 0 20px 40px rgba(249,115,22,.12); }

    .field {
      width: 100%; padding: .7rem 1rem; border-radius: .75rem;
      border: 1.5px solid #e7e7e0; font-size: .875rem; background: #fff;
      outline: none; transition: border-color .2s, box-shadow .2s;
    }
    .field:focus { border-color: #f97316; box-shadow: 0 0 0 3px rgba(249,115,22,.15); }

    .cart-badge {
      position: absolute; top: -7px; right: -7px;
      min-width: 18px; height: 18px; padding: 0 4px;
      border-radius: 9px; background: #f97316; color: #fff;
      font-size: 10px; font-weight: 700;
      display: flex; align-items: center; justify-content: center;
    }

    .reveal { opacity: 0; transform: translateY(28px); transition: opacity .65s ease, transform .65s ease; }
    .reveal.shown { opacity: 1; transform: none; }

    .testimonial-track {
      display: flex;
      transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
    }
    .testimonial-slide {
      flex: 0 0 100%;
      padding: 0 0.5rem;
    }
    .stat-number { display: inline-block; }

    @keyframes spin { to { transform: rotate(360deg); } }

    .orbit-container { position: relative; display: flex; align-items: center; justify-content: center; width: 100%; height: auto; }
    .orbit-ring { position: absolute; border-radius: 50%; border: 1.5px dashed; }
    .orbit-center-logo {
      position: relative;
      z-index: 10;
      width: 6rem;
      height: 6rem;
      border-radius: 9999px;
      background: white;
      box-shadow: 0 10px 25px rgba(0,0,0,0.1);
      border: 3px solid #f97316;
      overflow: hidden;
    }
    @media (min-width: 640px) { .orbit-center-logo { width: 7rem; height: 7rem; } }

    .mega-menu-container { position: relative; }
    .mega-menu-content {
      position: absolute;
      top: 100%;
      left: 0;
      width: 780px;
      max-width: 90vw;
      background: white;
      border-radius: 1.5rem;
      box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25);
      padding: 1.75rem 1.5rem;
      opacity: 0;
      visibility: hidden;
      transform: translateY(8px);
      transition: all 0.2s ease;
      border: 1px solid #f9731630;
      backdrop-filter: blur(10px);
      z-index: 100;
    }
    .mega-menu-container:hover .mega-menu-content,
    .mega-menu-content:hover {
      opacity: 1;
      visibility: visible;
      transform: translateY(0);
    }
    .division-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 0.75rem 1rem;
    }
    .division-item {
      display: flex;
      align-items: center;
      gap: 0.75rem;
      padding: 0.6rem 0.75rem;
      border-radius: 0.9rem;
      transition: background 0.15s;
      text-decoration: none;
      color: #171717;
    }
    .division-item:hover { background: #fff7ed; cursor: pointer; }
    .division-icon {
      width: 32px;
      height: 32px;
      background: #f9731610;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #f97316;
      font-size: 1rem;
    }
    .division-text { font-weight: 500; font-size: 0.9rem; }
    .division-desc { font-size: 0.7rem; color: #737373; }
    
    /* View More Link */
    .view-more-link {
      cursor: pointer;
      color: #f97316;
      font-weight: 600;
      text-decoration: underline;
      text-underline-offset: 2px;
    }
    .view-more-link:hover { color: #ea580c; }
