/*
Theme Name: Deuses do Amor
Theme URI: https://seushop.com.br
Author: Desenvolvido com a ajuda de Claude
Author URI: https://seushop.com.br
Description: Tema leve e responsivo para loja online Deuses do Amor (sex shop)
Version: 1.0
Requires at least: 5.0
Tested up to: 6.4
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: deuses-do-amor
Tags: woocommerce, e-commerce, one-column, custom-colors, custom-menu, custom-logo, featured-images, theme-options

Este tema foi criado especificamente para a loja Deuses do Amor.
*/

/* Estilos básicos */
:root {
    --cor-primaria: #ff6b6b;
    --cor-secundaria: #4a4a4a;
    --cor-texto: #333333;
    --cor-fundo: #ffffff;
    --fonte-principal: 'Poppins', sans-serif;
}

body {
    font-family: var(--fonte-principal);
    color: var(--cor-texto);
    background-color: var(--cor-fundo);
    margin: 0;
    padding: 0;
    line-height: 1.6;
}

a {
    color: var(--cor-primaria);
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

/* Container principal */
.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Cabeçalho */
.site-header {
    padding: 1rem 0;
    border-bottom: 1px solid #eee;
}

/* Estilo básico para o menu */
.main-navigation ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.main-navigation li {
    margin-right: 1.5rem;
}

/* Rodapé */
.site-footer {
    background-color: var(--cor-secundaria);
    color: #fff;
    padding: 2rem 0;
    margin-top: 2rem;
}

/* Estilos para a página inicial */
.welcome-section {
    text-align: center;
    padding: 3rem 0;
    background-color: #f9f9f9;
    margin-bottom: 2rem;
}

.welcome-buttons {
    margin-top: 1.5rem;
}

.welcome-buttons .button {
    margin: 0 0.5rem;
}

.button {
    display: inline-block;
    padding: 0.6rem 1.2rem;
    background-color: var(--cor-primaria);
    color: white;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    text-decoration: none;
    font-weight: 500;
    transition: background-color 0.3s;
}

.button:hover {
    background-color: #ff5252;
    text-decoration: none;
}

.button-secondary {
    background-color: var(--cor-secundaria);
}

.button-secondary:hover {
    background-color: #3a3a3a;
}

/* Estilos para WooCommerce */
.woocommerce-content {
    padding: 2rem 0;
}

/* Grid de produtos */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 1.5rem;
}

.product-card {
    border: 1px solid #eee;
    border-radius: 5px;
    padding: 1rem;
    transition: box-shadow 0.3s;
    text-align: center;
}

.product-card:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.product-card img {
    max-width: 100%;
    height: auto;
}

.product-card h2 {
    font-size: 1rem;
    margin: 1rem 0 0.5rem;
}

.product-card .price {
    font-weight: bold;
    color: var(--cor-primaria);
    margin-bottom: 0.75rem;
}

/* Página de produto individual */
.product-main {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-bottom: 2rem;
}

.product-gallery {
    flex: 1 1 40%;
    min-width: 300px;
}

.summary.entry-summary {
    flex: 1 1 50%;
    min-width: 300px;
}

/* Carrinho de compras */
.cart-wrapper {
    margin-bottom: 2rem;
}

.shop_table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 1.5rem;
}

.shop_table th,
.shop_table td {
    padding: 0.75rem;
    border-bottom: 1px solid #eee;
    text-align: left;
}

/* Botões de quantidade */
.quantity {
    display: flex;
    align-items: center;
}

.quantity-btn {
    width: 30px;
    height: 30px;
    background-color: #f5f5f5;
    border: 1px solid #ddd;
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.quantity input[type="number"] {
    width: 50px;
    height: 30px;
    text-align: center;
    border: 1px solid #ddd;
    margin: 0 5px;
}

/* Banner promocional */
.shop-promo-banner {
    background-color: #f9f9f9;
    padding: 1.5rem;
    margin-bottom: 2rem;
    text-align: center;
    border-radius: 5px;
}

.shop-promo-banner h3 {
    margin-top: 0;
    color: var(--cor-primaria);
}

/* Seção informativa da loja */
.shop-info-section {
    background-color: #f9f9f9;
    padding: 2rem 0;
    margin-top: 3rem;
}

.shop-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.shop-info-item {
    text-align: center;
    padding: 1rem;
}

.info-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.shop-info-item h4 {
    margin: 0.5rem 0;
    color: var(--cor-primaria);
}

/* Estilos para o blog */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.post-card {
    border: 1px solid #eee;
    border-radius: 5px;
    overflow: hidden;
}

.post-content {
    padding: 1rem;
}

.post-title {
    margin-top: 0;
    font-size: 1.2rem;
}

.post-meta {
    color: #777;
    font-size: 0.9rem;
    margin-bottom: 0.75rem;
}

.view-all {
    text-align: center;
    margin-top: 1.5rem;
}

/* Responsividade básica */
@media (max-width: 768px) {
    .main-navigation ul {
        flex-direction: column;
    }
    
    .main-navigation li {
        margin-right: 0;
        margin-bottom: 0.5rem;
    }
    
    .product-main {
        flex-direction: column;
    }
    
    .shop_table {
        display: block;
        overflow-x: auto;
    }
    
    .posts-grid {
        grid-template-columns: 1fr;
    }
} 