:root {
    --gold: #D4AF37;
    --gold-dark: #B8960C;
    --gold-light: #F4D03F;
    --black: #0A0A0A;
    --dark: #1A1A1A;
    --darker: #121212;
    --white: #FFFFFF;
    --gray-light: #F8F9FA;
    --gray: #E9ECEF;
    --gray-dark: #6C757D;
    --text: #212529;
    --text-muted: #6C757D;
    --danger: #DC3545;
    --success: #28A745;
    --warning: #FFC107;
    --info: #17A2B8;
    --radius: 12px;
    --radius-sm: 8px;
    --shadow-sm: 0 2px 4px rgba(0,0,0,0.05);
    --shadow: 0 5px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 10px 40px rgba(0,0,0,0.12);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Top Bar */
.top-bar {
    background: var(--black);
    color: var(--white);
    padding: 10px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.top-bar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.top-bar-left, .top-bar-right {
    display: flex;
    gap: 20px;
    align-items: center;
}

.top-bar-left span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-left i {
    color: var(--gold);
}

.top-bar-right a {
    color: var(--white);
    transition: var(--transition);
    font-size: 16px;
}

.top-bar-right a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

/* Header */
.header {
    background: var(--white);
    padding: 20px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
    backdrop-filter: blur(10px);
    background: rgba(255, 255, 255, 0.98);
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    flex-shrink: 0;
}

.logo-img {
    height: 50px;
    width: auto;
    border-radius: var(--radius-sm);
}

.logo-text {
    font-size: 22px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Search Bar */
.header-search {
    flex: 1;
    max-width: 500px;
    position: relative;
}

.header-search input {
    width: 100%;
    padding: 14px 50px 14px 20px;
    border: 2px solid var(--gray);
    border-radius: 50px;
    font-size: 14px;
    transition: var(--transition);
    background: var(--gray-light);
}

.header-search input:focus {
    outline: none;
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(212, 175, 55, 0.1);
}

.header-search button {
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    color: var(--black);
    transition: var(--transition);
}

.header-search button:hover {
    transform: translateY(-50%) scale(1.05);
    box-shadow: var(--shadow);
}

/* Header Actions */
.header-actions {
    display: flex;
    gap: 20px;
    align-items: center;
}

.header-icon {
    position: relative;
    color: var(--text);
    font-size: 22px;
    transition: var(--transition);
    text-decoration: none;
}

.header-icon:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.badge {
    position: absolute;
    top: -8px;
    right: -12px;
    background: var(--gold);
    color: var(--black);
    font-size: 11px;
    font-weight: bold;
    padding: 3px 7px;
    border-radius: 50px;
    min-width: 20px;
    text-align: center;
}

/* Navigation */
.nav {
    background: var(--white);
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
    position: sticky;
    top: 90px;
    z-index: 999;
}

.nav-list {
    display: flex;
    list-style: none;
    gap: 35px;
    padding: 0;
    overflow-x: auto;
    scrollbar-width: none;
}

.nav-list::-webkit-scrollbar {
    display: none;
}

.nav-list a {
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    padding: 15px 0;
    display: inline-block;
    position: relative;
    transition: var(--transition);
    white-space: nowrap;
}

.nav-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    transition: var(--transition);
}

.nav-list a:hover::after,
.nav-list a.active::after {
    width: 100%;
}

.nav-list a:hover,
.nav-list a.active {
    color: var(--gold);
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><path fill="%23D4AF37" fill-opacity="0.05" d="M50 0L61.8 38.2L100 50L61.8 61.8L50 100L38.2 61.8L0 50L38.2 38.2z"/></svg>');
    background-size: 60px;
    opacity: 0.1;
    pointer-events: none;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content h1 {
    font-size: 56px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    background: linear-gradient(135deg, var(--white) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
}

.btn {
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--black);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.3);
}

.btn-outline {
    border: 2px solid var(--gold);
    color: var(--gold);
    background: transparent;
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-2px);
}

.hero-stats {
    display: flex;
    gap: 40px;
}

.hero-stat {
    text-align: center;
}

.hero-stat span {
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: var(--gold);
}

.hero-stat small {
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
}

.hero-image img {
    width: 100%;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    animation: float 3s ease-in-out infinite;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-20px); }
}

