
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html, body {
            overflow-x: hidden !important;
            width: 100% !important;
            max-width: 100% !important;
            position: relative;
        }
        body {
            /*font-family: 'Inter', sans-serif;*/
            background: #faf8f6;
            color: #1a1a1a;
            line-height: 1.6;
        }
        a { text-decoration: none; color: inherit; }
        img { max-width: 100%; display: block; }
        .container {
            max-width: 1400px;
            margin: 0 auto;
            padding: 0 20px;
            width: 100%;
        }
        
        /* ===== FADE UP ===== */
        .fade-up {
            opacity: 0;
            transform: translateY(40px);
            transition: opacity 0.8s ease, transform 0.8s ease;
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ===== FLOATING BUTTONS CONTAINER ===== */
        .floating-buttons {
            position: fixed;
            bottom: 30px;
            left: 30px;
            right: 30px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 9999;
            pointer-events: none;
        }
        
        .floating-buttons > * {
            pointer-events: auto;
        }

        /* ===== CART BUTTON (LEFT SIDE) ===== */
        .cart-link {
            background: linear-gradient(135deg, #ffebb3, #ffba19);
            color: #1a1210;
            padding: 4px 7px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 16px;
            display: flex;
            align-items: center;
            gap: 4px;
            box-shadow: 0 4px 20px rgba(201, 168, 76, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
            border: none;
            cursor: pointer;
        }
        
        .cart-link:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 30px rgba(201, 168, 76, 0.5);
        }
        
        .cart-link .cart-icon {
            font-size: 20px;
        }
        
        .cart-link .cart-text {
            font-weight: 600;
        }
        
        .cart-link .cart-count {
            background: #1a1210;
            color: #fff;
            border-radius: 50%;
            padding: 2px 8px;
            font-size: 12px;
            font-weight: 700;
            min-width: 22px;
            text-align: center;
        }
        
        .cart-link .cart-total {
            font-weight: 600;
            color: #1a1210;
        }

        /* ===== WHATSAPP BUTTON (RIGHT SIDE) ===== */
        .whatsapp-float {
            background: #25D366;
            color: #fff;
            padding: 12px 18px;
            border-radius: 50px;
            font-weight: 600;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
            transition: all 0.3s ease;
            text-decoration: none;
            border: none;
            cursor: pointer;
        }
        
        .whatsapp-float:hover {
            transform: translateY(-3px) scale(1.05);
            box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
            background: #20b858;
        }
        
        .whatsapp-float svg {
            width: 22px;
            height: 22px;
            fill: white;
        }
        
        /* ===== CHECKOUT BUTTON IN HEADER ===== */
        .header-cart-btn {
            display: flex;
            align-items: center;
            gap: 3px;
            padding: 4px 8px;
            background: linear-gradient(135deg, #ffebb3, #ffba19);
            color: #000000;
            border-radius: 25px;
            font-weight: 600;
            font-size: 16px;
            transition: all 0.3s ease;
            text-decoration: none;
            border: none;
            cursor: pointer;
        }
        
        .header-cart-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
        }
        
        .header-cart-btn .badge {
            background: #1a1210;
            color: #fff;
            border-radius: 50%;
            padding: 1px 7px;
            font-size: 11px;
            font-weight: 700;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .container {
                padding: 0 12px;
            }
            .floating-buttons {
                bottom: 20px;
                left: 20px;
                right: 20px;
            }
            .cart-link {
                padding: 4px 6px;
                font-size: 15px;
            }
            .cart-link .cart-text {
                display: none;
            }
            .whatsapp-float {
                padding: 10px 14px;
                font-size: 13px;
            }
            .whatsapp-float span {
                display: none;
            }
            .whatsapp-float svg {
                width: 24px;
                height: 24px;
            }
        }
        
        @media (max-width: 480px) {
            .container {
                padding: 0 8px;
            }
            .floating-buttons {
                bottom: 15px;
                left: 15px;
                right: 15px;
            }
            .cart-link {
                padding: 4px 6px;
                font-size: 12px;
            }
            .whatsapp-float {
                padding: 8px 12px;
            }
        }
        
        
         /* ========================================
       HEADER STYLES
       ======================================== */

    /* ===== PREVENT FLICKER ON PAGE LOAD ===== */
    .mobile-menu {
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        right: -400px !important;
    }

    .mobile-menu.active {
        right: 0 !important;
    }

    /* Prevent dropdown flicker */
    .dropdown-menu {
        transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    }

    /* ===== TOP BAR ===== */
    .top-bar {
        background: #1a1a1a;
        padding: 6px 0;
        border-bottom: 1px solid rgba(201,168,76,0.15);
    }
    .top-bar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
    }
    .top-bar-left,
    .top-bar-right {
        display: flex;
        align-items: center;
        gap: 8px;
        flex-wrap: wrap;
    }
    .top-bar-item {
        font-size: 11px;
        color: rgba(255,255,255,0.5);
        letter-spacing: 0.5px;
    }
    .top-bar-divider {
        font-size: 11px;
        color: rgba(255,255,255,0.1);
    }
    .top-bar-link {
        font-size: 11px;
        color: rgba(255,255,255,0.4);
        text-decoration: none;
        transition: color 0.3s ease;
        letter-spacing: 0.5px;
    }
    .top-bar-link:hover { color: #c9a84c; }
    .top-bar-register {
        font-size: 11px;
        color: #c9a84c;
        text-decoration: none;
        font-weight: 600;
        padding: 2px 12px;
        border: 1px solid rgba(201,168,76,0.2);
        border-radius: 20px;
        transition: all 0.3s ease;
        letter-spacing: 0.5px;
    }
    .top-bar-register:hover {
        background: #c9a84c;
        color: #1a1a1a;
    }

    /* ===== MAIN NAV ===== */
    .main-nav {
        background: rgba(255,255,255,0.97);
        backdrop-filter: blur(30px);
        padding: 8px 0;
        border-bottom: 1px solid rgba(201,168,76,0.08);
        position: sticky;
        top: 0;
        z-index: 9998;
        transition: all 0.3s ease;
    }
    .main-nav .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        max-width: 1400px;
        margin: 0 auto;
        padding: 0 40px;
    }

    /* ===== LOGO ===== */
    .logo {
        display: flex;
        align-items: center;
        gap: 8px;
        text-decoration: none;
        flex-shrink: 0;
    }
    .logo .logo-icon { font-size: 25px; }
    .logo .logo-text {
        /*font-family: 'Cormorant Garamond', serif;*/
        font-size: 35px;
        font-weight: 800;
        color: #1a1a1a;
        letter-spacing: 1px;
    }
    .logo .logo-text .accent {
        background: linear-gradient(135deg, #a47800, #000000);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        font-size: 25px;
    }
    .logo .logo-tagline {
        font-size: 11px;
        color: red;
        letter-spacing: 3px;
        text-transform: uppercase;
        font-weight: 700;
        margin-left: 1px;
    }

    /* ===== NAVIGATION ===== */
    .nav {
        display: flex;
        gap: 4px;
        align-items: center;
    }
    .nav-link {
        font-size: 12px;
        font-weight: 500;
        color: #333;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 8px 14px;
        text-decoration: none;
        transition: all 0.3s ease;
        border-radius: 4px;
        position: relative;
    }
    .nav-link:hover,
    .nav-link.active {
        color: #c9a84c;
        background: rgba(201,168,76,0.04);
    }
    .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 50%;
        transform: translateX(-50%);
        width: 20px;
        height: 2px;
        background: linear-gradient(90deg, #c9a84c, #f5e6a3);
        border-radius: 2px;
    }

    /* ===== DROPDOWN - FIXED ===== */
    .dropdown { 
        position: relative; 
    }

    .dropdown-toggle {
        font-size: 14px;
        font-weight: 600;
        color: #333;
        letter-spacing: 1px;
        text-transform: uppercase;
        padding: 8px 14px;
        display: flex;
        align-items: center;
        gap: 4px;
        cursor: pointer;
        transition: all 0.3s ease;
        text-decoration: none;
        border-radius: 4px;
    }

    .dropdown-toggle:hover {
        color: #c9a84c;
        background: rgba(201,168,76,0.04);
    }

    .dropdown-toggle .arrow {
        font-size: 8px;
        transition: transform 0.3s ease;
    }

    .dropdown:hover .dropdown-toggle .arrow { 
        transform: rotate(180deg); 
    }

    .dropdown-menu {
        position: absolute;
        top: 100%;
        left: 50%;
        transform: translateX(-50%) translateY(10px);
        background: #fff;
        min-width: 220px;
        padding: 8px 0;
        border-radius: 12px;
        box-shadow: 0 20px 60px rgba(0,0,0,0.08);
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        border: 1px solid rgba(201,168,76,0.06);
        z-index: 100;
        pointer-events: none;
    }

    .dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: translateX(-50%) translateY(0);
        pointer-events: auto;
    }

    /* Only show dropdown on desktop */
    @media (min-width: 769px) {
        .dropdown-menu {
            display: block !important;
        }
    }

    /* Hide dropdown on mobile */
    @media (max-width: 768px) {
        .dropdown-menu {
            display: none !important;
            opacity: 0 !important;
            visibility: hidden !important;
        }
        .dropdown:hover .dropdown-menu {
            display: none !important;
            opacity: 0 !important;
            visibility: hidden !important;
        }
        .dropdown-toggle {
            pointer-events: none;
        }
    }

    .dropdown-menu a {
        display: block;
        padding: 8px 20px;
        font-size: 14px;
        color: #555;
        text-decoration: none;
        transition: all 0.2s ease;
        font-weight: 300;
    }
    .dropdown-menu a:hover {
        color: #c9a84c;
        background: rgba(201,168,76,0.04);
        padding-left: 26px;
    }

    /* ===== COLLECTIONS DROPDOWN ===== */
    .dropdown-menu-collections {
        min-width: 200px;
    }

    /* ===== ACCOUNT DROPDOWN ===== */
    .account-dropdown .dropdown-menu {
        min-width: 180px;
        left: auto;
        right: 0;
        transform: translateY(10px);
    }
    .account-dropdown:hover .dropdown-menu {
        transform: translateY(0);
    }
    .account-dropdown .dropdown-menu hr {
        border: none;
        border-top: 1px solid #eee;
        margin: 4px 16px;
    }
    .account-btn {
        font-size: 18px;
        padding: 6px 10px;
        color: #333;
        text-decoration: none;
        display: flex;
        align-items: center;
        transition: color 0.3s ease;
        border-radius: 50%;
        width: 38px;
        height: 38px;
        justify-content: center;
    }
    .account-btn:hover {
        color: #c9a84c;
        background: rgba(201,168,76,0.04);
    }

    /* ===== NAV ACTIONS ===== */
    .nav-actions {
        display: flex;
        gap: 4px;
        align-items: center;
        margin-left: 8px;
    }
    .cart {
        position: relative;
        font-size: 20px;
        transition: all 0.3s ease;
        text-decoration: none;
        color: #333;
        padding: 6px 10px;
        border-radius: 50%;
        width: 38px;
        height: 38px;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    .cart:hover {
        color: #c9a84c;
        background: rgba(201,168,76,0.04);
    }
    .cart .badge {
        position: absolute;
        top: 2px;
        right: 2px;
        background: linear-gradient(135deg, #c9a84c, #f5e6a3);
        color: #fff;
        font-size: 9px;
        width: 18px;
        height: 18px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 700;
        font-family: 'Inter', sans-serif;
    }

    /* ===== HAMBURGER ===== */
    .hamburger {
        display: none;
        font-size: 33px;
        cursor: pointer;
        color: #1a1a1a;
        padding: 4px 8px;
        border-radius: 4px;
        transition: background 0.3s ease;
    }
    .hamburger:hover { background: rgba(0,0,0,0.04); }

    /* ===== MOBILE MENU ===== */
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -400px;
        width: 380px;
        max-width: 85vw;
        height: 100vh;
        background: #fff;
        z-index: 10001;
        transition: right 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        overflow-y: auto;
        box-shadow: -10px 0 40px rgba(0,0,0,0.05);
    }
    .mobile-menu.active { right: 0; }
    .mobile-overlay {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0,0,0,0.3);
        z-index: 10000;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
    }
    .mobile-overlay.active {
        opacity: 1;
        visibility: visible;
    }
    .mobile-menu-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
        border-bottom: 1px solid #f0f0f0;
    }
    .logo-small {
        font-family: 'Cormorant Garamond', serif;
        font-size: 22px;
        font-weight: 700;
        color: #1a1a1a;
    }
    .mobile-close {
        background: none;
        border: none;
        font-size: 24px;
        cursor: pointer;
        color: #666;
        padding: 4px 8px;
        transition: color 0.3s ease;
    }
    .mobile-close:hover { color: #c9a84c; }
    .mobile-menu-body { padding: 16px 24px; }
    .mobile-menu-body > a {
        display: block;
        padding: 12px 0;
        font-size: 15px;
        color: #333;
        text-decoration: none;
        border-bottom: 1px solid #f5f5f5;
        font-weight: 400;
        transition: color 0.3s ease;
    }
    .mobile-menu-body > a:hover { color: #c9a84c; }
    .mobile-dropdown { border-bottom: 1px solid #f5f5f5; }
    .mobile-dropdown-toggle {
        padding: 12px 0;
        font-size: 18px;
        color: #333;
        cursor: pointer;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-weight: 400;
        transition: color 0.3s ease;
    }
    .mobile-dropdown-toggle:hover { color: #c9a84c; }
    .mobile-dropdown-toggle .arrow {
        font-size: 12px;
        transition: transform 0.3s ease;
    }
    .mobile-dropdown-toggle.active .arrow { transform: rotate(90deg); }
    .mobile-dropdown-content {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.4s ease;
        padding-left: 12px;
    }
    .mobile-dropdown-content.open { max-height: 600px; }
    .mobile-dropdown-content a {
        display: block;
        padding: 6px 0 6px 12px;
        font-size: 16px;
        color: #49a7ff;
        text-decoration: none;
        font-weight: 300;
        transition: all 0.2s ease;
        font-weight: 600;
    }
    .mobile-dropdown-content a:hover {
        color: #c9a84c;
        padding-left: 18px;
    }
    .mobile-divider {
        border-bottom: 1px solid #f0f0f0;
        margin: 16px 0;
    }
    .mobile-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        margin: 12px 0;
    }
    .mobile-btn-login {
        padding: 12px;
        text-align: center;
        border: 1px solid #ddd;
        border-radius: 8px;
        color: #333;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
    }
    .mobile-btn-login:hover { border-color: #c9a84c; color: #c9a84c; }
    .mobile-btn-register {
        padding: 12px;
        text-align: center;
        background: linear-gradient(135deg, #c9a84c, #f5e6a3);
        color: #1a1a1a;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 600;
        transition: all 0.3s ease;
    }
    .mobile-btn-register:hover {
        transform: translateY(-2px);
        box-shadow: 0 8px 30px rgba(201,168,76,0.3);
    }
    .mobile-btn-cart {
        padding: 12px;
        text-align: center;
        background: rgba(201,168,76,0.06);
        color: #1a1a1a;
        border-radius: 8px;
        text-decoration: none;
        font-weight: 500;
        transition: all 0.3s ease;
        border: 1px solid rgba(201,168,76,0.1);
    }
    .mobile-btn-cart:hover { background: rgba(201,168,76,0.12); }
    .mobile-social {
        display: flex;
        gap: 16px;
        justify-content: center;
        padding: 16px 0 8px;
    }
    .mobile-social a {
        font-size: 22px;
        color: #999;
        text-decoration: none;
        transition: color 0.3s ease;
    }
    .mobile-social a:hover { color: #c9a84c; }

    /* ===== RESPONSIVE ===== */
    @media (max-width: 1024px) {
        .nav { gap: 2px; }
        .nav-link, .dropdown-toggle { font-size: 11px; padding: 6px 10px; }
        .logo .logo-text { font-size: 35px; }
        .logo .logo-tagline { font-size: 12px; font-weight:700; }
        .top-bar .container { padding: 0 20px; }
        .main-nav .container { padding: 0 20px; }
    }

    @media (max-width: 768px) {
        .nav { display: none; }
        .hamburger { display: block; }
        .top-bar .container {
            flex-direction: column;
            gap: 4px;
            padding: 4px 16px;
            text-align: center;
        }
        .top-bar-left,
        .top-bar-right {
            justify-content: center;
            flex-wrap: wrap;
        }
        .top-bar-item { font-size: 10px; }
        .top-bar-link { font-size: 10px; }
        .main-nav .container { padding: 0 16px; }
        .logo .logo-text { font-size: 25px; }
        .logo .logo-icon { font-size: 22px; }
    }

    @media (max-width: 480px) {
        .mobile-menu { width: 100%; max-width: 100%; right: -100%; }
        .mobile-menu.active { right: 0; }
        .top-bar-item { font-size: 9px; }
        .top-bar-link { font-size: 15px; }
        .top-bar-register { font-size: 9px; padding: 1px 10px; }
    }
    
    
    
    
     /* ===== TOP BAR BUTTONS - BORDER ONLY ===== */
        .top-bar-right {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }

        .top-bar-btn {
            padding: 6px 16px;
            border-radius: 25px;
            font-size: 12px;
            font-weight: 500;
            color: rgba(255, 255, 255, 0.6);
            text-decoration: none;
            transition: all 0.3s ease;
            background: transparent;
            border: 1.5px solid rgba(255, 255, 255, 0.1);
            white-space: nowrap;
        }

        .top-bar-btn:hover {
            border-color: rgba(255, 255, 255, 0.4);
            color: #fff;
            transform: translateY(-1px);
        }

        /* ===== ADMIN BUTTON ===== */
        .top-bar-btn.admin-btn {
            border-color: rgba(201, 168, 76, 0.3);
            color: #c9a84c;
        }

        .top-bar-btn.admin-btn:hover {
            background: rgba(201, 168, 76, 0.1);
            border-color: #c9a84c;
            color: #c9a84c;
        }

        /* ===== REGISTER BUTTON ===== */
        .top-bar-btn.register-btn {
            border-color: rgba(201, 168, 76, 0.3);
            color: #c9a84c;
        }

        .top-bar-btn.register-btn:hover {
            background: #c9a84c;
            color: #1a1a1a;
            border-color: #c9a84c;
        }

        /* ===== RESPONSIVE ===== */
        @media (max-width: 768px) {
            .top-bar-right {
                gap: 4px;
            }
            .top-bar-btn {
                padding: 4px 10px;
                font-size: 10px;
                border-radius: 20px;
            }
        }

        @media (max-width: 480px) {
            .top-bar-btn {
                padding: 3px 8px;
                font-size: 16px;
                border-radius: 16px;
                border-width: 1px;
            }
        }
        
        
        
        /* ===== PRODUCT DETAIL PAGE ===== */
.product-detail-page {
    padding: 40px 0 60px;
}

/* ===== BREADCRUMB ===== */
/* ===== BREADCRUMB - PROMINENT STYLING ===== */
.breadcrumb {
    font-size: 15px;
    padding: 16px 24px;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    border-radius: 10px;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-left: 4px solid #c9a84c;
    margin-bottom: 35px;
    color: #777;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
    transition: all 0.3s ease;
}

/* Hover effect on entire breadcrumb */
.breadcrumb:hover {
    border-color: rgba(201, 168, 76, 0.4);
    box-shadow: 0 4px 30px rgba(201, 168, 76, 0.08);
}

/* Links */
.breadcrumb a {
    color: #aaa;
    text-decoration: none;
    font-weight: 500;
    padding: 4px 10px;
    border-radius: 4px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

/* Link hover effect - scale + color + background */
.breadcrumb a:hover {
    color: #c9a84c;
    background: rgba(201, 168, 76, 0.08);
    transform: scale(1.05);
    padding: 4px 10px;
}

/* Underline animation on hover */
.breadcrumb a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: #c9a84c;
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 2px;
}

.breadcrumb a:hover::after {
    width: 60%;
}

/* Current page - MOST PROMINENT */
.breadcrumb span {
    color: #ffffff;
    font-weight: 700;
    font-size: 16px;
    padding: 6px 16px;
    background: linear-gradient(135deg, rgba(201, 168, 76, 0.12), rgba(201, 168, 76, 0.04));
    border-radius: 6px;
    border: 1px solid rgba(201, 168, 76, 0.15);
    letter-spacing: 0.3px;
    text-shadow: 0 0 20px rgba(201, 168, 76, 0.05);
}

/* Separator - more visible */
.breadcrumb {
    counter-reset: section;
}

.breadcrumb .separator {
    color: #444;
    font-weight: 300;
    font-size: 18px;
    margin: 0 2px;
}

/* Optional: Add icon before Home */
.breadcrumb a:first-child {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.breadcrumb a:first-child::before {
    content: '⌂';
    font-size: 18px;
    color: #c9a84c;
    transition: transform 0.3s ease;
}

.breadcrumb a:first-child:hover::before {
    transform: scale(1.2) rotate(-5deg);
}

/* Responsive */
@media (max-width: 768px) {
    .breadcrumb {
        font-size: 14px;
        padding: 14px 18px;
    }
    
    .breadcrumb a {
        padding: 3px 8px;
    }
    
    .breadcrumb span {
        font-size: 15px;
        padding: 4px 12px;
    }
    
    .breadcrumb .separator {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .breadcrumb {
        font-size: 13px;
        padding: 4px 5px;
        border-left-width: 3px;
    }
    
    .breadcrumb a {
        padding: 2px 6px;
    }
    
    .breadcrumb span {
        font-size: 14px;
        padding: 3px 10px;
    }
    
    .breadcrumb .separator {
        font-size: 14px;
        margin: 0 1px;
    }
    
    .breadcrumb a:first-child::before {
        font-size: 15px;
    }
}
/* ===== PRODUCT DETAIL CONTAINER ===== */
.product-detail-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    background: #fff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

/* ===== MAIN IMAGE - FIXED SIZE WITH CONTAIN ===== */
.main-image {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f6f3;
    margin-bottom: 16px;
    cursor: zoom-in;
    width: 100%;
    height: 500px; /* FIXED HEIGHT */
    display: flex;
    align-items: center;
    justify-content: center;
}

.main-image img {
    width: 120%;
    height: 120%;
    object-fit: contain; /* This ensures the ENTIRE image is visible inside the container */
    display: block;
    transition: transform 0.3s ease;
    background: #f8f6f3;
}

.main-image.zoomed img {
    transform: scale(1.5);
    cursor: zoom-out;
}

/* ===== THUMBNAILS - FIXED SIZE WITH CONTAIN ===== */
.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.thumbnail-images .thumb {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
    background: #f8f6f3;
    width: 100%;
    height: 120px; /* FIXED HEIGHT */
    display: flex;
    align-items: center;
    justify-content: center;
}

.thumbnail-images .thumb:hover,
.thumbnail-images .thumb.active {
    border-color: #c9a84c;
}

.thumbnail-images .thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain; /* This ensures the ENTIRE image is visible in thumbnails */
    display: block;
    background: #f8f6f3;
}

/* ===== THUMBNAIL LABELS ===== */
.thumbnail-images .thumb .thumb-label {
    position: absolute;
    bottom: 6px;
    right: 6px;
    background: rgba(0, 0, 0, 0.7);
    color: #fff;
    padding: 2px 10px;
    border-radius: 12px;
    font-size: 10px;
    font-weight: 600;
    backdrop-filter: blur(4px);
    border: 1px solid rgba(255,255,255,0.1);
    z-index: 2;
}

.thumbnail-images .thumb.active .thumb-label {
    background: #c9a84c;
    color: #1a1210;
}

/* ===== PLACEHOLDER THUMB ===== */
.thumbnail-images .thumb.placeholder {
    border: 2px dashed #ddd;
    background: #f5f0ea;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 120px;
    border-radius: 8px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .main-image {
        height: 400px;
    }
}

@media (max-width: 768px) {
    .main-image {
        height: 300px;
    }
    
    .thumbnail-images .thumb {
        height: 80px;
    }
}

@media (max-width: 480px) {
    .main-image {
        height: 250px;
    }
    
    .thumbnail-images {
        grid-template-columns: repeat(4, 1fr);
        gap: 6px;
    }
    
    .thumbnail-images .thumb {
        height: 60px;
    }
    
    .thumbnail-images .thumb .thumb-label {
        font-size: 8px;
        padding: 1px 6px;
        bottom: 3px;
        right: 3px;
    }
}



/* ===== IMAGE ACTIONS ===== */
.image-actions {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.btn-360-view,
.btn-fullscreen {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 20px;
    background: #1a1210;
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    flex: 1;
}

.btn-360-view:hover,
.btn-fullscreen:hover {
    background: #c9a84c;
    color: #1a1210;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

/* ===== THUMBNAILS ===== */
.thumbnail-images {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.thumbnail-images .thumb {
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: border-color 0.3s;
    background: #f8f6f3;
}

.thumbnail-images .thumb:hover,
.thumbnail-images .thumb.active {
    border-color: #c9a84c;
}

.thumbnail-images .thumb img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    display: block;
}

/* ===== PRODUCT INFO SECTION ===== */
.product-info-section {
    display: flex;
    flex-direction: column;
}

.product-title {
    font-family: 'Playfair Display', serif;
    font-size: 32px;
    color: #1a1210;
    margin-bottom: 6px;
}

.product-sku {
    font-size: 14px;
    color: #999;
    margin-bottom: 12px;
    display: block;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.product-rating .stars {
    color: #f5a623;
    font-size: 18px;
    letter-spacing: 2px;
}

.product-rating .rating-count {
    color: #999;
    font-size: 14px;
}

.product-price-detail {
    margin-bottom: 20px;
}

.product-price-detail .old-price {
    font-size: 22px;
    color: #999;
    text-decoration: line-through;
    margin-right: 12px;
}

.product-price-detail .current-price {
    font-size: 36px;
    font-weight: 700;
    color: #c9a84c;
}

.product-description {
    color: #666;
    line-height: 1.8;
    font-size: 15px;
    margin-bottom: 25px;
}

/* ===== PRODUCT META ===== */
.product-meta-detail {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    padding: 20px;
    background: #f8f6f3;
    border-radius: 12px;
    margin-bottom: 25px;
}

.meta-item {
    display: flex;
    flex-direction: column;
}

.meta-label {
    font-size: 12px;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.meta-value {
    font-size: 15px;
    color: #1a1210;
    font-weight: 500;
    margin-top: 2px;
}

.meta-value.in-stock {
    color: #27ae60;
}

/* ===== QUANTITY SECTION ===== */
.quantity-section {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
}

.quantity-section label {
    font-weight: 600;
    color: #1a1210;
    font-size: 15px;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 12px;
}

.quantity-selector .qty-btn {
    width: 40px;
    height: 40px;
    border: 1px solid #ddd;
    border-radius: 50%;
    background: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity-selector .qty-btn:hover {
    background: #c9a84c;
    color: #fff;
    border-color: #c9a84c;
}

.quantity-selector .qty-value {
    font-size: 22px;
    font-weight: 600;
    min-width: 40px;
    text-align: center;
}

/* ===== ADD TO CART BUTTON ===== */
.btn-add-to-cart {
    padding: 16px 40px;
    background: linear-gradient(135deg, #c9a84c, #b8923a);
    color: #1a1210;
    border: none;
    border-radius: 10px;
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.btn-add-to-cart:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(201, 168, 76, 0.4);
}

.btn-add-to-cart:active {
    transform: translateY(0);
}

/* ===== ADDITIONAL INFO ===== */
.additional-info {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid #f0ebe6;
}

.additional-info .info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #666;
    font-size: 14px;
}

.additional-info .info-icon {
    color: #c9a84c;
    font-weight: 700;
    font-size: 16px;
}

/* ===== 360 MODAL ===== */
.modal-360 {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.85);
    animation: fadeIn 0.3s;
    align-items: center;
    justify-content: center;
}

.modal-360.show {
    display: flex;
}

.modal-360-content {
    background: #fff;
    border-radius: 16px;
    padding: 30px;
    width: 90%;
    max-width: 700px;
    max-height: 90vh;
    position: relative;
    overflow-y: auto;
}

.modal-360-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    margin-bottom: 5px;
    color: #1a1210;
}

.hint-text {
    color: #999;
    font-size: 14px;
    margin-bottom: 20px;
}

.close-360 {
    position: absolute;
    top: 15px;
    right: 25px;
    font-size: 35px;
    font-weight: 700;
    color: #999;
    cursor: pointer;
    transition: color 0.3s;
}

.close-360:hover {
    color: #1a1210;
}

.simple-360-container {
    width: 100%;
    height: 400px;
    background: #f8f6f3;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    perspective: 1000px;
    position: relative;
    user-select: none;
}

.simple-360-container img {
    max-width: 100%;
    max-height: 100%;
    transition: transform 0.15s ease;
    object-fit: contain;
}

.rotation-controls {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 15px;
}

.rotate-btn {
    padding: 10px 25px;
    background: #c9a84c;
    color: #1a1210;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s;
    min-width: 100px;
}

.rotate-btn:hover {
    background: #b8923a;
    transform: scale(1.05);
}

.rotate-btn.auto-btn.active {
    background: #e74c3c;
    color: #fff;
}

.progress-bar {
    width: 100%;
    height: 4px;
    background: #e0ddd8;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #c9a84c, #f5d76e);
    transition: width 0.1s linear;
}

/* ===== FULLSCREEN MODAL ===== */
.modal-fullscreen {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    align-items: center;
    justify-content: center;
}

.modal-fullscreen.show {
    display: flex;
}

.modal-fullscreen img {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
}

.close-fullscreen {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 45px;
    font-weight: 700;
    color: #fff;
    cursor: pointer;
    transition: color 0.3s;
    z-index: 10001;
}

.close-fullscreen:hover {
    color: #c9a84c;
}

/* ===== PRODUCT NOT FOUND ===== */
.product-not-found {
    text-align: center;
    padding: 80px 20px;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.product-not-found h2 {
    font-size: 32px;
    color: #1a1210;
    margin-bottom: 10px;
}

.product-not-found p {
    color: #666;
    margin-bottom: 30px;
}

.btn-back {
    display: inline-block;
    padding: 14px 40px;
    background: #c9a84c;
    color: #1a1210;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.btn-back:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(201, 168, 76, 0.3);
}

/* ===== ANIMATIONS ===== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* ===== NOTIFICATION ===== */
.notification {
    position: fixed;
    top: 20px;
    right: 20px;
    background: #1a1210;
    color: #fff;
    padding: 16px 24px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.2);
    animation: slideIn 0.3s ease;
    z-index: 10000;
}

@keyframes slideIn {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .product-detail-container {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 30px;
    }
    
    .product-title {
        font-size: 28px;
    }
    
    .product-price-detail .current-price {
        font-size: 30px;
    }
}

@media (max-width: 768px) {
    .product-detail-page {
        padding: 20px 0 40px;
    }
    
    .product-detail-container {
        padding: 20px;
        border-radius: 12px;
    }
    
    .product-title {
        font-size: 24px;
    }
    
    .product-price-detail .current-price {
        font-size: 26px;
    }
    
    .product-meta-detail {
        grid-template-columns: 1fr;
        gap: 8px;
    }
    
    .btn-add-to-cart {
        font-size: 16px;
        padding: 14px 30px;
    }
    
    .thumbnail-images .thumb img {
        height: 100px;
    }
    
    .modal-360-content {
        padding: 20px;
        width: 95%;
    }
    
    .simple-360-container {
        height: 300px;
    }
    
    .rotate-btn {
        padding: 8px 16px;
        font-size: 14px;
        min-width: 80px;
    }
}

@media (max-width: 480px) {
    .product-detail-container {
        padding: 15px;
        border-radius: 10px;
    }
    
    .product-title {
        font-size: 20px;
    }
    
    .product-price-detail .current-price {
        font-size: 22px;
    }
    
    .product-price-detail .old-price {
        font-size: 18px;
    }
    
    .btn-add-to-cart {
        font-size: 14px;
        padding: 12px 20px;
    }
    
    .quantity-selector .qty-btn {
        width: 34px;
        height: 34px;
        font-size: 16px;
    }
    
    .quantity-selector .qty-value {
        font-size: 18px;
        min-width: 30px;
    }
    
    .simple-360-container {
        height: 250px;
    }
    
    .image-actions {
        flex-direction: column;
    }
    
    .rotate-btn {
        padding: 8px 12px;
        font-size: 13px;
        min-width: 60px;
    }
}

    