/* 
   Venus Glory - Premium Luxury Cosmetics & Beauty Store
   Custom Stylesheet (Black & Gold Premium Theme)
*/

@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&display=swap');

:root {
    --gold-primary: #D4AF37;
    --gold-luxury: #F5D67B;
    --gold-dark: #B8860B;
    --black-deep: #FDFBF7; /* Main background - warm off-white */
    --black-card: #FFFFFF; /* Card background - pure white */
    --gray-dark: #F0EFEA;  /* Section backgrounds */
    --gray-light: #E8E6DF; /* Borders, subtle elements */
    --white: #1A1A1A;      /* Primary text color (dark) */
    --white-muted: #666666;/* Secondary text color (gray) */
    
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Outfit', sans-serif;
    
    --gold-gradient: linear-gradient(135deg, #B8860B 0%, #D4AF37 50%, #F5D67B 100%);
    --gold-gradient-hover: linear-gradient(135deg, #F5D67B 0%, #D4AF37 50%, #B8860B 100%);
    --dark-gradient: linear-gradient(180deg, #FDFBF7 0%, #FFFFFF 100%);
    
    --shadow-luxury: 0 10px 30px rgba(0, 0, 0, 0.06), 0 1px 0 rgba(212, 175, 55, 0.2) inset;
    --shadow-gold-glow: 0 0 15px rgba(212, 175, 55, 0.2);
    
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}

/* Global Styles */
html, body {
    max-width: 100%;
    overflow-x: hidden;
    margin: 0;
    padding: 0;
}
body {
    background-color: var(--black-deep);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 300;
}

h1, h2, h3, h4, h5, h6, .luxury-font {
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--black-deep);
}
::-webkit-scrollbar-thumb {
    background: var(--gold-dark);
    border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
    background: var(--gold-primary);
}

/* Typography Helpers */
.text-gold {
    color: var(--gold-primary);
}
.text-gold-gradient {
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}
.letter-spacing-2 {
    letter-spacing: 2px;
}

/* Luxury Glassmorphism & Cards */
.glass-panel {
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: var(--shadow-luxury);
    border-radius: 12px;
}

.glass-card {
    background: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.15);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border-radius: 8px;
    transition: var(--transition-smooth);
}
.glass-card:hover {
    border-color: rgba(212, 175, 55, 0.4);
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold-glow), 0 12px 25px rgba(0,0,0,0.1);
}

/* Luxury Buttons */
.btn-gold {
    background: var(--gold-gradient);
    color: var(--black-deep) !important;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    padding: 10px 24px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.2);
}
.btn-gold:hover {
    background: var(--gold-gradient-hover);
    box-shadow: var(--shadow-gold-glow), 0 4px 20px rgba(212, 175, 55, 0.4);
    transform: translateY(-2px);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 4px;
    padding: 9px 23px;
    transition: var(--transition-smooth);
}
.btn-outline-gold:hover {
    background: var(--gold-gradient);
    color: var(--black-deep) !important;
    border-color: transparent;
    box-shadow: var(--shadow-gold-glow);
}

/* Header & Navigation */
.navbar-luxury {
    background: rgba(10, 10, 10, 0.9) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition-smooth);
}
.navbar-luxury .nav-link {
    color: var(--white) !important;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 16px !important;
    transition: var(--transition-smooth);
}
.navbar-luxury .nav-link:hover, 
.navbar-luxury .nav-link.active {
    color: var(--gold-primary) !important;
    text-shadow: 0 0 5px rgba(212, 175, 55, 0.3);
}

/* Dropdown Menu styling */
.dropdown-menu-luxury {
    background: rgba(15, 15, 15, 0.95) !important;
    backdrop-filter: blur(15px);
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    box-shadow: var(--shadow-luxury);
    border-radius: 8px !important;
}
.dropdown-menu-luxury .dropdown-item {
    color: var(--white) !important;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 8px 20px;
    transition: var(--transition-smooth);
}
.dropdown-menu-luxury .dropdown-item:hover {
    background: rgba(212, 175, 55, 0.1) !important;
    color: var(--gold-luxury) !important;
}

