
      body { font-family: 'Sora', sans-serif; }

      ::-webkit-scrollbar { width: 6px; }
      ::-webkit-scrollbar-track { background: #0d0d0d; }
      ::-webkit-scrollbar-thumb { background: #1f1f1f; border-radius: 999px; }
      ::-webkit-scrollbar-thumb:hover { background: #2b2b2b; }

      :root {
          --accent: #f5a524;
          --ease-smooth: cubic-bezier(0.2, 0.8, 0.2, 1);
          --ease-standard: cubic-bezier(0.4, 0, 0.2, 1);
      }

      html { color-scheme: dark; scrollbar-gutter: stable both-edges; background: #0d0d0d; }
      body.modal-open { overflow: hidden; }
      button, a, input, select { -webkit-tap-highlight-color: transparent; }
      button, a { backface-visibility: hidden; }
      :focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

      @keyframes fadeInUp {
          from { transform: translate3d(0, 20px, 0); opacity: 0; }
          to { transform: translate3d(0, 0, 0); opacity: 1; }
      }
      @keyframes fadeInDown {
          from { transform: translate3d(0, -20px, 0); opacity: 0; }
          to { transform: translate3d(0, 0, 0); opacity: 1; }
      }
      .animate-on-load-1 { animation: fadeInUp 0.8s ease 0.2s forwards; opacity: 0; }
      .animate-on-load-2 { animation: fadeInUp 0.8s ease 0.4s forwards; opacity: 0; }
      .animate-on-load-3 { animation: fadeInUp 0.8s ease 0.6s forwards; opacity: 0; }
      .animate-on-load-4 { animation: fadeInUp 0.8s ease 0.8s forwards; opacity: 0; }
      .animate-nav { animation: fadeInDown 0.8s ease forwards; opacity: 0; }

      @keyframes viewEnter {
          from { opacity: 0; transform: translate3d(0, 8px, 0); }
          to { opacity: 1; transform: translate3d(0, 0, 0); }
      }
      .view-enter {
          animation: viewEnter 0.34s var(--ease-smooth) both;
          will-change: opacity, transform;
      }

      @keyframes toastIn {
          from { transform: translate3d(0, 12px, 0); opacity: 0; }
          to { transform: translate3d(0, 0, 0); opacity: 1; }
      }
      @keyframes toastOut {
          from { opacity: 1; transform: translate3d(0, 0, 0); }
          to { opacity: 0; transform: translate3d(0, 8px, 0); }
      }
      .toast-enter { animation: toastIn 0.28s var(--ease-smooth) forwards; }
      .toast-exit { animation: toastOut 0.2s var(--ease-standard) forwards; }

      @keyframes modalIn {
          from { opacity: 0; transform: scale(0.985); }
          to { opacity: 1; transform: scale(1); }
      }
      .modal-panel-enter { animation: modalIn 0.26s var(--ease-smooth) forwards; }

      .custom-checkbox:checked + div {
          background-color: var(--accent);
          border-color: var(--accent);
      }
      .custom-checkbox:checked + div iconify-icon {
          opacity: 1;
          transform: scale(1);
      }

      .vehicle-image {
          display: block;
          width: 100%;
          height: 100%;
          filter: none !important;
          opacity: 1;
          object-fit: contain !important;
          object-position: center !important;
          max-width: 100%;
          max-height: 100%;
      }
      .hero-media {
          transform: scale(1.035);
          animation: heroDrift 18s var(--ease-smooth) infinite alternate;
          will-change: transform;
      }

      @keyframes heroDrift {
          from { transform: scale(1.035) translate3d(-0.35%, 0, 0); }
          to { transform: scale(1.075) translate3d(0.35%, -0.5%, 0); }
      }

      .hero-title {
          font-size: clamp(2.8rem, 5vw, 4.4rem);
          font-weight: 600;
          line-height: 1.2;
          letter-spacing: -0.015em;
          text-wrap: balance;
          color: #fff;
      }
      .hero-subtitle {
          max-width: 700px;
          margin-inline: auto;
          color: #aaaaaa;
          font-size: 1rem;
          font-weight: 400;
          line-height: 1.6;
      }

      .status-pill {
          color: #fff;
          background: transparent;
          border: 1px solid rgba(255, 255, 255, 0.08);
      }
      .status-dot {
          width: 8px;
          height: 8px;
          flex-shrink: 0;
          border-radius: 50%;
          background: #10b981;
          box-shadow: 0 0 8px #10b981;
          animation: statusPulse 2s infinite;
      }
      @keyframes statusPulse {
          0%, 100% { opacity: 1; }
          50% { opacity: 0.5; }
      }
      .status-dot-offline {
          background: #555555;
          box-shadow: none;
          animation: none;
      }

      .btn, .status-pill {
          display: inline-flex;
          align-items: center;
          justify-content: center;
          gap: 0.5rem;
          min-width: 180px;
          padding: 0.85rem 1.5rem;
          border-radius: 6px;
          font-size: 0.95rem;
          font-weight: 600;
          line-height: 1;
          transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
      }
      .btn-primary {
          color: #0d0d0d;
          background: var(--accent);
          border: 1px solid var(--accent);
      }
      .btn-primary:hover { background: #ffb84d; border-color: #ffb84d; }
      .btn-ghost {
          color: #fff;
          background: transparent;
          border: 1px solid rgba(255, 255, 255, 0.08);
      }
      .btn-ghost:hover {
          background: rgba(255, 255, 255, 0.06);
          border-color: rgba(255, 255, 255, 0.14);
      }
      @media (max-width: 768px) {
          .hero-title { font-size: clamp(2.2rem, 8vw, 3.2rem); }
          .hero-subtitle { font-size: 0.95rem; }
      }
      @media (max-width: 480px) {
          .hero-title { font-size: 2.1rem; }
          .btn, .status-pill { width: 100%; min-width: 0; max-width: 280px; }
      }

      @keyframes cardEnter {
          from { opacity: 0; }
          to { opacity: 1; }
      }

      .catalog-card-enter {
          opacity: 0;
          animation: cardEnter 0.34s ease-out forwards;
      }

      .smooth-hover-card {
          transform: translateZ(0);
          transition: border-color 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
          will-change: border-color, background-color;
      }
      .smooth-hover-card:hover {
          border-color: rgba(255, 255, 255, 0.14);
          background-color: rgba(255, 255, 255, 0.04);
      }
      .smooth-hover-card .smooth-hover-media {
          transform: translateZ(0) scale(1);
          transition: transform 220ms var(--ease-standard);
          will-change: transform;
      }
      .smooth-hover-card:hover .smooth-hover-media { transform: translateZ(0) scale(1.018); }

      .sort-menu-enter {
          animation: sortMenuEnter 150ms var(--ease-standard) both;
          transform-origin: top right;
      }
      @keyframes sortMenuEnter {
          from { opacity: 0; transform: translate3d(0, -5px, 0) scale(0.985); }
          to { opacity: 1; transform: translate3d(0, 0, 0) scale(1); }
      }
      .sort-option-active {
          background: rgba(229, 229, 229, 0.12);
          color: #ffffff;
      }
      .sort-option-active iconify-icon { opacity: 1; }

      .reveal-item {
          opacity: 0;
          transform: translate3d(0, 22px, 0);
          transition: opacity 0.7s var(--ease-smooth), transform 0.7s var(--ease-smooth);
          will-change: opacity, transform;
      }
      .reveal-item.reveal-visible { opacity: 1; transform: translate3d(0, 0, 0); }

      .site-logo {
          height: 1.75rem;
          width: auto;
          object-fit: contain;
          transition: transform 0.45s var(--ease-smooth), opacity 0.25s ease;
      }
      .group:hover .site-logo { transform: scale(1.07) rotate(-2deg); }
      .vehicle-display {
          position: relative;
          overflow: hidden;
          background: radial-gradient(circle at 50% 48%, rgba(43,43,43,0.32), rgba(13,13,13,0.96) 74%);
      }
      .vehicle-display .vehicle-image {
          padding: clamp(0.75rem, 2.5vw, 2rem);
          box-sizing: border-box;
          object-fit: contain !important;
          object-position: center !important;
      }

      .product-vehicle-display {
          width: 100%;
          height: auto;
          min-height: 0;
          aspect-ratio: 16 / 9;
          border-radius: 0;
          background: radial-gradient(circle at 50% 48%, rgba(85,85,85,0.36), rgba(20,20,20,0.72) 48%, rgba(13,13,13,0.98) 100%);
      }
      .product-vehicle-display .vehicle-image {
          padding: clamp(0.5rem, 1.8vw, 1.15rem);
      }

      @media (max-width: 1023px) {
          .product-vehicle-display { aspect-ratio: 16 / 10; }
      }

      .vehicle-card-media {
          height: 12rem;
          min-height: 0;
      }

      .vehicle-related-media {
          height: 9rem;
          min-height: 0;
      }

      .vehicle-card-media .vehicle-image,
      .vehicle-related-media .vehicle-image {
          padding: clamp(0.65rem, 4%, 1.25rem);
          box-sizing: border-box;
      }

      ::view-transition-old(root) { animation: 0.18s ease both fade-out; }
      ::view-transition-new(root) { animation: 0.34s var(--ease-smooth) both fade-in; }
      @keyframes fade-out { to { opacity: 0; transform: translateY(-3px); } }
      @keyframes fade-in { from { opacity: 0; transform: translateY(7px); } }

      @media (prefers-reduced-motion: reduce) {
          *, *::before, *::after {
              scroll-behavior: auto !important;
              animation-duration: 0.01ms !important;
              animation-iteration-count: 1 !important;
              transition-duration: 0.01ms !important;
          }
      }











