:root {
    --black: #111111;
    --gold: #C9A227;
    --ivory: #F8F8F8;
    --burgundy: #5A0E1B;
    --emerald: #0E6655;
}
body {
    font-family: 'Inter', sans-serif;
    background: var(--ivory);
    color: var(--black);
}
h1, h2, h3, h4, h5, .logo-letter {
    font-family: 'Cormorant Garamond', serif;
}
.bg-black { background-color: var(--black) !important; }
.text-gold { color: var(--gold) !important; }
.btn-gold {
    background: var(--gold);
    color: #fff;
    border: 1px solid var(--gold);
}
.btn-outline-gold {
    color: var(--gold);
    border: 1px solid var(--gold);
}
.btn-gold:hover, .btn-outline-gold:hover {
    background: #b58b1c;
    color: #fff;
}

/* Hero Carousel Styles */
.hero-carousel-section {
    position: relative;
    margin-bottom: 0;
}
.hero-carousel-section .carousel-inner {
    border-radius: 0;
}
.carousel-item {
    transition: all 0.8s ease-in-out;
}
.carousel-control-prev, .carousel-control-next {
    width: auto;
    height: auto;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201,162,39,.6);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.hero-carousel-section:hover .carousel-control-prev,
.hero-carousel-section:hover .carousel-control-next {
    opacity: 1;
}
.carousel-indicators [data-bs-target] {
    background: rgba(255,255,255,.4);
}
.carousel-indicators .active {
    background: var(--gold);
}

/* Collection Cards */
.collection-card {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.collection-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,.2) !important;
}
.collection-overlay {
    background: linear-gradient(to top, rgba(0,0,0,.8), transparent);
    transition: all 0.3s ease;
}
.collection-card:hover .collection-overlay {
    background: linear-gradient(to top, rgba(0,0,0,.95), rgba(0,0,0,.3));
}

/* Product Cards */
.hero-card, .product-card, .feature-card {
    border: 1px solid rgba(201,162,39,.2);
    border-radius: 1.2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,.08);
    transition: all 0.3s ease;
}
.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 60px rgba(0,0,0,.15);
}
.product-image-wrapper {
    background: linear-gradient(135deg, #f0f0f0, #e8e8e8);
    position: relative;
    overflow: hidden;
}
.product-overlay {
    opacity: 0;
    transition: opacity 0.3s ease;
}
.product-card:hover .product-overlay {
    opacity: 1;
}

.badge-gold { background: var(--gold); color: white; }
.section-title { 
    letter-spacing: .08em; 
    text-transform: uppercase; 
    font-size: .8rem; 
    color: var(--burgundy); 
}
.price-tag { 
    color: var(--emerald); 
    font-weight: 700; 
}

/* Gallery Items */
.gallery-item {
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.gallery-item:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px rgba(0,0,0,.2) !important;
}
.gallery-item:hover .gallery-overlay {
    background: rgba(0,0,0,.5) !important;
}

/* Feature Cards */
.feature-card {
    background: rgba(17,17,17,.9) !important;
    border-color: rgba(201,162,39,.3) !important;
    transition: all 0.3s ease;
}
.feature-card:hover {
    border-color: var(--gold) !important;
    box-shadow: 0 20px 50px rgba(201,162,39,.2) !important;
    transform: translateY(-4px);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .carousel-item {
        min-height: 400px !important;
    }
    .carousel-control-prev, .carousel-control-next {
        display: none;
    }
    .display-3 {
        font-size: 2rem;
    }
    .display-6 {
        font-size: 1.5rem;
    }
}


