* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.header {
    background-color: #000;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    border-bottom: 1px solid #333;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 0;
}

.logo h1 {
    font-size: 20px;
    font-weight: normal;
    color: #ffff00;
    font-family: 'Graduate', cursive;
    letter-spacing: 2px;
}

.logo h1 .small {
    font-size: 20px;
    letter-spacing: 1px;
}

.logo h1 .x-small {
    font-size: 14px;
    letter-spacing: 1px;
}

.nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
}

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

.nav a:hover {
    color: #ffff00;
}

.basket-btn {
    background-color: #ffff00;
    color: #000;
    border: none;
    padding: 10px 20px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: bold;
    position: relative;
    transition: background-color 0.3s;
}

.basket-btn:hover {
    background-color: #e6e600;
}

.basket-count {
    background-color: #000;
    color: #ffff00;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    margin-left: 5px;
}

/* Hero Section */
.hero {
    height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('media/WhatsApp Image 2025-07-14 at 07.35.11_547eb732.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    -webkit-background-size: cover;
}

/* Fix for iOS Safari bug */
@supports (-webkit-touch-callout: none) {
    .hero {
        background-attachment: scroll;
        background-position: center top;
        background-size: auto 100vh;
    }
}

.hero-content h2 {
    font-size: 48px;
    margin-bottom: 10px;
    color: #ffff00;
}

.hero-content h3 {
    font-size: 36px;
    margin-bottom: 20px;
    color: #fff;
}

.hero-content p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #ccc;
}

.cta-btn {
    background-color: #ffff00;
    color: #000;
    border: none;
    padding: 15px 30px;
    font-size: 18px;
    font-weight: bold;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

.cta-btn:hover {
    background-color: #e6e600;
}

/* Collection Section */
.collection {
    padding: 80px 0;
    background-color: transparent;
}

.section-title {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: #ffff00;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.product-card {
    background-color: #222;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
    cursor: pointer;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(255, 255, 0, 0.3);
}

.product-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    transition: opacity 0.3s;
}

.product-card:hover .product-image {
    opacity: 0.8;
}

.product-info {
    padding: 20px;
}

.product-title {
    font-size: 20px;
    margin-bottom: 10px;
    color: #fff;
}

.product-price {
    font-size: 24px;
    color: #ffff00;
    font-weight: bold;
    margin-bottom: 10px;
}

.sold-out-badge {
    background-color: #ff4444;
    color: #fff;
    padding: 5px 10px;
    border-radius: 3px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

/* Footer */
.footer {
    background-color: #000;
    padding: 40px 0;
    border-top: 1px solid #333;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
}

.footer-section h4 {
    color: #ffff00;
    margin-bottom: 15px;
    font-size: 18px;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 8px;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: #ffff00;
}

.footer-section p {
    color: #ccc;
}

/* Basket Overlay */
.basket-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.basket-content {
    background-color: #222;
    border-radius: 10px;
    padding: 30px;
    max-width: 500px;
    width: 90%;
    max-height: 80vh;
    overflow-y: auto;
}

.basket-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    border-bottom: 1px solid #333;
    padding-bottom: 15px;
}

.basket-header h3 {
    color: #ffff00;
}

.close-basket {
    background: none;
    border: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    transition: color 0.3s;
}

.close-basket:hover {
    color: #ffff00;
}

.basket-items {
    margin-bottom: 20px;
}

.empty-basket {
    text-align: center;
    color: #ccc;
    font-style: italic;
}

.basket-total {
    border-top: 1px solid #333;
    padding-top: 15px;
    text-align: right;
}

.basket-total p {
    font-size: 18px;
    font-weight: bold;
    color: #ffff00;
}

/* Responsive Design */
@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav ul {
        gap: 20px;
    }
    
    .hero-content h2 {
        font-size: 36px;
    }
    
    .hero-content h3 {
        font-size: 28px;
    }
    
    .product-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 20px;
    }
    
    .basket-content {
        margin: 20px;
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .hero-content h2 {
        font-size: 28px;
    }
    
    .hero-content h3 {
        font-size: 24px;
    }
    
    .product-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
}