/* Badge styles */
.badge-gold {
    background: var(--gold-gradient);
    color: var(--black-deep);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 4px;
}

/* Banner Slider & Hero Carousel */
.hero-slider-item {
    height: 70vh;
    background-size: cover;
    background-position: center;
    position: relative;
}
.hero-video-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: translate(-50%, -50%);
    z-index: 1;
    pointer-events: none;
}
/* Add hero glass box */
.hero-glass-box {
    background: rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    padding: 50px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}
.hero-slider-content {
    position: relative;
    z-index: 10;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Product Card grid layout */
.product-card {
    position: relative;
    overflow: hidden;
}
.product-card-img-wrapper {
    position: relative;
    overflow: hidden;
    background-color: var(--gray-dark);
    aspect-ratio: 1/1;
}
.product-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.product-card:hover .product-card-img {
    transform: scale(1.08);
}
.product-badge-container {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 2;
}
.product-actions-overlay {
    position: absolute;
    bottom: -50px;
    left: 0;
    width: 100%;
    background: rgba(10, 10, 10, 0.85);
    backdrop-filter: blur(5px);
    display: flex;
    justify-content: space-around;
    padding: 10px 0;
    transition: var(--transition-smooth);
    z-index: 3;
}
.product-card:hover .product-actions-overlay {
    bottom: 0;
}
.product-action-btn {
    color: var(--white);
    background: transparent;
    border: none;
    font-size: 16px;
    transition: var(--transition-smooth);
}
.product-action-btn:hover {
    color: var(--gold-primary);
    transform: scale(1.15);
}

/* Sidebar filter controls */
.filter-sidebar {
    background: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 8px;
    padding: 20px;
}
.filter-section-title {
    font-size: 16px;
    font-weight: 500;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    padding-bottom: 8px;
    margin-bottom: 15px;
    color: var(--gold-luxury);
}
.form-check-input:checked {
    background-color: var(--gold-primary) !important;
    border-color: var(--gold-primary) !important;
}

/* Inputs & Form Controls */
.form-control, .form-select {
    background-color: var(--gray-dark) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    color: var(--white) !important;
    border-radius: 4px !important;
}
.form-control:focus, .form-select:focus {
    box-shadow: var(--shadow-gold-glow) !important;
    border-color: var(--gold-primary) !important;
}

/* Footer Section */
.footer-luxury {
    background-color: var(--black-deep);
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    padding: 80px 0 20px 0;
}
.footer-title {
    color: var(--gold-luxury);
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}
.footer-link {
    color: var(--white-muted);
    text-decoration: none;
    font-size: 14px;
    display: block;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}
.footer-link:hover {
    color: var(--gold-primary);
    padding-left: 5px;
}

/* Floating Cart Drawer overlay styles */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -400px;
    width: 400px;
    height: 100vh;
    background: #FFFFFF;
    border-left: 1px solid rgba(212, 175, 55, 0.2);
    box-shadow: -10px 0 30px rgba(0,0,0,0.8);
    z-index: 1050;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
}
.cart-drawer.open {
    right: 0;
}
.cart-drawer-header {
    padding: 20px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.cart-drawer-items {
    flex-grow: 1;
    overflow-y: auto;
    padding: 20px;
}
.cart-drawer-footer {
    padding: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.15);
    background: var(--black-card);
}
.cart-drawer-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.7);
    z-index: 1040;
    display: none;
}
.cart-drawer-backdrop.show {
    display: block;
}

/* Zoom Image details styling */
.product-zoom-container {
    overflow: hidden;
    position: relative;
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 8px;
    cursor: zoom-in;
}
.product-zoom-img {
    transition: transform 0.1s ease-out;
    width: 100%;
}

/* Testimonial cards */
.testimonial-card {
    background: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.08);
    padding: 30px;
    border-radius: 8px;
    position: relative;
}
.testimonial-quote {
    color: var(--gold-luxury);
    font-size: 40px;
    position: absolute;
    top: 15px;
    left: 20px;
    opacity: 0.15;
}

