/* ============================================
   BRASAS & FRITOS — Version 6 Premium Design
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Caveat:wght@700&family=Oswald:wght@300;400;500;600;700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
    --primary: #d42e12;
    --primary-hover: #b8200a;
    --accent: #ff8c00;
    --accent-light: #ffb347;
    --gold: #f5a623;
    --bg-dark: #0b0b0b;
    --bg-section: #111111;
    --bg-card: rgba(255, 255, 255, 0.04);
    --bg-card-hover: rgba(255, 255, 255, 0.08);
    --text-main: #f5f0eb;
    --text-muted: #8a8580;
    --text-dim: #5c5855;
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-hover: rgba(255, 140, 0, 0.3);
    --shadow-card: 0 8px 32px rgba(0, 0, 0, 0.4);
    --shadow-glow: 0 0 60px rgba(255, 140, 0, 0.08);
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-smooth: 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-bounce: 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
.cursive-text {
    font-family: 'Caveat', cursive;
    font-size: clamp(2rem, 5vw, 4rem);
    font-weight: 700;
    letter-spacing: 2px;
    position: relative;
    z-index: 2;
}

.orange-text {
    color: var(--accent);
    text-shadow: 0 2px 20px rgba(255, 140, 0, 0.4);
}

.block-title {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(4rem, 12vw, 10rem);
    line-height: 0.9;
    font-weight: 700;
    text-transform: uppercase;
    color: #ffffff;
    letter-spacing: 8px;
    z-index: 2;
    position: relative;
    text-shadow: 
        2px 2px 0 rgba(200,200,200,0.3),
        4px 4px 0 rgba(150,150,150,0.2),
        0 0 60px rgba(255, 140, 0, 0.15);
}

.bottom-cursive {
    font-size: clamp(2.5rem, 6vw, 5rem);
    margin-top: -15px;
}

/* ============================================
   HERO SECTION — Fullscreen Carousel
   ============================================ */
.poster-hero {
    position: relative;
    width: 100vw;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    background-color: #080808;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.8s ease-in-out;
    will-change: opacity;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(180deg, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 40%, rgba(0,0,0,0.5) 70%, rgba(11,11,11,1) 100%),
        radial-gradient(ellipse at center, transparent 0%, rgba(0,0,0,0.4) 100%);
    z-index: 1;
}

/* Logo */
.poster-logo {
    position: absolute;
    top: 24px;
    left: 24px;
    display: flex;
    align-items: center;
    z-index: 10;
}

.extracted-logo {
    width: clamp(160px, 25vw, 300px);
    height: auto;
    object-fit: contain;
    filter: drop-shadow(0 8px 24px rgba(0,0,0,0.6));
    animation: floatLogo 6s ease-in-out infinite;
    transform-origin: center;
}

@keyframes floatLogo {
    0%, 100% { transform: translateY(0); filter: drop-shadow(0 8px 24px rgba(0,0,0,0.6)); }
    50% { transform: translateY(-6px); filter: drop-shadow(0 16px 32px rgba(255, 140, 0, 0.3)); }
}

/* Title Area */
.title-container {
    text-align: center;
    margin-top: 12vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 5;
    padding: 0 1rem;
}

/* Badge */
.promo-badge-container {
    position: absolute;
    top: 15%;
    right: 8%;
    width: 130px;
    height: 130px;
    z-index: 15;
}

.promo-badge {
    position: absolute;
    right: 0;
    top: 20px;
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--accent), var(--gold));
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 3px solid rgba(0,0,0,0.2);
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.3);
    transform: rotate(12deg);
    animation: pulseBadge 3s ease-in-out infinite;
}

@keyframes pulseBadge {
    0%, 100% { transform: rotate(12deg) scale(1); }
    50% { transform: rotate(12deg) scale(1.08); }
}

.percent {
    color: #1a1a1a;
    font-size: 1rem;
    font-weight: 700;
    font-family: 'Oswald', sans-serif;
    text-align: center;
    line-height: 1.2;
}

.hand-arrow {
    position: absolute;
    left: -50px;
    top: 10px;
    width: 80px;
    height: 70px;
    opacity: 0.7;
}

