:root {
    --bg-dark: #0a0a0a;
    --card-bg: #121212;
    --gold-primary: #d4af37;
    --gold-light: #f3e5ab;
    --text-white: #ffffff;
    --text-muted: #a0a0a0;
    --border-gold: rgba(212, 175, 55, 0.3);
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-white);
    font-family: 'Montserrat', sans-serif;
}

/* Header Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 6%;
    background: rgba(10, 10, 10, 0.95);
    border-bottom: 1px solid var(--border-gold);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.logo a {
    font-family: 'Cinzel', serif;
    font-size: 26px;
    font-weight: 700;
    color: var(--text-white);
    text-decoration: none;
    letter-spacing: 2px;
}
.logo a span { color: var(--gold-primary); }

.nav-links { display: flex; gap: 25px; }
.nav-links a {
    color: var(--text-white);
    text-decoration: none;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 1.5px;
    transition: color 0.3s;
}
.nav-links a:hover { color: var(--gold-primary); }

.nav-icons { display: flex; gap: 20px; align-items: center; }
.nav-icons a { color: var(--text-white); text-decoration: none; font-size: 16px; position: relative; }
.nav-icons a:hover { color: var(--gold-primary); }

#cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--gold-primary);
    color: black;
    font-size: 10px;
    font-weight: 700;
    padding: 2px 5px;
    border-radius: 50%;
}

/* Hero Section */
.hero-section {
    height: 80vh;
    background: linear-gradient(rgba(10, 10, 10, 0.6), rgba(10, 10, 10, 0.8)), 
                url('https://images.unsplash.com/photo-1490481651871-ab68de25d43d?w=1600') center/cover;
    display: flex;
    align-items: center;
    padding: 0 8%;
}

.hero-content { max-width: 650px; }
.sub-title { color: var(--gold-primary); letter-spacing: 3px; font-size: 13px; font-weight: 600; }
.hero-content h1 {
    font-family: 'Cinzel', serif;
    font-size: 55px;
    font-weight: 700;
    color: var(--gold-light);
    margin: 15px 0;
    letter-spacing: 2px;
}
.hero-content p { color: var(--text-muted); font-size: 16px; margin-bottom: 30px; }

.hero-btns { display: flex; gap: 20px; }
.btn-gold {
    background: var(--gold-primary);
    color: black;
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
}
.btn-outline {
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 14px 28px;
    text-decoration: none;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 1px;
}

/* Features Bar */
.features-bar {
    display: flex;
    justify-content: space-around;
    padding: 30px 6%;
    background: #0f0f0f;
    border-top: 1px solid var(--border-gold);
    border-bottom: 1px solid var(--border-gold);
}

.feature-item { display: flex; align-items: center; gap: 15px; }
.feature-item i { font-size: 28px; color: var(--gold-primary); }
.feature-item h4 { font-size: 12px; letter-spacing: 1px; color: var(--text-white); }
.feature-item p { font-size: 11px; color: var(--text-muted); }

/* Category Grid */
.category-grid-section {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    padding: 40px 6%;
}

.cat-card {
    position: relative;
    height: 320px;
    overflow: hidden;
    border: 1px solid var(--border-gold);
}
.cat-card img { width: 100%; height: 100%; object-fit: cover; opacity: 0.7; transition: 0.5s; }
.cat-card:hover img { transform: scale(1.08); opacity: 0.9; }

.cat-overlay {
    position: absolute;
    bottom: 20px;
    left: 20px;
}
.cat-overlay h3 { font-family: 'Cinzel', serif; font-size: 18px; color: white; margin-bottom: 8px; }
.cat-overlay h3 span { display: block; font-size: 12px; color: var(--gold-primary); }
.link-btn { color: var(--text-white); font-size: 11px; letter-spacing: 1px; text-decoration: none; border-bottom: 1px solid var(--gold-primary); }

/* Main Section */
.main-container { padding: 40px 6%; }
.section-title { text-align: center; margin-bottom: 40px; }
.section-title span { color: var(--gold-primary); font-size: 12px; letter-spacing: 2px; }
.section-title h2 { font-family: 'Cinzel', serif; font-size: 30px; letter-spacing: 2px; margin-top: 5px; }

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 25px;
}

.product-card {
    background: var(--card-bg);
    border: 1px solid var(--border-gold);
    padding: 12px;
    position: relative;
}
.product-card img { width: 100%; height: 260px; object-fit: cover; }
.product-info { padding-top: 15px; text-align: center; }
.product-title { font-size: 13px; color: var(--text-white); margin-bottom: 8px; font-weight: 400; }
.price { color: var(--gold-primary); font-size: 16px; font-weight: 600; }

.add-cart-btn {
    width: 100%;
    margin-top: 10px;
    background: transparent;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 10px;
    cursor: pointer;
    font-size: 11px;
    letter-spacing: 1px;
    transition: 0.3s;
}
.add-cart-btn:hover { background: var(--gold-primary); color: black; }

/* Footer */
footer { background: #050505; padding: 50px 6% 20px; border-top: 1px solid var(--border-gold); }
.footer-content { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer-brand h2 { font-family: 'Cinzel', serif; font-size: 24px; color: white; }
.footer-brand h2 span { color: var(--gold-primary); }
.footer-brand p { color: var(--text-muted); font-size: 13px; margin-top: 10px; }
.footer-links h4 { color: var(--gold-primary); font-size: 12px; letter-spacing: 1.5px; margin-bottom: 15px; }
.footer-links a { display: block; color: var(--text-muted); text-decoration: none; font-size: 12px; margin-bottom: 8px; }
.footer-bottom { text-align: center; color: var(--text-muted); font-size: 12px; border-top: 1px solid #1a1a1a; padding-top: 20px; }
