/*
 * Public Cardapio Module Styles
 * Standardized according to Agenterules.md
 */

:root {
    --bg-dark: #0a0c10;
    --bg-card: rgba(22, 25, 30, 0.75);
    --text-main: #f1f5f9;
    --text-muted: #94a3b8;
    --border: rgba(255, 255, 255, 0.08);
    --radius-lg: 24px;
    --radius-md: 16px;
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --glass: blur(15px);
}

/* Reset & Base */
* { margin: 0; padding: 0; box-sizing: border-box; outline: none; -webkit-tap-highlight-color: transparent; }

html {
    background-color: var(--bg-dark);
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-main);
    min-height: 100vh;
    overflow-x: hidden;
    line-height: 1.5;
}

.body-with-bg::before {
    content: '';
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: linear-gradient(rgba(10, 12, 16, 0.88), rgba(10, 12, 16, 0.96)), var(--bg-url) center/cover no-repeat;
    z-index: -1;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Utility */
.text-center { text-align: center !important; }
.hidden { display: none !important; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.gap-15 { gap: 15px; }

/* Custom Scrollbar */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--bg-dark); }
::-webkit-scrollbar-thumb { background: rgba(var(--primary-rgb), 0.3); border-radius: 10px; }

/* Header Premium */
.main-header {
    padding: 60px 0 40px;
    text-align: center;
    position: relative;
}

.logo-wrapper {
    width: 130px;
    height: 130px;
    margin: 0 auto 25px;
    padding: 8px;
    background: rgba(var(--primary-rgb), 0.1);
    border: 2px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
    position: relative;
    z-index: 2;
}

.logo-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.logo-placeholder {
    font-size: 50px;
    color: var(--primary);
}

.header-content h1 {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 800;
    letter-spacing: -1px;
    margin-bottom: 10px;
    color: #fff;
}

.header-content p {
    color: var(--text-muted);
    font-size: 18px;
    font-weight: 300;
    max-width: 700px;
    margin: 0 auto;
}

.status-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 15px;
    backdrop-filter: var(--glass);
}
.status-open { background: rgba(16, 185, 129, 0.15); color: #10b981; border: 1px solid rgba(16, 185, 129, 0.2); }
.status-closed { background: rgba(239, 68, 68, 0.15); color: #ef4444; border: 1px solid rgba(239, 68, 68, 0.2); }
.dot { width: 8px; height: 8px; border-radius: 50%; }
.dot-open { background: #10b981; box-shadow: 0 0 10px #10b981; }
.dot-closed { background: #ef4444; }

/* Category Nav - Floating Glassmorphism */
.nav-wrapper {
    position: sticky;
    top: 20px;
    z-index: 500;
    margin-bottom: 50px;
}

.category-nav {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: var(--glass);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 8px;
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scrollbar-width: none;
    max-width: fit-content;
    margin: 0 auto;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

@keyframes menuPulse {
    0% { border-color: rgba(255,255,255,0.08); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
    50% { border-color: var(--primary); box-shadow: 0 0 15px rgba(var(--primary-rgb), 0.3); }
    100% { border-color: rgba(255,255,255,0.08); box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
}

.category-nav.can-scroll {
    animation: menuPulse 2s infinite ease-in-out;
}

.category-nav::-webkit-scrollbar { display: none; }

.category-btn {
    padding: 10px 24px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    white-space: nowrap;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.category-btn i { font-size: 16px; opacity: 0.6; }

.category-btn:hover {
    color: #fff;
    background: rgba(255,255,255,0.05);
}

.category-btn.active {
    background: var(--primary);
    color: #000;
    box-shadow: 0 8px 15px rgba(var(--primary-rgb), 0.3);
}

.category-btn.promo-link {
    color: #ef4444;
    border: 1px solid rgba(239, 68, 68, 0.2);
}

.category-btn.promo-link.active {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444;
}

/* Products Grid */
.category-section {
    margin-bottom: 80px;
    animation: fadeInUp 0.8s ease backwards;
}

.section-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.5px;
}

.section-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(var(--primary-rgb), 0.3), transparent);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 20px;
}

/* Product Card Glass */
.product-card {
    background: var(--bg-card);
    backdrop-filter: var(--glass);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 16px;
    display: flex;
    gap: 16px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.product-card:hover {
    transform: translateY(-5px);
    border-color: rgba(var(--primary-rgb), 0.4);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
    background: rgba(30, 35, 45, 0.9);
}

.p-image {
    width: 110px;
    height: 110px;
    border-radius: var(--radius-md);
    overflow: hidden;
    flex-shrink: 0;
    background: rgba(255,255,255,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.badge-promo {
    position: absolute;
    top: 10px; left: 10px;
    background: #ef4444;
    color: #fff;
    padding: 4px 10px;
    border-radius: 8px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    z-index: 10;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
    animation: promoPulse 2s infinite;
}

@keyframes promoPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.05); }
    100% { transform: scale(1); }
}

.p-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.product-card:hover .p-image img { transform: scale(1.1); }

.p-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.p-content h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #fff;
}

.p-content p {
    font-size: 13px;
    color: var(--text-muted);
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 12px;
}

.p-price {
    font-size: 19px;
    font-weight: 800;
    color: var(--primary);
}

.p-old-price {
    font-size: 0.6em;
    text-decoration: line-through;
    color: var(--text-muted);
    opacity: 0.6;
    margin-right: 5px;
}

/* Modal Details */
#modal-details {
position: fixed;
top: 0; left: 0; width: 100%; height: 100%;
background: rgba(0,0,0,0.85);
backdrop-filter: blur(15px); /* Reduced for performance */
z-index: 99991;
display: none;
align-items: center;
justify-content: center;
padding: 20px;
opacity: 0;
transition: opacity 0.3s ease;
visibility: hidden;
}

#modal-details.active { display: flex; visibility: visible; }
#modal-details.show { opacity: 1; }
#modal-details.closing { opacity: 0; pointer-events: none; }

.modal-content {
    background: #12151c;
    border: 1px solid var(--border);
    border-radius: 32px;
    width: 100%;
    max-width: 500px;
    max-height: 85vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transform: translateY(40px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1), opacity 0.3s ease;
    box-shadow: 0 50px 100px rgba(0,0,0,0.8);
    position: relative;
    opacity: 0;
}

#modal-details.show .modal-content {
transform: translateY(0) scale(1);
opacity: 1;
}

#modal-step-1, #modal-step-2, #modal-step-3, #modal-step-4 {
display: none;
flex-direction: column;
height: 85vh;
max-height: 85vh;
overflow: hidden;
width: 100%;
}

#modal-step-1.active-step, #modal-step-2.active-step, #modal-step-3.active-step, #modal-step-4.active-step {
display: grid;
grid-template-rows: 1fr;
}

