/*
Theme Name: Shopwebctba Theme
Theme URI: https://shopwebctba.com.br
Author: Manus AI
Description: Tema customizado para a loja de eletrônicos Shopwebctba.
Version: 1.0
Text Domain: shopwebctba
*/

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #f4f7f6;
}

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

header {
    background: #003366;
    color: white;
    padding: 20px 0;
}

.logo img {
    max-height: 60px;
}

nav ul {
    list-style: none;
    padding: 0;
    display: flex;
    gap: 20px;
}

nav a {
    color: white;
    text-decoration: none;
    font-weight: bold;
}

.hero {
    background: #004080;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    flex-direction: column;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 30px;
    padding: 40px 0;
}

.product-card {
    background: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    text-align: center;
}

.product-card img {
    max-width: 100%;
    height: 200px;
    object-fit: contain;
    border-radius: 5px;
}

.price {
    font-size: 1.2em;
    color: #e44d26;
    font-weight: bold;
}

.btn-buy {
    background: #003366;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    margin-top: 10px;
}

footer {
    background: #222;
    color: white;
    padding: 40px 0;
    text-align: center;
    margin-top: 50px;
}