/* Sections */
.section {
    padding: 80px 0;
}

.section.bg-light {
    background: var(--gray-light);
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 15px;
}

.section-header h2 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    display: inline-block;
}

.section-header h2 i {
    color: var(--gold);
    margin-right: 10px;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-dark));
    border-radius: 3px;
}

.view-all {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: var(--transition);
}

.view-all:hover {
    gap: 12px;
    color: var(--gold-dark);
}

/* Products Grid */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

/* Product Card */
.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    box-shadow: var(--shadow-sm);
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: var(--gray-light);
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.primary-image {
    position: relative;
    z-index: 1;
}

.secondary-image {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    z-index: 2;
}

.product-card:hover .secondary-image {
    opacity: 1;
}

.product-card:hover .primary-image {
    opacity: 0;
}

.image-count {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 4px 8px;
    border-radius: 20px;
    font-size: 11px;
    z-index: 3;
    backdrop-filter: blur(5px);
}

.product-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    z-index: 3;
}

.product-badge.sale {
    background: var(--danger);
    color: white;
}

.product-badge.new {
    background: var(--success);
    color: white;
}

.product-badge.best {
    background: var(--gold);
    color: var(--black);
}











.product-info {
    padding: 20px;
}

.product-brand {
    font-size: 12px;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.product-info h3 {
    font-size: 16px;
    margin: 8px 0;
    font-weight: 600;
    line-height: 1.4;
    color: var(--text);
}

.product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.current-price {
    font-size: 20px;
    font-weight: 700;
    color: var(--gold);
}

.original-price {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}

/* Footer */
.footer {
    background: var(--black);
    color: var(--white);
    padding: 60px 0 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h4 {
    color: var(--gold);
    margin-bottom: 20px;
    font-size: 18px;
}

.footer-col p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: var(--transition);
    text-decoration: none;
}

.social-links a:hover {
    background: var(--gold);
    color: var(--black);
    transform: translateY(-3px);
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition);
}

.footer-col ul li a:hover {
    color: var(--gold);
    padding-left: 5px;
}

.contact-info li {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-info i {
    color: var(--gold);
    width: 20px;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

/* Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 900px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    z-index: 1;
    transition: var(--transition);
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
}

.modal-close:hover {
    background: var(--danger);
    color: white;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -450px;
    width: 450px;
    max-width: 90%;
    height: 100%;
    background: var(--white);
    box-shadow: var(--shadow-lg);
    z-index: 2001;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    right: 0;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
}

.cart-overlay.active {
    display: block;
}

.cart-header {
    padding: 20px;
    border-bottom: 1px solid var(--gray);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-header h3 {
    font-size: 20px;
}

.cart-header button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    transition: var(--transition);
}

.cart-header button:hover {
    background: var(--gray);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.empty-cart {
    text-align: center;
    color: var(--text-muted);
    padding: 40px;
}

.cart-footer {
    padding: 20px;
    border-top: 1px solid var(--gray);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

.btn-whatsapp {
    background: #25D366;
    color: white;
}

.btn-whatsapp:hover {
    background: #128C7E;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content h1 {
        font-size: 44px;
    }
    
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .hero-stats {
        justify-content: center;
    }
    
    .section-header {
        flex-direction: column;
        text-align: center;
    }
    
    .section-header h2::after {
        left: 50%;
        transform: translateX(-50%);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 16px;
    }
    
    .header-content {
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .logo {
        order: 1;
    }
    
    .header-search {
        order: 3;
        max-width: 100%;
        flex: 0 0 100%;
    }
    
    .header-actions {
        order: 2;
    }
    
    .nav {
        top: 130px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .section {
        padding: 50px 0;
    }
    
    .section-header h2 {
        font-size: 24px;
    }
    
    .products-grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .top-bar .container {
        flex-direction: column;
        text-align: center;
    }
    
    .hero-buttons {
        flex-direction: column;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 15px;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
    }
}



/* Enhanced Cart Drawer Styles */
.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 12px;
    background: var(--white);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--gray);
}

.cart-item:hover {
    box-shadow: var(--shadow);
    border-color: transparent;
}

.cart-item-img {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--gray-light);
}

.cart-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.cart-item-info {
    flex: 1;
}

