:root {
    --luxury-gold: #c5a059;
    --luxury-dark: #1a1a1a;
    --luxury-light: #f4f1ea;
    --luxury-white: #ffffff;
    --text-primary: #2c2c2c;
    --text-muted: #7a7a7a;
    --transition: all 0.5s cubic-bezier(0.25, 1, 0.5, 1);
}

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

body {
    font-family: 'Inter', sans-serif;
    color: var(--text-primary);
    background-color: var(--luxury-white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .brand-font {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

.container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    padding: 25px 0;
    transition: var(--transition);
    border-bottom: 1px solid transparent;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 15px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.8rem;
    letter-spacing: 4px;
    text-transform: uppercase;
}

.logo span {
    color: var(--luxury-gold);
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links li a {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.nav-links li a:hover {
    color: var(--luxury-gold);
}

.nav-icons {
    display: flex;
    gap: 20px;
    font-size: 1.2rem;
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0,0,0,0.2), rgba(0,0,0,0.2)), url('assets/img/hero_bg.png');
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    color: var(--luxury-white);
}

.hero-content {
    max-width: 600px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1.2s forwards 0.5s;
}

.hero h1 {
    font-size: 4.5rem;
    margin-bottom: 20px;
    line-height: 1.1;
}

.hero p {
    font-size: 1.1rem;
    margin-bottom: 40px;
    letter-spacing: 1px;
}

.btn-luxe {
    display: inline-block;
    padding: 18px 45px;
    background: var(--luxury-gold);
    color: white;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.8rem;
    border: none;
    transition: var(--transition);
}

.btn-luxe:hover {
    background: var(--luxury-dark);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Sections */
section {
    padding: 100px 0;
}

.section-title {
    text-align: center;
    margin-bottom: 70px;
}

.section-title h2 {
    font-size: 2.8rem;
    margin-bottom: 15px;
}

.section-title p {
    color: var(--text-muted);
    font-style: italic;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.product-card {
    position: relative;
    overflow: hidden;
}

.product-image {
    position: relative;
    height: 400px;
    overflow: hidden;
    background: #f9f9f9;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    padding: 20px;
    background: rgba(255,255,255,0.9);
    text-align: center;
    transition: var(--transition);
    opacity: 0;
}

.product-card:hover .product-overlay {
    bottom: 0;
    opacity: 1;
}

.product-info {
    padding: 20px 0;
    text-align: center;
}

.product-info h3 {
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.product-price {
    color: var(--luxury-gold);
    font-weight: 700;
    font-size: 1.1rem;
}

/* Categories */
.category-banner {
    display: flex;
    background: var(--luxury-light);
    border-radius: 0;
    overflow: hidden;
    height: 500px;
}

.cat-text {
    flex: 1;
    padding: 80px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.cat-img {
    flex: 1;
    background: url('assets/img/accessories.png');
    background-size: cover;
    background-position: center;
}

/* Animations */
@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Footer */
footer {
    background: var(--luxury-dark);
    color: var(--luxury-white);
    padding: 100px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 50px;
    margin-bottom: 60px;
}

.footer-col h4 {
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

.footer-col p {
    opacity: 0.6;
    margin-bottom: 20px;
}

.newsletter-input {
    display: flex;
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 10px;
}

.newsletter-input input {
    background: transparent;
    border: none;
    color: white;
    flex: 1;
    padding: 10px 0;
}

.newsletter-input input:focus {
    outline: none;
}

.footer-bottom {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.1);
    font-size: 0.8rem;
    opacity: 0.5;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero h1 {
        font-size: 3rem;
    }
    .category-banner {
        flex-direction: column;
        height: auto;
    }
    .cat-img {
        height: 300px;
    }
}
