/* =============================================
   CHEF MANU TRABUCO — Páscoa 2026
   Paleta: Rosa Pastel + Turquesa + Branco
   ============================================= */

:root {
    scroll-behavior: smooth;
    
    /* Cores principais */
    --primary: #D96B8A;          /* Rosa principal */
    --primary-light: #F0A0B8;    /* Rosa claro */
    --primary-dark: #B8476A;     /* Rosa escuro */
    --turquesa: #4DB8B2;         /* Turquesa */
    --turquesa-light: #8FDBD6;   /* Turquesa claro */
    --turquesa-dark: #2E9B95;    /* Turquesa escuro */
    --pastel-rosa: #FCE4EC;      /* Rosa suave fundo */
    --pastel-turq: #E0F7F5;      /* Turquesa suave fundo */
    --cream: #FFF8F9;            /* Creme rosado */
    --gold: #F0C070;             /* Dourado */
    --text-dark: #3D2030;        /* Texto escuro */
    --text-light: #7A5060;       /* Texto suave */
    --white: #FFFFFF;
    --shadow: 0 8px 28px rgba(217, 107, 138, 0.13);
    --shadow-turq: 0 8px 28px rgba(77, 184, 178, 0.13);
    --radius: 18px;
    --green-wp: #25D366;

    /* Badges */
    --badge-hot: #FF6B6B;
    --badge-premium: #9B59B6;
    --badge-launch: #F39C12;
    --badge-eco: #27AE60;
    --badge-classic: #2980B9;
    --badge-special: #E67E22;
    --badge-salty: #795548;
    --badge-kids: #E91E63;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Outfit', sans-serif;
}

body {
    background-color: var(--cream);
    color: var(--text-dark);
    padding-bottom: 120px;
    overflow-x: hidden;
}

/* ============================
   Background Decorativo
   ============================ */
.background-decor {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 8% 15%, rgba(240, 160, 184, 0.15) 0%, transparent 30%),
        radial-gradient(circle at 92% 85%, rgba(77, 184, 178, 0.12) 0%, transparent 30%),
        radial-gradient(circle at 50% 50%, rgba(240, 192, 112, 0.04) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(217, 107, 138, 0.06) 0%, transparent 25%);
    z-index: -1;
    pointer-events: none;
}

/* ============================
   Floating Easter Decor
   ============================ */
.easter-floats {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.float-emoji {
    position: absolute;
    font-size: 1.5rem;
    top: -10%;
    animation: floatDown linear infinite;
    animation-duration: 14s;
    opacity: 0.3;
    user-select: none;
}

@keyframes floatDown {
    0%   { transform: translateY(-10vh) rotate(0deg); opacity: 0; }
    10%  { opacity: 0.3; }
    90%  { opacity: 0.3; }
    100% { transform: translateY(110vh) rotate(360deg); opacity: 0; }
}

/* ============================
   Layout
   ============================ */
.container {
    max-width: 860px;
    margin: 0 auto;
    padding: 0 18px;
    position: relative;
    z-index: 1;
}

/* ============================
   Header
   ============================ */
header {
    text-align: center;
    padding: 36px 0 20px;
    background: linear-gradient(180deg,
        rgba(252, 228, 236, 0.7) 0%,
        rgba(224, 247, 245, 0.3) 60%,
        transparent 100%);
    border-bottom: 1.5px solid rgba(217, 107, 138, 0.12);
    margin-bottom: 10px;
}

.logo-container {
    margin-bottom: 14px;
}

.logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid var(--primary-light);
    box-shadow: 0 6px 24px rgba(217, 107, 138, 0.25),
                0 0 0 6px rgba(240, 160, 184, 0.15);
}

.logo-text-fallback {
    font-size: 64px;
    line-height: 1;
    margin-bottom: 8px;
}

header h1 {
    font-family: 'Playfair Display', serif;
    font-size: 2.6rem;
    background: linear-gradient(135deg, var(--primary-dark), var(--turquesa-dark));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    letter-spacing: -0.5px;
}

.header-brand {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 4px;
}

.header-subtitle {
    color: var(--text-light);
    font-size: 0.93rem;
    margin-bottom: 18px;
}