.cart-item-info h4 {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 4px;
    color: var(--text);
}

.cart-item-brand {
    font-size: 11px;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
}

.cart-item-price-row {
    display: flex;
    gap: 10px;
    align-items: center;
    margin-bottom: 10px;
    flex-wrap: wrap;
}

.cart-item-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--gold);
}

.cart-item-size {
    font-size: 11px;
    color: var(--text-muted);
    padding: 2px 6px;
    background: var(--gray);
    border-radius: 4px;
}

.cart-item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item-qty button {
    width: 28px;
    height: 28px;
    border-radius: 6px;
    background: var(--gray);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

.cart-item-qty button:hover {
    background: var(--gold);
    color: var(--black);
}

.cart-item-qty input {
    width: 45px;
    text-align: center;
    border: 1px solid var(--gray);
    border-radius: 6px;
    padding: 5px;
    font-size: 13px;
}

.cart-item-remove {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover {
    background: var(--danger);
    color: white;
}

/* Cart Summary */
.cart-summary {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 2px solid var(--gray);
}

.cart-summary-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
}

.cart-summary-row.total {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold);
    border-top: 1px solid var(--gray);
    margin-top: 8px;
    padding-top: 12px;
}

/* Skeleton Loader */
.cart-skeleton {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.cart-skeleton-item {
    display: flex;
    gap: 15px;
    padding: 12px;
}

.skeleton-img {
    width: 80px;
    height: 80px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: var(--radius-sm);
}

.skeleton-info {
    flex: 1;
}

.skeleton-line {
    height: 14px;
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: skeleton-loading 1.5s infinite;
    border-radius: 4px;
    margin-bottom: 8px;
}

.skeleton-line.short {
    width: 60%;
}

.skeleton-line.small {
    width: 40%;
    height: 10px;
}

@keyframes skeleton-loading {
    0% {
        background-position: 200% 0;
    }
    100% {
        background-position: -200% 0;
    }
}

/* Empty Cart Enhancement */
.empty-cart {
    text-align: center;
    padding: 40px 20px;
}

.empty-cart i {
    font-size: 60px;
    color: var(--gray);
    margin-bottom: 20px;
}

/* Toast Notifications */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: var(--black);
    color: white;
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 14px;
    z-index: 10000;
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
    white-space: nowrap;
    box-shadow: var(--shadow-lg);
}

.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-success {
    background: var(--success);
}

.toast-error {
    background: var(--danger);
}

.toast-warning {
    background: var(--warning);
    color: var(--black);
}

.toast-info {
    background: var(--info);
}

@media (max-width: 480px) {
    .toast {
        font-size: 12px;
        padding: 10px 20px;
        white-space: normal;
        max-width: 90%;
        text-align: center;
    }
    
    .cart-item-img {
        width: 60px;
        height: 60px;
    }
    
    .cart-item-info h4 {
        font-size: 12px;
    }
}



/* ==================== MOBILE MENU ==================== */

/* Hamburger Menu Button */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 22px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: var(--transition);
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

/* Mobile Menu Overlay */
.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2000;
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.mobile-menu-overlay.active {
    display: block;
    opacity: 1;
}

/* Mobile Navigation Drawer */
.mobile-nav-drawer {
    position: fixed;
    top: 0;
    left: -320px;
    width: 320px;
    max-width: 85%;
    height: 100%;
    background: var(--white);
    z-index: 2001;
    transition: left 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
}

.mobile-nav-drawer.open {
    left: 0;
}

/* Mobile Nav Header */
.mobile-nav-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--gray);
    background: var(--white);
}

.mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.mobile-nav-logo img {
    height: 40px;
    width: auto;
    border-radius: var(--radius-sm);
}

