/*
Theme Name: Wolf & Stein Child
Theme URI: https://wolfandstein.example
Description: Tema filho personalizado para Wolf & Stein, baseado em Antique Jewelry. Inclui layout refinado da homepage.
Author: Wolf & Stein
Template: antique-jewelry
Version: 1.0
Text Domain: wolf-stein-child
*/

/* --- Paleta Premium Wolf & Stein --- */
:root {
    --cor-dourado: #bfa14a;
    --cor-preto: #111111;
    --cor-cinza-claro: #f7f7f7;
    --cor-branco: #ffffff;
}

/* --- Tipografia & Base --- */
body {
    font-family: 'Playfair Display', serif;
    color: var(--cor-preto);
    background-color: var(--cor-branco);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing:antialiased;
}

/* Títulos */
h1, h2, h3 {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    margin: 0 0 16px;
}

/* Header */
.site-header, header {
    background: var(--cor-branco);
    border-bottom: 1px solid #eaeaea;
}

/* Banner Principal */
.wolf-banner {
    width: 100%;
    height: 75vh;
    background: url(https://marlonstein.com/wp-content/uploads/2025/08/ChatGPT-Image-Apr-6-2025-10_18_52-PM-300x300.png) center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.wolf-banner h1 {
    font-size: 3.2rem;
    color: var(--cor-branco);
    background: rgba(0, 0, 0, 0.35);
    padding: 15px 25px;
    border-radius: 4px;
}

/* Seções */
.wolf-section {
    padding: 60px 20px;
    text-align: center;
}

.wolf-section h2 {
    color: var(--cor-preto);
    margin-bottom: 30px;
    font-size: 1.6rem;
}

/* Produtos (grid) */
.wolf-products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.wolf-products .product {
    background: var(--cor-branco);
    padding: 12px;
    border-radius: 8px;
    box-shadow: 0 6px 18px rgba(17,17,17,0.04);
}

.wolf-products img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: 6px;
    transition: transform .3s ease;
}

.wolf-products img:hover {
    transform: scale(1.04);
}

/* Botões */
.wolf-cta {
    display: inline-block;
    margin-top: 18px;
    padding: 10px 22px;
    background: var(--cor-dourado);
    color: var(--cor-branco);
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    letter-spacing: .6px;
}

.wolf-cta:hover {
    background: #a48938;
}

/* Responsividade */
@media (max-width: 768px) {
    .wolf-banner { height: 50vh; }
    .wolf-banner h1 { font-size: 2rem; padding: 10px 16px; }
    .wolf-products img { height: 180px; }
}