/* ============================
   Deadline Banner
   ============================ */
.deadline-banner {
    display: flex;
    align-items: center;
    justify-content: space-around;
    background: linear-gradient(135deg, #d36b85, #b84d6b);
    color: white;
    padding: 12px 24px;
    border-radius: 40px;
    margin-bottom: 22px;
    box-shadow: 0 4px 14px rgba(217, 107, 138, 0.3);
    animation: pulse-banner 3s ease-in-out infinite;
    gap: 15px;
}

.deadline-icon {
    font-size: 1.5rem;
}

.deadline-col {
    display: flex;
    flex-direction: column;
    text-align: center;
    font-size: 0.75rem;
    line-height: 1.25;
    font-weight: 500;
}

.deadline-col.large {
    font-size: 0.85rem;
    font-weight: 800;
}

@keyframes pulse-banner {
    0%, 100% { box-shadow: 0 4px 14px rgba(217, 107, 138, 0.3); }
    50% { box-shadow: 0 4px 22px rgba(217, 107, 138, 0.55); }
}

/* ============================
   Tabs Principais
   ============================ */
.tabs {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    padding: 0 10px;
    margin-top: 4px;
}

.tab-btn {
    background: var(--white);
    border: 2px solid var(--primary-light);
    color: var(--primary);
    padding: 9px 18px;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.28s ease;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 5px;
    box-shadow: 0 2px 8px rgba(217, 107, 138, 0.08);
}

.tab-btn:hover {
    background: var(--pastel-rosa);
    border-color: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(217, 107, 138, 0.2);
}

.tab-btn.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary-dark);
    color: var(--white);
    box-shadow: 0 6px 20px rgba(217, 107, 138, 0.35);
    transform: translateY(-2px);
}

.tab-btn.active .tab-icon {
    filter: brightness(0) invert(1);
}

/* ============================
   Sub-tabs
   ============================ */
.sub-tabs {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin: 22px 0 18px;
    flex-wrap: wrap;
}

.sub-tab-btn {
    background: transparent;
    border: 1.5px solid var(--turquesa);
    color: var(--turquesa-dark);
    padding: 7px 18px;
    border-radius: 20px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.22s ease;
    font-size: 0.88rem;
}

.sub-tab-btn:hover,
.sub-tab-btn.active {
    background: var(--turquesa);
    color: var(--white);
    box-shadow: 0 4px 12px rgba(77, 184, 178, 0.3);
    transform: translateY(-1px);
}

/* ============================
   Section Title Banner
   ============================ */
.section-title-banner {
    display: flex;
    align-items: center;
    gap: 16px;
    background: linear-gradient(135deg, var(--pastel-rosa), var(--pastel-turq));
    padding: 18px 22px;
    border-radius: var(--radius);
    margin-bottom: 22px;
    border-left: 5px solid var(--primary);
    margin-top: 12px;
}

.section-title-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--primary-dark);
    margin-bottom: 2px;
}

.section-title-banner p {
    color: var(--text-light);
    font-size: 0.88rem;
}

.section-title-icon {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: drop-shadow(0 2px 6px rgba(217, 107, 138, 0.3));
    flex-shrink: 0;
}

/* ============================
   Sections Visibility
   ============================ */
#produtos-section,
#galeria-section,
.contact-section {
    display: block;
    margin-top: 28px;
}

.sub-section {
    display: none;
    animation: fadeIn 0.35s ease-out;
}

.sub-section.active {
    display: block;
}

.sub-sub-section {
    display: none;
    animation: fadeIn 0.3s ease-out;
}

.sub-sub-section.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ============================
   Grid / Cards
   ============================ */
.grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 18px;
    padding-bottom: 24px;
}

@media (min-width: 520px) {
    .grid { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 780px) {
    .grid { grid-template-columns: repeat(3, 1fr); }
}

.card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1.5px solid rgba(217, 107, 138, 0.08);
    display: flex;
    flex-direction: column;
    position: relative;
}

.card:hover {
    transform: translateY(-7px);
    box-shadow: 0 20px 45px rgba(217, 107, 138, 0.18);
}

.card.added-pulse {
    animation: addedPulse 0.7s ease;
}

