* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
}

body {
    display: flex;
    flex-direction: column;
    align-items: center;
    background-color: #0b0b0c;
    color: #202124;
}

header h1 {
    margin: 20px 0;
    font-size: 24px;
    font-weight: 600;
    color: #e6e6e6;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
    gap: 20px;
    width: 90%;
    max-width: 1200px;
}

.product-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
    background: #c3d1d7;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: 0.3s ease;
}

.product-item:hover {
    scale: 1.05;
    box-shadow: 0px 4px 12px rgb(255 255 255 / 30%);
}

.product-item img {
    width: 40px;
    height: 40px;
    margin-bottom: 10px;
    border-radius: 50%;
}

.product-item p {
    font-size: 16px;
    font-weight: 600;
    color: #000000;
    user-select: none;
}
