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

body {
    font-family: 'Futura', 'Century Gothic', 'Arial', sans-serif;
    background-color: #f4f4f0;
    color: #1a1a1a;
    letter-spacing: 0.02em;
}

header {
    background: linear-gradient(135deg, #e63946 0%, #1d3557 100%);
    padding: 3rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
    overflow: hidden;
}

header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        linear-gradient(45deg, transparent 30%, rgba(255, 193, 7, 0.3) 30%, rgba(255, 193, 7, 0.3) 70%, transparent 70%),
        linear-gradient(-45deg, transparent 30%, rgba(33, 150, 243, 0.2) 30%, rgba(33, 150, 243, 0.2) 70%, transparent 70%);
    background-size: 100px 100px;
    pointer-events: none;
}

header h1 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #fff;
    position: relative;
    z-index: 1;
}

main {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem 3rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background-color: #fff;
    border: 3px solid #1a1a1a;
    overflow: hidden;
    transition: all 0.3s ease;
    position: relative;
}

.product-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 193, 7, 0.15);
    transition: width 0.3s ease;
    z-index: 0;
}

.product-card:hover::before {
    width: 100%;
}

.product-card:hover {
    transform: translate(-4px, -4px);
    box-shadow: 8px 8px 0 #e63946;
}

.product-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    background-color: #e0e0e0;
    display: block;
    position: relative;
    z-index: 1;
}

.product-info {
    padding: 1.5rem;
    background-color: #fff;
    position: relative;
    z-index: 1;
}

.product-name {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
}

.product-price {
    font-size: 1.5rem;
    color: #e63946;
    font-weight: 900;
    letter-spacing: 0.05em;
}