/* Quick View Overlay styling */
.quickview-modal-content {
    background: var(--black-deep) !important;
    border: 1px solid rgba(212, 175, 55, 0.2) !important;
    border-radius: 12px !important;
}

/* Admin Dashboard layout components */
.admin-sidebar {
    min-height: 100vh;
    background-color: var(--black-card);
    border-right: 1px solid rgba(212, 175, 55, 0.15);
}
.admin-nav-link {
    color: var(--white-muted);
    text-decoration: none;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-left: 3px solid transparent;
    transition: var(--transition-smooth);
}
.admin-nav-link:hover, .admin-nav-link.active {
    color: var(--gold-primary);
    background: rgba(212, 175, 55, 0.05);
    border-left-color: var(--gold-primary);
}
.admin-nav-link i {
    width: 25px;
}

/* Stats Counter widget styling */
.stat-widget {
    padding: 24px;
    border-radius: 8px;
    background: var(--black-card);
    border: 1px solid rgba(212, 175, 55, 0.08);
}
.stat-widget-icon {
    font-size: 32px;
    color: var(--gold-primary);
}
.stat-widget-number {
    font-size: 28px;
    font-weight: 700;
    margin-top: 5px;
    font-family: var(--font-body);
}

/* Image preview thumbnails */
.image-preview-thumbnail {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 4px;
    border: 1px solid rgba(212, 175, 55, 0.2);
    margin-right: 10px;
}

/* Micro-animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}
.animate-fade-in-up {
    animation: fadeInUp 0.8s forwards;
}

/* Responsive Overrides */
@media (max-width: 768px) {
    .hero-slider-item {
        height: 50vh;
    }
    .cart-drawer {
        width: 100%;
        right: -100%;
    }
    .footer-luxury {
        padding: 50px 0 20px 0;
    }
}

/* New Header Structure */
.top-bar-luxury {
    background-color: var(--black-deep);
    color: var(--white-muted);
    font-size: 12px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}
.top-bar-link {
    color: var(--white-muted);
    text-decoration: none;
    transition: var(--transition-smooth);
    display: flex;
    align-items: center;
    gap: 8px;
}
.top-bar-link:hover { color: var(--gold-primary); }

