:root {
    --brand-gold: #c59d5f;
    --brand-gold-bright: #d4af37;
    --brand-gold-gradient: linear-gradient(135deg, #e5c158 0%, #c59d5f 50%, #a67c33 100%);
    --brand-dark: #111111;
    --brand-beige: #f8f6f0;
    --brand-light: #f7f6f2;
}

html, body {
    width: 100% !important;
    max-width: 100% !important;
    overflow-x: hidden !important;
    position: relative;
}

*, *::before, *::after {
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    color: var(--brand-dark);
    background-color: #faf9f6;
}

.container-fluid, .container {
    max-width: 100% !important;
    overflow-x: hidden;
}

section {
    max-width: 100%;
    overflow-x: hidden;
}

.brand-gold { color: var(--brand-gold) !important; }
.bg-brand-dark { background-color: var(--brand-dark) !important; }
.bg-brand-light { background-color: var(--brand-light) !important; }
.cursor-pointer { cursor: pointer; }

/* Navbar */
.nav-link { font-size: 14px; font-weight: 500; transition: color 0.3s; padding: 0.5rem 1rem !important; }
.nav-link:hover { color: var(--brand-gold) !important; }
.nav-icons a { transition: color 0.3s; }
.nav-icons a:hover { color: var(--brand-gold) !important; }

/* Hero */
.hero-section { height: 600px; }
.hero-left { background-color: var(--brand-beige); }
.hero-title { font-family: 'Playfair Display', serif; font-size: 3.5rem; line-height: 1.1; letter-spacing: -0.5px; }

.btn-dark { background-color: var(--brand-dark); border-color: var(--brand-dark); transition: all 0.3s ease; }
.btn-dark:hover { background-color: #000; border-color: #000; }
.btn-outline-dark { border-color: var(--brand-dark); color: var(--brand-dark); transition: all 0.3s ease; }
.btn-outline-dark:hover { background-color: var(--brand-dark); color: #fff; }

/* Luxury Golden Buttons (Matching Screenshots) */
.btn-gold-gradient {
    background: var(--brand-gold-gradient);
    color: #ffffff !important;
    font-weight: 700;
    letter-spacing: 1.5px;
    border-radius: 8px;
    border: none;
    padding: 12px 28px;
    box-shadow: 0 6px 20px rgba(197, 157, 95, 0.4);
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    text-transform: uppercase;
    font-size: 13px;
    display: inline-block;
    text-decoration: none;
}

.btn-gold-gradient:hover {
    background: linear-gradient(135deg, #f3d16b 0%, #d4af37 50%, #b88a3b 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(197, 157, 95, 0.6);
    color: #ffffff !important;
}

.btn-gold-outline-card {
    border: 1px solid rgba(212, 175, 55, 0.8);
    color: #ffffff !important;
    background: rgba(0, 0, 0, 0.35);
    backdrop-filter: blur(4px);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 7px 18px;
    border-radius: 4px;
    transition: all 0.3s ease;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
}

.btn-gold-outline-card:hover {
    background: var(--brand-gold);
    border-color: var(--brand-gold);
    color: #ffffff !important;
    transform: translateY(-2px);
}

/* Luxury Banner Cards (Matching Screenshot 1) */
.luxury-banner-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    background: #ffffff;
    min-height: 240px;
}

.luxury-banner-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.luxury-banner-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.luxury-banner-card:hover img {
    transform: scale(1.05);
}

.luxury-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.92) 0%, rgba(255, 255, 255, 0.65) 50%, rgba(255, 255, 255, 0.15) 100%);
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.luxury-banner-overlay.dark-overlay {
    background: linear-gradient(90deg, rgba(15, 15, 15, 0.88) 0%, rgba(15, 15, 15, 0.60) 50%, rgba(15, 15, 15, 0.20) 100%);
    color: #ffffff;
}

.luxury-banner-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.5rem;
}

.luxury-banner-sub {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 1.25rem;
    font-weight: 400;
}

