/* ============================================
   DOCE PRAZER - Cardápio Interativo
   Identidade Visual: Rosa / Dourado / Chocolate
   ============================================ */

:root {
    --primary: #D4708F;
    --primary-dark: #B85A75;
    --primary-light: #F2C4D0;
    --secondary: #F5E6CC;
    --accent: #C9A96E;
    --accent-light: #E8D5A8;
    --dark: #3D2B1F;
    --dark-light: #5C4033;
    --light: #FFF5F5;
    --white: #FFFFFF;
    --bg: #FDF6F0;
    --shadow: 0 4px 20px rgba(61, 43, 31, 0.1);
    --shadow-lg: 0 8px 40px rgba(61, 43, 31, 0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    background: var(--bg);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   HEADER
   ============================================ */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    transition: var(--transition);
}

.header-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 12px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo-area {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 60px;
    object-fit: cover;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-links a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover {
    color: var(--primary);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}

.nav-links a:hover::after {
    width: 100%;
}

.cart-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 4px;
}

.cart-count {
    background: var(--primary);
    color: var(--white);
    font-size: 0.7rem;
    font-weight: 700;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    top: -8px;
    right: -10px;
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--dark);
    cursor: pointer;
}

.mobile-nav {
    display: none;
    position: fixed;
    top: 74px;
    left: 0;
    right: 0;
    background: var(--white);
    z-index: 999;
    flex-direction: column;
    padding: 16px 24px;
    box-shadow: var(--shadow);
}

.mobile-nav.active {
    display: flex;
}

.mobile-nav a {
    text-decoration: none;
    color: var(--dark);
    font-weight: 500;
    padding: 12px 0;
    border-bottom: 1px solid var(--secondary);
    display: flex;
    align-items: center;
    gap: 8px;
}

/* ============================================
   HERO
   ============================================ */
.hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    margin-top: 74px;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(61, 43, 31, 0.75) 0%,
        rgba(212, 112, 143, 0.55) 50%,
        rgba(201, 169, 110, 0.45) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 40px 24px;
    max-width: 600px;
}

.hero-logo {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    object-fit: cover;
    border: 4px solid rgba(255, 255, 255, 0.4);
    margin-bottom: 24px;
    animation: float 3s ease-in-out infinite;
}

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

.hero-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: var(--white);
    margin-bottom: 12px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 32px;
}

.hero-btn {
    display: inline-block;
    padding: 14px 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    transition: var(--transition);
    box-shadow: 0 4px 20px rgba(212, 112, 143, 0.4);
}

.hero-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(212, 112, 143, 0.5);
}

/* ============================================
   MENU SECTION
   ============================================ */
.menu-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 24px 120px;
}

.section-header {
    text-align: center;
    margin-bottom: 48px;
}

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

.section-header h2 i {
    color: var(--primary);
    margin-right: 8px;
}

.section-header p {
    color: var(--dark-light);
    font-size: 1rem;
}

/* ============================================
   CATEGORIES
   ============================================ */
.category {
    margin-bottom: 56px;
}

.category-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
}

.category-icon {
    font-size: 1.8rem;
}

.category-title h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark);
}

/* ============================================
   PRODUCT CARDS
   ============================================ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 24px;
}

.product-card {
    background: var(--white);
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.product-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-img-wrapper img {
    transform: scale(1.08);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    color: var(--dark);
    font-size: 0.75rem;
    font-weight: 700;
    padding: 4px 12px;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.product-info {
    padding: 20px;
}

.product-info h4 {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.product-desc {
    font-size: 0.85rem;
    color: var(--dark-light);
    margin-bottom: 8px;
}

.product-price {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 12px;
}

/* Flavor Select */
.flavor-select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--primary-light);
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: var(--dark);
    background: var(--white);
    margin-bottom: 12px;
    cursor: pointer;
    transition: var(--transition);
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23D4708F' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
}

.flavor-select:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(212, 112, 143, 0.15);
}

.flavor-qty-list{
    margin-top:8px;
    font-size:13px;
    color:#555;
}

.flavor-qty-item{
    display:flex;
    justify-content:space-between;
    padding:2px 0;
}

.flavor-qty-item span:first-child{
    font-weight:500;
}

.flavor-qty-item span:last-child{
    color:#c0392b;
    font-weight:bold;
}

/* Quantity Controls */
.qty-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.qty-btn {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--primary-light);
    background: var(--white);
    color: var(--primary);
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.qty-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    transform: scale(1.1);
}

.qty-btn.plus:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
}

.qty-value {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark);
    min-width: 30px;
    text-align: center;
}