@keyframes addedPulse {
    0%   { box-shadow: 0 0 0 0 rgba(217, 107, 138, 0.5); }
    60%  { box-shadow: 0 0 0 16px rgba(217, 107, 138, 0); }
    100% { box-shadow: 0 0 0 0 rgba(217, 107, 138, 0); }
}

/* ============================
   Card Banner (imagem)
   ============================ */
.card-banner {
    width: 100%;
    height: 150px;
    background: linear-gradient(135deg, var(--pastel-rosa) 0%, var(--pastel-turq) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    position: relative;
}

.card-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.card:hover .card-banner-img {
    transform: scale(1.06);
}

/* ============================
   Badges
   ============================ */
.card-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 800;
    color: white;
    letter-spacing: 0.2px;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    backdrop-filter: blur(2px);
}

.badge-hot     { background: var(--badge-hot); }
.badge-premium { background: var(--badge-premium); }
.badge-launch  { background: var(--badge-launch); }
.badge-eco     { background: var(--badge-eco); }
.badge-classic { background: var(--badge-classic); }
.badge-special { background: var(--badge-special); }
.badge-salty   { background: var(--badge-salty); }
.badge-kids    { background: var(--badge-kids); }

/* ============================
   Card Content
   ============================ */
.card-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-title-row {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 8px;
    margin-bottom: 6px;
}

.card-title {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    line-height: 1.3;
}

.card-weight {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--turquesa), var(--turquesa-dark));
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 20px;
    margin-top: 2px;
    white-space: nowrap;
}

.price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 6px;
    display: block;
}

.card-desc {
    font-size: 0.84rem;
    color: var(--text-light);
    line-height: 1.55;
    margin-bottom: 12px;
    flex-grow: 1;
}

/* ============================
   Card Controls
   ============================ */
.card-controls {
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px dashed rgba(217, 107, 138, 0.18);
}

.control-group {
    margin-bottom: 8px;
}

.control-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--text-light);
    margin-bottom: 4px;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.control-group select {
    width: 100%;
    padding: 8px 10px;
    border: 1.5px solid rgba(217, 107, 138, 0.25);
    border-radius: 10px;
    font-size: 0.85rem;
    background-color: var(--pastel-rosa);
    color: var(--text-dark);
    cursor: pointer;
    transition: border-color 0.2s;
    font-family: 'Outfit', sans-serif;
}

.control-group select:focus {
    outline: none;
    border-color: var(--primary);
}

/* ============================
   Action Row
   ============================ */
.action-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    margin-top: 8px;
}

.quantity-control {
    display: flex;
    align-items: center;
    background: var(--pastel-rosa);
    border-radius: 12px;
    padding: 3px;
    gap: 2px;
}

.qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    border: none;
    background: var(--white);
    color: var(--primary-dark);
    font-weight: bold;
    font-size: 1.1rem;
    cursor: pointer;
    box-shadow: 0 1px 4px rgba(217, 107, 138, 0.1);
    transition: background 0.15s;
    line-height: 1;
}

.qty-btn:active { background: #f0d0da; }

.qty-display {
    width: 28px;
    text-align: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--text-dark);
}

.add-btn-block {
    flex-grow: 1;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: 10px 12px;
    border-radius: 12px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s, transform 0.15s;
    height: 40px;
    font-size: 0.86rem;
    letter-spacing: 0.2px;
    font-family: 'Outfit', sans-serif;
}

.add-btn-block:hover { opacity: 0.9; transform: scale(1.02); }
.add-btn-block:active { transform: scale(0.96); }

/* ============================
   Ícones PNG
   ============================ */
.header-icon {
    width: 42px;
    height: 42px;
    object-fit: contain;
    vertical-align: middle;
    margin-left: 6px;
    filter: drop-shadow(0 2px 6px rgba(217,107,138,0.3));
}

.tab-icon {
    width: 20px;
    height: 20px;
    object-fit: contain;
    vertical-align: middle;
}

.section-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 6px;
}

.float-icon {
    width: 34px;
    height: 34px;
    object-fit: contain;
    display: block;
    opacity: 0.6;
}

