/* --- HEADER SOFISTICADO (GLASSMORPHISM) --- */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 5%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo {
    font-family: var(--font-title);
    font-size: 1.6rem;
    letter-spacing: 10px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.logo:hover {
    transform: scale(1.02);
}

.cart-icon {
    position: relative;
    cursor: pointer;
    font-size: 1.2rem;
}

#cart-count {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--accent-color);
    color: white;
    font-size: 0.7rem;
    padding: 2px 6px;
    border-radius: 50%;
}

/* --- RODAPÉ PROFISSIONAL --- */
.site-footer {
    background-color: #fff; border-top: 1px solid #eee;
    padding: 100px 0 40px 0; margin-top: 120px;
}

.brand-story {
    padding: 80px 10% 40px 10% !important;
}

.footer-container {
    max-width: 1200px; margin: 0 auto;
    display: grid; grid-template-columns: 1.5fr 1fr 1fr;
    gap: 80px; padding: 0 5%;
}

.footer-column h3 {
    font-family: var(--font-title); 
    font-size: 0.9rem; 
    text-transform: uppercase; 
    letter-spacing: 5px; 
    margin-bottom: 35px;
    font-weight: 400;
}

.footer-column ul li { list-style: none; margin-bottom: 18px; }

.footer-column ul li a, 
.footer-column p { 
    text-decoration: none; 
    color: #777; 
    font-size: 0.75rem; 
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: color 0.3s;
}

.footer-column ul li a:hover {
    color: var(--accent-color);
}

.payment-methods { display: flex; gap: 15px; font-size: 2rem; color: #ccc; margin-top: 20px; }

.footer-bottom {
    text-align: center; margin-top: 100px; border-top: 1px solid #fcfcfc; padding-top: 40px;
}

.footer-bottom p { font-size: 0.6rem; letter-spacing: 3px; color: #bbb; text-transform: uppercase; }

/* RESPONSIVIDADE HEADER E FOOTER */
@media (max-width: 768px) {
    header { padding: 15px 20px; }
    .footer-container { grid-template-columns: 1fr; text-align: center; gap: 50px; }
    .payment-methods { justify-content: center; }
}