/* ================================================== */
/* === VARIÁVEIS GLOBAIS & RESET ==================== */
/* ================================================== */
:root {
    --rose-50: #fff1f2;
    --rose-100: #ffe4e6;
    --rose-200: #fecdd3;
    --rose-300: #fda4af;
    --rose-400: #fb7185;
    --rose-500: #f43f5e;
    --rose-600: #e11d48;
    --rose-700: #be123c;
    --green-500: #22c55e;
    --green-600: #16a34a;
    --nude-50: #fef7ed;
}

* {
    font-family: 'Poppins', sans-serif !important;
}

body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

html, body {
    overflow-x: hidden;
    max-width: 100vw;
}

.container {
    padding-left: 0;
    padding-right: 0;
}

.row {
    margin-left: 0;
    margin-right: 0;
}


/* ================================================== */
/* === HEADER / NAVEGAÇÃO =========================== */
/* ================================================== */
.header-fixed {
    position: fixed;
    top: 1rem;
    left: 0;
    right: 0;
    width: calc(100% - 2rem);
    max-width: 1290px;
    margin: 0 auto;
    background: white;
    backdrop-filter: blur(10px);
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border: 1px solid var(--rose-100);
    z-index: 1000;
    padding: 0.5rem 1rem;
}

.logo-container {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    min-width: 0;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--rose-300), var(--rose-500));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 0.5rem;
}

.logo-text h1 {
    font-size: 1.1rem;
    margin: 0;
    font-weight: 600;
    color: var(--rose-600);
    line-height: 1.2;
    white-space: nowrap;
}

.logo-text p {
    font-size: 0.75rem;
    margin: 0;
    color: var(--rose-400);
    margin-top: -2px;
    white-space: nowrap;
}

.mobile-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.btn-cart-mobile {
    position: relative;
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--rose-500);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-cart-mobile:hover {
    background: var(--rose-50);
    color: var(--rose-600);
}

