@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

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

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

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

/* Header */
header {
    background: #000;
    color: white;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid #333;
    box-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo h1 {
    font-size: 2.5rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: lowercase;
}



/* Hero */
.hero {
    background: #000;
    color: white;
    text-align: center;
    padding: 4rem 0;
    position: relative;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: repeating-linear-gradient(
        45deg,
        transparent,
        transparent 2px,
        rgba(255,255,255,0.03) 2px,
        rgba(255,255,255,0.03) 4px
    );
}

.hero h2 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

.hero p {
    font-size: 1.2rem;
    font-weight: 300;
    position: relative;
    z-index: 1;
}

/* Products */
.products {
    padding: 4rem 0;
    background: #f8f8f8;
}

.products .container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.product-card {
    background: white;
    border-radius: 0;
    overflow: hidden;
    border: 2px solid #000;
    position: relative;
    transition: all 0.3s ease;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 10px 10px 0px #000;
}

.badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #dc2626;
    color: white;
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    z-index: 10;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured .badge {
    background: #dc2626;
    color: white;
}

.product-images {
    position: relative;
}

.main-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.thumbnails {
    display: flex;
    gap: 8px;
    padding: 15px;
    justify-content: center;
    background: #f8f8f8;
}

.thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border: 2px solid #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
    opacity: 0.7;
}

.thumb:hover, .thumb.active {
    border-color: #000;
    opacity: 1;
    transform: scale(1.05);
}

.product-info {
    padding: 2rem;
}

.product-info h3 {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    font-size: 2rem;
    font-weight: 700;
    color: #000;
    margin-bottom: 0.5rem;
}

.original {
    text-decoration: line-through;
    color: #999;
    font-size: 1.2rem;
    margin-left: 15px;
    font-weight: 400;
}

.savings {
    color: #dc2626;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.delivery {
    color: #16a34a;
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.size-info {
    color: #666;
    font-weight: 400;
    margin-bottom: 1rem;
    font-size: 0.9rem;
    font-style: italic;
}

.color-variants {
    display: flex;
    gap: 12px;
    margin-bottom: 1.5rem;
}

.color {
    width: 35px;
    height: 35px;
    border: 3px solid #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
}

.color:hover, .color.selected {
    border-color: #000;
    transform: scale(1.1);
}

.color.selected::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #000;
    font-weight: bold;
    font-size: 14px;
}

.color[style*="#000"].selected::after {
    color: #fff;
}

.sizes {
    display: flex;
    gap: 15px;
    margin-bottom: 2rem;
}

.size {
    width: 50px;
    height: 50px;
    border: 2px solid #000;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-weight: 600;
    font-size: 1.1rem;
}

.size:hover, .size.selected {
    background: #000;
    color: white;
}

.quick-buy {
    width: 100%;
    background: #000;
    color: white;
    border: 2px solid #000;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
}

.quick-buy:hover {
    background: white;
    color: #000;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Social Proof */
.social-proof {
    background: #000;
    color: white;
    padding: 3rem 0;
    text-align: center;
}

.social-proof h3 {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.social-btn {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 15px 25px;
    text-decoration: none;
    color: #000;
    background: white;
    border: 2px solid white;
    transition: all 0.2s ease;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.social-btn:hover {
    background: #000;
    color: white;
    transform: translateY(-3px);
}

/* Modals */
.quick-buy-modal, .success-modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.8);
}

.modal-content {
    background-color: white;
    margin: 5% auto;
    padding: 3rem;
    border: 3px solid #000;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.close {
    position: absolute;
    right: 25px;
    top: 20px;
    font-size: 2.5rem;
    cursor: pointer;
    font-weight: 300;
    color: #000;
    z-index: 1001;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.2s ease;
}

.close:hover {
    background: #f0f0f0;
    color: #000;
}

.order-summary {
    background: #f8f8f8;
    padding: 1.5rem;
    border: 2px solid #000;
    margin-bottom: 2rem;
}

.order-summary h4 {
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
}

.total {
    font-size: 1.5rem;
    font-weight: 700;
    color: #000;
    margin-top: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

#quickOrderForm input, #quickOrderForm textarea {
    width: 100%;
    padding: 15px;
    margin-bottom: 1.5rem;
    border: 2px solid #000;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
}

#quickOrderForm input:focus, #quickOrderForm textarea:focus {
    outline: none;
    border-color: #000;
    background: #f8f8f8;
}

.confirm-order {
    width: 100%;
    background: #000;
    color: white;
    border: 2px solid #000;
    padding: 18px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s ease;
}

.confirm-order:hover {
    background: white;
    color: #000;
}

.success-icon {
    text-align: center;
    font-size: 5rem;
    color: #000;
    margin-bottom: 1.5rem;
}

.success-modal h3 {
    font-size: 2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 1rem;
}

.success-modal button {
    background: #000;
    color: white;
    border: 2px solid #000;
    padding: 15px 30px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: 'Poppins', sans-serif;
    transition: all 0.2s ease;
}

.success-modal button:hover {
    background: white;
    color: #000;
}

/* Mobile Optimizations */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2rem;
    }
    
    .products .container {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .social-links {
        flex-direction: column;
        align-items: center;
    }
    
    .modal-content {
        margin: 5% auto;
        width: 95%;
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }
    
    .logo h1 {
        font-size: 1.8rem;
    }
    
    .hero {
        padding: 2.5rem 0;
    }
    
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .product-info {
        padding: 1.5rem;
    }
    
    .quick-buy {
        padding: 20px;
        font-size: 1.1rem;
    }
}