.header-main {
    background-color: #FFFFFF;
    padding: 20px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
}
.header-search {
    display: flex;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 4px;
    overflow: hidden;
    height: 45px;
    width: 500px;
}
.header-search input {
    background: transparent;
    border: none;
    color: var(--white);
    padding: 0 20px;
    outline: none;
    flex-grow: 1;
}
.header-search input::placeholder {
    color: var(--white-muted);
}
.header-search select {
    background: transparent;
    border: none;
    border-left: 1px solid rgba(212, 175, 55, 0.3);
    color: var(--white);
    padding: 0 15px;
    outline: none;
    cursor: pointer;
}
.header-search select option { color: var(--black-deep); }
.header-search button {
    background: var(--gold-primary);
    color: var(--black-deep);
    border: none;
    padding: 0 25px;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.header-search button:hover { background: var(--gold-luxury); }

.navbar-main {
    background-color: var(--black-deep);
    padding: 0;
}
.all-categories-btn {
    background-color: #F8F8F8;
    color: var(--gold-primary);
    border: none;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    gap: 15px;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.all-categories-btn:hover { background-color: #EEEEEE; }

/* All Categories Mega Menu Dropdown */
.all-cat-mega-menu {
    width: 260px;
    background: #FFFFFF !important;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid var(--gray-light) !important;
    z-index: 1000;
}
.all-cat-list {
    display: flex;
    flex-direction: column;
}
.all-cat-item {
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.all-cat-item:last-child {
    border-bottom: none;
}
.all-cat-link {
    display: flex;
    align-items: center;
    padding: 12px 20px;
    color: var(--white) !important;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: var(--transition-smooth);
}
.all-cat-link:hover {
    background-color: var(--gray-dark);
    color: var(--gold-primary) !important;
    padding-left: 25px;
}
/* Submenu on hover */
.all-cat-submenu {
    position: absolute;
    top: 0;
    left: 100%;
    width: 240px;
    background: #FFFFFF;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-light);
    display: none;
    padding: 10px 0;
    z-index: 1010;
}
.all-cat-item:hover .all-cat-submenu {
    display: block;
}
.all-cat-submenu .sub-item {
    display: block;
    padding: 8px 20px;
    color: var(--white-muted) !important;
    text-decoration: none;
    font-size: 12px;
    transition: var(--transition-smooth);
}
.all-cat-submenu .sub-item:hover {
    color: var(--gold-primary) !important;
    background-color: var(--gray-dark);
    padding-left: 25px;
}
.all-cat-submenu .sub-item.all-link {
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    margin-bottom: 5px;
    padding-bottom: 8px;
    color: var(--gold-primary) !important;
}

/* Nav Menu Category Hover Dropdown */
.nav-has-dropdown {
    position: relative;
}
.nav-mega-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(15px);
    width: 780px;
    background: #FFFFFF;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--gray-light);
    border-radius: 4px;
    padding: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 25px;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1020;
}
.nav-has-dropdown:hover .nav-mega-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}
.mega-cat-col {
    flex: 1 1 calc(33.333% - 20px);
    min-width: 220px;
    display: flex;
    flex-direction: column;
}
.mega-cat-title {
    color: var(--white) !important;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    margin-bottom: 12px;
    padding-bottom: 5px;
    border-bottom: 1px solid var(--gray-light);
    text-decoration: none;
    transition: var(--transition-smooth);
}
.mega-cat-title:hover {
    color: var(--gold-primary) !important;
}
.mega-sub-link {
    color: var(--white-muted) !important;
    font-size: 12px;
    text-decoration: none;
    padding: 5px 0;
    transition: var(--transition-smooth);
}
.mega-sub-link:hover {
    color: var(--gold-primary) !important;
    padding-left: 5px;
}

@media (max-width: 991px) {
    .nav-mega-dropdown {
        position: static;
        transform: none !important;
        width: 100%;
        box-shadow: none;
        border: none;
        padding: 10px 15px;
        display: none;
        opacity: 1;
        visibility: visible;
    }
    .nav-has-dropdown:hover .nav-mega-dropdown {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    .mega-cat-col {
        width: 100%;
    }
}

.nav-links-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    align-items: center;
}
.nav-links-list li { margin: 0 15px; position: relative; }
.nav-links-list a {
    color: var(--white);
    text-decoration: none;
    text-transform: uppercase;
    font-size: 13px;
    font-weight: 500;
    padding: 15px 0;
    display: inline-block;
    transition: var(--transition-smooth);
}
.nav-links-list a:hover, .nav-links-list a.active {
    color: var(--gold-primary);
}
.nav-links-list a.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--gold-primary);
}
.badge-hot {
    background-color: #dc3545;
    color: white;
    font-size: 9px;
    padding: 2px 5px;
    border-radius: 3px;
    margin-left: 5px;
    vertical-align: top;
}

/* Category Circle Icons */
.category-circle-row {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}
.category-circle-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    transition: var(--transition-smooth);
}
.category-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    border: 1px solid var(--gold-primary);
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
}
.category-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}
.category-circle-item:hover .category-circle img {
    transform: scale(1.08);
}
.category-circle-item:hover .category-circle {
    border-color: var(--gold-luxury);
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.2);
}
.category-circle-text {
    color: var(--white-muted);
    font-size: 13px;
    text-align: center;
}
.category-circle-item:hover .category-circle-text { color: var(--gold-primary); }

/* Section Title Lines */
.section-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 30px;
}