/* ============================
   Galeria
   ============================ */
#galeria-section {
    margin-top: 40px;
}

.galeria-header {
    text-align: center;
    padding: 24px 0 18px;
}

.galeria-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.galeria-header p {
    color: var(--text-light);
    font-size: 0.94rem;
}

.galeria-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
    padding-bottom: 24px;
}

@media (min-width: 560px) {
    .galeria-grid { grid-template-columns: repeat(3, 1fr); }
}

.galeria-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 1 / 1;
    box-shadow: var(--shadow);
    border: 2px solid transparent;
    transition: border-color 0.25s, transform 0.3s;
}

.galeria-item:hover {
    border-color: var(--primary-light);
    transform: scale(1.04);
}

.galeria-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.galeria-item:hover img { transform: scale(1.1); }

.galeria-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(transparent 55%, rgba(61, 32, 48, 0.8) 100%);
    color: white;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    padding: 10px;
    font-size: 1.1rem;
    opacity: 0;
    transition: opacity 0.3s;
}

.galeria-item:hover .galeria-overlay { opacity: 1; }

/* ============================
   Image Placeholder (Produto + Galeria)
   ============================ */
.image-placeholder {
    width: 100%;
    height: 100%;
    min-height: 150px;
    background: linear-gradient(135deg, #fdf3f6 0%, #f0f7f7 100%);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 2px dashed rgba(217, 107, 138, 0.25);
    color: var(--primary-light);
    padding: 12px;
    text-align: center;
    transition: background 0.2s;
}

.image-placeholder i {
    font-size: 2rem;
    color: rgba(77, 184, 178, 0.55);
    line-height: 1;
}

.image-placeholder span {
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    opacity: 0.7;
    line-height: 1.3;
    max-width: 130px;
}

.image-placeholder small {
    font-size: 0.68rem;
    color: var(--text-light);
    opacity: 0.75;
    letter-spacing: 0.2px;
}

/* Variante para galeria — mesmo aspecto do galeria-item */
.galeria-placeholder {
    aspect-ratio: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    border: 2px dashed rgba(77, 184, 178, 0.3);
    background: linear-gradient(135deg, #f0f9f9, #fdf5f7);
    border-radius: var(--radius);
    cursor: pointer;
    transition: border-color 0.25s, transform 0.25s;
    padding: 12px;
    text-align: center;
    overflow: hidden;
}

.galeria-placeholder:hover {
    border-color: var(--turquesa);
    transform: scale(1.03);
}

.galeria-placeholder i {
    font-size: 1.8rem;
    color: rgba(77, 184, 178, 0.6);
}

.galeria-placeholder span {
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-light);
    line-height: 1.3;
}



/* ============================
   Contact Section
   ============================ */
.contact-section {
    margin-top: 40px;
    margin-bottom: 20px;
}

.contact-card {
    background: linear-gradient(135deg, var(--pastel-rosa), var(--pastel-turq));
    border-radius: var(--radius);
    padding: 28px 24px;
    border: 1.5px solid rgba(217, 107, 138, 0.15);
    box-shadow: var(--shadow);
}

.contact-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

@media (max-width: 520px) {
    .contact-row { grid-template-columns: 1fr; }
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    background: rgba(255,255,255,0.6);
    border-radius: 14px;
    padding: 14px;
    backdrop-filter: blur(4px);
}

.contact-item i {
    font-size: 1.3rem;
    color: var(--primary);
    margin-top: 2px;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 2px;
}

.contact-item span {
    font-size: 0.82rem;
    color: var(--text-light);
}

/* ============================
   Lightbox
   ============================ */
.lightbox-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 5, 20, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(6px);
}

.lightbox-overlay.active { display: flex; }

.lightbox-content {
    position: relative;
    max-width: 92vw;
    max-height: 92vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 82vh;
    border-radius: 16px;
    box-shadow: 0 24px 60px rgba(0,0,0,0.5);
    object-fit: contain;
}

.lightbox-close {
    position: absolute;
    top: -16px;
    right: -16px;
    background: var(--primary);
    color: white;
    border: none;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(217,107,138,0.4);
}

/* ============================
   Cart Bar
   ============================ */
