:root {
    --gold: #DDB856;
    --gold-dark: #b8963c;
    --black: #050505;
    --dark-grey: #1a1a1a;
    --text-grey: #999999;
}

body, html {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background-color: var(--black);
    color: #ffffff;
    height: 100%;
}

.font-playfair {
    font-family: 'Playfair Display', serif;
}

.text-gold {
    color: var(--gold) !important;
}

.bg-gold {
    background-color: var(--gold) !important;
}

.letter-spacing-1 {
    letter-spacing: 0.1em;
}

.letter-spacing-2 {
    letter-spacing: 0.2em;
}

/* Top Bar */
.top-bar {
    background-color: var(--gold);
    color: #000;
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.15em;
}

/* Navbar */
.main-nav {
    background-color: #000000;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 20px 0;
    position: relative;
    z-index: 10;
}

.navbar-brand .logo-img {
    height: 40px;
    object-fit: contain;
}

.navbar-nav .nav-link {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    padding: 0.5rem 1.2rem !important;
    transition: color 0.3s ease;
}

.navbar-nav .nav-link:hover {
    color: var(--gold) !important;
}

.nav-icons a {
    font-size: 1rem;
    transition: color 0.3s ease;
}

.nav-icons a:hover {
    color: var(--gold) !important;
}

.cart-badge {
    font-size: 0.55rem;
    padding: 0.35em 0.55em;
    border-radius: 50%;
    transform: translate(-30%, -30%) !important;
}

/* Hero Section */
.hero-section {
    min-height: calc(100vh - 120px);
    position: relative;
    overflow: hidden;
    background-color: #050505;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: radial-gradient(circle at center, #151515 0%, #000 100%);
}

.hero-model {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 50%;
    object-fit: cover;
    object-position: top center;
    z-index: 2;
    mask-image: linear-gradient(to right, transparent, black 40%);
    -webkit-mask-image: linear-gradient(to right, transparent, black 40%);
}

.bg-graphics {
    position: absolute;
    top: 35%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 1;
    width: 100%;
}

.bg-graphics img.huge-logo {
    max-width: 900px;
    width: 70vw;
    opacity: 0.15;
    mix-blend-mode: screen;
}

.bg-text-group {
    position: absolute;
    bottom: 12%;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    z-index: 3;
    width: 100%;
}

.elevate-text {
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 0.35em;
    color: #1a1a1a;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.timeless-text {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    color: #333;
    font-size: 1.4rem;
}

.btn-shop-collection {
    background: transparent;
    border: 1px solid #1a1a1a;
    color: #333;
    text-transform: uppercase;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    padding: 1rem 2rem;
    transition: all 0.3s;
    border-radius: 0;
}

.btn-shop-collection:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.hero-content {
    z-index: 4;
}

.gold-line {
    width: 40px;
    border-top: 1px solid var(--gold);
    opacity: 1;
}

.collection-subtitle {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.25em;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 6.5rem;
    line-height: 1.05;
    margin-bottom: 1.5rem;
}

.hero-desc {
    font-size: 1.05rem;
    color: #b3b3b3;
    line-height: 1.7;
    max-width: 450px;
    font-weight: 300;
}

.btn-gold {
    background-color: var(--gold);
    color: #000;
    border: 1px solid var(--gold);
    font-size: 0.75rem;
}

.btn-gold:hover {
    background-color: var(--gold-dark);
    border-color: var(--gold-dark);
    color: #000;
}

.btn-outline-gold {
    background-color: #050505;
    color: var(--gold);
    border: 1px solid var(--gold);
    font-size: 0.75rem;
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: #000;
}

.features-box {
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: #030303;
    padding: 1.2rem 2rem;
    display: inline-flex;
    gap: 2.5rem;
}

.feature-item {
    font-size: 0.65rem;
    font-weight: 600;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 4rem;
    }
    .elevate-text {
        font-size: 1.5rem;
    }
    .hero-model {
        opacity: 0.3;
        width: 100%;
        mask-image: none;
        -webkit-mask-image: none;
    }
    .bg-text-group {
        bottom: 5%;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 3rem;
    }
    .features-box {
        flex-direction: column;
        gap: 1rem;
    }
}

