/* ====================== ASSADEEQ NAZANGO COLLECTIONS - LUXURY CSS ====================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', system-ui, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #f8f5f0;
    overflow-x: hidden;
}

/* Typography */
h1, h2, h3 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

.logo {
    font-family: 'Playfair Display', serif;
    font-size: 1.85rem;
    letter-spacing: 3px;
    font-weight: 700;
}

/* Navbar */
nav {
    background: #0a0a0a;
    color: white;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1400px;
    margin: auto;
    padding: 18px 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
}

.nav-links a:hover {
    color: #b38b5d;
}

/* Hero */
.hero {
    height: 100vh;
    min-height: 700px;
    background: linear-gradient(rgba(10,10,10,0.55), rgba(10,10,10,0.55)), 
                url('../assets/images/hero.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.hero-content h1 {
    font-size: clamp(3rem, 8vw, 5.5rem);
    margin-bottom: 15px;
    letter-spacing: 4px;
}

.hero-content p {
    font-size: 1.35rem;
    max-width: 600px;
    margin: 0 auto 35px;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 16px 45px;
    background: #b38b5d;
    color: white;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    text-decoration: none;
}

.btn:hover {
    background: #d4af7a;
    transform: translateY(-4px);
    box-shadow: 0 15px 30px rgba(179, 139, 93, 0.3);
}

.btn-dark {
    background: #0a0a0a;
}

.btn-dark:hover {
    background: #222;
}

/* Product Grid */
.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 35px;
    padding: 60px 5%;
    max-width: 1400px;
    margin: auto;
}

.product-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card:hover {
    transform: translateY(-18px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.product-card img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.product-info {
    padding: 25px;
    text-align: center;
}

.product-info h3 {
    font-size: 1.35rem;
    margin-bottom: 8px;
    min-height: 50px;
}

.price {
    color: #b38b5d;
    font-size: 1.45rem;
    font-weight: 700;
    margin: 12px 0;
}

/* Cart Sidebar */
.cart-sidebar {
    position: fixed;
    right: -420px;
    top: 0;
    width: 420px;
    height: 100vh;
    background: white;
    box-shadow: -15px 0 40px rgba(0,0,0,0.2);
    transition: right 0.5s cubic-bezier(0.32, 0.72, 0, 1);
    z-index: 2000;
    overflow-y: auto;
}

.cart-sidebar.open {
    right: 0;
}

.cart-header {
    padding: 25px;
    background: #0a0a0a;
    color: white;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cart-item {
    display: flex;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid #eee;
}

.cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
}

/* Footer */
footer {
    background: #0a0a0a;
    color: #ddd;
    padding: 80px 5% 40px;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 50px;
    max-width: 1400px;
    margin: auto;
}

/* WhatsApp Button */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    width: 65px;
    height: 65px;
    background: #25D366;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    z-index: 999;
    transition: all 0.3s;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.5);
}

/* Responsive */
@media (max-width: 768px) {
    .nav-links {
        gap: 20px;
        font-size: 0.95rem;
    }
    
    .hero-content h1 {
        font-size: 3.2rem;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
        gap: 25px;
    }
    
    .cart-sidebar {
        width: 100%;
        right: -100%;
    }
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.product-card {
    animation: fadeInUp 0.6s ease forwards;
}

/* Category Cards */
.category-card {
    text-align: center;
    text-decoration: none;
    color: inherit;
    transition: 0.4s;
}

.category-card:hover {
    transform: scale(1.05);
}

.category-card img {
    width: 380px;
    height: 480px;
    object-fit: cover;
    border-radius: 16px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}