.cart-bar {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(160%);
    width: 92%;
    max-width: 600px;
    background: linear-gradient(135deg, var(--text-dark), #6B2040);
    color: var(--white);
    padding: 14px 24px;
    border-radius: 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 14px 40px rgba(61, 32, 48, 0.45);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 100;
    cursor: pointer;
}

.cart-bar.visible {
    transform: translateX(-50%) translateY(0);
}

.cart-info {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
}

#view-cart-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: 10px 22px;
    border-radius: 25px;
    font-weight: 700;
    cursor: pointer;
    transition: opacity 0.2s;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
}

#view-cart-btn:hover { opacity: 0.88; }

/* ============================
   Modal
   ============================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.52);
    z-index: 1000;
    display: none;
    align-items: flex-end;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.modal-overlay.active {
    display: flex;
    animation: fadeInBg 0.3s forwards;
}

@keyframes fadeInBg {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.modal-content {
    background: var(--white);
    width: 100%;
    max-width: 620px;
    height: 92vh;
    border-radius: 22px 22px 0 0;
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 -12px 50px rgba(0,0,0,0.25);
    transform: translateY(100%);
    transition: transform 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: translateY(0);
}

@media (min-width: 620px) {
    .modal-overlay { align-items: center; }
    .modal-content {
        height: auto;
        max-height: 82vh;
        border-radius: 22px;
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    padding-bottom: 14px;
    border-bottom: 1.5px solid rgba(217, 107, 138, 0.15);
}

.modal-header h2 {
    font-family: 'Playfair Display', serif;
    color: var(--primary-dark);
    font-size: 1.35rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.close-btn {
    background: var(--pastel-rosa);
    border: none;
    font-size: 1.6rem;
    color: var(--primary-dark);
    cursor: pointer;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
    transition: background 0.2s;
}

.close-btn:hover { background: var(--primary-light); color: white; }

.modal-body {
    flex-grow: 1;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 6px;
    margin-bottom: 16px;
}

.cart-items-list {
    margin-bottom: 16px;
}

.empty-cart-msg {
    text-align: center;
    padding: 48px 20px;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.7;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 13px 0;
    border-bottom: 1px dashed rgba(217, 107, 138, 0.2);
    gap: 12px;
}

.cart-item-info { flex-grow: 1; }

.cart-item-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.cart-item-info p {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 2px;
}

.item-price {
    font-weight: 700;
    color: var(--primary-dark) !important;
    font-size: 0.88rem !important;
}

.cart-item-remove {
    background: #fff0f3;
    border: 1.5px solid rgba(217, 107, 138, 0.2);
    color: var(--primary-dark);
    cursor: pointer;
    border-radius: 10px;
    padding: 8px 10px;
    font-size: 0.85rem;
    transition: background 0.2s, color 0.2s;
    flex-shrink: 0;
}

.cart-item-remove:hover {
    background: var(--primary-dark);
    color: white;
}

.cart-total {
    padding: 14px 0 0;
    border-top: 2px solid rgba(217, 107, 138, 0.2);
    margin-top: 6px;
    text-align: right;
}

.cart-total h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.cart-total-note {
    font-size: 0.78rem;
    color: var(--text-light);
}

.modal-footer {
    display: flex;
    gap: 10px;
    margin-top: 14px;
    flex-wrap: wrap;
}

.continue-btn {
    flex: 1;
    background: var(--pastel-rosa);
    border: 1.5px solid var(--primary-light);
    color: var(--primary-dark);
    padding: 13px;
    border-radius: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s;
    font-family: 'Outfit', sans-serif;
    font-size: 0.9rem;
    min-width: 130px;
}

.continue-btn:hover { background: var(--primary-light); color: white; }

.finish-btn {
    flex: 2;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: var(--white);
    border: none;
    padding: 13px 20px;
    border-radius: 14px;
    font-weight: 800;
    cursor: pointer;
    font-size: 0.95rem;
    transition: opacity 0.2s, transform 0.15s;
    font-family: 'Outfit', sans-serif;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-width: 180px;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.35);
}

.finish-btn:hover { opacity: 0.9; }
.finish-btn:active { transform: scale(0.97); }

/* ============================
   Scrollbar custom
   ============================ */