/* Wooden Table Footer */
.wooden-table {
    position: relative;
    width: 100%;
    padding: 2rem 0;
    background: linear-gradient(180deg, rgba(11,11,11,0) 0%, #0b0b0b 20%);
    z-index: 20;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: auto;
}

.hero-footer-content {
    width: 92%;
    max-width: 1200px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}

.footer-left, .footer-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.red-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    border-radius: var(--radius-sm);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
}

.footer-text {
    display: flex;
    flex-direction: column;
}

.footer-text span {
    font-size: 0.7rem;
    color: var(--text-muted);
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.website-link, .footer-text strong {
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    color: white;
    text-decoration: none;
    letter-spacing: 1px;
    transition: color var(--transition-fast);
}

.website-link:hover {
    color: var(--accent);
}

.footer-center {
    text-align: center;
}

.btn-order-now {
    background: linear-gradient(135deg, var(--primary), #e83c1e);
    color: white;
    font-family: 'Oswald', sans-serif;
    font-size: 1.3rem;
    padding: 14px 36px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: 2px;
    box-shadow: 0 8px 24px rgba(212, 46, 18, 0.35);
    transition: all var(--transition-smooth);
    border: 2px solid transparent;
    display: inline-block;
}

.btn-order-now:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 12px 32px rgba(212, 46, 18, 0.5);
    border-color: rgba(255,255,255,0.2);
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-header .section-label {
    font-family: 'Caveat', cursive;
    font-size: 1.3rem;
    color: var(--accent);
    display: block;
    margin-bottom: 0.5rem;
    letter-spacing: 2px;
}

.section-header h2 {
    font-family: 'Oswald', sans-serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--text-main);
    position: relative;
    display: inline-block;
}

.section-header h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    border-radius: 2px;
}

/* ============================================
   MENU SECTION — Complete Redesign
   ============================================ */
.menu-section {
    padding: 5rem 5% 3rem;
    background-color: var(--bg-dark);
    position: relative;
}

.menu-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(ellipse at 20% 50%, rgba(255, 140, 0, 0.03) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(212, 46, 18, 0.02) 0%, transparent 60%);
    pointer-events: none;
}

.menu-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.6rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.filter-btn {
    background: transparent;
    color: var(--text-muted);
    border: 1px solid var(--glass-border);
    padding: 0.65rem 1.5rem;
    border-radius: 30px;
    cursor: pointer;
    font-family: 'Outfit', sans-serif;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all var(--transition-smooth);
    letter-spacing: 0.5px;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, var(--accent), var(--gold));
    color: #1a1a1a;
    border-color: transparent;
    font-weight: 600;
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.25);
}

/* Category Divider */
.category-divider {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 2rem 0 1rem;
}

.category-divider .cat-icon {
    font-size: 2rem;
    width: 56px;
    height: 56px;
    background: rgba(255, 140, 0, 0.1);
    border: 1px solid rgba(255, 140, 0, 0.2);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.category-divider .cat-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-main);
}

.category-divider .cat-info p {
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-top: 2px;
}

.category-divider .cat-line {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--glass-border), transparent);
}

/* Menu Grid */
.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Menu Item Card — Premium Redesign */
@keyframes fadeInCard {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

.menu-item {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all var(--transition-smooth);
    cursor: pointer;
    position: relative;
    opacity: 0;
    animation: fadeInCard 0.5s ease forwards;
    display: flex;
    flex-direction: column;
}

.menu-item:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border-hover);
    box-shadow: var(--shadow-card), var(--shadow-glow);
    background: var(--bg-card-hover);
}

.menu-item .item-img-wrapper {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(255, 140, 0, 0.06) 0%, rgba(0,0,0,0.3) 100%);
}

.item-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(0,0,0,0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--accent-light);
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    z-index: 2;
    border: 1px solid rgba(255, 140, 0, 0.15);
}

.item-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-item:hover .item-img {
    transform: scale(1.08);
}

.item-info {
    padding: 1.2rem 1.4rem 1.4rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.item-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 1px;
    margin-bottom: 0.4rem;
    color: var(--text-main);
    line-height: 1.3;
}