.mobile-nav-logo span {
    font-size: 18px;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mobile-nav-close {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.mobile-nav-close:hover {
    background: var(--gray);
}

/* Mobile Nav Content */
.mobile-nav-content {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
}

.mobile-nav-list {
    list-style: none;
    margin-bottom: 30px;
}

.mobile-nav-list li {
    margin-bottom: 5px;
}

.mobile-nav-list a {
    display: block;
    padding: 12px 0;
    text-decoration: none;
    color: var(--text);
    font-weight: 500;
    font-size: 16px;
    transition: var(--transition);
    border-bottom: 1px solid var(--gray);
}

.mobile-nav-list a:hover,
.mobile-nav-list a.active {
    color: var(--gold);
    padding-left: 10px;
}

/* Mobile Contact Section */
.mobile-nav-contact {
    padding: 20px 0;
    border-top: 1px solid var(--gray);
    border-bottom: 1px solid var(--gray);
    margin-bottom: 20px;
}

.mobile-nav-contact h4 {
    font-size: 14px;
    color: var(--gold);
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.mobile-nav-contact p {
    margin-bottom: 10px;
    font-size: 14px;
}

.mobile-nav-contact a {
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.mobile-nav-contact a:hover {
    color: var(--gold);
}

.mobile-nav-contact i {
    width: 25px;
    color: var(--gold);
}

/* Mobile Social Links */
.mobile-nav-social {
    display: flex;
    gap: 15px;
    justify-content: center;
    padding: 20px 0;
}

.mobile-nav-social a {
    width: 40px;
    height: 40px;
    background: var(--gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text);
    text-decoration: none;
    transition: var(--transition);
}

.mobile-nav-social a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}

/* Hide desktop nav on mobile */
@media (max-width: 768px) {
    .desktop-nav {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .header-content {
        gap: 12px;
    }
    
    .logo-text {
        display: none;
    }
    
    .logo-img {
        height: 40px;
    }
    
    .header-search {
        margin: 0 10px;
    }
    
    .header-search input {
        padding: 10px 40px 10px 15px;
        font-size: 13px;
    }
    
    .header-search button {
        width: 32px;
        height: 32px;
    }
    
    .header-actions {
        gap: 12px;
    }
    
    .header-icon {
        font-size: 18px;
    }
}

@media (min-width: 769px) {
    .menu-toggle {
        display: none;
    }
    
    .mobile-nav-drawer,
    .mobile-menu-overlay {
        display: none !important;
    }
}





/* ==================== HERO SLIDESHOW ==================== */
.hero-slideshow {
    position: relative;
    padding: 0;
    overflow: hidden;
    min-height: 600px;
}

.hero-slides-container {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 600px;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 0.8s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-slide .container {
    position: relative;
    z-index: 2;
    height: 100%;
    min-height: 600px;
    display: flex;
    align-items: center;
}

.hero-content {
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Hero Dots Navigation */
.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.hero-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.hero-dot.active {
    background: var(--gold);
    transform: scale(1.2);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.hero-dot:hover {
    background: var(--gold);
    transform: scale(1.1);
}

/* Hero Arrows */
.hero-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    color: white;
    font-size: 20px;
}

.hero-arrow:hover {
    background: var(--gold);
    border-color: var(--gold);
    transform: translateY(-50%) scale(1.1);
}

.hero-arrow-prev {
    left: 20px;
}

.hero-arrow-next {
    right: 20px;
}

/* Responsive Hero */
@media (max-width: 768px) {
    .hero-slideshow,
    .hero-slide,
    .hero-slide .container {
        min-height: 500px;
    }
    
    .hero-content h1 {
        font-size: 32px;
    }
    
    .hero-content p {
        font-size: 14px;
    }
    
    .hero-arrow {
        width: 35px;
        height: 35px;
        font-size: 16px;
    }
    
    .hero-arrow-prev {
        left: 10px;
    }
    
    .hero-arrow-next {
        right: 10px;
    }
    
    .hero-dots {
        bottom: 20px;
        gap: 8px;
    }
    
    .hero-dot {
        width: 8px;
        height: 8px;
    }
}

@media (max-width: 480px) {
    .hero-slideshow,
    .hero-slide,
    .hero-slide .container {
        min-height: 450px;
    }
    
    .hero-content h1 {
        font-size: 28px;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .hero-buttons .btn {
        justify-content: center;
    }
}







/* Size Selection Modal */
.size-select-modal {
    max-width: 450px;
    border-radius: var(--radius);
}

.size-select-content {
    padding: 30px;
}

.size-select-product {
    display: flex;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray);
}

.size-select-product-img {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-sm);
    overflow: hidden;
    background: var(--gray-light);
}

.size-select-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.size-select-product-info h3 {
    font-size: 16px;
    margin-bottom: 5px;
}

.size-select-product-price {
    color: var(--gold);
    font-weight: 700;
    font-size: 18px;
}

.size-select-title {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 15px;
    color: var(--text);
}

.size-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(80px, 1fr));
    gap: 10px;
    margin-bottom: 25px;
}

.size-option-btn {
    padding: 12px;
    border: 2px solid var(--gray);
    background: var(--white);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    font-weight: 500;
    text-align: center;
}

.size-option-btn:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.size-option-btn.selected {
    border-color: var(--gold);
    background: var(--gold);
    color: var(--black);
}

.size-option-btn.sold-out {
    opacity: 0.5;
    text-decoration: line-through;
    cursor: not-allowed;
}

.size-option-btn.sold-out:hover {
    border-color: var(--gray);
    background: var(--white);
}

.size-select-quantity {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.size-select-quantity label {
    font-weight: 600;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 10px;
    border: 1px solid var(--gray);
    border-radius: var(--radius-sm);
    overflow: hidden;
}

.quantity-selector button {
    width: 35px;
    height: 35px;
    background: var(--gray-light);
    border: none;
    cursor: pointer;
    font-size: 18px;
    transition: var(--transition);
}

.quantity-selector button:hover {
    background: var(--gold);
}

.quantity-selector input {
    width: 50px;
    text-align: center;
    border: none;
    padding: 8px;
    font-size: 14px;
}

.size-select-actions {
    display: flex;
    gap: 12px;
}

.size-select-actions .btn {
    flex: 1;
    justify-content: center;
}

@media (max-width: 480px) {
    .size-options-grid {
        grid-template-columns: repeat(auto-fill, minmax(70px, 1fr));
    }
    
    .size-option-btn {
        padding: 8px;
        font-size: 12px;
    }
}




.user-badge {
    position: absolute;
    top: -5px;
    right: -10px;
    background: var(--gold);
    color: var(--black);
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 20px;
}








/* ==================== ACCOUNT MODAL STYLES ==================== */
.account-modal {
    max-width: 500px;
    width: 90%;
    border-radius: var(--radius);
    background: var(--white);
    overflow: hidden;
}

.account-modal .modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    z-index: 10;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(0,0,0,0.05);
    transition: var(--transition);
}

.account-modal .modal-close:hover {
    background: var(--danger);
    color: white;
}

/* Account Tabs */
.account-tabs {
    display: flex;
    border-bottom: 2px solid var(--gray);
    margin-bottom: 30px;
    background: var(--white);
}

.tab-btn {
    flex: 1;
    padding: 15px 20px;
    background: none;
    border: none;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    color: var(--text-muted);
    transition: var(--transition);
    position: relative;
}

.tab-btn:hover {
    color: var(--gold);
}

.tab-btn.active {
    color: var(--gold);
}

.tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gold);
}

/* Account Forms */
.account-form {
    display: none;
    padding: 0 10px;
}

.account-form.active {
    display: block;
    animation: fadeIn 0.3s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.account-form h3 {
    font-size: 22px;
    margin-bottom: 25px;
    color: var(--text);
    text-align: center;
}

.account-form .form-group {
    margin-bottom: 20px;
}

.account-form .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 14px;
    color: var(--text);
}

.account-form .form-group label .required {
    color: var(--danger);
}

.account-form .form-group input {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--gray);
    border-radius: var(--radius-sm);
    font-size: 14px;
    transition: var(--transition);
    background: var(--white);
}