.cart-items-list::-webkit-scrollbar { width: 5px; }
.cart-items-list::-webkit-scrollbar-track { background: transparent; }
.cart-items-list::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 10px;
}

/* ============================
   Responsive tweaks
   ============================ */
@media (max-width: 480px) {
    header h1 { font-size: 1.9rem; }
    .section-title-banner h2 { font-size: 1.2rem; }
    .tabs { gap: 6px; }
    .tab-btn { padding: 7px 12px; font-size: 0.82rem; }
    .card-banner { height: 120px; }
}

/* ============================
   SIZE PICKER — Chips de Tamanho
   ============================ */

/* Card com size-picker tem banner maior */
.card-size-picker .card-banner {
    height: 170px;
}

.card-size-picker .picker-title {
    font-size: 1.1rem;
    margin-bottom: 2px;
}

/* Row de chips */
.size-chips-row {
    margin-bottom: 10px;
    margin-top: 6px;
}

.size-chips-label {
    display: block;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-light);
    margin-bottom: 6px;
}

.size-chips {
    display: flex;
    gap: 6px;
    flex-wrap: wrap;
}

.size-chip {
    padding: 5px 13px;
    border-radius: 20px;
    border: 2px solid var(--primary-light);
    background: transparent;
    color: var(--primary);
    font-weight: 700;
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Outfit', sans-serif;
    line-height: 1;
}

.size-chip:hover:not(.active) {
    background: var(--pastel-rosa);
    border-color: var(--primary);
    transform: translateY(-1px);
}

.size-chip.active {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary-dark);
    color: white;
    box-shadow: 0 3px 12px rgba(217, 107, 138, 0.35);
    transform: translateY(-1px);
}

/* Exibição de Preço Dinâmico */
.price-display {
    margin: 6px 0 12px;
}

.price-from-label {
    font-size: 0.72rem;
    color: var(--text-light);
    display: block;
    margin-bottom: 2px;
}

.price-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.price-static {
    margin-bottom: 6px;
}

.price-size-badge {
    background: var(--pastel-turq);
    color: var(--turquesa-dark);
    padding: 3px 9px;
    border-radius: 12px;
    font-size: 0.72rem;
    font-weight: 700;
    border: 1px solid rgba(77, 184, 178, 0.2);
}

/* Animação de "pop" quando muda o preço */
@keyframes pricePop {
    0%   { transform: scale(1); }
    40%  { transform: scale(1.18); color: var(--primary-dark); }
    100% { transform: scale(1); }
}

.price-pop {
    animation: pricePop 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.4);
}


/* ============================
   HERO / BANNER PRINCIPAL
   ============================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 40px 20px 80px;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: brightness(0.55) saturate(1.1);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        160deg,
        rgba(184, 71, 106, 0.75) 0%,
        rgba(61, 32, 48, 0.80) 40%,
        rgba(46, 155, 149, 0.55) 100%
    );
}

/* Decoração floral (cantos) */
.hero-floral {
    position: absolute;
    width: 220px;
    opacity: 0.18;
    pointer-events: none;
    z-index: 1;
    filter: saturate(0.4) brightness(2);
}

.hero-floral-left {
    bottom: -20px;
    left: -30px;
    transform: rotate(-15deg);
}

.hero-floral-right {
    top: -20px;
    right: -30px;
    transform: rotate(20deg) scaleX(-1);
}

/* Conteúdo do hero */
.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 48px;
    color: white;
    padding: 0 20px;
}

@media (max-width: 680px) {
    .hero-content {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }

    .hero-floral { width: 120px; }
}

/* Foto da Chef */
.hero-chef-photo {
    flex-shrink: 0;
}

.chef-photo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid rgba(255, 255, 255, 0.7);
    box-shadow:
        0 0 0 10px rgba(240, 160, 184, 0.25),
        0 20px 60px rgba(0, 0, 0, 0.4);
    animation: heroPhotoFloat 6s ease-in-out infinite;
}

.chef-photo-fallback {
    width: 200px;
    height: 200px;
    font-size: 120px;
    line-height: 200px;
    text-align: center;
    border-radius: 50%;
    border: 5px solid rgba(255, 255, 255, 0.7);
    background: rgba(255,255,255,0.1);
}

