/* Estilo geral da loja */
body {
    font-family: 'Poppins', Arial, sans-serif;
    background-color: #121212;
    color: #f5f5f5;
    margin: 0;
    padding: 0;
}

/* Cabeçalho */
header#header {
    background: linear-gradient(90deg, #ff7b00, #ff007b);
    padding: 20px 0;
    text-align: center;
    color: #fff;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

header#header h1 {
    font-size: 2.5rem;
    text-transform: uppercase;
    font-weight: bold;
    letter-spacing: 3px;
}

/* Menu de navegação */
header#header .header__menu {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 15px 0;
}

header#header .header__menu a {
    color: #fff;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 10px 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease-in-out;
}

header#header .header__menu a:hover {
    border: 2px solid #ff007b;
    border-radius: 5px;
}

/* Produtos */
section.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 20px;
    padding: 20px;
}

.products-grid .product-item {
    background-color: #1e1e1e;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    text-align: center;
    transition: transform 0.3s ease;
}

.products-grid .product-item:hover {
    transform: scale(1.05);
}

.products-grid .product-item img {
    width: 100%;
    height: auto;
    object-fit: cover;
}

.products-grid .product-item h2 {
    font-size: 1.5rem;
    margin: 10px 0;
}

.products-grid .product-item .product-price {
    font-size: 1.2rem;
    font-weight: bold;
    color: #ff007b;
    margin: 10px 0;
}

.products-grid .product-item .buy-button {
    background: #ff007b;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.3s ease;
}

.products-grid .product-item .buy-button:hover {
    background: #ff7b00;
}

/* Rodapé */
footer#footer {
    text-align: center;
    padding: 20px;
    background: #1e1e1e;
    color: #fff;
    font-size: 0.9rem;
    margin-top: 20px;
}
