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

  :root {
    --black:      #0a0a0a;
    --charcoal:   #141415;
    --surface:    #1a1a1d;
    --dark-gold:  #2a2410;
    --border:     rgba(212,175,55,0.08);
    --primary:    #A0622A;
    --secondary:  #a0522d;
    --accent:     #A0622A;
    --offwhite:   #f5f1e8;
    --cream:      #e5ddd0;
    --muted:      #8a8478;
    --fade:       rgba(245,241,232,0.5);
    --luxury-gold: #A0622A;
    --rich-copper: #8b4513;
    --subtle-gold: rgba(212,175,55,0.06);

    --font-display:  'Bebas Neue', sans-serif;
    --font-serif:    'Barlow Condensed', sans-serif;
    --font-narrow:   'Cormorant Garamond', serif;
    --font-secondary: 'Barlow Condensed', sans-serif;
    --font-sans:     'Inter', sans-serif;
  }
  * { font-style: normal; }

  html { scroll-behavior: smooth; }

  body {
    background: var(--black);
    color: var(--offwhite);
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
  }

  /* â”€â”€â”€ NAV â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 0 5vw;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(13,13,13,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    font-family: var(--font-display);
    font-size: 22px;
    letter-spacing: 0.18em;
    color: var(--offwhite);
    text-decoration: none;
  }
  .nav-logo span { color: var(--luxury-gold); }
  .nav-links { display: flex; gap: 2.5rem; list-style: none; }
  .nav-links a {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--cream);
    text-decoration: none;
    opacity: 0.75;
    transition: opacity 0.2s;
    position: relative;
  }
  .nav-links a:hover { opacity: 1; color: var(--luxury-gold); }
  .nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--luxury-gold), rgba(212,175,55,0.3));
    transform: scaleX(0);
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    transform-origin: left;
  }
  .nav-links a:hover::after { transform: scaleX(1); }
  .nav-links a.active { opacity: 1; color: var(--luxury-gold); }
  .nav-links a.active::after { transform: scaleX(1); }
  .nav-cta {
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--black);
    background: linear-gradient(135deg, var(--luxury-gold), var(--accent));
    padding: 11px 28px;
    text-decoration: none;
    transition: all 0.3s ease;
    border-radius: 1px;
  }
  .nav-cta:hover { background: linear-gradient(135deg, var(--accent), var(--luxury-gold)); transform: translateY(-2px); }

  /* â”€â”€â”€ SECTION SHARED â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  section { position: relative; }
  .section-eyebrow {
    font-family: var(--font-sans);
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--luxury-gold);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 12px;
  }
  .section-eyebrow::before { content: ''; display: block; width: 24px; height: 2px; background: linear-gradient(90deg, var(--luxury-gold), rgba(212,175,55,0.4)); }
  .section-title { font-family: var(--font-display); font-size: clamp(48px, 6vw, 88px); line-height: 0.9; letter-spacing: 0.02em; color: var(--offwhite); }
  .section-title span { color: var(--luxury-gold); }

  /* â”€â”€â”€ PRODUCTS PAGE HEADER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .products-page-header {
    padding: 140px 8vw 60px;
    background: var(--charcoal);
    position: relative;
    overflow: hidden;
  }
  .products-page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, var(--luxury-gold), rgba(200,121,65,0.15), transparent);
  }
  .header-bg-text {
    position: absolute;
    top: 50%;
    right: -2vw;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: clamp(120px, 18vw, 280px);
    color: rgba(200,121,65,0.03);
    letter-spacing: -0.01em;
    line-height: 1;
    pointer-events: none;
    user-select: none;
    white-space: nowrap;
  }
  .products-page-content {
    position: relative;
    z-index: 2;
  }
  .products-breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 2rem;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--muted);
  }
  .products-breadcrumb a {
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .products-breadcrumb a:hover { color: var(--luxury-gold); }
  .products-breadcrumb .separator { color: rgba(212,175,55,0.3); }
  .products-breadcrumb .current { color: var(--luxury-gold); }
  .products-header-info {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }
  .products-count {
    font-size: 13px;
    color: var(--muted);
    font-family: var(--font-secondary);
    letter-spacing: 0.05em;
  }
  .products-count span { color: var(--luxury-gold); font-weight: 600; }

  /* â”€â”€â”€ PRODUCTS MAIN LAYOUT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .products-main {
    display: grid;
    grid-template-columns: 280px 1fr;
    background: var(--charcoal);
    min-height: 80vh;
  }

  /* â”€â”€â”€ FILTER SIDEBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .filter-sidebar {
    border-right: 1px solid var(--border);
    padding: 3rem 2rem;
    position: sticky;
    top: 72px;
    height: calc(100vh - 72px);
    overflow-y: auto;
    background: var(--charcoal);
  }
  .filter-sidebar::-webkit-scrollbar { width: 2px; }
  .filter-sidebar::-webkit-scrollbar-track { background: transparent; }
  .filter-sidebar::-webkit-scrollbar-thumb { background: var(--luxury-gold); }

  .filter-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2.5rem;
  }
  .filter-title {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 0.15em;
    color: var(--offwhite);
  }
  .filter-clear {
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    background: none;
    border: none;
    cursor: pointer;
    transition: color 0.2s;
    font-family: var(--font-sans);
    font-weight: 500;
  }
  .filter-clear:hover { color: var(--luxury-gold); }

  .filter-group {
    margin-bottom: 2.5rem;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2rem;
  }
  .filter-group:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
  }
  .filter-group-title {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.25rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .filter-group-title::before {
    content: '';
    width: 8px;
    height: 2px;
    background: var(--luxury-gold);
    opacity: 0.5;
  }

  /* Custom Checkbox */
  .filter-option {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    cursor: pointer;
    position: relative;
    transition: all 0.2s ease;
  }
  .filter-option:hover { padding-left: 4px; }
  .filter-checkbox {
    position: relative;
    width: 18px;
    height: 18px;
    border: 1.5px solid var(--border);
    background: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    flex-shrink: 0;
  }
  .filter-checkbox::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    width: 8px;
    height: 8px;
    background: var(--luxury-gold);
    transition: transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .filter-option:hover .filter-checkbox { border-color: rgba(212,175,55,0.3); }
  .filter-option.active .filter-checkbox {
    border-color: var(--luxury-gold);
    background: rgba(212,175,55,0.1);
  }
  .filter-option.active .filter-checkbox::after { transform: translate(-50%, -50%) scale(1); }
  .filter-label {
    font-size: 14px;
    color: var(--fade);
    transition: color 0.2s;
    font-family: var(--font-secondary);
    letter-spacing: 0.03em;
  }
  .filter-option.active .filter-label { color: var(--offwhite); }
  .filter-count {
    margin-left: auto;
    font-size: 11px;
    color: var(--muted);
    font-family: var(--font-sans);
    opacity: 0.6;
  }

  /* Price Range Slider */
  .price-range-container { padding: 8px 0; }
  .price-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
  }
  .price-value {
    font-family: var(--font-display);
    font-size: 20px;
    letter-spacing: 0.05em;
    color: var(--luxury-gold);
  }
  .price-separator { color: var(--muted); font-size: 12px; }
  .price-slider-track {
    position: relative;
    height: 2px;
    background: var(--border);
    margin: 20px 0;
  }
  .price-slider-fill {
    position: absolute;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, var(--luxury-gold), rgba(212,175,55,0.5));
  }
  .price-slider-thumb {
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--luxury-gold);
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    border: 3px solid var(--charcoal);
  }
  .price-slider-thumb:hover {
    transform: translate(-50%, -50%) scale(1.2);
    box-shadow: 0 0 12px rgba(212,175,55,0.4);
  }
  .price-slider-thumb.left { left: 0%; }
  .price-slider-thumb.right { left: 60%; }

  /* â”€â”€â”€ PRODUCTS GRID AREA â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .products-grid-area {
    padding: 3rem;
  }
  .products-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
  }
  .view-toggles {
    display: flex;
    gap: 4px;
  }
  .view-toggle {
    width: 40px;
    height: 40px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    font-size: 16px;
  }
  .view-toggle:hover { border-color: rgba(212,175,55,0.3); color: var(--cream); }
  .view-toggle.active {
    border-color: var(--luxury-gold);
    background: rgba(212,175,55,0.1);
    color: var(--luxury-gold);
  }
  .sort-select {
    background: var(--surface);
    border: 1px solid var(--border);
    padding: 10px 16px;
    color: var(--offwhite);
    font-family: var(--font-sans);
    font-size: 12px;
    letter-spacing: 0.1em;
    outline: none;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238a8478' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
    transition: border-color 0.2s;
  }
  .sort-select:hover { border-color: rgba(212,175,55,0.3); }
  .sort-select option { background: var(--charcoal); color: var(--offwhite); }

  /* â”€â”€â”€ PRODUCT GRID â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .products-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
  }
  .product-card {
    background: var(--charcoal);
    padding: 2rem;
    position: relative;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    border-top: 2px solid rgba(212,175,55,0);
  }
  .product-card:hover {
    background: var(--surface);
    border-top-color: rgba(212,175,55,0.4);
    transform: translateY(-4px);
  }
  .product-image-area {
    aspect-ratio: 2/3;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    overflow: hidden;
    position: relative;
    background: linear-gradient(160deg, #1d1710 0%, #211a0f 100%);
  }
  .product-bottle-img {
    height: 70%;
    width: auto;
    object-fit: contain;
    display: block;
    margin: auto;
    transition: transform 0.5s ease;
    background: linear-gradient(160deg, rgba(200,121,65,0.06), rgba(160,80,40,0.1));
    min-width: 60px;
    border: 1px solid rgba(200,121,65,0.12);
  }
  .product-card:hover .product-bottle-img {
    transform: scale(1.05) translateY(-4px);
  }
  .product-actions {
    position: absolute;
    top: 1rem;
    right: 1rem;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(12px);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .product-card:hover .product-actions {
    opacity: 1;
    transform: translateX(0);
  }
  .action-btn {
    width: 40px;
    height: 40px;
    background: rgba(212,175,55,0.1);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(212,175,55,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: var(--cream);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
  }
  .action-btn:hover {
    background: linear-gradient(135deg, var(--luxury-gold), var(--accent));
    color: var(--black);
    border-color: var(--luxury-gold);
    transform: scale(1.1);
  }
  .product-badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--black);
    background: linear-gradient(135deg, var(--luxury-gold), var(--accent));
    padding: 5px 12px;
    font-weight: 600;
  }
  .product-category {
    font-size: 9px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.4rem;
  }
  .product-name {
    font-family: var(--font-serif);
    font-size: 18px;
    font-weight: 600;
    color: var(--offwhite);
    line-height: 1.25;
    margin-bottom: 0.5rem;
  }
  .product-age {
    font-family: var(--font-secondary);
    font-size: 13px;
    color: var(--luxury-gold);
    font-style: normal;
    margin-bottom: 1rem;
    font-weight: 500;
  }
  .product-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
  }
  .product-price {
    font-family: var(--font-display);
    font-size: 24px;
    letter-spacing: 0.04em;
    color: var(--offwhite);
  }
  .add-to-cart {
    font-size: 9px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--luxury-gold);
    background: transparent;
    border: 2px solid rgba(212,175,55,0.5);
    padding: 8px 18px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    font-weight: 600;
  }
  .add-to-cart:hover {
    background: linear-gradient(135deg, var(--luxury-gold), var(--accent));
    color: var(--black);
    border-color: var(--luxury-gold);
  }

  /* â”€â”€â”€ ACTIVE FILTERS TAGS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .active-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 2rem;
    min-height: 32px;
  }
  .active-filter-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(212,175,55,0.1);
    border: 1px solid rgba(212,175,55,0.3);
    font-size: 11px;
    letter-spacing: 0.1em;
    color: var(--luxury-gold);
    text-transform: uppercase;
    font-weight: 500;
  }
  .active-filter-tag .remove-filter {
    cursor: pointer;
    opacity: 0.7;
    transition: opacity 0.2s;
    font-size: 14px;
    line-height: 1;
  }
  .active-filter-tag .remove-filter:hover { opacity: 1; }

  /* â”€â”€â”€ PAGINATION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  /* --- FILTER SEARCH --- */
  .filter-search-group { position: relative; }
  .filter-search-wrap { position: relative; }
  .filter-search-input {
    width: 100%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--border);
    color: var(--offwhite);
    font-family: var(--font-sans);
    font-size: 13px;
    padding: 10px 36px 10px 14px;
    outline: none;
    transition: border-color 0.2s;
  }
  .filter-search-input::placeholder { color: var(--muted); }
  .filter-search-input:focus { border-color: rgba(160,98,42,0.5); }
  .filter-search-icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--muted);
    font-size: 14px;
    pointer-events: none;
  }
  .filter-search-results {
    position: absolute;
    top: calc(100% + 4px);
    left: 0; right: 0;
    background: var(--surface);
    border: 1px solid var(--border);
    z-index: 200;
    display: none;
    max-height: 320px;
    overflow-y: auto;
  }
  .filter-search-results.open { display: block; }
  .fsr-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 12px;
    border-bottom: 1px solid var(--border);
    text-decoration: none;
    transition: background 0.2s;
  }
  .fsr-item:last-child { border-bottom: none; }
  .fsr-item:hover { background: rgba(160,98,42,0.08); }
  .fsr-thumb {
    width: 40px; height: 40px;
    object-fit: cover;
    flex-shrink: 0;
    border: 1px solid var(--border);
  }
  .fsr-thumb-placeholder {
    width: 40px; height: 40px;
    background: var(--charcoal);
    border: 1px solid var(--border);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--muted);
    font-size: 18px;
  }
  .fsr-info { flex: 1; min-width: 0; }
  .fsr-title {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 500;
    color: var(--offwhite);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .fsr-price { font-size: 11px; color: var(--luxury-gold); margin-top: 2px; }
  .fsr-price ins { text-decoration: none; }
  .fsr-no-results, .fsr-loading {
    padding: 14px 12px;
    font-size: 12px;
    color: var(--muted);
    font-family: var(--font-sans);
    text-align: center;
  }

  .pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
  }
  /* WooCommerce paginate_links() outputs ul.page-numbers > li > a/span.page-numbers */
  .pagination ul.page-numbers {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
  }
  .pagination ul.page-numbers li { display: flex; }
  .pagination .page-numbers {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    display: flex;
	  flex-direction:row !important;
    align-items: center;
    justify-content: center;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-decoration: none;
    transition: all 0.3s ease;
    cursor: pointer;
  }
  .pagination a.page-numbers:hover {
    border-color: rgba(212,175,55,0.3);
    color: var(--cream);
  }
  .pagination .page-numbers.current {
    border-color: var(--luxury-gold);
    background: linear-gradient(135deg, var(--luxury-gold), var(--accent));
    color: var(--black);
    font-weight: 600;
  }
  .pagination .page-numbers.prev,
  .pagination .page-numbers.next {
    font-size: 18px;
    color: var(--luxury-gold);
    border-color: var(--border);
  }
  .pagination .page-numbers.prev:hover,
  .pagination .page-numbers.next:hover {
    background: rgba(212,175,55,0.1);
    border-color: var(--luxury-gold);
  }
  .pagination .page-numbers.dots {
    border-color: transparent;
    background: transparent;
    color: var(--muted);
    cursor: default;
    letter-spacing: 0;
  }
  /* Legacy .page-btn kept for compatibility */
  .page-btn {
    width: 44px;
    height: 44px;
    border: 1px solid var(--border);
    background: transparent;
    color: var(--muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.05em;
  }
  .page-btn:hover {
    border-color: rgba(212,175,55,0.3);
    color: var(--cream);
  }
  .page-btn.active {
    border-color: var(--luxury-gold);
    background: linear-gradient(135deg, var(--luxury-gold), var(--accent));
    color: var(--black);
    font-weight: 600;
  }
  .page-btn.nav-arrow { font-size: 16px; color: var(--luxury-gold); }
  .page-btn.nav-arrow:hover { background: rgba(212,175,55,0.1); border-color: var(--luxury-gold); }

  /* â”€â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  footer {
    background: var(--charcoal);
    border-top: 1px solid var(--border);
    padding: 80px 8vw 40px;
  }
  .footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
  }
  .footer-logo {
    font-family: var(--font-display);
    font-size: 32px;
    letter-spacing: 0.18em;
    color: var(--offwhite);
    text-decoration: none;
    display: inline-block;
    margin-bottom: 1.25rem;
  }
  .footer-logo span { color: var(--luxury-gold); }
  .footer-tagline {
    font-family: var(--font-secondary);
    font-size: 15px;
    font-style: normal;
    font-weight: 500;
    color: var(--fade);
    line-height: 1.7;
    margin-bottom: 2rem;
  }
  .newsletter-label {
    font-size: 10px;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.75rem;
    display: block;
  }
  .newsletter-form { display: flex; gap: 0; }
  .newsletter-input {
    flex: 1;
    background: var(--surface);
    border: 1px solid var(--border);
    border-right: none;
    padding: 12px 16px;
    color: var(--offwhite);
    font-family: var(--font-sans);
    font-size: 13px;
    outline: none;
  }
  .newsletter-input::placeholder { color: var(--muted); }
  .newsletter-btn {
    background: linear-gradient(135deg, var(--luxury-gold), var(--accent));
    border: none;
    padding: 12px 20px;
    color: var(--black);
    font-family: var(--font-sans);
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
  }
  .newsletter-btn:hover { transform: translateY(-1px); }
  .footer-col-title {
    font-size: 10px;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.5rem;
    display: block;
  }
  .footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }
  .footer-links a {
    font-family: var(--font-secondary);
    font-size: 15px;
    color: var(--fade);
    text-decoration: none;
    transition: color 0.2s;
  }
  .footer-links a:hover { color: var(--luxury-gold); }
  .footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
  }
  .footer-copy { font-size: 12px; color: var(--muted); letter-spacing: 0.08em; }
  .social-links { display: flex; gap: 1.5rem; }
  .social-links a {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
  }
  .social-links a:hover { color: var(--luxury-gold); }
  .footer-age { font-size: 11px; color: var(--muted); letter-spacing: 0.08em; }

  /* â”€â”€â”€ CORE ANIMATIONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
  }
  .reveal.revealed { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.1s; }
  .reveal-delay-2 { transition-delay: 0.2s; }
  .reveal-delay-3 { transition-delay: 0.3s; }
  .reveal-delay-4 { transition-delay: 0.4s; }

  /* â”€â”€â”€ SUBTLE UNIQUE ELEMENTS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .grid-line-vertical {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 1px;
    background: linear-gradient(180deg, transparent, var(--border), transparent);
    pointer-events: none;
  }
  .corner-accent {
    position: absolute;
    width: 24px;
    height: 24px;
    border: 1px solid rgba(212,175,55,0.15);
    pointer-events: none;
  }
  .corner-accent.top-left { top: 1rem; left: 1rem; border-right: none; border-bottom: none; }
  .corner-accent.top-right { top: 1rem; right: 1rem; border-left: none; border-bottom: none; }
  .corner-accent.bottom-left { bottom: 1rem; left: 1rem; border-right: none; border-top: none; }
  .corner-accent.bottom-right { bottom: 1rem; right: 1rem; border-left: none; border-top: none; }

  .product-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--luxury-gold), transparent);
    transition: width 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .product-card:hover::before { width: 80%; }

  /* â”€â”€â”€ MOBILE FILTER TOGGLE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  .mobile-filter-toggle {
    display: none;
    position: fixed;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 90;
    background: linear-gradient(135deg, var(--luxury-gold), var(--accent));
    color: var(--black);
    border: none;
    padding: 14px 32px;
    font-family: var(--font-sans);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: 0 4px 24px rgba(0,0,0,0.4);
  }

  /* â”€â”€â”€ RESPONSIVE â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
  @media (max-width: 1024px) {
    .products-main {
      grid-template-columns: 1fr;
    }
    .filter-sidebar {
      position: fixed;
      left: -320px;
      top: 72px;
      width: 300px;
      z-index: 80;
      transition: left 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
      box-shadow: 4px 0 24px rgba(0,0,0,0.5);
    }
    .filter-sidebar.open { left: 0; }
    .mobile-filter-toggle { display: block; }
    .products-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-top { grid-template-columns: 1fr 1fr; }
  }
  @media (max-width: 768px) {
    .nav-links { display: none; }
    .nav-cta { padding: 8px 18px; font-size: 10px; }
    .products-grid { grid-template-columns: 1fr; }
    .footer-top { grid-template-columns: 1fr; gap: 40px; }
    .footer-bottom { flex-direction: column; gap: 1rem; text-align: center; }
    .products-grid-area { padding: 2rem 1.5rem; }
  }

  ::selection { background: rgba(200,121,65,0.3); }
  ::-webkit-scrollbar { width: 4px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--luxury-gold); }