.m-hero { min-height: 250px; width: 100%; position: relative; overflow: hidden; }
.m-hero img { width: 100%; height: 100%; object-fit: cover; }

.m-body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: 20px 30px;
    background: transparent;
}

.m-footer {
    padding: 20px 30px;
    background: rgba(255,255,255,0.03);
    border-top: 1px solid var(--border);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

#modal-details.active .modal-content { transform: translateY(0) scale(1); }

.m-close {
    position: absolute;
    top: 15px; right: 15px;
    width: 36px; height: 36px;
    background: var(--primary);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 100;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0,0,0,0.3);
}
.m-close:hover { background: #ef4444; transform: scale(1.1); }

.m-body .category-tag {
    display: inline-block;
    background: rgba(var(--primary-rgb), 0.1);
    color: var(--primary);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 8px;
    border: 1px solid rgba(var(--primary-rgb), 0.2);
}

.m-body h2 { font-size: 24px; font-weight: 800; margin-bottom: 6px; color: #fff; }
.m-body p { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 20px; }

.m-footer .price-tag { font-size: 26px; font-weight: 800; color: var(--primary); }

/* Cart & Checkout Specific */
.cart-floating {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: var(--primary);
    color: #000;
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 30px rgba(var(--primary-rgb), 0.4);
    cursor: pointer;
    z-index: 1000;
    transition: var(--transition);
}
.cart-floating.pulse { animation: cartPulse 0.6s cubic-bezier(0.175, 0.885, 0.32, 1.275); }
@keyframes cartPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.4) rotate(15deg); }
    100% { transform: scale(1); }
}
.cart-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    background: #fff;
    color: #000;
    font-size: 12px;
    font-weight: 800;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-flyer {
    position: fixed;
    z-index: 100000;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    pointer-events: none;
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 5px 20px rgba(var(--primary-rgb), 0.5);
}

#cart-panel {
position: fixed;
top: 0; right: -400px;
width: 400px; height: 100%;
background: #12151c;
border-left: 1px solid var(--border);
z-index: 9999;
transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
display: flex;
flex-direction: column;
}
#cart-panel.active { right: 0; }