.item-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
    flex: 1;
    margin-bottom: 1rem;
}

.item-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 1rem;
    margin-top: auto;
}

.price {
    font-family: 'Oswald', sans-serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--accent);
}

.add-btn {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-smooth);
    box-shadow: 0 4px 12px rgba(212, 46, 18, 0.3);
}

.add-btn:hover {
    transform: rotate(90deg) scale(1.1);
    box-shadow: 0 6px 20px rgba(212, 46, 18, 0.5);
}

/* ============================================
   FEATURED / HERO CARDS (Pollos principales)
   ============================================ */
.menu-item.featured {
    grid-column: span 1;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.06) 0%, rgba(0,0,0,0.2) 100%);
    border-color: rgba(255, 140, 0, 0.15);
}

.menu-item.featured .item-img-wrapper {
    height: 260px;
}

.menu-item.featured .item-badge {
    background: linear-gradient(135deg, var(--accent), var(--gold));
    color: #1a1a1a;
    border: none;
    font-weight: 700;
}

/* ============================================
   MODAL
   ============================================ */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.85);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 2000;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--transition-smooth);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.modal.active {
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: #131313;
    width: 92%;
    max-width: 880px;
    border-radius: var(--radius-xl);
    position: relative;
    border: 1px solid var(--glass-border);
    transform: translateY(40px) scale(0.95);
    transition: all var(--transition-bounce);
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(0, 0, 0, 0.6);
}

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

.close-modal {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all var(--transition-fast);
    z-index: 10;
    backdrop-filter: blur(8px);
}

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

.modal-body {
    display: flex;
    flex-wrap: wrap;
}

.modal-img-container {
    flex: 1;
    min-width: 280px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    max-height: 400px;
    overflow: hidden;
}

.modal-img-container img {
    max-width: 100%;
    max-height: 350px;
    height: auto;
    object-fit: contain;
    border-radius: var(--radius-md);
    filter: drop-shadow(0 16px 32px rgba(0,0,0,0.5));
}

.modal-info {
    flex: 1;
    min-width: 280px;
    padding: 2.5rem;
    display: flex;
    flex-direction: column;
}

.modal-info h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: white;
    letter-spacing: 1px;
}

.modal-info p {
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.modal-options h4 {
    color: var(--accent);
    margin-bottom: 0.8rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.acompanamientos {
    list-style: none;
    margin-bottom: 1.5rem;
}

.acompanamientos li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-bottom: 0.4rem;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.acompanamientos i {
    color: var(--gold);
    font-size: 1rem;
}

.modal-price {
    font-family: 'Oswald', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), #e83c1e);
    color: white;
    padding: 1rem 1.5rem;
    font-size: 1.05rem;
    font-weight: 600;
    font-family: 'Outfit', sans-serif;
    border: none;
    border-radius: var(--radius-md);
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    transition: all var(--transition-smooth);
    box-shadow: 0 8px 24px rgba(212, 46, 18, 0.3);
    letter-spacing: 0.5px;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(212, 46, 18, 0.5);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.floating-whatsapp {
    position: fixed;
    bottom: 24px;
    right: 24px;
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 12px 20px;
    border-radius: 28px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
    z-index: 1000;
    transition: all var(--transition-smooth);
    border: 2px solid transparent;
}

.floating-whatsapp:hover {
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 32px rgba(37, 211, 102, 0.4);
    border-color: rgba(255, 255, 255, 0.2);
}

.floating-whatsapp i {
    font-size: 1.6rem;
}

.floating-whatsapp .cart-count {
    position: absolute;
    top: -6px;
    right: -6px;
    background: var(--primary);
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    width: 22px;
    height: 22px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    border: 2px solid var(--bg-dark);
    box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

/* ============================================
   PAYMENT SECTION
   ============================================ */
.payment-section {
    padding: 5rem 5% 8rem;
    background: linear-gradient(180deg, var(--bg-dark) 0%, #050505 100%);
    position: relative;
}

.payment-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--glass-border), transparent);
}

.payment-container {
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
}

.payment-container h3 {
    font-family: 'Oswald', sans-serif;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-main);
    font-weight: 500;
    letter-spacing: 2px;
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
}