.account-form .form-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.account-form .btn-block {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
}

/* User Dashboard */
.account-dashboard {
    text-align: center;
}

.account-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray);
}

.account-header i {
    font-size: 70px;
    color: var(--gold);
    margin-bottom: 15px;
}

.account-header h2 {
    font-size: 24px;
    margin-bottom: 5px;
    color: var(--text);
}

.account-header p {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 15px;
}

.account-orders {
    text-align: left;
}

.account-orders h3 {
    font-size: 18px;
    margin-bottom: 20px;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-item {
    background: var(--gray-light);
    padding: 15px;
    border-radius: var(--radius-sm);
    margin-bottom: 15px;
    transition: var(--transition);
    border: 1px solid transparent;
}

.order-item:hover {
    border-color: var(--gold);
    box-shadow: var(--shadow);
}

.order-item-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid var(--gray);
}

.order-item-header strong {
    font-size: 14px;
    color: var(--text);
}

.order-status {
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
}

.order-status.pending { 
    background: #fff3cd; 
    color: #856404; 
}

.order-status.processing { 
    background: #d1ecf1; 
    color: #0c5460; 
}

.order-status.completed { 
    background: #d4edda; 
    color: #155724; 
}

.order-status.cancelled { 
    background: #f8d7da; 
    color: #721c24; 
}

