/*
Theme Name: Mandora Gourmets
Theme URI: https://mandora.com.br
Author: Manus AI
Author URI: https://manus.im
Description: Tema de cardápio digital personalizado para Mandora Gourmets com envio de pedidos para WhatsApp.
Version: 1.0
Text Domain: mandora-gourmets
*/

/* 
Cores da Marca:
Gold: #D4AF37
Pink: #F5A9B8
White: #FFFFFF
Dark: #333333
*/

:root {
            --gold: #D4AF37;
            --pink: #F5A9B8;
            --white: #FFFFFF;
            --dark: #333333;
        }
        body { font-family: 'Montserrat', sans-serif; background-color: #FFF9F0; color: var(--dark); margin: 0; padding: 0; }
        header { background: var(--white); padding: 20px; text-align: center; border-bottom: 3px solid var(--gold); }
        .logo img { width: 100%; height: auto;     max-width: 200px;}
        .container { max-width: 1200px; margin: 0 auto; padding: 20px; }
        .category-title { color: var(--gold); border-bottom: 2px solid var(--pink); padding-bottom: 10px; margin-top: 40px; }
        .product-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin-top: 20px; }
        .product-card { background: var(--white); border-radius: 10px; overflow: hidden; box-shadow: 0 4px 6px rgba(0,0,0,0.1); transition: 0.3s; }
        .product-card:hover { transform: translateY(-5px); }
        .product-img { width: 100%; height: auto; object-fit: cover; }
        .product-info { padding: 15px; }
        .product-title { font-size: 1.2rem; margin: 0; color: var(--dark); }
        .product-price { color: var(--gold); font-weight: bold; font-size: 1.1rem; margin: 10px 0; }
        .product-desc { font-size: 0.9rem; color: #666; margin-bottom: 15px; }
        .add-to-cart { background: var(--gold); color: white; border: none; padding: 10px 20px; border-radius: 5px; cursor: pointer; width: 100%; font-weight: bold; }
        
        /* Carrinho Flutuante */
        #cart-drawer { position: fixed; right: -400px; top: 0; width: 350px; height: 100%; background: white; box-shadow: -2px 0 10px rgba(0,0,0,0.1); z-index: 1000; transition: 0.3s; padding: 20px; display: flex; flex-direction: column; }
        #cart-drawer.open { right: 0; }
        .cart-header { display: flex; justify-content: space-between; align-items: center; border-bottom: 1px solid #eee; padding-bottom: 10px; }
        .cart-items {  overflow-y: auto; margin-top: 20px; }
        .cart-item { display: flex; justify-content: space-between; margin-bottom: 15px; border-bottom: 1px solid #f9f9f9; padding-bottom: 10px; }
        .cart-total { font-size: 1.2rem; font-weight: bold; border-top: 2px solid var(--gold); padding-top: 15px; margin-top: 15px; }
        .checkout-form input { width: 100%; padding: 10px; margin-bottom: 10px; border: 1px solid #ddd; border-radius: 5px; box-sizing: border-box; }
        .btn-whatsapp { background: #25D366; color: white; border: none; padding: 15px; border-radius: 5px; cursor: pointer; width: 100%; font-weight: bold; margin-top: 10px; }
        
        #cart-toggle { position: fixed; bottom: 20px; right: 20px; background: var(--gold); color: white; padding: 15px 25px; border-radius: 50px; cursor: pointer; box-shadow: 0 4px 10px rgba(0,0,0,0.2); z-index: 999; font-weight: bold; }

#cust-address {
    height: 58px;
    /* width: 344px; */
    width: 100%;
    border: 1px solid #ccc;
    border-radius: 5px;
}

.category-filter-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin: 20px auto 30px;
    text-align: center;
}

.category-filter {
    padding: 10px 18px;
    border: 1px solid #d4a64a;
    background: #fff;
    color: #8a6424;
    border-radius: 30px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.2s ease;
}

.category-filter:hover,
.category-filter.active {
    background: #d4a64a;
    color: #fff;
}

.hero {
    background: linear-gradient(135deg, #FFF0F3 0%, #FFF9F0 50%, #FFFDF5 100%);
    border-bottom: 1px solid #e8b84b;
    padding: 32px 20px;
    text-align: center;
}

.hero h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 6px;
}

.hero p {
    color: #7a5c3a;
    font-size: 1rem;
}