@keyframes heroPhotoFloat {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-12px); }
}

@media (max-width: 680px) {
    .chef-photo, .chef-photo-fallback { width: 140px; height: 140px; }
}

/* Texto do hero */
.hero-text { max-width: 520px; }

.hero-label {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #d4af37; /* Gold */
}

/* =========================================
   BANNERS DE TÍTULO DE SEÇÃO (NOVOS)
========================================== */
.section-title-banner {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #fdf5f7;
    border: 2px solid var(--primary);
    border-radius: 50px 15px 15px 50px;
    padding: 15px 25px;
    margin: 40px 0 25px 0;
    box-shadow: 0 4px 15px rgba(217, 107, 138, 0.1);
}

.section-title-banner i {
    font-size: 2.2rem;
    color: var(--primary);
    margin-left: 5px;
}

.section-title-banner h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    color: var(--primary-dark);
    margin-bottom: 4px;
}

.section-title-banner p {
    font-size: 0.95rem;
    color: #666;
    margin: 0;
    line-height: 1.4;
}

@media (max-width: 600px) {
    .section-title-banner {
        flex-direction: column;
        text-align: center;
        border-radius: 20px;
        padding: 20px;
    }
    .section-title-banner i {
        margin-left: 0;
        margin-bottom: 10px;
    }
}

/* =========================================
   EXTRAS E CONTROLES DINÂMICOS
========================================== */
.extras-group {
    margin: 12px 0;
    padding: 10px;
    background: #fdfdfd;
    border: 1px dashed #e2e8f0;
    border-radius: 8px;
}
.extras-label {
    font-size: 14px;
    font-weight: 600;
    color: #444;
    display: block;
    margin-bottom: 5px;
}
.extra-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: #555;
    margin-top: 6px;
    cursor: pointer;
}
.extra-item input[type="checkbox"] {
    accent-color: var(--primary);
    width: 16px;
    height: 16px;
    cursor: pointer;
}
.extra-price {
    color: #888;
    font-size: 13px;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.4rem, 6vw, 4rem);
    line-height: 1.15;
    margin-bottom: 16px;
    text-shadow: 0 3px 20px rgba(0,0,0,0.3);
}

.hero-title span {
    background: linear-gradient(90deg, var(--gold), #ffcce1);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.05rem;
    line-height: 1.7;
    margin-bottom: 10px;
    opacity: 0.88;
}

.hero-brand {
    font-size: 0.9rem;
    font-weight: 700;
    opacity: 0.75;
    margin-bottom: 28px;
    letter-spacing: 0.5px;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

@media (max-width: 680px) {
    .desktop-break { display: none; }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 15px;
    }

    .hero-btn-primary,
    .hero-btn-whatsapp {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

.hero-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 6px 24px rgba(217, 107, 138, 0.5);
    font-family: 'Outfit', sans-serif;
}

.hero-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(217, 107, 138, 0.65);
}

.hero-btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 14px 28px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    font-family: 'Outfit', sans-serif;
}

.hero-btn-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
}

/* Seta de scroll */
.hero-scroll-arrow {
    position: absolute;
    bottom: 28px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: white;
    font-size: 1.4rem;
    opacity: 0.65;
    text-decoration: none;
    animation: bounceArrow 2s ease-in-out infinite;
    transition: opacity 0.2s;
}

.hero-scroll-arrow:hover { opacity: 1; }

@keyframes bounceArrow {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================
   COMO ENCOMENDAR
   ============================ */
.como-encomendar-section {
    margin-top: 56px;
    margin-bottom: 40px;
}

.como-encomendar-header {
    text-align: center;
    margin-bottom: 32px;
}

.como-encomendar-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: var(--primary-dark);
    margin: 8px 0 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.como-encomendar-header p {
    color: var(--text-light);
    font-size: 0.95rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 28px;
}

@media (min-width: 700px) {
    .steps-grid { grid-template-columns: repeat(4, 1fr); }
}

@media (max-width: 480px) {
    .steps-grid { grid-template-columns: 1fr 1fr; }
}

.step-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 22px 16px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1.5px solid rgba(217, 107, 138, 0.08);
    position: relative;
    transition: transform 0.25s;
}

