@import url('https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:wght@300;400;500;600;700&family=Playfair+Display:ital,wght@0,600;0,700;1,400&display=swap');

:root {
    --bg-dark: #070707;
    --bg-card: rgba(20, 20, 20, 0.75);
    --gold-primary: #D4AF37;
    --gold-light: #F3E5AB;
    --gold-gradient: linear-gradient(135deg, #BF953F 0%, #FCF6BA 25%, #B38728 50%, #FBF5B7 75%, #AA771C 100%);
    --text-main: #F5F5F7;
    --text-muted: #A1A1A6;
    --border-gold: rgba(212, 175, 55, 0.25);
}

* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

body {
    background-color: var(--bg-dark);
    background-image: 
        radial-gradient(circle at 15% 15%, rgba(212, 175, 55, 0.05) 0%, transparent 40%),
        radial-gradient(circle at 85% 85%, rgba(212, 175, 55, 0.03) 0%, transparent 40%);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Header Styling */
header {
    background: rgba(7, 7, 7, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 16px 6%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.logo-img {
    height: 48px;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
}

.logo-text {
    font-family: 'Playfair Display', serif;
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 3px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

nav a {
    color: var(--text-main);
    text-decoration: none;
    margin: 0 18px;
    font-weight: 500;
    font-size: 15px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

nav a:hover {
    color: var(--gold-primary);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.5);
}

.cart-icon-btn {
    background: linear-gradient(145deg, rgba(212,175,55,0.1), rgba(0,0,0,0.5));
    border: 1px solid var(--gold-primary);
    color: var(--gold-primary);
    padding: 10px 22px;
    cursor: pointer;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cart-icon-btn:hover {
    background: var(--gold-gradient);
    color: #000;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
    transform: translateY(-2px);
}

/* Banner Slider Layout */
.banner-slider {
    position: relative;
    width: 100%;
    height: 450px;
    overflow: hidden;
    background: #000;
}

.banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(0.9) contrast(1.05);
}

/* Containers & Section Titles */
.container {
    width: 90%;
    max-width: 1240px;
    margin: 60px auto;
}

.section-title {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 36px;
    font-weight: 700;
    letter-spacing: 3px;
    margin-bottom: 45px;
    background: var(--gold-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.section-title::after {
    content: '';
    display: block;
    width: 80px;
    height: 2px;
    background: var(--gold-gradient);
    margin: 12px auto 0;
    border-radius: 2px;
}

/* Products Grid Layout */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.product-card {
    background: var(--bg-card);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border-gold);
    border-radius: 16px;
    padding: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.05), transparent);
    transition: 0.6s;
}

.product-card:hover::before {
    left: 100%;
}

.product-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.8), 0 0 25px rgba(212, 175, 55, 0.2);
}

/* Image Box */
.product-image-box {
    width: 100%;
    height: 270px;
    overflow: hidden;
    border-radius: 12px;
    margin-bottom: 18px;
    background: #000;
    position: relative;
}

.product-image-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.product-card:hover .product-image-box img {
    transform: scale(1.06);
}

.product-title {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

/* Single Line Pricing (Prevent Break) */
.price-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 12px;
    white-space: nowrap;
}

.cut-price {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    font-weight: 400;
}

.product-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 0 !important;
}

/* Glassmorphism Subtle Sale Badge */
.sale-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid var(--gold-primary);
    color: var(--gold-light);
    font-size: 10px;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 10;
}

/* Buttons Styling */
.btn-primary {
    background: var(--gold-gradient);
    color: #000;
    border: none;
    padding: 13px 20px;
    cursor: pointer;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    border-radius: 8px;
    width: 100%;
    transition: all 0.3s ease;
    text-transform: uppercase;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.25);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.45);
    filter: brightness(1.1);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    color: var(--gold-primary);
    border: 1px solid var(--gold-primary);
    padding: 12px 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.5px;
    border-radius: 8px;
    width: 100%;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    text-align: center;
}

.btn-secondary:hover {
    background: var(--gold-primary);
    color: #000;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

/* Footer Section */
footer {
    background: #040404;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 60px 6% 30px;
    margin-top: 90px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 40px;
    max-width: 1240px;
    margin: 0 auto;
}

.footer-col h4 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-primary);
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.footer-col p, .footer-col a {
    color: var(--text-muted);
    font-size: 14px;
    margin-bottom: 12px;
    text-decoration: none;
    transition: 0.3s;
}

.footer-col a:hover {
    color: var(--gold-light);
    padding-left: 5px;
}

.footer-bottom {
    text-align: center;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    margin-top: 50px;
    padding-top: 25px;
    color: #555;
    font-size: 13px;
}

/* Cart Drawer */
.cart-drawer {
    position: fixed;
    top: 0;
    right: -420px;
    width: 400px;
    height: 100%;
    background: rgba(12, 12, 12, 0.95);
    backdrop-filter: blur(25px);
    border-left: 1px solid var(--gold-primary);
    box-shadow: -15px 0 35px rgba(0,0,0,0.9);
    transition: 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    z-index: 2000;
    padding: 30px;
    display: flex;
    flex-direction: column;
}

.cart-drawer.open {
    right: 0;
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 18px;
}

.cart-header h3 {
    font-family: 'Playfair Display', serif;
    color: var(--gold-primary);
    font-size: 22px;
}

.close-cart {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 28px;
    cursor: pointer;
    transition: 0.3s;
}

.close-cart:hover {
    color: var(--gold-primary);
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    margin: 20px 0;
}

.cart-total {
    font-size: 18px;
    font-weight: 700;
    color: var(--gold-light);
    margin-bottom: 15px;
    text-align: right;
}

.checkout-form input, .checkout-form textarea {
    width: 100%;
    padding: 12px;
    margin-bottom: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    border-radius: 8px;
    outline: none;
    transition: 0.3s;
}

.checkout-form input:focus, .checkout-form textarea:focus {
    border-color: var(--gold-primary);
    background: rgba(255, 255, 255, 0.07);
}

/* Floating WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: #fff;
    border-radius: 50px;
    padding: 14px 24px;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
    z-index: 1500;
    text-decoration: none;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.6);
}

/* Mobile Responsiveness Optimizations */
@media (max-width: 768px) {
    header {
        flex-direction: column;
        gap: 12px;
        padding: 15px;
    }

    .banner-slider {
        height: 220px;
    }

    .container {
        width: 92%;
        margin: 30px auto;
    }

    .products-grid {
        grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
        gap: 16px;
    }

    .product-card {
        padding: 12px;
    }

    .product-image-box {
        height: 180px;
    }

    .product-title {
        font-size: 15px;
    }

    .price-wrapper {
        gap: 5px;
    }

    .cut-price {
        font-size: 11px;
    }

    .product-price {
        font-size: 14px;
    }

    .sale-badge {
        font-size: 8px;
        padding: 2px 7px;
        top: 10px;
        left: 10px;
    }

    .cart-drawer {
        width: 100%;
        right: -100%;
    }
}