.payment-card {
    background: var(--bg-card);
    border: 1px solid var(--glass-border);
    padding: 1.2rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 14px;
    text-align: left;
    transition: all var(--transition-smooth);
}

.payment-card:hover {
    transform: translateY(-4px);
    border-color: var(--glass-border-hover);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
}

.payment-card i {
    font-size: 2rem;
    color: var(--accent);
    flex-shrink: 0;
}

.pay-info {
    display: flex;
    flex-direction: column;
}

.pay-info strong {
    font-size: 1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 600;
    color: white;
}

.pay-info span {
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 900px) {
    .hero-footer-content {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem;
    }
    .footer-left, .footer-right {
        justify-content: center;
    }
    .promo-badge-container {
        top: 10%;
        right: 3%;
        transform: scale(0.8);
    }
    .title-container {
        margin-top: 16vh;
    }
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
        gap: 1.2rem;
    }
    .menu-item.featured .item-img-wrapper {
        height: 220px;
    }
}

@media (max-width: 600px) {
    .extracted-logo {
        width: 160px;
    }
    .poster-logo {
        top: 12px;
        left: 12px;
    }
    .title-container {
        margin-top: 22vh;
    }
    .bottom-cursive {
        margin-top: -10px;
    }
    .promo-badge-container {
        top: 6%;
        right: -10px;
        transform: scale(0.55);
    }
    .filter-btn {
        padding: 0.5rem 1rem;
        font-size: 0.82rem;
    }
    .menu-section {
        padding: 3rem 1rem 2rem;
    }
    .menu-controls {
        gap: 0.4rem;
        margin-bottom: 2rem;
    }
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    .menu-item .item-img-wrapper {
        height: 200px;
    }
    .modal-info {
        padding: 1.5rem;
    }
    .modal-info h3 {
        font-size: 1.5rem;
    }
    .modal-price {
        font-size: 2rem;
    }
    .floating-whatsapp {
        bottom: 12px;
        right: 12px;
        padding: 10px 14px;
        font-size: 0.9rem;
    }
    .floating-whatsapp span {
        display: none;
    }
    .payment-section {
        padding: 3rem 1rem 6rem;
    }
    .btn-order-now {
        font-size: 1.1rem;
        padding: 12px 24px;
    }
    .footer-left, .footer-right {
        flex-direction: column;
        gap: 4px;
    }
    .category-divider .cat-icon {
        width: 44px;
        height: 44px;
        font-size: 1.5rem;
    }
    .category-divider .cat-info h3 {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
}

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

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

::-webkit-scrollbar-thumb {
    background: rgba(255, 140, 0, 0.3);
    border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
    background: rgba(255, 140, 0, 0.5);
}

/* ============================================
   LOADING / SELECTION STATE & SECURITY
   ============================================ */
::selection {
    background: transparent;
    color: inherit;
}

* {
    -webkit-user-select: none;  /* Safari */
    -moz-user-select: none;     /* Firefox */
    -ms-user-select: none;      /* IE/Edge */
    user-select: none;          /* Standard */
    -webkit-user-drag: none;    /* Prevent image/element dragging */
}

img {
    pointer-events: none;       /* Disable right-click / drag on images */
    -webkit-user-drag: none;
}

/* Styles for Expiration Notice Page */
#expiration-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #0b0b0b;
    z-index: 99999;
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ffffff;
    font-family: 'Outfit', sans-serif;
    padding: 2rem;
}

#expiration-overlay .exp-icon {
    font-size: 5rem;
    color: #d42e12;
    margin-bottom: 1.5rem;
    text-shadow: 0 0 30px rgba(212, 46, 18, 0.4);
}

#expiration-overlay h1 {
    font-family: 'Oswald', sans-serif;
    font-size: 3rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 1rem;
}

#expiration-overlay p {
    font-size: 1.2rem;
    color: #8a8580;
    max-width: 600px;
    line-height: 1.6;
}