.step-card:hover { transform: translateY(-5px); }

.step-number {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    font-weight: 800;
    font-size: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 3px 10px rgba(217, 107, 138, 0.4);
}

.step-icon-fa {
    font-size: 2rem;
    color: var(--turquesa);
    margin-bottom: 10px;
    display: block;
    margin-top: 6px;
}

.step-card h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 6px;
}

.step-card p {
    font-size: 0.78rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Botões de contato grandes */
.contact-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-whatsapp-big {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 15px 32px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    font-family: 'Outfit', sans-serif;
}

.btn-whatsapp-big:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(37, 211, 102, 0.6);
}

.btn-instagram {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #E1306C, #833AB4, #405DE6);
    color: white;
    padding: 15px 32px;
    border-radius: 30px;
    font-weight: 800;
    font-size: 1.05rem;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
    box-shadow: 0 6px 24px rgba(225, 48, 108, 0.4);
    font-family: 'Outfit', sans-serif;
}

.btn-instagram:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 32px rgba(225, 48, 108, 0.55);
}

/* ============================
   Padronização de Ícones
   ============================ */
.tab-icon,
.section-title-icon,
.step-icon-fa {
    font-size: 18px;
    margin-right: 8px;
}

.section-title-icon {
    font-size: 22px;
}

button i {
    margin-right: 6px;
}

/* ============================
   DEPOIMENTOS (CARROSSEL)
   ============================ */
.depoimento-carousel {
    max-width: 600px;
    margin: 0 auto;
    background: #fff;
    border: 2px solid var(--primary);
    border-radius: 16px;
    padding: 30px 24px;
    box-shadow: 0 4px 15px rgba(217, 107, 138, 0.15);
    position: relative;
    min-height: 220px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.depoimento-slide {
    display: none;
    animation: fadeSlideIn 0.8s ease forwards;
}

.depoimento-slide.active {
    display: block;
}

@keyframes fadeSlideIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.depoimento-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 18px;
}

.depoimento-avatar img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #fecdd3;
    padding: 2px;
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.05);
}

.depoimento-meta {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

.depoimento-author {
    font-weight: 800;
    font-size: 1.15rem;
    color: var(--text-dark);
    line-height: 1.1;
}

.depoimento-stars {
    color: #FACC15;
    font-size: 0.9rem;
    margin-top: 5px;
    letter-spacing: 2px;
}

.depoimento-text {
    font-size: 1.05rem;
    color: #444;
    line-height: 1.65;
    margin-bottom: 22px;
    text-align: left;
    font-weight: 400;
}

.depoimento-produto {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #fdf2f8;
    color: var(--primary-dark);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    align-self: flex-start;
    border: 1px solid rgba(217, 107, 138, 0.15);
}

.carousel-dots {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 8px;
}

.carousel-dots .dot {
    height: 10px;
    width: 10px;
    background-color: #ddd;
    border-radius: 50%;
    display: inline-block;
    transition: background-color 0.4s ease, transform 0.4s ease;
}

.carousel-dots .dot.active {
    background-color: var(--primary);
    transform: scale(1.3);
}

/* ============================
   Acessibilidade e Leitura (Mobile)
   ============================ */
@media (max-width: 768px) {
    .card-banner {
        height: 195px; /* Aumenta a altura das fotos */
    }
    .card-title {
        font-size: 1.15rem; /* Títulos mais visíveis */
    }
    .price {
        font-size: 1.65rem; /* Preços maiores */
    }
    .card-desc {
        font-size: 0.95rem; /* Descrições mais legíveis */
    }
    .card-weight {
        font-size: 0.8rem;
        padding: 5px 12px;
    }
    .control-group label {
        font-size: 0.85rem;
    }
    .control-group select {
        font-size: 1rem;
        padding: 10px 12px; /* Maior área de toque (hitbox) */
    }
    .qty-btn {
        width: 38px;
        height: 38px;
    }
    .qty-display {
        font-size: 1.15rem;
        width: 34px;
    }
}