@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital@1&family=Poppins:wght@300;400;600&display=swap');

body { font-family: 'Poppins', sans-serif; background-color: #FAF9F6; }
.serif { font-family: 'Playfair Display', serif; }

/* Estilos dos Produtos (Home) */



.produto-imagem-box {
    position: relative;
    overflow: hidden;
    background-color: white;
    aspect-ratio: 1 / 1;
    border-radius: 1rem; /* rounded-2xl */
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05); /* shadow-sm */
    border: 1px solid #f5f5f4; /* border-stone-100 */
}

.produto-imagem {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 700ms;
}

.produto-card:hover .produto-imagem {
    transform: scale(1.1);
}

.produto-info {
    margin-top: 1rem;
    text-align: center;
}

.produto-categoria {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: #a8a29e; /* text-stone-400 */
    display: block;
}

.produto-titulo {
    font-size: 1.125rem; /* text-lg */
    font-weight: 500;
    color: #292524; /* text-stone-800 */
    margin: 0;
}

.produto-preco {
    color: #78350f; /* text-amber-900 */
    font-weight: 600;
    font-style: italic;
    margin: 0;
}

.btn-adicionar {
    margin-top: 0.75rem;
    font-size: 0.75rem; /* text-xs */
    text-transform: uppercase;
    letter-spacing: 0.1em; /* tracking-widest */
    border-bottom: 1px solid #78350f;
    padding-bottom: 0.25rem;
    transition: color 150ms;
    color: inherit;
}

.btn-adicionar:hover {
    color: #b45309; /* hover:text-amber-700 */
}

/* Estilos do Carrinho */
.carrinho-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #fafaf9; /* bg-stone-50 */
    padding: 0.75rem;
    border-radius: 0.5rem;
    border: 1px solid #f5f5f4;
}

/* Estilos do Header */
.header-nav {
    padding: 1.5rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 50;
    background-color: #FFF0F5;
}

.header-container {
    max-width: 72rem;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

@media (min-width: 768px) {
    .header-container { flex-direction: row; }
}

.header-logo-area { display: flex; align-items: center; gap: 1rem; cursor: pointer; }
.header-icon { height: 2.5rem; }
.header-title { font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 700; color: #C71585; margin: 0; }

.header-menu { display: flex; align-items: center; gap: 1.5rem; font-size: 0.875rem; flex-wrap: wrap; justify-content: center; }
.header-link { color: #57534e; transition: color 150ms; text-decoration: none; }
.header-link:hover { color: #92400e; }

.header-btn-login {
    background-color: #92400e;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 9999px;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    transition: background-color 150ms;
}
.header-btn-login:hover { background-color: #b45309; }

/* Estilos do Footer */
.footer-main {
    background-color: #C71585;
    color: white;
    padding: 3rem 0;
    margin-top: 5rem;
}

.footer-container {
    max-width: 72rem;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
}

.footer-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 1rem;
    font-style: italic;
    color: white;
}

.footer-text {
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

.footer-link-item {
    color: white;
    transition: color 150ms;
}
.footer-link-item:hover { color: #e5e7eb; }
.footer-copyright { font-size: 10px; }