/* ============================================
   SABORES SECTION
   ============================================ */
.sabores-section {
    margin-top: 40px;
    padding: 48px 0;
    border-top: 2px solid var(--primary-light);
}

.sabores-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.sabor-chip {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--white);
    border: 2px solid var(--primary-light);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
    transition: var(--transition);
    cursor: default;
}

.sabor-chip:hover {
    background: var(--primary-light);
    border-color: var(--primary);
    transform: translateY(-2px);
}

.sabor-chip span {
    font-size: 1.2rem;
}

/* ============================================
   FLOATING CART
   ============================================ */
.floating-cart {
    position: fixed;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 900;
    background: var(--dark);
    border-radius: 60px;
    padding: 12px 16px 12px 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 8px 40px rgba(61, 43, 31, 0.35);
    animation: slideUp 0.4s ease;
    max-width: 420px;
    width: calc(100% - 48px);
}

@keyframes slideUp {
    from {
        transform: translateX(-50%) translateY(100px);
        opacity: 0;
    }
    to {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }
}

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

.cart-summary {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 1;
    min-width: 0;
}

.cart-info {
    display: flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.85rem;
    white-space: nowrap;
}

.cart-info i {
    color: var(--primary-light);
}

.cart-total {
    color: var(--white);
    font-weight: 700;
    font-size: 1.05rem;
    white-space: nowrap;
}

.order-btn {
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    padding: 12px 24px;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 8px;
}

.order-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(212, 112, 143, 0.4);
}

/* ============================================
   MODALS
   ============================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(61, 43, 31, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

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

.modal {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 500px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    animation: modalIn 0.3s ease;
}

@keyframes modalIn {
    from {
        transform: scale(0.9) translateY(20px);
        opacity: 0;
    }
    to {
        transform: scale(1) translateY(0);
        opacity: 1;
    }
}

.modal-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: var(--light);
    color: var(--dark);
    font-size: 1rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    z-index: 10;
}

.modal-close:hover {
    background: var(--primary-light);
    color: var(--primary-dark);
}

.modal-header {
    padding: 32px 24px 16px;
    text-align: center;
}

.modal-logo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    margin-bottom: 12px;
    border: 2px solid var(--primary-light);
}

.modal-header h2 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: var(--dark);
}

.modal-body {
    padding: 0 24px 24px;
}

.modal-footer {
    padding: 0 24px 24px;
}

/* Order List */
.order-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}

.order-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 16px;
    background: var(--light);
    border-radius: var(--radius-sm);
    gap: 12px;
}

.order-item-info {
    flex: 1;
}

.order-item-name {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--dark);
}

.order-item-flavor {
    font-size: 0.8rem;
    color: var(--primary);
}

.order-item-qty {
    font-size: 0.85rem;
    color: var(--dark-light);
}

.order-item-price {
    font-weight: 700;
    color: var(--primary-dark);
    white-space: nowrap;
}

.order-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
}

.confirm-btn {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.confirm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(212, 112, 143, 0.4);
}

/* PIX Modal */
.pix-modal {
    max-width: 460px;
}

.pix-body {
    text-align: center;
}

.pix-instruction {
    font-size: 0.95rem;
    color: var(--dark-light);
    margin-bottom: 24px;
    line-height: 1.6;
}

.pix-qr-container {
    display: flex;
    justify-content: center;
    margin-bottom: 24px;
    padding: 20px;
    background: var(--white);
    border: 2px dashed var(--primary-light);
    border-radius: var(--radius-sm);
}

.pix-qr-container canvas {
    max-width: 200px;
    max-height: 200px;
}

.pix-key-area {
    margin-bottom: 20px;
}

.pix-key-area p {
    font-size: 0.9rem;
    color: var(--dark);
    margin-bottom: 8px;
}

.pix-key-copy {
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--light);
    padding: 12px 16px;
    border-radius: var(--radius-sm);
    justify-content: center;
    flex-wrap: wrap;
}

.pix-key-copy span {
    font-weight: 600;
    color: var(--dark);
    word-break: break-all;
    font-size: 0.9rem;
}

.copy-btn {
    background: var(--primary);
    color: var(--white);
    border: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 6px;
    white-space: nowrap;
}

.copy-btn:hover {
    background: var(--primary-dark);
}

.pix-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 20px;
    background: linear-gradient(135deg, var(--accent), var(--accent-light));
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--dark);
    margin-bottom: 16px;
}

.pix-note {
    font-size: 0.85rem;
    color: var(--dark-light);
    line-height: 1.5;
    padding: 12px;
    background: #FFF9E6;
    border-radius: var(--radius-sm);
    border-left: 4px solid var(--accent);
}