.btn-menu-mobile {
    width: 40px;
    height: 40px;
    border: none;
    background: transparent;
    color: var(--rose-500);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.btn-menu-mobile:hover {
    background: var(--rose-50);
    color: var(--rose-600);
}

.cart-badge {
    position: absolute;
    top: -4px;
    right: -4px;
    background: var(--rose-500);
    color: white;
    border-radius: 50%;
    width: 18px;
    height: 18px;
    font-size: 0.7rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    min-width: 18px;
}

.nav-link {
    transition: all 0.3s ease;
}

.nav-link:hover {
    background-color: var(--rose-100) !important;
    transform: translateX(4px);
}

.nav-link:active {
    background-color: var(--rose-200) !important;
}

.btn-close:focus {
    box-shadow: 0 0 0 0.25rem rgba(244, 63, 94, 0.25);
}


/* ================================================== */
/* === HERO SECTION ================================= */
/* ================================================== */
.hero-section {
    width: 100%;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    padding-top: 100px;
    margin-top: -40px !important;
    z-index: auto !important;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-section .container {
    position: relative;
    z-index: 1;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.1;
    pointer-events: none;
}

.hero-image-container {
    position: relative;
    transform: rotate(3deg);
    transition: transform 0.5s ease;
}

.hero-image-container:hover {
    transform: rotate(0);
}

.discount-badge {
    position: absolute;
    top: -16px;
    right: -16px;
    background: var(--rose-500);
    color: white;
    border-radius: 50%;
    width: 64px;
    height: 64px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.floating-element {
    position: absolute;
    background: white;
    border-radius: 50%;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: float 3s ease-in-out infinite;
}

.bg-gradient-soft {
    background: linear-gradient(135deg, #ffeef8 0%, #fff5f5 50%, #fef7ed 100%);
}

.text-gradient {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.shadow-soft {
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04) !important;
}

.section-badge {
    background: rgba(255,255,255,0.2);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}


/* ================================================== */
/* === PRODUTOS & CATEGORIAS ======================= */
/* ================================================== */
.product-card {
    border-radius: 20px;
    overflow: hidden;
    border: none;
    transition: all 0.3s ease;
    background: white;
}

.product-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.product-card img {
    transition: transform 0.5s ease;
}

.product-card:hover img {
    transform: scale(1.1);
}

.like-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255,255,255,0.9);
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.like-btn:hover {
    background: white;
}

.like-btn.liked {
    color: var(--rose-500);
}

.like-btn.liked i {
    color: var(--rose-600);
}

.category-badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--rose-500);
    color: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 500;
}

.filter-btn {
    border: 2px solid var(--rose-300);
    color: var(--rose-600);
    background: transparent;
    border-radius: 50px;
    padding: 8px 24px;
    transition: all 0.3s ease;
}

.filter-btn.active {
    background: var(--rose-500);
    color: white;
    box-shadow: 0 10px 30px rgba(244, 63, 94, 0.3);
}

.filter-btn:hover {
    background: var(--rose-50);
}

.thumbnail-gallery {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.thumbnail {
    width: 80px;
    height: 80px;
    border-radius: 12px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.thumbnail.active {
    border-color: var(--rose-500);
    box-shadow: 0 5px 15px rgba(244, 63, 94, 0.3);
}

.thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ingredient-tag {
    background: var(--rose-50);
    color: var(--rose-800);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    display: inline-block;
    margin: 2px;
}

#product-gallery-container {
    cursor: move;
    cursor: grab;
}


/* ================================================== */
/* === BOTÕES & INTERAÇÕES ========================= */
/* ================================================== */
.btn-rose {
    background: linear-gradient(135deg, var(--rose-500), var(--rose-600));
    border: none;
    color: white;
    border-radius: 50px;
    padding: 12px 24px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-rose:hover {
    background: linear-gradient(135deg, var(--rose-600), var(--rose-700));
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(244, 63, 94, 0.3);
}

.btn-rose::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    animation: shimmer 2s infinite alternate;
}

.btn-favorito {
    border-radius: 50px;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.btn-green {
    background: var(--green-500);
    border: none;
    color: white;
    border-radius: 50px;
    padding: 12px 24px;
    transition: all 0.3s ease;
}

.btn-green:hover {
    background: var(--green-600);
    transform: scale(1.05);
}

.nav-arrow {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--rose-100);
    color: var(--rose-600);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.nav-arrow:hover {
    background: var(--rose-200);
}


/* ================================================== */
/* === DEPOIMENTOS (TESTIMONIALS) ================== */
/* ================================================== */
.testimonial-avatar {
    width: 96px;
    height: 96px;
    border-radius: 50%;
    border: 4px solid white;
    object-fit: cover;
}

.testimonial-rating {
    position: absolute;
    bottom: -8px;
    right: -8px;
    background: var(--rose-500);
    color: white;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
}

.quote-border {
    border-left: 4px solid var(--rose-400);
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.rating-container {
    background: white;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 12px;
}

.star-rating {
    color: #FFD700;
    letter-spacing: 2px;
    font-size: 1.1rem;
}

.stars {
    color: #fbbf24;
}


/* ================================================== */
/* === WHATSAPP INTEGRATION ========================= */
/* ================================================== */
.whatsapp-mockup {
    position: relative;
    max-width: 320px;
    margin: 0 auto;
    background: #000;
    border-radius: 25px;
    padding: 8px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.phone-screen {
    background: #e5ddd5;
    border-radius: 18px;
    height: 600px;
    overflow: hidden;
    position: relative;
}

.whatsapp-header {
    background: #075e54;
    color: white;
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.whatsapp-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #fff;
}

.whatsapp-contact-info h6 {
    margin: 0;
    font-size: 16px;
    font-weight: 600;
}

.whatsapp-contact-info small {
    font-size: 12px;
    opacity: 0.8;
}

.chat-container {
    padding: 20px 15px;
    height: calc(100% - 70px);
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.message {
    max-width: 250px;
    padding: 8px 12px;
    border-radius: 8px;
    position: relative;
    word-wrap: break-word;
    animation: slideInMessage 0.5s ease-out;
}

.message.received {
    background: white;
    align-self: flex-start;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.message.sent {
    background: #dcf8c6;
    align-self: flex-end;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.message-time {
    font-size: 11px;
    color: #666;
    margin-top: 4px;
    text-align: right;
}

.message.received .message-time {
    text-align: left;
}

.floating-whatsapp {
    position: absolute;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    animation: float 3s ease-in-out infinite;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
}

.floating-whatsapp.top-right {
    top: -30px;
    right: -30px;
}

.floating-whatsapp.bottom-left {
    bottom: -30px;
    left: -30px;
}

.whatsapp-stats {
    background: rgba(255,255,255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    border: 1px solid var(--rose-400);
    transition: all 0.3s ease;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 5px;
}

.stat-label {
    color: rgba(255,255,255,0.9);
    font-size: 14px;
}


/* ================================================== */
/* === PROMOÇÕES & OFERTAS ========================== */
/* ================================================== */
.promotion-card {
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid var(--rose-100);
    transition: all 0.3s ease;
}

.promotion-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.promotion-discount {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--rose-500);
    color: white;
    padding: 8px 16px;
    border-bottom-left-radius: 20px;
    font-weight: bold;
}


/* ================================================== */
/* === FAVORITOS & CARRINHO ======================== */
/* ================================================== */
.favorites-list {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 8px;
}

.favorite-item {
    padding: 12px 0;
    border-bottom: 1px solid var(--rose-100);
    transition: all 0.2s ease;
}

.favorite-item:last-child {
    border-bottom: none;
}

.favorite-item:hover {
    background-color: var(--rose-50);
}

.favorites-total {
    position: sticky;
    bottom: 0;
    background-color: white;
    padding-bottom: 8px;
}

.remove-favorite {
    transition: all 0.2s ease;
}

.remove-favorite:hover {
    background-color: var(--rose-600);
    color: white !important;
}

.favorites-counter {
    font-size: 0.75rem;
    background-color: var(--rose-500) !important;
    color: white;
    border-radius: 50px;
    min-width: 20px;
    padding: 3px 6px;
    transform: translateY(-1px);
    transition: all 0.3s ease;
}

.favorites-counter.pulse {
    transform: translateY(-1px) scale(1.2);
}

.favorites-counter-mobile {
    font-size: 0.8rem;
    padding: 0.25em 0.5em;
    min-width: 18px;
    border-radius: 50px;
    border: 0 solid #fff !important;
    transform: translate(-40%, -40%);
    line-height: 1;
    color: #000;
}

.favorites-counter-mobile:empty {
    display: none;
}


/* ================================================== */
/* === ANIMAÇÕES & EFEITOS ========================= */
/* ================================================== */
.pulse-animation {
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(59, 130, 246, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(59, 130, 246, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(59, 130, 246, 0); }
}

@keyframes shimmer {
    0% { left: -100%; }
    100% { left: 100%; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-bounce {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 53%, 80%, 100% { transform: translate3d(0,0,0); }
    40%, 43% { transform: translate3d(0,-30px,0); }
    70% { transform: translate3d(0,-15px,0); }
    90% { transform: translate3d(0,-4px,0); }
}

@keyframes slideInMessage {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* ================================================== */
/* === RESPONSIVIDADE (MEDIA QUERIES) =============== */
/* ================================================== */
@media (max-width: 767.98px) {
    .header-fixed {
        top: 0.5rem;
        width: calc(100% - 1rem);
    }
    
    .display-3 {
        font-size: 2.6rem !important;
    }
    
    .hero-section {
        padding-top: 70px;
    }
    
    .discount-badge {
        top: -16px;
        right: -6px;
    }
    
    .whatsapp-mockup {
        max-width: 380px;
    }
    
    .phone-screen {
        height: 80vh !important;
    }
    
    .logo-icon {
        width: 36px;
        height: 36px;
        margin-right: 0.4rem;
    }
    
    .logo-text h1 {
        font-size: 1rem;
    }
    
    .logo-text p {
        font-size: 0.7rem;
    }
    
    .btn-cart-mobile,
    .btn-menu-mobile {
        width: 36px;
        height: 36px;
    }
    
    .mobile-actions {
        gap: 0.5rem;
    }
}

@media (max-width: 375px) {
    .header-fixed {
        padding: 0.5rem 0.75rem;
    }
    
    .logo-text h1 {
        font-size: 0.9rem;
    }
    
    .logo-text p {
        display: none;
    }
    
    .btn-cart-mobile,
    .btn-menu-mobile {
        width: 32px;
        height: 32px;
    }
}

@media (max-width: 768px) {
    .hero-section {
        min-height: 80vh;
    }

    .hero-image-container {
        transform: none;
        margin-top: 2rem;
    }

    .floating-element {
        display: none;
    }
    
    .whatsapp-mockup {
        max-width: 280px;
    }
    
    .phone-screen {
        height: 500px;
    }
    
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 20px;
    }
}


/* ================================================== */
/* === UTILITÁRIOS & CLASSES AUXILIARES ============ */
/* ================================================== */
.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--rose-200);
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: var(--rose-500);
}

.accordion-button:not(.collapsed) {
    background-color: var(--rose-100);
    color: var(--rose-600);
    box-shadow: none;
}

.accordion-button::after {
    transition: transform 0.2s ease;
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(180deg);
}

.links {
    text-decoration: none;
}

#wpfooter {
    display: none !important;
}

.about-floating-badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: white;
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    text-align: center;
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: var(--rose-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    color: var(--rose-500);
}

.social-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-icon:hover {
    transform: translateY(-2px);
}

.modal-content {
    border-radius: 20px;
    border: none;
    overflow: hidden;
}

.gallery-image {
    position: relative;
    border: 1px solid #ddd;
    border-radius: 4px;
    overflow: hidden;
}

.delete-gallery-image {
    position: absolute;
    top: 0;
    right: 0;
    background: white;
    border: none;
    width: 20px;
    height: 20px;
    text-align: center;
    line-height: 20px;
    cursor: pointer;
    font-size: 22px;
    font-weight: bold;
}

.offcanvas-end {
    width: 85%;
    max-width: 320px;
}