/* Redesigned Sections */
.bg-dark-theme {
    background-color: #080808;
    color: #ffffff;
}

.border-top-gold {
    border-top: 1px solid rgba(221, 184, 86, 0.2);
}

.feature-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    background: linear-gradient(145deg, #111, #0a0a0a);
    border: 1px solid rgba(255, 255, 255, 0.05);
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(221, 184, 86, 0.1);
    border-color: rgba(221, 184, 86, 0.3);
}

.feature-circle-icon {
    width: 65px;
    height: 65px;
    border: 2px solid rgba(221, 184, 86, 0.2);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--gold);
    font-size: 1.4rem;
    background-color: rgba(221, 184, 86, 0.05);
    transition: all 0.4s ease;
}

.feature-card:hover .feature-circle-icon {
    background-color: var(--gold);
    color: #000;
    transform: rotate(360deg);
}

.feature-title {
    font-size: 0.7rem;
    font-weight: 600;
    margin-top: 15px;
    opacity: 0.8;
}

/* Collections Grid */
.collections-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto auto;
    gap: 24px;
}

.item-tall {
    grid-column: 1;
    grid-row: 1 / span 2;
    aspect-ratio: auto !important;
    height: 100%;
}

.item-normal-1 {
    grid-column: 2;
    grid-row: 1;
}

.item-normal-2 {
    grid-column: 3;
    grid-row: 1;
}

.item-normal-3 {
    grid-column: 2;
    grid-row: 2;
}

.item-normal-4 {
    grid-column: 3;
    grid-row: 2;
}

.item-normal-5 {
    grid-column: 1;
    grid-row: 3;
}

.collection-item {
    position: relative;
    overflow: hidden;
    background-color: #000;
    aspect-ratio: 3 / 4;
}

.collection-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.collection-item:hover img {
    transform: scale(1.05);
}

.collection-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.4) 50%, transparent 100%);
    text-align: left;
}

.view-all-link {
    transition: color 0.3s ease;
}

.view-all-link:hover {
    color: var(--gold-dark) !important;
}

@media (max-width: 991px) {
    .collections-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .item-tall {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 3/4 !important;
    }
    .item-normal-1, .item-normal-2, .item-normal-3, .item-normal-4, .item-normal-5 {
        grid-column: span 1;
        grid-row: span 1;
    }
}

@media (max-width: 576px) {
    .collections-grid {
        grid-template-columns: 1fr;
    }
}

/* Product Cards */
.product-image-wrapper {
    overflow: hidden;
    background-color: #000;
}

.product-image-wrapper img {
    transition: transform 0.6s ease;
    aspect-ratio: 3/4;
    object-fit: cover;
}

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

.product-badge {
    font-size: 0.6rem;
    font-weight: 700;
    padding: 6px 10px;
    display: inline-block;
    letter-spacing: 0.15em;
}

/* Banner Section */
.font-italic {
    font-style: italic;
}

.btn-outline-gold {
    color: var(--gold);
    border-color: var(--gold);
    transition: all 0.3s ease;
}

.btn-outline-gold:hover {
    background-color: var(--gold);
    color: #000;
}

/* Shop Promo Banner */
.shop-promo-banner {
    background: linear-gradient(90deg, #0a0a0a 0%, #2a2a2a 30%, #e0e0e0 55%, #1a1a1a 80%, #000000 100%);
    border: 1px solid rgba(221, 184, 86, 0.3);
}

.btn-gold {
    background-color: var(--gold);
    color: #000;
    border: 1px solid var(--gold);
    transition: all 0.3s ease;
}

.btn-gold:hover {
    background-color: transparent;
    color: var(--gold);
}

/* Footer specific styles */
.border-gold {
    border-color: var(--gold) !important;
}

.footer-link:hover {
    color: var(--gold) !important;
}

.newsletter-form input:focus {
    outline: none;
    box-shadow: none;
    border-color: var(--gold-dark) !important;
}

.payment-icon {
    font-size: 0.6rem;
    letter-spacing: 0.05em;
    background-color: transparent;
}