/* Product Sliders */
.product-slider-container {
    position: relative;
    padding: 0 45px;
}
.product-slider-row {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    gap: 24px;
    scrollbar-width: none; /* Firefox */
    padding: 10px 0;
}
.product-slider-row::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}
.product-slider-item {
    flex: 0 0 calc(25% - 18px);
    min-width: 260px;
}
@media (max-width: 991px) {
    .product-slider-item {
        flex: 0 0 calc(50% - 12px);
    }
}
@media (max-width: 575px) {
    .product-slider-item {
        flex: 0 0 100%;
    }
}
.slider-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}
.slider-nav-btn:hover {
    background: var(--gold-primary);
    color: #FFFFFF;
    box-shadow: var(--shadow-gold-glow);
}
.section-title-line {
    display: flex;
    align-items: center;
    flex-grow: 1;
}
.section-title-line h3 {
    margin: 0;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.section-title-line h3::before {
    content: '';
    display: inline-block;
    width: 40px;
    height: 2px;
    background-color: var(--gold-primary);
    margin-right: 15px;
    position: relative;
}
.section-title-line h3::before, .section-title-line h3::after {
    border-top: 1px solid var(--gold-primary);
    border-bottom: 1px solid var(--gold-primary);
    height: 4px;
    background-color: transparent;
}
.section-title-line h3::after {
    content: '';
    display: inline-block;
    flex-grow: 1;
    min-width: 50px;
    margin-left: 15px;
}

/* Trust Hexagons */
.trust-hexagon {
    width: 60px;
    height: 65px;
    background-color: transparent;
    border: 1px solid var(--gold-primary);
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    clip-path: polygon(50% 0%, 100% 25%, 100% 75%, 50% 100%, 0% 75%, 0% 25%);
    margin: 0 auto 15px;
}
.trust-hexagon i {
    font-size: 24px;
    color: var(--gold-primary);
}

/* Product Card New Design */
/* Premium Unified Product Card Styling */
.product-card-light {
    background-color: #FFFFFF;
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 8px;
    padding: 12px;
    position: relative;
    transition: var(--transition-smooth);
    display: flex;
    flex-direction: column;
    height: 100%;
}
.product-card-light:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.25);
}

/* Image Wrapper with Warm Soft Background */
.product-card-light .product-img-wrapper {
    height: 230px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #FAF9F6;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
    transition: var(--transition-smooth);
}
.product-card-light .product-img-wrapper img {
    max-height: 80%;
    max-width: 80%;
    object-fit: contain;
    transition: transform 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.product-card-light:hover .product-img-wrapper img {
    transform: scale(1.06);
}

/* Wishlist Button */
.product-card-light .wishlist-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888888;
    font-size: 14px;
    cursor: pointer;
    z-index: 5;
    transition: var(--transition-smooth);
}
.product-card-light .wishlist-btn:hover,
.product-card-light .wishlist-btn.active {
    background: var(--gold-primary);
    color: #FFFFFF !important;
    box-shadow: var(--shadow-gold-glow);
}

/* Badges */
.product-badge-container {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    display: flex;
    flex-direction: column;
    gap: 4px;
}
.badge-premium {
    font-size: 9px;
    font-weight: 600;
    letter-spacing: 1px;
    padding: 4px 8px;
    border-radius: 2px;
    text-transform: uppercase;
    color: #FFFFFF;
    text-align: center;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
}
.badge-new {
    background: var(--gold-gradient);
    color: var(--black-deep);
}
.badge-bestseller {
    background: #000000;
    color: #FFFFFF;
}
.badge-sale {
    background: #E05C5C;
    color: #FFFFFF;
}

/* Floating centered hover action buttons */
.product-actions-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -40%);
    display: flex;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    z-index: 10;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.product-card-light:hover .product-actions-hover {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%);
}
.product-actions-hover .action-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: #FFFFFF;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.product-actions-hover .action-btn:hover {
    background: var(--gold-primary);
    color: #FFFFFF !important;
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold-glow);
}

/* Product Info styling */
.product-info-wrapper {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}
.product-card-light .brand-name {
    color: var(--gold-primary) !important;
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1.5px;
    margin-bottom: 5px;
    text-transform: uppercase;
}
.product-card-light .product-name {
    color: var(--white) !important;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 6px;
    line-height: 1.4;
    font-family: var(--font-body);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 38px;
    transition: var(--transition-smooth);
    text-decoration: none;
}
.product-card-light:hover .product-name {
    color: var(--gold-primary) !important;
}
.product-card-light .stars {
    color: #F3C63F;
    font-size: 11px;
    margin-bottom: 8px;
}
.product-card-light .price {
    color: var(--white) !important;
    font-weight: 700;
    font-size: 15px;
}
.product-card-light .old-price {
    color: var(--white-muted) !important;
    text-decoration: line-through;
    font-size: 12px;
    margin-left: 8px;
    font-weight: 300;
}