.whatsapp-btn {
    width: 100%;
    padding: 16px;
    background: #25D366;
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1.05rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.whatsapp-btn:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.3);
}

/* ============================================
   CART MODAL
   ============================================ */
.cart-modal {
    max-width: 520px;
}

.cart-items-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 16px;
}

.cart-modal-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: var(--light);
    border-radius: var(--radius-sm);
    position: relative;
    transition: var(--transition);
}

.cart-modal-item:hover {
    box-shadow: 0 2px 12px rgba(61, 43, 31, 0.08);
}

.cart-modal-item-img {
    width: 64px;
    height: 64px;
    min-width: 64px;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid var(--primary-light);
}

.cart-modal-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cart-modal-item-details {
    flex: 1;
    min-width: 0;
}

.cart-modal-item-name {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--dark);
    margin-bottom: 2px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.cart-modal-item-flavor {
    font-size: 0.78rem;
    color: var(--primary);
    font-weight: 500;
    margin-bottom: 4px;
}

.cart-modal-item-price {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--primary-dark);
    margin-bottom: 6px;
}

.cart-modal-item-controls {
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-qty-btn {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    border: 2px solid var(--primary-light);
    background: var(--white);
    color: var(--primary);
    font-size: 0.75rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-qty-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.cart-qty-plus:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--dark);
}

.cart-qty-value {
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    min-width: 24px;
    text-align: center;
}

.cart-modal-item-delete {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(220, 53, 69, 0.1);
    color: #dc3545;
    font-size: 0.85rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.cart-modal-item-delete:hover {
    background: #dc3545;
    color: var(--white);
    transform: scale(1.1);
}

.cart-empty-msg {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 40px 20px;
    color: var(--dark-light);
    text-align: center;
    gap: 12px;
}

.cart-empty-msg i {
    font-size: 3rem;
    color: var(--primary-light);
}

.cart-empty-msg p {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}

.cart-empty-msg span {
    font-size: 0.9rem;
    color: var(--dark-light);
}

.cart-modal-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 1.2rem;
    font-weight: 700;
}

/* ============================================
   HELP MODAL
   ============================================ */
.help-modal {
    max-width: 560px;
}

.help-steps {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.help-step {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.help-step-number {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.95rem;
}

.help-step-content h4 {
    font-size: 1rem;
    color: var(--dark);
    margin-bottom: 4px;
}

.help-step-content p {
    font-size: 0.88rem;
    color: var(--dark-light);
    line-height: 1.5;
}

.help-contact {
    text-align: center;
    padding: 20px;
    background: var(--light);
    border-radius: var(--radius-sm);
}

.help-contact p {
    font-size: 0.95rem;
    color: var(--dark);
    margin-bottom: 12px;
    font-weight: 500;
}

.help-contact p i {
    color: #25D366;
}

.help-whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    background: #25D366;
    color: var(--white);
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    transition: var(--transition);
}

.help-whatsapp-btn:hover {
    background: #1DA851;
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.3);
}

/* ============================================
   WHATSAPP FLOAT
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 800;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.8rem;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}

@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4); }
    70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); }
    100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); }
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--dark);
    padding: 48px 24px;
    text-align: center;
}

.footer-content {
    max-width: 600px;
    margin: 0 auto;
}

.footer-logo {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--primary);
    margin-bottom: 16px;
}

.footer p {
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Playfair Display', serif;
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.footer-sub {
    font-family: 'Poppins', sans-serif !important;
    font-size: 0.9rem !important;
    color: rgba(255, 255, 255, 0.6) !important;
}

.footer-social {
    margin-top: 20px;
    display: flex;
    justify-content: center;
    gap: 16px;
}

.footer-social a {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    text-decoration: none;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

/* ============================================
   RESPONSIVE - TABLET (481px - 768px)
   ============================================ */
