    html {
      scroll-behavior: smooth;
      overflow-y: scroll;
    }

    body {
      background-color: theme("colors.onyx");
      color: theme("colors.ivory");
      font-family: theme("fontFamily.sans");
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
    }

    /* ========================================
       ACCESSIBILITY IMPROVEMENTS
       ======================================== */
    
    /* Screen reader only utility */
    .sr-only {
      position: absolute;
      width: 1px;
      height: 1px;
      padding: 0;
      margin: -1px;
      overflow: hidden;
      clip: rect(0, 0, 0, 0);
      white-space: nowrap;
      border-width: 0;
    }
    
    .sr-only:focus,
    .sr-only:focus-visible {
      position: fixed;
      top: 1rem;
      left: 1rem;
      z-index: 9999;
      width: auto;
      height: auto;
      padding: 1rem 1.5rem;
      margin: 0;
      overflow: visible;
      clip: auto;
      white-space: normal;
      background-color: theme("colors.bronze");
      color: theme("colors.onyx");
      border-radius: 0.5rem;
      font-weight: 600;
      text-decoration: none;
    }

    /* Focus visible for keyboard navigation */
    :focus-visible {
      outline: 2px solid theme("colors.bronze");
      outline-offset: 2px;
    }

    /* Reduced motion support */
    @media (prefers-reduced-motion: reduce) {
      *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
      }
    }

    /* ========================================
       SCROLLBAR
       ======================================== */
    ::-webkit-scrollbar {
      width: 8px;
    }

    ::-webkit-scrollbar-track {
      background: theme("colors.onyx");
    }

    ::-webkit-scrollbar-thumb {
      background: theme("colors.stone");
      border-radius: 4px;
      border: 2px solid theme("colors.onyx");
    }

    ::-webkit-scrollbar-thumb:hover {
      background: theme("colors.bronze");
    }

    /* ========================================
       NAV LINK ANIMATION
       ======================================== */
    .nav-link {
      position: relative;
      transition: color 0.3s ease;
    }

    .nav-link::after {
      content: "";
      position: absolute;
      bottom: -4px;
      left: 0;
      width: 100%;
      height: 2px;
      background-color: theme("colors.bronze");
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.4s cubic-bezier(0.19, 1, 0.22, 1);
    }

    .nav-link:hover {
      color: theme("colors.ivory");
    }

    .nav-link:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    /* ========================================
       REVEAL ANIMATION
       ======================================== */
    .reveal {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }

    .reveal.visible {
      opacity: 1;
      transform: translateY(0);
    }

    /* ========================================
       BUTTONS - FIXED CONSOLIDATED STYLES
       ======================================== */
    .btn-secondary {
      position: relative;
      background: rgba(20, 20, 20, 0.25);
      backdrop-filter: blur(10px);
      border: 1px solid rgba(234, 234, 234, 0.25);
      color: theme("colors.ivory");
      font-weight: 800;
      text-transform: uppercase;
      letter-spacing: 0.18em;
      padding: 1rem 2.25rem;
      border-radius: 0.2rem;
      overflow: hidden;
      transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 0.75rem;
      box-shadow: 0 20px 60px rgba(0, 0, 0, 0.35);
      z-index: 1;
    }

    .btn-secondary::before {
      content: '';
      position: absolute;
      inset: 0;
      background: theme("colors.bronze");
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
      z-index: -1;
    }

    .btn-secondary:hover {
      border-color: theme("colors.bronze");
      color: theme("colors.onyx");
      transform: translateY(-2px);
    }

    .btn-secondary:hover::before {
      transform: scaleX(1);
      transform-origin: left;
    }

    .btn-secondary:focus-visible {
      outline: 2px solid theme("colors.bronze");
      outline-offset: 2px;
    }

    .btn-secondary:active {
      transform: translateY(0);
    }

    /* ========================================
       PILLS
       ======================================== */
    .pill {
      border: 1px solid rgba(38, 38, 38, 0.9);
      background: rgba(20, 20, 20, 0.5);
      padding: 0.55rem 0.9rem;
      border-radius: 999px;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      font-size: 0.7rem;
      color: theme("colors.mist");
      transition: all 0.25s ease;
    }

    .pill:hover {
      border-color: theme("colors.bronze");
      color: theme("colors.ivory");
      background: rgba(166, 124, 82, 0.1);
    }

    /* ========================================
       PRODUCT GRID CARD
       ======================================== */
    .product-tile {
      border: 1px solid transparent;
      background: theme("colors.slate");
      border-radius: 0.75rem;
      overflow: hidden;
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .product-tile:hover {
      transform: translateY(-4px);
      border-color: rgba(166, 124, 82, 0.55);
      box-shadow: 0 20px 40px -12px rgba(0, 0, 0, 0.4);
    }

    /* Secondary image on hover */
    .product-tile .secondary-image {
      position: absolute;
      inset: 0;
      opacity: 0;
      transition: opacity 0.3s ease;
    }

    .product-tile:hover .secondary-image {
      opacity: 1;
    }

    /* ========================================
       ANIMATIONS
       ======================================== */
    
    /* Scroll indicator */
    @keyframes scroll-indicator {
      0%, 100% {
        transform: translateY(0);
        opacity: 1;
      }
      50% {
        transform: translateY(8px);
        opacity: 0.5;
      }
    }

    .animate-scroll-indicator {
      animation: scroll-indicator 1.5s ease-in-out infinite;
    }

    /* Cart badge pop */
    @keyframes badge-pop {
      0% { transform: scale(0.5); }
      70% { transform: scale(1.2); }
      100% { transform: scale(1); }
    }

    .animate-badge-pop {
      animation: badge-pop 0.3s ease-out;
    }

    /* Cart badge bounce */
    @keyframes badge-bounce {
      0%, 100% { transform: scale(1); }
      50% { transform: scale(1.15); }
    }

    .animate-badge-bounce {
      animation: badge-bounce 0.5s ease-in-out;
    }

    /* Counter animation */
    @keyframes count-up {
      from { opacity: 0; transform: translateY(10px); }
      to { opacity: 1; transform: translateY(0); }
    }

    .animate-count-up {
      animation: count-up 0.6s ease-out forwards;
    }

    /* Fade in animations */
    @keyframes fade-in-up {
      from {
        opacity: 0;
        transform: translateY(20px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .animate-fade-in-up {
      animation: fade-in-up 0.6s ease-out forwards;
    }

    /* Shimmer for skeleton loaders */
    @keyframes shimmer {
      0% {
        background-position: -200% 0;
      }
      100% {
        background-position: 200% 0;
      }
    }

    .skeleton-shimmer {
      background: linear-gradient(
        90deg,
        theme("colors.stone") 25%,
        theme("colors.slate") 50%,
        theme("colors.stone") 75%
      );
      background-size: 200% 100%;
      animation: shimmer 1.5s infinite;
    }

    /* Float animation for icons */
    @keyframes float {
      0%, 100% { transform: translateY(0); }
      50% { transform: translateY(-5px); }
    }

    .animate-float {
      animation: float 3s ease-in-out infinite;
    }

    /* ========================================
       MOBILE TOUCH TARGETS
       ======================================== */
    @media (max-width: 1024px) {
      button, 
      a, 
      [role="button"],
      .nav-link,
      .pill,
      .btn-secondary {
        min-height: 44px;
        min-width: 44px;
      }
    }

    /* Safe area for iOS */
    @supports (padding: env(safe-area-inset-bottom)) {
      .mobile-menu-safe-area {
        padding-bottom: env(safe-area-inset-bottom);
      }
    }

    /* ========================================
       SWIPER THEME
       ======================================== */
    .swiper-pagination-bullet {
      background-color: theme("colors.stone");
      opacity: 0.8;
      width: 8px;
      height: 8px;
    }

    .swiper-pagination-bullet-active {
      background-color: theme("colors.bronze");
      width: 24px;
      border-radius: 999px;
    }

    .swiper-button-next,
    .swiper-button-prev {
      color: theme("colors.bronze") !important;
      transition: all 0.3s ease;
    }

    .swiper-button-next:hover,
    .swiper-button-prev:hover {
      color: theme("colors.bronze-light") !important;
      transform: scale(1.1);
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
      font-size: 1.25rem;
    }

    /* ========================================
       MOBILE MENU CHEVRON
       ======================================== */
    .mobile-menu-item summary::-webkit-details-marker {
      display: none;
    }

    .mobile-menu-item summary {
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .mobile-menu-item summary::after {
      content: "›";
      font-size: 1.5rem;
      transform: rotate(90deg);
      transition: transform 0.3s ease;
      color: #a67c52;
    }

    .mobile-menu-item details[open]>summary::after {
      transform: rotate(-90deg);
    }

    /* ========================================
       HEADER TRANSITIONS
       ======================================== */
    .header-hidden {
      transform: translateY(-100%);
    }

    .header-scrolled {
      background: rgba(10, 10, 10, 0.95);
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      border-bottom: 1px solid rgba(38, 38, 38, 0.5);
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
    }

    /* ========================================
       STICKY TOP OFFSET FOR ANCHOR JUMPS
       ======================================== */
    .anchor-offset {
      scroll-margin-top: 120px;
    }

    /* ========================================
       STAT CARD STYLES
       ======================================== */
    .stat-card {
      background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(20, 20, 20, 0.6));
      border: 1px solid rgba(38, 38, 38, 0.5);
      border-radius: 1rem;
      padding: 1.5rem;
      transition: all 0.3s ease;
    }

    .stat-card:hover {
      border-color: rgba(166, 124, 82, 0.4);
      transform: translateY(-2px);
      box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    }

    .stat-card .icon-container {
      width: 3rem;
      height: 3rem;
      border-radius: 50%;
      background: rgba(166, 124, 82, 0.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin: 0 auto 1rem;
      transition: all 0.3s ease;
    }

    .stat-card:hover .icon-container {
      background: rgba(166, 124, 82, 0.2);
      transform: scale(1.1);
    }