/* Scroll Reveal Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(50px);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.9);
    transition: opacity 0.8s cubic-bezier(0.25, 1, 0.5, 1), transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}
.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

/* WhatsApp Chat Widget Premium Styles */
.whatsapp-chat-widget {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1040;
    font-family: var(--font-body);
}

/* Bubble button */
.whatsapp-bubble {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: #25D366;
    border: none;
    color: #FFFFFF;
    font-size: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    position: relative;
    transition: var(--transition-smooth);
}
.whatsapp-bubble:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.45);
}

/* Pulse animation */
.whatsapp-bubble .pulse-ring {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 2px solid #25D366;
    animation: whatsapp-pulse 2s infinite ease-out;
    z-index: -1;
}
@keyframes whatsapp-pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* Chat Box styling */
.whatsapp-chat-box {
    position: absolute;
    bottom: 80px;
    right: 0;
    width: 340px;
    background: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border: 1px solid var(--gray-light);
    display: none;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(20px);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.whatsapp-chat-box.show {
    display: flex;
    transform: translateY(0);
    opacity: 1;
}

/* Header */
.whatsapp-chat-box .chat-box-header {
    background: linear-gradient(135deg, #075E54 0%, #128C7E 100%);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.whatsapp-chat-box .chat-avatar-wrapper {
    position: relative;
    width: 40px;
    height: 40px;
}
.whatsapp-chat-box .chat-avatar {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #FFFFFF;
}
.whatsapp-chat-box .online-dot {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 10px;
    height: 10px;
    background-color: #25D366;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
}
.whatsapp-chat-box .chat-close-btn {
    background: transparent;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.whatsapp-chat-box .chat-close-btn:hover {
    color: #FFFFFF;
}

/* Body */
.whatsapp-chat-box .chat-box-body {
    background-color: #ECE5DD;
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    max-height: 280px;
    overflow-y: auto;
}
.whatsapp-chat-box .chat-message-bubble {
    background: #FFFFFF;
    padding: 12px 16px;
    border-radius: 0 12px 12px 12px;
    box-shadow: 0 2px 5px rgba(0,0,0,0.05);
    max-width: 90%;
    align-self: flex-start;
    color: #1A1A1A !important;
    position: relative;
}
.whatsapp-chat-box .chat-message-bubble p {
    color: #1A1A1A !important;
}
.whatsapp-chat-box .chat-message-bubble::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10px;
    width: 0;
    height: 0;
    border: 5px solid transparent;
    border-right-color: #FFFFFF;
    border-top-color: #FFFFFF;
}
.whatsapp-chat-box .chat-quick-replies {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 5px;
}
.whatsapp-chat-box .quick-reply-btn {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(212, 175, 55, 0.25);
    padding: 8px 12px;
    border-radius: 20px;
    font-size: 12px;
    text-align: left;
    color: #1A1A1A !important;
    cursor: pointer;
    transition: var(--transition-smooth);
    font-weight: 500;
}
.whatsapp-chat-box .quick-reply-btn:hover {
    background: var(--gold-primary);
    color: #FFFFFF !important;
    border-color: transparent;
    transform: translateX(3px);
}

/* Footer */
.whatsapp-chat-box .chat-box-footer {
    padding: 12px 15px;
    display: flex;
    align-items: center;
    gap: 10px;
    background: #FFFFFF;
    border-top: 1px solid var(--gray-light);
}
.whatsapp-chat-box .chat-box-footer input {
    flex-grow: 1;
    border: 1px solid var(--gray-light);
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 13px;
    outline: none;
    color: var(--white);
    background-color: #FDFBF7;
    transition: var(--transition-smooth);
}
.whatsapp-chat-box .chat-box-footer input:focus {
    border-color: var(--gold-primary);
}
.whatsapp-chat-box .chat-box-footer button {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background-color: var(--gold-primary);
    color: #FFFFFF;
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}
.whatsapp-chat-box .chat-box-footer button:hover {
    background-color: var(--gold-dark);
    transform: scale(1.05);
}

/* Header Icons Group */
.header-icons-group {
    display: flex;
    align-items: center;
    gap: 25px;
}
.header-wishlist-link, .header-cart-link {
    color: var(--white) !important;
    text-decoration: none;
    display: flex;
    align-items: center;
    transition: var(--transition-smooth);
}
.header-wishlist-link:hover, .header-cart-link:hover {
    color: var(--gold-primary) !important;
}
.header-wishlist-link i, .header-cart-link i {
    font-size: 22px;
    color: var(--gold-primary);
}
.header-wishlist-link span {
    font-size: 13px;
    font-weight: 500;
}
.header-cart-icon-wrapper {
    position: relative;
    display: inline-block;
    margin-right: 5px;
}
.header-cart-icon-wrapper .cart-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    font-size: 9px;
    padding: 3px 6px;
    background-color: var(--gold-primary);
    color: var(--black-deep) !important;
    font-weight: 600;
    line-height: 1;
    border-radius: 50%;
}

/* Mobile Responsive Header Optimization */
@media (max-width: 991px) {
    .top-bar-luxury {
        padding: 6px 0;
    }
    /* Hide top bar links and contact info on small viewports to save space */
    .top-bar-luxury .container {
        flex-direction: column;
        gap: 6px;
    }
    .top-bar-welcome, .top-bar-contact {
        display: none !important;
    }
    .top-bar-links {
        justify-content: center;
        width: 100%;
        gap: 15px !important;
    }
    .top-bar-link {
        font-size: 11px;
    }

    /* Wrap header main content */
    .header-main .container {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: space-between;
        padding-left: 15px !important;
        padding-right: 15px !important;
    }
    
    /* Make logo align nicely on left */
    .header-main a.text-decoration-none {
        flex-grow: 1;
        max-width: calc(100% - 150px);
    }
    
    /* Adjust header search to flow below logo and cart on mobile */
    .header-search {
        width: 100% !important;
        order: 3; /* Push to the second row */
        margin-top: 5px;
    }
    .header-search select {
        padding: 0 10px;
        font-size: 12px;
    }
    .header-search input {
        font-size: 13px;
        padding: 0 12px;
    }
    
    /* Right Icons container mobile overrides */
    .header-icons-group {
        order: 2;
        gap: 15px !important;
    }
    
    /* Hide Wishlist text on mobile, keep gold icon */
    .header-wishlist-link span {
        display: none !important;
    }
    
    /* Hide Cart text/price on mobile, keep cart icon + badge */
    .header-cart-link .d-flex.flex-column {
        display: none !important;
    }
    .header-cart-icon-wrapper {
        margin-right: 0;
    }

    /* Mobile Navbar Toggle and Stack Styles */
    .navbar-main .container {
        flex-wrap: wrap !important;
    }
    .navbar-toggler:focus {
        box-shadow: none !important;
        outline: none !important;
    }
    #navbarNav {
        flex-basis: 100%;
        width: 100%;
        margin-top: 10px;
    }
    .nav-links-list {
        flex-direction: column !important;
        align-items: flex-start !important;
        width: 100%;
        background-color: var(--black-card) !important;
        padding: 10px 0 !important;
        border-radius: 8px;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
        border: 1px solid var(--gray-light);
    }
    .nav-links-list li {
        width: 100%;
        margin: 0 !important;
        position: relative;
    }
    .nav-links-list a {
        display: block;
        width: 100%;
        padding: 12px 20px !important;
        border-bottom: 1px solid var(--gray-light);
        color: var(--white) !important;
    }
    .nav-links-list li:last-child a {
        border-bottom: none;
    }
    .nav-links-list a.active::after {
        display: none !important;
    }

    /* Category Dropdown mobile overflow adjustments */
    .all-cat-mega-menu {
        width: 280px !important;
    }
    .all-cat-submenu {
        position: static !important;
        width: 100% !important;
        box-shadow: none !important;
        border: none !important;
        padding-left: 20px !important;
        background-color: var(--gray-dark) !important;
    }
}