.cart-header { padding: 30px; border-bottom: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; }
.cart-items { flex: 1; overflow-y: auto; padding: 20px; }
.cart-item { display: flex; gap: 15px; margin-bottom: 20px; background: rgba(255,255,255,0.03); padding: 15px; border-radius: 16px; border: 1px solid var(--border); }
.cart-item-info { flex: 1; }
.cart-item-title { font-weight: 700; margin-bottom: 4px; }
.cart-item-extras { font-size: 11px; color: var(--text-muted); margin-bottom: 8px; }
.cart-item-price { color: var(--primary); font-weight: 700; }
.cart-footer { padding: 30px; background: rgba(255,255,255,0.02); border-top: 1px solid var(--border); }
.cart-total-row { display: flex; justify-content: space-between; margin-bottom: 20px; font-size: 18px; font-weight: 800; }

.add-to-cart-btn {
    background: var(--primary);
    color: #000;
    border: none;
    padding: 14px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}
.add-to-cart-btn:hover {
    transform: scale(1.02);
    box-shadow: 0 10px 20px rgba(var(--primary-rgb), 0.3);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 12px;
    background: rgba(255,255,255,0.08);
    padding: 10px 18px;
    border-radius: 100px;
    border: 1px solid var(--border);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.1);
}
.qty-btn {
    background: var(--primary);
    border: none;
    color: #000;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border-radius: 50%;
    transition: var(--transition);
    box-shadow: 0 4px 10px rgba(var(--primary-rgb), 0.2);
}
.qty-btn:hover { transform: scale(1.1); box-shadow: 0 6px 15px rgba(var(--primary-rgb), 0.4); }

.adicionais-list { margin-top: 20px; }
.adicional-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: rgba(255, 255, 255, 0.03);
    margin-bottom: 8px;
    padding: 14px 20px;
    border-radius: 16px;
    border: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}
.adicional-item:hover { background: rgba(255,255,255,0.06); border-color: rgba(var(--primary-rgb), 0.3); }
.adicional-item.selected {
    border-color: var(--primary);
    background: rgba(var(--primary-rgb), 0.12);
    box-shadow: 0 0 20px rgba(var(--primary-rgb), 0.1);
}

.checkout-form { padding: 30px; display: flex; flex-direction: column; flex: 1; overflow-y: auto; }
.form-control-digital {
    width: 100%;
    background: rgba(255,255,255,0.05) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E") no-repeat right 15px center;
    background-size: 18px;
    border: 1px solid var(--border);
    padding: 15px 45px 15px 20px;
    border-radius: 16px;
    color: #fff;
    margin-bottom: 15px;
    font-family: inherit;
    appearance: none;
    -webkit-appearance: none;
    cursor: pointer;
}
.form-control-digital option {
    background-color: #1a1e26;
    color: #fff;
}
.form-control-digital:focus { border-color: var(--primary); background: rgba(255,255,255,0.08); }