.dark-overlay .luxury-banner-sub {
    color: #ccc;
}

/* Collection Grid Cards (Redesigned & Cropping Fixed) */
.collection-grid-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 100%;
    min-height: 360px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    background-color: #111111;
}

.collection-grid-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    transition: transform 0.7s cubic-bezier(0.25, 1, 0.5, 1);
}

.collection-grid-card:hover img {
    transform: scale(1.08);
}

.collection-grid-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 1rem 1.25rem 1rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.95) 0%, rgba(0, 0, 0, 0.6) 60%, rgba(0, 0, 0, 0) 100%);
    color: #ffffff;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    z-index: 2;
}

.collection-grid-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    margin-bottom: 2px;
    color: #ffffff;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.collection-grid-sub {
    font-size: 0.75rem;
    color: #e0e0e0;
    font-weight: 300;
    margin-bottom: 8px;
    line-height: 1.3;
    text-shadow: 0 1px 3px rgba(0,0,0,0.5);
}

@media (max-width: 576px) {
    .collection-grid-card {
        min-height: 340px;
        border-radius: 14px;
    }
    .collection-grid-content {
        padding: 1.25rem 0.85rem 1rem 0.85rem;
    }
    .collection-grid-title {
        font-size: 1.05rem;
    }
    .collection-grid-sub {
        font-size: 0.7rem;
        margin-bottom: 6px;
    }
}

/* Categories */
.category-item { cursor: pointer; }
.category-img-wrapper { border: 2px solid transparent; transition: all 0.3s ease; background: #f9f9f9; }
.category-item:hover .category-img-wrapper { border-color: var(--brand-gold); transform: scale(1.05); }
.category-item:hover .category-name { color: var(--brand-gold); }

@media (min-width: 992px) {
    .row-cols-lg-8 > * { flex: 0 0 auto; width: 12.5%; }
}

/* Products */
.product-card { cursor: pointer; }
.product-img-wrap { transition: transform 0.3s ease; border-radius: 8px; }
.product-card:hover .product-img-wrap { transform: translateY(-5px); }
.product-card:hover .product-title { color: var(--brand-gold); }

/* Floating WhatsApp Button (Matching Screenshot 1) */
.whatsapp-float {
    position: fixed;
    bottom: 85px;
    right: 20px;
    width: 52px;
    height: 52px;
    background-color: #25D366;
    color: #FFF !important;
    border-radius: 50px;
    text-align: center;
    font-size: 28px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 1050;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
    color: #FFF !important;
}

/* Fixed Bottom Mobile Navigation Bar (Matching Screenshot 1) */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: #ffffff;
    border-top: 1px solid rgba(0,0,0,0.08);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1040;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.05);
    padding: 0 5px;
}

.mobile-nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #777777;
    text-decoration: none !important;
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.3px;
    transition: color 0.2s ease;
    width: 20%;
    position: relative;
}

.mobile-nav-item i {
    font-size: 18px;
    margin-bottom: 3px;
}

.mobile-nav-item.active,
.mobile-nav-item:hover {
    color: var(--brand-gold);
}

.mobile-nav-badge {
    position: absolute;
    top: -2px;
    right: 50%;
    margin-right: -16px;
    background: var(--brand-gold);
    color: #ffffff;
    font-size: 9px;
    font-weight: 700;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #ffffff;
}

@media (max-width: 991px) {
    body {
        padding-bottom: 65px;
    }
    .whatsapp-float {
        bottom: 80px;
    }
}

@media (min-width: 992px) {
    .whatsapp-float {
        bottom: 30px;
        right: 30px;
    }
}

/* Footer */
footer a { transition: color 0.3s ease; }
footer a:hover { color: var(--brand-gold) !important; }
.btn-gold { background-color: var(--brand-gold); color: #fff; border: 1px solid var(--brand-gold); transition: all 0.3s; }
.btn-gold:hover { background-color: #b0894f; color: #fff; border-color: #b0894f; }