@media (max-width: 768px) {
    /* Hero Glass Box mobile sizing to prevent text/button overlapping */
    .hero-glass-box {
        padding: 25px 20px !important;
        margin: 10px;
        text-align: center;
        width: calc(100% - 20px) !important;
    }
    .hero-glass-box h1.display-4 {
        font-size: 26px !important;
        line-height: 1.3 !important;
        margin-bottom: 12px !important;
    }
    .hero-glass-box p {
        font-size: 14px !important;
        line-height: 1.6 !important;
        margin-bottom: 15px !important;
    }
    .hero-glass-box .btn-lg {
        font-size: 13px !important;
        padding: 8px 16px !important;
        width: 100%;
        margin: 5px 0 !important;
        display: block;
        line-height: 1.5 !important;
        height: auto !important;
    }

    /* WhatsApp chat widget adjustments for mobile emulators & small viewports */
    .whatsapp-chat-widget {
        bottom: 20px !important;
        right: 20px !important;
    }
    .whatsapp-bubble {
        width: 50px !important;
        height: 50px !important;
        font-size: 24px !important;
        box-shadow: 0 8px 20px rgba(37, 211, 102, 0.25) !important;
    }
    .whatsapp-chat-box {
        bottom: 65px !important;
        width: 290px !important;
    }
    .whatsapp-chat-box .chat-box-header {
        padding: 12px 15px !important;
    }
    .whatsapp-chat-box .chat-avatar-wrapper {
        width: 34px !important;
        height: 34px !important;
    }

    /* Push WhatsApp bubble above the sticky bottom navigation */
    .whatsapp-chat-widget {
        bottom: 80px !important; /* 60px bottom nav + 20px margin */
    }
    
    /* Add padding to body so sticky bottom nav doesn't cover footer content */
    body {
        padding-bottom: 60px !important;
    }

    /* Responsive styling for category banner */
    .category-banner-luxury {
        height: 180px !important;
    }
    .category-banner-luxury div[style*="background: linear-gradient"] {
        background: rgba(255, 255, 255, 0.9) !important;
        padding-right: 20px !important;
    }
}