.order-item > div {
    margin-bottom: 8px;
    font-size: 13px;
}

.order-item > div:last-child {
    margin-bottom: 0;
}

.order-items-list {
    color: var(--text-muted);
    font-size: 12px;
}

/* User Badge in Header */
.user-badge {
    position: absolute;
    top: -8px;
    right: -12px;
    background: var(--success);
    color: white;
    font-size: 10px;
    padding: 2px 6px;
    border-radius: 20px;
    font-weight: bold;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .account-modal {
        width: 95%;
        margin: 20px;
    }
    
    .tab-btn {
        padding: 12px 15px;
        font-size: 14px;
    }
    
    .account-form h3 {
        font-size: 20px;
    }
    
    .account-form .form-group input {
        padding: 10px 12px;
    }
    
    .order-item-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .account-header i {
        font-size: 50px;
    }
    
    .account-header h2 {
        font-size: 20px;
    }
}

/* Loading Spinner for Orders */
#userOrdersList {
    min-height: 100px;
}

#userOrdersList .fa-spinner {
    font-size: 30px;
    color: var(--gold);
}






/* Product Actions - Always Visible */
.product-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 12px;
    padding: 15px;
    
    transition: var(--transition);
    z-index: 3;
    opacity: 1;
    visibility: visible;
}

.product-actions button {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--white);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: var(--text);
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.product-actions button:hover {
    background: var(--gold);
    color: var(--black);
    transform: scale(1.1);
}

.btn-whatsapp-action {
    background: #25D366 !important;
    color: white !important;
}

.btn-whatsapp-action:hover {
    background: #128C7E !important;
}

/* Touch devices - ensure buttons are always visible */
@media (hover: none) {
    .product-actions {
        bottom: 0;
        background: linear-gradient(to top, rgba(0,0,0,0.85), rgba(0,0,0,0.4));
        opacity: 1;
        visibility: visible;
    }
}

/* Mobile responsive - adjust button sizes */
@media (max-width: 768px) {
    .product-actions {
        gap: 8px;
        padding: 10px;
    }
    
    .product-actions button {
        width: 35px;
        height: 35px;
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .product-actions {
        gap: 6px;
        padding: 8px;
    }
    
    .product-actions button {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
}

















/* Quick View Size Selection Styles */
.qv-variants {
    margin: 20px 0;
}

.qv-variants label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    font-size: 14px;
}

.qv-variants .size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.qv-variants .size-tag {
    padding: 8px 16px;
    border: 2px solid var(--gray);
    background: var(--white);
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.2s;
    font-size: 14px;
    font-weight: 500;
}

.qv-variants .size-tag:hover {
    border-color: var(--gold);
    background: rgba(212, 175, 55, 0.1);
}

.qv-variants .size-tag.selected {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--black);
}

.qv-variants .size-tag.sold-out {
    opacity: 0.5;
    text-decoration: line-through;
    cursor: not-allowed;
}

.qv-size-error {
    background: #ffebee;
    color: var(--danger);
    padding: 8px 12px;
    border-radius: 8px;
    margin-top: 5px;
    font-size: 12px;
}

.qv-no-size {
    color: var(--warning);
    font-size: 13px;
    margin: 10px 0;
}











/* Optimized Image Loading */
.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.2s ease;
    background-color: #f5f5f5;
}

/* Show subtle background while images load */
.product-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1;
    background: linear-gradient(135deg, #f5f5f5 0%, #e8e8e8 100%);
}

/* Lazy loading blur effect */
.product-image img.loading {
    filter: blur(5px);
    opacity: 0.7;
}

.product-image img.loaded {
    filter: blur(0);
    opacity: 1;
}