.method-option {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    padding: 15px;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--text-muted);
}
.method-option i { font-size: 18px; opacity: 0.6; }
.method-option span { font-size: 13px; font-weight: 600; }
.method-option:hover { background: rgba(255,255,255,0.05); color: #fff; }
.method-option.active {
    background: rgba(var(--primary-rgb), 0.1);
    border-color: var(--primary);
    color: var(--primary);
}

/* Animations */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Mobile Adjustments */
@media (max-width: 600px) {
    #cart-panel { width: 100%; right: -100%; }
    .main-header { padding: 40px 0 20px; }
    .logo-wrapper { width: 90px; height: 90px; }
    .m-hero { height: 240px; }
    .m-body { padding: 12px 20px; }
    .m-body h2 { font-size: 20px; }
    .m-footer { padding: 12px 20px; flex-direction: column; align-items: stretch; }
    .m-footer .price-tag { font-size: 20px; text-align: center; }
    .add-to-cart-btn { padding: 10px 15px; font-size: 12px; }
}

/* Specific UI helpers */
.top-actions-wrapper { position: absolute; top: 30px; right: 30px; z-index: 1000; }
.admin-panel-link {
    color: var(--text-muted);
    text-decoration: none;
    font-size: 12px;
    font-weight: 600;
    background: rgba(255,255,255,0.03);
    padding: 8px 18px;
    border-radius: 12px;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 10px;
    backdrop-filter: var(--glass);
}
.admin-panel-link:hover { color:#fff; background:rgba(var(--primary-rgb), 0.1); border-color:var(--primary); }

.delivery-method-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.checkout-label { font-size: 12px; color: var(--text-muted); display: block; margin-bottom: 5px; }
.checkout-label-bold { font-size: 12px; color: var(--text-muted); display: block; margin-bottom: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; }

.address-grid-2-1 { display: grid; grid-template-columns: 2fr 1fr; gap: 10px; margin-bottom: 10px; }
.address-grid-3-1 { display: grid; grid-template-columns: 3fr 1fr; gap: 10px; margin-bottom: 10px; }

.m-close-inline {
    width: 36px; height: 36px;
    background: rgba(255,255,255,0.05);
    color: var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.m-close-inline:hover { background: #ef4444; color: #fff; transform: scale(1.1); }

.empty-state-cart { text-align: center; padding: 40px 20px; color: var(--text-muted); }
.empty-state-cart i { font-size: 40px; margin-bottom: 15px; opacity: 0.2; }

.form-group-digital { margin-bottom: 10px; }
.form-group-digital-lg { margin-bottom: 20px; }

.delivery-fee-row { margin-bottom: 10px; font-size: 14px; font-weight: 500; color: var(--text-muted); }

.m-footer-stack { flex-direction: column; gap: 8px; padding: 12px 25px; }
.m-price-row { display: flex; width: 100%; align-items: center; justify-content: space-between; margin-bottom: 5px; }
.m-price-tag-container { text-align: right; }
.m-price-label { display: block; font-size: 10px; text-transform: uppercase; color: var(--text-muted); font-weight: 700; margin-bottom: 1px; }

.btn-group-horizontal { display: flex; gap: 8px; width: 100%; flex-wrap: nowrap; }
.btn-secondary-custom { flex: 1; padding: 12px 10px; border-radius: 50px; background: rgba(255,255,255,0.05); color: #fff; border: 1px solid var(--border); cursor: pointer; font-weight: 700; font-size: 11px; transition: var(--transition); white-space: nowrap; }
.btn-secondary-custom:hover { background: rgba(255,255,255,0.1); }
.btn-text-only { width: 100%; padding: 10px; border-radius: 50px; background: transparent; border: 1px solid var(--border); color: var(--text-muted); cursor: pointer; font-weight: 700; font-size: 11px; margin-top: 2px; transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px; }
.btn-text-only:hover { background: rgba(255,255,255,0.05); color: #fff; }

.adicional-nome { font-weight: 600; font-size: 15px; }
.adicional-preco { font-weight: 700; color: var(--primary); font-size: 15px; }

/* Additional Cleaned Classes */
.closed-alert {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    padding: 15px;
    border-radius: 12px;
    text-align: center;
    color: #ef4444;
    font-weight: 600;
}

.qty-number {
    font-weight: 800;
    font-size: 18px;
    min-width: 20px;
    text-align: center;
}

.m-body-tight { padding-bottom: 0; }
.m-title-modal { font-size: 22px; margin-bottom: 10px; }
.m-subtitle-modal { margin-bottom: 0; font-size: 12px; color: var(--text-muted); font-weight: 600; }
.price-tag-lg { font-size: 20px; }
.flex-2 { flex: 1.5 !important; }

.m-observation-box {
    background: rgba(255,255,255,0.03);
    padding: 10px;
    border-radius: 16px;
    border: 1px solid var(--border);
}

.half-flavor-info {
    font-size: 11px;
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-remove-item {
    width: 32px; height: 32px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    color: var(--text-muted);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    overflow: hidden;
}
.btn-remove-item:hover {
    background: #ef4444;
    color: #fff;
    border-color: #ef4444;
    transform: scale(1.1);
    box-shadow: 0 5px 15px rgba(239, 68, 68, 0.3);
}
.btn-remove-item i { width: 16px; height: 16px; }

.no-scroll { overflow: hidden !important; }

#menu-container {
transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
opacity: 1;
transform: translateY(0);
padding-bottom: 150px; /* Strong space at the bottom for floaters and cleaner look */
}

.menu-loading {
    opacity: 0 !important;
    transform: translateY(15px) !important;
}

.flex-hidden { display: none !important; }

/* Toast Notifications */
.toast-notif {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(-100px);
    z-index: 100001;
    background: rgba(22, 25, 30, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid var(--border);
    border-radius: 100px;
    padding: 12px 24px;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    opacity: 0;
    pointer-events: none;
    box-shadow: 0 15px 40px rgba(0,0,0,0.5);
}

.toast-notif.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
}

.toast-content {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 600;
}

.toast-success i { color: #10b981; }
.toast-error i { color: #ef4444; }
.toast-warning i { color: #f59e0b; }
.toast-info i { color: var(--primary); }

/* WhatsApp Floating Button */
.whatsapp-floating {
    position: fixed;
    bottom: 105px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.3);
    z-index: 998;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-floating:hover {
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 15px 30px rgba(37, 211, 102, 0.4);
    filter: brightness(1.1);
}

.whatsapp-floating i {
    width: 32px;
    height: 32px;
}

@media (max-width: 600px) {
    .whatsapp-floating {
        bottom: 110px;
        right: 25px;
        width: 55px;
        height: 55px;
    }
}