@media (max-width: 768px) {
    .nav-links {
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .logo-img {
        height: 60px;
        object-fit: cover;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-content h2 {
        font-size: 2rem;
    }

    .hero-logo {
        width: 200px;
        height: 200px;
    }

    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }

    .product-img-wrapper {
        height: 180px;
    }

    .product-info {
        padding: 16px;
    }

    .product-info h4 {
        font-size: 1rem;
    }

    .product-price {
        font-size: 1.1rem;
    }

    .floating-cart {
        left: 16px;
        right: 90px;
        transform: none;
        width: auto;
        max-width: none;
        bottom: 16px;
        padding: 10px 14px 10px 20px;
        gap: 12px;

        animation: slideUpMobile 0.4s ease;
    }

    .order-btn {
        padding: 10px 18px;
        font-size: 0.85rem;
    }

    .section-header h2 {
        font-size: 1.6rem;
    }

    .category-title h3 {
        font-size: 1.25rem;
    }

    .whatsapp-float {
        bottom: 17px;
        right: 16px;
        width: 58px;
        height: 58px;
        font-size: 1.5rem;
    }
}

/* ============================================
   RESPONSIVE - MOBILE (max 480px)
   ============================================ */
@media (max-width: 480px) {
    .header-inner {
        padding: 10px 16px;
    }

    .logo-img {
        height: 40px;
        object-fit: cover;
    }

    .logo-text h1 {
        font-size: 1.2rem;
    }

    .logo-text p {
        font-size: 0.65rem;
    }

    .hero {
        min-height: 65vh;
        margin-top: 62px;
    }

    .hero-content h2 {
        font-size: 1.6rem;
    }

    .hero-content p {
        font-size: 0.95rem;
    }

    .hero-logo {
        width: 200px;
        height: 200px;
    }

    .hero-btn {
        padding: 12px 32px;
        font-size: 0.95rem;
    }

    .menu-section {
        padding: 40px 16px 120px;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .section-header p {
        font-size: 0.9rem;
    }

    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .product-img-wrapper {
        height: 200px;
    }

    .product-info {
        padding: 16px;
    }

    .category-title h3 {
        font-size: 1.15rem;
    }

    .qty-btn {
        width: 36px;
        height: 36px;
    }

    .floating-cart {
        bottom: 12px;

        left: 12px;
        right: 74px;

        transform: none;
        width: auto;
        max-width: none;

        padding: 10px 12px 10px 16px;
        gap: 10px;
        border-radius: 60px;
        flex-wrap: nowrap;

        animation: slideUpMobile 0.4s ease;
    }

    .cart-info {
        font-size: 0.8rem;
    }

    .cart-summary {
        overflow: hidden;
    }

    .cart-info span {
        white-space: nowrap;
    }

    .cart-total {
        font-size: 0.95rem;
    }

    .order-btn {
        padding: 10px 16px;
        font-size: 0.8rem;
    }

    .modal {
        max-height: 90vh;
        border-radius: 20px 20px 0 0;
        margin-top: auto;
    }

    .whatsapp-float {
        bottom: 17px;
        right: 12px;
        width: 50px;
        height: 50px;
        font-size: 1.4rem;
    }

    .sabores-grid {
        gap: 8px;
    }

    .sabor-chip {
        padding: 8px 14px;
        font-size: 0.8rem;
    }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (max 360px)
   ============================================ */
@media (max-width: 360px) {
    .hero-content h2 {
        font-size: 1.35rem;
    }

    .hero-logo {
        width: 75px;
        height: 75px;
    }

    .floating-cart {
        left: 12px;
        right: 74px;
        transform: none;
        width: auto;
        max-width: none;

        flex-direction: column;
        border-radius: var(--radius);
        padding: 12px 16px;
        gap: 8px;

        animation: slideUpMobile 0.4s ease;
    }

    .cart-summary {
        width: 100%;
        justify-content: space-between;
    }

    .order-btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================
   RESPONSIVE - LARGE DESKTOP (min 1025px)
   ============================================ */
@media (min-width: 1025px) {
    .products-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .hero-content h2 {
        font-size: 3rem;
    }

    .hero-content p {
        font-size: 1.2rem;
    }
}

/* ============================================
   RESPONSIVE - EXTRA LARGE (min 1400px)
   ============================================ */
@media (min-width: 1400px) {
    .menu-section {
        max-width: 1400px;
    }

    .products-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* ============================================
   SCROLLBAR CUSTOM
   ============================================ */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--primary-light);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
}

/* ============================================
   SELECTION
   ============================================ */
::selection {
    background: var(--primary-light);
    color: var(--dark);
}

/* ============================================
   TOAST NOTIFICATION
   ============================================ */
.toast {
    position: fixed;
    top: 90px;
    right: 24px;
    z-index: 3000;
    background: var(--dark);
    color: var(--white);
    padding: 14px 24px;
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    box-shadow: var(--shadow-lg);
    animation: toastIn 0.3s ease, toastOut 0.3s ease 2.5s forwards;
    display: flex;
    align-items: center;
    gap: 10px;
}

.toast.success {
    background: #25D366;
}

.toast.info {
    background: var(--primary);
}

@keyframes toastIn {
    from {
        transform: translateX(100px);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toastOut {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100px);
        opacity: 0;
    }
}