:root {
    --orange: #ff9d00;
    --dark-orange: #e68a00;
    --honey: #f4a261;
    --bg: #2b2d42;
    --text: #edf2f4;
    --dark-bg: #1a1a2e;
    --darker-bg: #16213e;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    background: linear-gradient(135deg, var(--dark-bg), var(--darker-bg));
    color: var(--text);
    font-family: 'Poppins', sans-serif;
    min-height: 100vh;
    line-height: 1.6;
}

header {
    background: linear-gradient(135deg, var(--orange), var(--honey));
    padding: 1.5rem;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
    transform: translateX(-100%);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    100% {
        transform: translateX(100%);
    }
}

h1 { 
    color: white; 
    margin: 0; 
    font-size: 2.2rem; 
    font-weight: 700;
    text-shadow: 0 2px 5px rgba(0,0,0,0.2);
}

.container {
    max-width: 1200px;
    margin: 2rem auto;
    padding: 2rem;
    background: rgba(43, 45, 66, 0.7);
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.shop-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2rem;
    padding: 1rem;
}

.product-card {
    background: linear-gradient(145deg, #3a3f58, #2f344d);
    border-radius: 15px;
    padding: 1.5rem;
    text-align: center;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--orange), var(--honey));
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(255, 157, 0, 0.25);
    border-color: var(--orange);
}

.product-card img {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 3px solid var(--honey);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
    transition: transform 0.3s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

.price {
    font-size: 1.6rem;
    color: var(--orange);
    font-weight: 700;
    margin: 1rem 0;
}

button, .btn {
    background: linear-gradient(135deg, var(--orange), var(--honey));
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(255, 157, 0, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

button:hover, .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 15px rgba(255, 157, 0, 0.4);
}

/* Responsive Design */
@media (max-width: 768px) {
    .container {
        padding: 1.5rem;
        margin: 1rem;
    }
    
    .shop-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 1rem;
    }
    
    .shop-grid {
        grid-template-columns: 1fr;
    }
}