  :root {
    --gold: #C9952A;
    --gold-light: #E8C06A;
    --gold-bright: #F5D98B;
    --gold-dark: #ffb600;
    --black: #0A0A0A;
    --black-soft: #141414;
    --black-card: #4c0101;
    --black-border: #2A2A2A;
    --text-muted-gold: #9A7A3A;
    --white: #FFFFFF;
    --off-white: #F5F0E8;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: 'Raleway', sans-serif;
    background: var(--black);
    color: var(--off-white);
    overflow-x: hidden;
  }

  ::-webkit-scrollbar { width: 5px; }
  ::-webkit-scrollbar-track { background: var(--black); }
  ::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

  /* ═══════════════════════════════════════
    TOP BAR
  ═══════════════════════════════════════ */
  .top-bar {
    background: var(--gold-dark);
    padding: 6px 0;
    font-size: 11.5px;
    color: var(--black);
    font-weight: 600;
    letter-spacing: 0.3px;
    z-index: 1100;
    position: relative;
  }
  .top-bar a { color: var(--black); text-decoration: none; }
  .top-bar i { margin-right: 5px; }

  /* ═══════════════════════════════════════
    STICKY NAVBAR
  ═══════════════════════════════════════ */
  .main-navbar {
    background: rgba(76, 1, 1, 0.98) !important;
    border-bottom: 1px solid rgba(201,149,42,0.25);
    padding: 0;
    position: sticky;
    top: 0;
    z-index: 1050;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    transition: box-shadow 0.3s, background 0.3s;
  }
  .main-navbar.scrolled {
    box-shadow: 0 4px 30px rgba(201,149,42,0.18);
    background: rgba(76, 1, 1, 0.98) !important;
  }
  .navbar-inner {
    display: flex;
    align-items: center;
    height: 70px;
    gap: 0;
  }

  /* BRAND */
  .navbar-brand-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
    padding: 0 20px 0 0;
    /*border-right: 1px solid var(--black-border);*/
    height: 70px;
  }
  .brand-logo-circle {
    width: 46px; height: 46px;
    border-radius: 50%;
    border: 1.5px solid var(--gold);
    overflow: hidden;
    background: var(--black);
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
  }
  .brand-logo-circle img { width: 100%; height: 100%; object-fit: cover; }
  .brand-text .name {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-bright), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1.1;
  }
  .brand-text .tagline {
    font-size: 9px;
    color: var(--text-muted-gold);
    letter-spacing: 2px;
    text-transform: uppercase;
  }

  /* DESKTOP NAV LINKS */
  .nav-menu {
    display: flex;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
    height: 70px;
    flex: 1;
    padding-left: 24px;
  }
  .nav-menu > li {
    position: static;
    height: 70px;
    display: flex;
    align-items: center;
  }
  .nav-menu > li > a {
    color: rgba(245,240,232,0.85);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.2px;
    text-transform: uppercase;
    padding: 0 16px;
    height: 70px;
    display: flex;
    align-items: center;
    text-decoration: none;
    transition: color 0.3s;
    position: relative;
    gap: 5px;
    white-space: nowrap;
  }
  .nav-menu > li > a::after {
    content: '';
    position: absolute;
    bottom: 0; left: 16px; right: 16px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: center;
  }
  .nav-menu > li > a:hover,
  .nav-menu > li > a.active { color: var(--gold-light) !important; }
  .nav-menu > li:hover > a::after,
  .nav-menu > li > a.active::after { transform: scaleX(1); }

  /* MEGA MENU */
  .mega-menu-wrap {
    position: fixed;
    top: 70px;
    left: 0;
    width: 100%;
    background: rgba(31,2,1,0.98);
    border-top: 2px solid var(--gold);
    border-bottom: 1px solid var(--black-border);
    box-shadow: 0 20px 60px rgba(0,0,0,0.7);
    z-index: 1049;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s, transform 0.25s;
    backdrop-filter: blur(20px);
  }
  .nav-menu > li:hover .mega-menu-wrap {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
  .mega-menu-inner {
    padding: 36px 0 32px;
  }
  .mega-col-head {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2.5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 18px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--black-border);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .mega-col-head i { font-size: 12px; }

  /* MEGA PRODUCT CATEGORIES — HIGHLIGHTED */
  .mega-cat-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
  }
  .mega-cat-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 14px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--black-border);
    text-decoration: none;
    color: var(--off-white);
    transition: all 0.25s;
    border-radius: 2px;
  }
  .mega-cat-item:hover {
    background: rgba(201,149,42,0.1);
    border-color: var(--gold-dark);
    color: var(--gold-light);
    transform: translateX(3px);
  }
  .mega-cat-img {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(201,149,42,0.15), rgba(201,149,42,0.05));
    border: 1.5px solid var(--gold-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    transition: all 0.25s;
    overflow: hidden;
  }
  .mega-cat-item:hover .mega-cat-img {
    background: rgba(201,149,42,0.2);
    border-color: var(--gold);
  }
  .mega-cat-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
  .mega-cat-name {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.3px;
    line-height: 1.3;
  }
  .mega-cat-count {
    font-size: 10px;
    color: var(--text-muted-gold);
    margin-top: 2px;
  }

  /* highlighted product category card */
  .mega-cat-item.highlight {
    background: linear-gradient(135deg, rgba(201,149,42,0.12), rgba(201,149,42,0.04));
    border-color: var(--gold-dark);
  }
  .mega-cat-item.highlight:hover { background: rgba(201,149,42,0.18); }

  /* Mega menu simple links column */
  .mega-links { list-style: none; padding: 0; margin: 0; }
  .mega-links li { margin-bottom: 2px; }
  .mega-links li a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    color: rgba(245,240,232,0.7);
    text-decoration: none;
    font-size: 13px;
    border-radius: 2px;
    transition: all 0.2s;
  }
  .mega-links li a::before { content: '›'; color: var(--gold-dark); font-size: 14px; }
  .mega-links li a:hover { color: var(--gold-light); background: rgba(201,149,42,0.07); padding-left: 18px; }

  /* Mega promo box */
  .mega-promo {
    background: linear-gradient(135deg, rgba(201,149,42,0.1), rgba(201,149,42,0.03));
    border: 1px solid var(--gold-dark);
    padding: 20px;
    border-radius: 2px;
    /*height: 100%;*/
  }
  .mega-promo-tag { font-size: 9px; letter-spacing: 2px; color: var(--gold); text-transform: uppercase; margin-bottom: 10px; }
  .mega-promo-title { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--off-white); margin-bottom: 8px; line-height: 1.3; }
  .mega-promo-body { font-size: 12px; color: var(--text-muted-gold); line-height: 1.7; margin-bottom: 16px; }
  .mega-promo-btn {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 8px 18px;
    text-decoration: none;
    transition: background 0.3s;
  }
  .mega-promo-btn:hover { background: var(--gold-light); color: var(--black); }

  /* SIMPLE DROPDOWN (Profile) */
  .simple-dropdown {
    position: absolute;
    top: 70px;
    left: 0;
    min-width: 230px;
    background: rgba(12,12,12,0.98);
    border: 1px solid var(--black-border);
    border-top: 2px solid var(--gold);
    box-shadow: 0 16px 40px rgba(0,0,0,0.6);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s, transform 0.25s;
    padding: 8px 0;
    z-index: 1049;
    backdrop-filter: blur(20px);
  }
  .nav-menu > li:hover .simple-dropdown {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
  }
  .simple-dropdown a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    color: rgba(245,240,232,0.75);
    font-size: 13px;
    text-decoration: none;
    transition: all 0.2s;
    border-left: 2px solid transparent;
  }
  .simple-dropdown a i { width: 16px; color: var(--gold-dark); font-size: 12px; }
  .simple-dropdown a:hover {
    color: var(--gold-light);
    background: rgba(201,149,42,0.08);
    border-left-color: var(--gold);
    padding-left: 26px;
  }
  .dropdown-div { height: 1px; background: var(--black-border); margin: 6px 16px; }

  /* RIGHT SIDE NAV */
  .nav-right {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-left: 16px;
    /*border-left: 1px solid var(--black-border);*/
    height: 70px;
    flex-shrink: 0;
  }
  .nav-search-wrap { display: flex; align-items: center; }
  .nav-search-wrap input {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    color: var(--off-white);
    font-size: 12px;
    border-radius: 20px 0 0 20px;
    padding: 7px 14px;
    outline: none;
    width: 180px;
    transition: border-color 0.3s, width 0.3s;
    font-family: 'Raleway', sans-serif;
  }
  .nav-search-wrap input:focus { border-color: var(--gold-dark); width: 220px; }
  .nav-search-wrap input::placeholder { color: var(--text-muted-gold); }
  .nav-search-wrap button {
    background: var(--gold);
    border: none;
    color: var(--black);
    border-radius: 0 20px 20px 0;
    padding: 7px 13px;
    cursor: pointer;
    font-size: 12px;
    transition: background 0.3s;
  }
  .nav-search-wrap button:hover { background: var(--gold-light); }
  .nav-phone {
    color: var(--gold-light);
    font-weight: 700;
    font-size: 12px;
    white-space: nowrap;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 5px;
    transition: color 0.3s;
  }
  .nav-phone:hover { color: var(--gold-bright); }
  .btn-nav-quote {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--black);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 9px 18px;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s;
    border-radius: 2px;
    box-shadow: 0 3px 12px rgba(201,149,42,0.3);
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .btn-nav-quote:hover { background: linear-gradient(135deg, var(--gold), var(--gold-light)); color: var(--black); box-shadow: 0 5px 20px rgba(201,149,42,0.5); }

  /* BURGER BUTTON */
  .burger-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: 1.5px solid var(--gold-dark);
    padding: 9px 11px;
    cursor: pointer;
    border-radius: 2px;
    margin-left: auto;
  }
  .burger-btn span {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--gold-light);
    transition: all 0.3s;
    border-radius: 1px;
  }
  .burger-btn.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .burger-btn.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
  .burger-btn.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  /* MOBILE DRAWER */
  .mobile-drawer {
    display: none;
    position: fixed;
    top: 150px;
    left: 0;
    width: 100%;
    height: calc(100vh - 70px);
    background: rgba(8,8,8,0.99);
    z-index: 1048;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
    border-top: 2px solid var(--gold);
  }
  .mobile-drawer.open { transform: translateX(0); }
  .mobile-nav-list { list-style: none; padding: 0; margin: 0; }
  .mobile-nav-section {
    border-bottom: 1px solid var(--black-border);
  }
  .mobile-nav-toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 18px 24px;
    color: var(--off-white);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: 'Raleway', sans-serif;
    transition: color 0.2s;
  }
  .mobile-nav-toggle:hover { color: var(--gold-light); }
  .mobile-nav-toggle .chevron {
    font-size: 12px;
    color: var(--gold-dark);
    transition: transform 0.3s;
  }
  .mobile-nav-toggle.open .chevron { transform: rotate(180deg); }
  .mobile-sub {
    display: none;
    background: rgba(201,149,42,0.03);
    border-top: 1px solid var(--black-border);
  }
  .mobile-sub.open { display: block; }
  .mobile-sub a, .mobile-sub-head {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 32px;
    color: rgba(245,240,232,0.7);
    font-size: 13px;
    text-decoration: none;
    border-bottom: 1px solid rgba(42,42,42,0.4);
    transition: all 0.2s;
  }
  .mobile-sub a:hover { color: var(--gold-light); background: rgba(201,149,42,0.06); padding-left: 40px; }
  .mobile-sub-head {
    font-size: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    cursor: default;
    padding-top: 14px;
    padding-bottom: 8px;
    background: rgba(201,149,42,0.04);
  }
  .mobile-sub a i { width: 18px; color: var(--gold-dark); font-size: 12px; }
  .mobile-bottom-links { padding: 24px; border-top: 1px solid var(--black-border); }
  .mobile-bottom-links a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 0;
    color: rgba(245,240,232,0.6);
    font-size: 13px;
    text-decoration: none;
    border-bottom: 1px solid rgba(42,42,42,0.5);
    transition: color 0.2s;
  }
  .mobile-bottom-links a:hover { color: var(--gold-light); }
  .mobile-bottom-links a i { width: 18px; color: var(--gold-dark); }
  .mobile-cta-row { display: flex; gap: 12px; margin-top: 20px; }
  .mobile-cta-row a { flex: 1; text-align: center; padding: 13px; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; text-decoration: none; }

  /* ═══════════════════════════════════════
     HERO SLIDER
  ═══════════════════════════════════════ */
  .hero-slider {
    position: relative;
    overflow: hidden;
    height: 100vh;
    min-height: 600px;
    max-height: 820px;
  }
  .slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.9s cubic-bezier(0.4,0,0.2,1);
    pointer-events: none;
  }
  .slide.active { opacity: 1; pointer-events: all; z-index: 2; }
  .slide-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 8s ease;
    transform: scale(1.05);
  }
  .slide.active .slide-bg { transform: scale(1); }

  /* Slide backgrounds via gradients (no external images needed) */
  .slide-1 .slide-bg { background: linear-gradient(135deg, #0A0A0A 0%, #1A1208 35%, #0F0B04 65%, #0A0A0A 100%); }
  .slide-2 .slide-bg { background: linear-gradient(135deg, #080506 0%, #1A0D0D 35%, #100808 65%, #080506 100%); }
  .slide-3 .slide-bg { background: linear-gradient(135deg, #060A08 0%, #0D1A10 35%, #060F08 65%, #060A08 100%); }

  /* Decorative particle overlay */
  .slide-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 50%, rgba(201,149,42,0.08) 0%, transparent 50%),
      radial-gradient(circle at 80% 50%, rgba(201,149,42,0.05) 0%, transparent 40%);
  }

  .slide-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,0.75) 0%, rgba(0,0,0,0.4) 60%, rgba(0,0,0,0.15) 100%);
  }
  .slide-content-wrap {
    position: relative;
    z-index: 3;
    width: 100%;
    padding: 0;
  }

  /* Hero text */
  .slide-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(201,149,42,0.1);
    border: 1px solid var(--gold-dark);
    color: var(--gold-light);
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 22px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s 0.1s, transform 0.6s 0.1s;
  }
  .slide.active .slide-eyebrow { opacity: 1; transform: translateY(0); }

  .slide-subheading {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s 0.2s, transform 0.6s 0.2s;
  }
  .slide.active .slide-subheading { opacity: 1; transform: translateY(0); }

  .slide-heading {
    font-family: 'Playfair Display', serif;
    font-size: clamp(34px, 5.5vw, 68px);
    font-weight: 700;
    line-height: 1.1;
    color: var(--off-white);
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s 0.3s, transform 0.6s 0.3s;
  }
  .slide.active .slide-heading { opacity: 1; transform: translateY(0); }
  .slide-heading em {
    font-style: italic;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-bright), var(--gold));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .slide-desc {
    color: rgba(245,240,232,0.65);
    font-size: 15px;
    font-weight: 300;
    line-height: 1.75;
    max-width: 500px;
    margin-bottom: 32px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s 0.4s, transform 0.6s 0.4s;
  }
  .slide.active .slide-desc { opacity: 1; transform: translateY(0); }

  .slide-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 44px;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s 0.5s, transform 0.6s 0.5s;
  }
  .slide.active .slide-ctas { opacity: 1; transform: translateY(0); }

  .btn-gold {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold), var(--gold-light));
    border: none;
    color: var(--black);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 13px 30px;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(201,149,42,0.35);
    font-family: 'Raleway', sans-serif;
  }
  .btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(201,149,42,0.55);
    color: var(--black);
  }
  .btn-outline-gold {
    background: transparent;
    border: 1.5px solid var(--gold);
    color: var(--gold-light);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-family: 'Raleway', sans-serif;
  }
  .btn-outline-gold:hover { background: rgba(201,149,42,0.12); color: var(--gold-bright); }

  /* Stats in hero */
  .slide-stats {
    display: flex;
    gap: 0;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s 0.6s, transform 0.6s 0.6s;
  }
  .slide.active .slide-stats { opacity: 1; transform: translateY(0); }
  .stat-box {
    padding: 14px 28px 14px 0;
    margin-right: 28px;
    border-right: 1px solid rgba(201,149,42,0.25);
    text-align: left;
  }
  .stat-box:last-child { border-right: none; margin-right: 0; }
  .stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 30px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-light), var(--gold-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
    line-height: 1;
    margin-bottom: 3px;
  }
  .stat-lbl {
    font-size: 10px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--text-muted-gold);
  }

  /* Hero right visual */
  .slide-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transform: translateX(30px) scale(0.95);
    transition: opacity 0.7s 0.35s, transform 0.7s 0.35s;
  }
  .slide.active .slide-visual { opacity: 1; transform: translateX(0) scale(1); }
  .hero-frame {
    position: relative;
    width: 360px;
    max-width: 100%;
  }
  .hero-frame::before {
    content: '';
    position: absolute;
    top: -16px; right: -16px;
    width: 100%; height: 100%;
    border: 1px solid var(--gold-dark);
    pointer-events: none;
  }
  .hero-frame::after {
    content: '';
    position: absolute;
    bottom: -16px; left: -16px;
    width: 60%; height: 60%;
    border: 1px solid rgba(201,149,42,0.3);
    pointer-events: none;
  }
  .hero-frame-inner {
    width: 100%;
    height: 380px;
    background: linear-gradient(135deg, #1a1208, #0f0b04);
    border: 1px solid var(--black-border);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 14px;
    position: relative;
    overflow: hidden;
  }
  .hero-frame-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,149,42,0.08), transparent 70%);
  }
  .hf-emoji { font-size: 72px; }
  .hf-title { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--gold-light); text-align: center; padding: 0 20px; line-height: 1.4; position: relative; z-index: 1; }
  .hf-divider { width: 40px; height: 1px; background: var(--gold-dark); }
  .hf-sub { font-size: 10px; letter-spacing: 3px; text-transform: uppercase; color: var(--text-muted-gold); position: relative; z-index: 1; }
  .hero-badge-float {
    position: absolute;
    bottom: -14px; left: -14px;
    background: var(--black-card);
    border: 1px solid var(--gold);
    padding: 14px 20px;
    z-index: 2;
  }
  .hbf-num { color: var(--gold-light); font-family: 'Playfair Display', serif; font-size: 22px; font-weight: 700; }
  .hbf-lbl { color: var(--text-muted-gold); font-size: 9px; text-transform: uppercase; letter-spacing: 1px; margin-top: 2px; }

  /* Slider Controls */
  .slider-controls {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 10px;
  }
  .slider-dot {
    width: 28px;
    height: 3px;
    background: rgba(201,149,42,0.3);
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 2px;
  }
  .slider-dot.active { background: var(--gold); width: 48px; }
  .slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(0,0,0,0.5);
    border: 1px solid var(--black-border);
    color: var(--gold);
    width: 44px; height: 44px;
    display: flex; align-items: center; justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    backdrop-filter: blur(8px);
  }
  .slider-arrow:hover { background: rgba(201,149,42,0.2); border-color: var(--gold); }
  .slider-arrow.prev { left: 24px; }
  .slider-arrow.next { right: 24px; }

  /* Bottom gold line on hero */
  .hero-bottom-line {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), var(--gold), transparent);
    z-index: 5;
  }

  /* ═══════════════════════════════════════
    CATEGORY CIRCLES STRIP
  ═══════════════════════════════════════ */
  .cat-circles-section {
    background: var(--black-card);
    border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
    padding: 32px 0;
    overflow-x: auto;
  }
  .cat-circles-section::-webkit-scrollbar { height: 3px; }
  .cat-circles-inner {
    display: flex;
    gap: 6px;
    min-width: max-content;
    padding: 0 20px;
    justify-content: center;
    flex-wrap: wrap;
  }
  @media (max-width: 992px) {
    .cat-circles-inner { justify-content: flex-start; flex-wrap: nowrap; }
  }
  .cat-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.3s;
    min-width: 90px;
  }
  .cat-circle-item:hover { background: rgba(201,149,42,0.07); }
  .cat-circle-item.active { background: rgba(201,149,42,0.1); }
  .cat-circle-img {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    border: 2px solid var(--black-border);
    background: linear-gradient(135deg, #1a1208, #111);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    overflow: hidden;
    transition: all 0.3s;
    position: relative;
  }
  .cat-circle-img::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 2px solid transparent;
    transition: border-color 0.3s;
  }
  .cat-circle-item:hover .cat-circle-img,
  .cat-circle-item.active .cat-circle-img {
    border-color: var(--gold);
    box-shadow: 0 0 18px rgba(201,149,42,0.3);
  }
  .cat-circle-img img { width: 100%; height: 100%; object-fit: cover; border-radius: 50%; }
  .cat-circle-name {
    font-size: 11px;
    font-weight: 600;
    color: rgba(245,240,232,0.75);
    text-align: center;
    letter-spacing: 0.3px;
    line-height: 1.3;
    transition: color 0.3s;
    max-width: 80px;
  }
  .cat-circle-item:hover .cat-circle-name,
  .cat-circle-item.active .cat-circle-name { color: var(--gold-light); }

  /* ═══════════════════════════════════════
     SECTION COMMONS
  ═══════════════════════════════════════ */
  .section-eyebrow {
    display: inline-block;
    color: var(--gold);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 10px;
  }
  .section-eyebrow::before, .section-eyebrow::after { content: '—'; margin: 0 8px; opacity: 0.5; }
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    color: var(--off-white);
    line-height: 1.2;
  }
  .section-title span {
    background: linear-gradient(135deg, var(--gold-light), var(--gold-bright));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
  }
  .gold-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 16px 0;
  }

  /* ═══════════════════════════════════════
     PRODUCT CARD
  ═══════════════════════════════════════ */
  .product-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-radius: 4px;
    overflow: hidden;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
  }
  .product-card:hover {
    transform: translateY(-6px);
    border-color: var(--gold-dark);
    box-shadow: 0 12px 40px rgba(201,149,42,0.15);
  }
  .product-img-wrap {
    position: relative;
    background: #111;
    height: 200px;
    overflow: hidden;
  }
  .product-img-placeholder {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    font-size: 50px;
    background: linear-gradient(135deg, #111, #1a1a1a);
  }
  .product-img-placeholder img { width: 100%; height: 100%; object-fit: cover; }
  .product-img-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.55);
    display: flex; align-items: center; justify-content: center;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .product-card:hover .product-img-overlay { opacity: 1; }
  .product-badge {
    position: absolute;
    top: 10px; left: 10px;
    background: var(--gold-dark);
    color: var(--black);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 3px 9px;
    border-radius: 1px;
  }
  .product-body { padding: 18px; flex: 1; display: flex; flex-direction: column; }
  .product-name {
    font-family: 'Playfair Display', serif;
    font-size: 15px;
    font-weight: 600;
    color: var(--off-white);
    margin-bottom: 8px;
    line-height: 1.3;
  }
  .product-price { font-size: 18px; font-weight: 700; color: var(--gold-light); margin-bottom: 10px; }
  .product-price span { font-size: 12px; color: var(--text-muted-gold); font-weight: 400; }
  .product-specs { list-style: none; padding: 0; margin: 0 0 14px; flex: 1; }
  .product-specs li {
    font-size: 12px;
    color: rgba(245,240,232,0.55);
    padding: 3px 0;
    border-bottom: 1px solid var(--black-border);
    display: flex; align-items: center; gap: 6px;
  }
  .product-specs li::before { content: ''; width: 4px; height: 4px; border-radius: 50%; background: var(--gold-dark); flex-shrink: 0; }
  .btn-quote {
    background: transparent;
    border: 1px solid var(--gold-dark);
    color: var(--gold-light);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 9px;
    width: 100%;
    cursor: pointer;
    transition: all 0.3s;
    text-decoration: none;
    display: block;
    text-align: center;
    font-family: 'Raleway', sans-serif;
  }
  .btn-quote:hover { background: var(--gold); border-color: var(--gold); color: var(--black); }
  .view-all-card {
    background: linear-gradient(135deg, rgba(201,149,42,0.08), rgba(201,149,42,0.03));
    border: 1px dashed var(--gold-dark);
    border-radius: 4px;
    height: 100%;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    padding: 30px;
    cursor: pointer;
    transition: all 0.3s;
    min-height: 300px;
    text-decoration: none;
  }
  .view-all-card:hover { border-color: var(--gold); background: rgba(201,149,42,0.1); }
  .view-all-card .icon { font-size: 40px; color: var(--gold); margin-bottom: 16px; }
  .view-all-card h5 { font-family: 'Playfair Display', serif; font-size: 18px; color: var(--off-white); margin-bottom: 10px; }
  .view-all-card p { color: var(--text-muted-gold); font-size: 13px; }

  /* ═══════════════════════════════════════
     ABOUT SECTION (kept from original)
  ═══════════════════════════════════════ */
  .about-section {
    background: var(--black-soft);
    padding: 80px 0;
    border-top: 1px solid var(--black-border);
    border-bottom: 1px solid var(--black-border);
    position: relative;
    overflow: hidden;
  }
  .about-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 400px; height: 100%;
    background: radial-gradient(ellipse at left, rgba(201,149,42,0.05), transparent 70%);
    pointer-events: none;
  }
  .about-text p { color: rgba(245,240,232,0.7); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
  .about-text p strong { color: var(--gold-light); }
  .info-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 30px; }
  .info-item { background: var(--black-card); border: 1px solid var(--black-border); border-left: 3px solid var(--gold-dark); padding: 14px 16px; }
  .info-item .label { font-size: 10px; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-muted-gold); margin-bottom: 4px; }
  .info-item .value { font-size: 14px; font-weight: 600; color: var(--off-white); }
  .trust-badges { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 24px; }
  .trust-badge { background: rgba(201,149,42,0.08); border: 1px solid var(--gold-dark); padding: 8px 14px; display: flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; color: var(--gold-light); }

  /* ═══════════════════════════════════════
     PRODUCTS BY CATEGORY
  ═══════════════════════════════════════ */
  .products-section { padding: 70px 0; background: var(--black); }
  .cat-section { margin-bottom: 60px; }
  .cat-section-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 24px;
    padding-bottom: 14px;
    border-bottom: 1px solid var(--black-border);
  }
  .cat-section-title { font-family: 'Playfair Display', serif; font-size: 22px; color: var(--off-white); }
  .cat-section-title i { color: var(--gold); margin-right: 10px; }
  .view-all-link {
    color: var(--gold);
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    border-bottom: 1px solid var(--gold-dark);
    transition: all 0.3s;
  }
  .view-all-link:hover { color: var(--gold-light); border-color: var(--gold-light); }

  /* ═══════════════════════════════════════
     WHY US
  ═══════════════════════════════════════ */
  .why-section { background: var(--black-soft); padding: 80px 0; border-top: 1px solid var(--black-border); }
  .why-card {
    background: var(--black-card);
    border: 1px solid var(--black-border);
    border-top: 3px solid var(--gold-dark);
    padding: 30px 24px;
    text-align: center;
    height: 100%;
    transition: all 0.3s;
  }
  .why-card:hover { border-top-color: var(--gold); transform: translateY(-4px); box-shadow: 0 10px 30px rgba(201,149,42,0.1); }
  .why-icon { width: 64px; height: 64px; background: rgba(201,149,42,0.1); border: 1px solid var(--gold-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 26px; color: var(--gold); margin: 0 auto 20px; transition: all 0.3s; }
  .why-card:hover .why-icon { background: rgba(201,149,42,0.2); color: var(--gold-light); }
  .why-card h5 { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--off-white); margin-bottom: 10px; }
  .why-card p { color: rgba(245,240,232,0.6); font-size: 13px; line-height: 1.7; }

  /* ═══════════════════════════════════════
     QUALITY SECTION
  ═══════════════════════════════════════ */
  .quality-section { padding: 80px 0; background: var(--black); border-top: 1px solid var(--black-border); }
  .quality-bar { background: var(--black-card); border: 1px solid var(--black-border); padding: 20px 24px; margin-bottom: 16px; }
  .quality-bar-label { display: flex; justify-content: space-between; margin-bottom: 8px; font-size: 13px; font-weight: 600; }
  .quality-bar-label span:first-child { color: var(--off-white); }
  .quality-bar-label span:last-child { color: var(--gold-light); }
  .quality-bar-track { height: 6px; background: var(--black-border); border-radius: 3px; overflow: hidden; }
  .quality-bar-fill { height: 100%; background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-light)); border-radius: 3px; transition: width 1.5s ease; }

  /* ═══════════════════════════════════════
     TESTIMONIALS
  ═══════════════════════════════════════ */
  .testimonials-section { padding: 80px 0; background: var(--black); border-top: 1px solid var(--black-border); }
  .testimonial-card { background: var(--black-card); border: 1px solid var(--black-border); padding: 28px; position: relative; height: 100%; }
  .testimonial-card::before { content: '"'; font-family: 'Playfair Display', serif; font-size: 80px; color: var(--gold-dark); position: absolute; top: -10px; left: 20px; line-height: 1; opacity: 0.4; }
  .testimonial-text { color: rgba(245,240,232,0.75); font-size: 14px; line-height: 1.7; margin-bottom: 20px; padding-top: 30px; }
  .testimonial-author { display: flex; align-items: center; gap: 12px; }
  .author-avatar { width: 42px; height: 42px; border-radius: 50%; background: rgba(201,149,42,0.2); border: 2px solid var(--gold-dark); display: flex; align-items: center; justify-content: center; font-size: 18px; color: var(--gold); font-family: 'Playfair Display', serif; font-weight: 700; }
  .author-info .name { font-weight: 700; font-size: 14px; color: var(--gold-light); }
  .author-info .location { font-size: 12px; color: var(--text-muted-gold); }
  .stars { color: var(--gold); font-size: 12px; margin-bottom: 2px; }

  /* ═══════════════════════════════════════
     CONTACT
  ═══════════════════════════════════════ */
  .contact-section { padding: 80px 0; background: var(--black-soft); border-top: 2px solid var(--gold-dark); }
  .contact-form-wrap { background: var(--black-card); border: 1px solid var(--black-border); padding: 36px; }
  .form-label { color: var(--text-muted-gold); font-size: 12px; font-weight: 600; letter-spacing: 1px; text-transform: uppercase; margin-bottom: 6px; }
  .form-control, .form-select { background: var(--black); border: 1px solid var(--black-border); color: var(--off-white); border-radius: 2px; padding: 10px 14px; font-size: 14px; transition: border-color 0.3s; font-family: 'Raleway', sans-serif; }
  .form-control:focus, .form-select:focus { background: var(--black); color: var(--off-white); border-color: var(--gold-dark); box-shadow: 0 0 0 2px rgba(201,149,42,0.1); }
  .form-control::placeholder { color: rgba(245,240,232,0.25); }
  .form-select option { background: var(--black-card); }
  .contact-info { padding-left: 30px; }
  .contact-item { display: flex; align-items: flex-start; gap: 14px; padding: 18px 0; border-bottom: 1px solid var(--black-border); }
  .contact-icon { width: 40px; height: 40px; background: rgba(201,149,42,0.1); border: 1px solid var(--gold-dark); border-radius: 50%; display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 16px; flex-shrink: 0; margin-top: 2px; }
  .contact-item .clabel { font-size: 11px; color: var(--text-muted-gold); text-transform: uppercase; letter-spacing: 1px; margin-bottom: 3px; }
  .contact-item .cval { font-size: 15px; font-weight: 600; color: var(--off-white); }
  .response-badge { background: rgba(201,149,42,0.1); border: 1px solid var(--gold-dark); display: inline-flex; align-items: center; gap: 8px; padding: 8px 16px; margin-top: 20px; font-size: 13px; font-weight: 600; color: var(--gold-light); }
  .response-badge .dot { width: 8px; height: 8px; border-radius: 50%; background: #4CAF50; animation: pulse 2s infinite; }
  @keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.4; } }

  /* ═══════════════════════════════════════
     FEATURED PRODUCTS
  ═══════════════════════════════════════ */
  .featured-section { padding: 70px 0; background: var(--black); }
  .section-header { margin-bottom: 50px; }

  /* GST BAR */
  .gst-bar { background: rgba(201,149,42,0.06); border: 1px solid var(--black-border); padding: 12px 20px; display: flex; align-items: center; gap: 12px; font-size: 12px; color: var(--text-muted-gold); margin-bottom: 20px; }
  .gst-bar strong { color: var(--gold-light); }

  /* ═══════════════════════════════════════
     FOOTER
  ═══════════════════════════════════════ */
  footer { background: #050505; border-top: 2px solid var(--gold-dark); padding: 60px 0 0; }
  .footer-brand .name { font-family: 'Playfair Display', serif; font-size: 26px; background: linear-gradient(135deg, var(--gold-light), var(--gold-bright)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
  .footer-brand p { color: rgba(245,240,232,0.5); font-size: 13px; line-height: 1.7; margin-top: 12px; }
  .footer-social { display: flex; gap: 10px; margin-top: 20px; }
  .social-icon { width: 36px; height: 36px; border: 1px solid var(--black-border); display: flex; align-items: center; justify-content: center; color: var(--text-muted-gold); font-size: 15px; transition: all 0.3s; cursor: pointer; text-decoration: none; }
  .social-icon:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,149,42,0.08); }
  .footer-heading { color: var(--gold-light); font-size: 13px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; margin-bottom: 20px; padding-bottom: 10px; border-bottom: 1px solid var(--black-border); }
  footer ul { list-style: none; padding: 0; }
  footer ul li { margin-bottom: 10px; }
  footer ul li a { color: rgba(245,240,232,0.55); font-size: 13px; text-decoration: none; transition: color 0.3s; }
  footer ul li a::before { content: '›'; margin-right: 7px; color: var(--gold-dark); }
  footer ul li a:hover { color: var(--gold-light); }
  .footer-bottom { background: #030303; border-top: 1px solid var(--black-border); padding: 18px 0; margin-top: 50px; }
  .footer-bottom p { color: rgba(245,240,232,0.3); font-size: 12px; margin: 0; }

  /* STICKY SIDE */
  .sticky-contact { position: fixed; right: 0; top: 50%; transform: translateY(-50%); z-index: 999; display: flex; flex-direction: column; gap: 4px; }
  .sticky-btn { background: var(--gold-dark); color: var(--black); padding: 12px 10px; cursor: pointer; font-size: 18px; border: none; transition: background 0.3s; text-decoration: none; display: flex; align-items: center; justify-content: center; }
  .sticky-btn:hover { background: var(--gold); color: var(--black); }
  .sticky-btn.wa { background: #1a7a32; color: white; }
  .sticky-btn.wa:hover { background: #25D366; }

  /* ═══════════════════════════════════════
     ANIMATIONS
  ═══════════════════════════════════════ */
  @keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }
  .animate-in { animation: fadeInUp 0.6s ease both; }
  .delay-1 { animation-delay: 0.1s; }
  .delay-2 { animation-delay: 0.2s; }
  .delay-3 { animation-delay: 0.3s; }

  /* ═══════════════════════════════════════
     RESPONSIVE
  ═══════════════════════════════════════ */
  @media (max-width: 1199px) {
    .nav-menu > li > a { padding: 0 12px; font-size: 11px; }
    .nav-search-wrap input { width: 140px; }
    .nav-search-wrap input:focus { width: 180px; }
  }

  @media (max-width: 991px) {
    .nav-menu { display: none !important; }
    .nav-right { display: none !important; }
    .burger-btn { display: flex; }
    .mobile-drawer { display: block; }
    .navbar-brand-wrap { border-right: none; flex: 1; }
    .hero-slider { height: 100svh; min-height: 500px; max-height: 700px; }
    .slide-visual { display: none !important; }
    .slide-heading { font-size: clamp(28px, 7vw, 48px); }
    .slide-desc { max-width: 100%; }
    .stat-box { padding: 10px 18px 10px 0; margin-right: 18px; }
    .stat-num { font-size: 24px; }
    .cat-circles-inner { justify-content: flex-start; }
    .info-grid { grid-template-columns: 1fr; }
    .contact-info { padding-left: 0; margin-top: 30px; }
    .sticky-contact { display: none; }
  }

  @media (max-width: 575px) {
    .top-bar .col-md-4 { display: none; }
    .hero-slider { max-height: 620px; }
    .slide-stats { flex-wrap: wrap; gap: 12px; }
    .stat-box { border-right: 1px solid rgba(201,149,42,0.2); }
    .slide-ctas { gap: 10px; }
    .btn-gold, .btn-outline-gold { font-size: 11px; padding: 11px 20px; }
    .cat-circle-img { width: 60px; height: 60px; font-size: 22px; }
    .cat-circle-name { font-size: 10px; }
  }

  /* ===================================================
    CATEGORY PAGE
  =================================================== */
  #page-category .hero-strip{background:linear-gradient(135deg,var(--black) 0%,#1a1208 100%);padding:56px 48px;position:relative;overflow:hidden;border-bottom:1px solid var(--border)}
  #page-category .hero-strip::before{content:'';position:absolute;inset:0;background:url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23c9a84c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")}
  #page-category .hero-strip-inner{position:relative;max-width:1100px;margin:0 auto}
  #page-category .hero-strip h1{font-size:clamp(32px,4vw,52px)}
  #page-category .hero-strip p{color:var(--muted);max-width:520px;font-size:15px;margin-top:12px}
  #page-category .filter-bar{background:var(--black);border-bottom:1px solid var(--border);padding:14px 48px;display:flex;align-items:center;gap:12px;flex-wrap:wrap}
  #page-category .filter-chip{background:var(--card);border:1px solid var(--border);color:var(--muted);font-size:12px;font-weight:500;letter-spacing:.06em;padding:6px 16px;border-radius:20px;cursor:pointer;transition:all .2s;white-space:nowrap}
  #page-category .filter-chip.active,#page-category .filter-chip:hover{background:var(--gold);border-color:var(--gold);color:var(--black)}
  #page-category .cat-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(280px,1fr));gap:24px;padding:48px;max-width:1300px;margin:0 auto}
  .cat-card{position:relative;background:var(--card);border:1px solid var(--border);border-radius:var(--radius);overflow:hidden;cursor:pointer;transition:all .3s}
  .cat-card:hover{border-color:var(--gold);transform:translateY(-6px);box-shadow:0 16px 48px rgba(0,0,0,.5),var(--glow)}
  .cat-card-img{aspect-ratio:3/2;position:relative;overflow:hidden}
  .cat-card-img::after{content:'';position:absolute;inset:0;background:linear-gradient(to bottom,transparent 40%,rgba(0,0,0,.85))}
  .cat-card-img img{width:100%;height:100%;object-fit:cover;transition:transform .5s}
  .cat-card:hover .cat-card-img img{transform:scale(1.08)}
  .cat-card-body{padding:20px 22px}
  .cat-card-count{font-size:11px;letter-spacing:.1em;text-transform:uppercase;color:var(--gold-dim);margin-bottom:6px}
  .cat-card-title{font-family:var(--ff-display);font-size:22px;font-weight:600;color:var(--white)}
  .cat-card-desc{font-size:12px;color:var(--muted);margin-top:6px;line-height:1.6}
  .cat-card-footer{padding:14px 22px 20px;display:flex;align-items:center;justify-content:space-between;border-top:1px solid var(--border)}
  .cat-card-price{font-size:13px;color:var(--muted)}
  .cat-card-price strong{color:var(--gold);font-size:15px}
  .cat-arrow{width:32px;height:32px;border-radius:50%;border:1px solid var(--gold);display:flex;align-items:center;justify-content:center;color:var(--gold);font-size:14px;transition:all .2s}
  .cat-card:hover .cat-arrow{background:var(--gold);color:var(--black)}