@media (max-width: 480px) {
    /* Scale down the logo slightly on narrow screens */
    .header-main a.text-decoration-none div:first-child {
        font-size: 32px !important;
    }
    .header-main a.text-decoration-none span.text-gold {
        font-size: 14px !important;
        letter-spacing: 1px !important;
    }
    .header-main a.text-decoration-none span:last-child {
        font-size: 8px !important;
        letter-spacing: 2px !important;
    }
}

/* Mobile Sticky Bottom Navigation Styles */
.mobile-bottom-nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    background: #FFFFFF;
    border-top: 1px solid var(--gray-light);
    box-shadow: 0 -4px 15px rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 1030;
}
.mobile-bottom-nav .nav-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--white-muted) !important;
    text-decoration: none;
    font-size: 10px;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    flex-grow: 1;
    height: 100%;
    gap: 4px;
    transition: var(--transition-smooth);
}
.mobile-bottom-nav .nav-item i {
    font-size: 18px;
    color: #888888;
    transition: var(--transition-smooth);
}
.mobile-bottom-nav .nav-item:hover,
.mobile-bottom-nav .nav-item.active {
    color: var(--gold-primary) !important;
}
.mobile-bottom-nav .nav-item:hover i,
.mobile-bottom-nav .nav-item.active i {
    color: var(--gold-primary);
}

/* Badge styling for bottom nav */
.mobile-bottom-nav .badge {
    position: absolute;
    top: -5px;
    right: -10px;
    font-size: 8px;
    padding: 2px 5px;
    background-color: var(--gold-primary) !important;
    color: var(--black-deep) !important;
    font-weight: 600;
    line-height: 1;
    border-radius: 50%;
}

