/* ============================================
   🌟 MENU CARDS - ULTRA LUXE NEON EDITION 🌟
   Glassmorphism + Holographic + 3D Effects
   ============================================ */

/* Category Filter Continuation */
.menu-wrapper:has(#cat-5:checked) .pcard[data-category="5"],
.menu-wrapper:has(#cat-6:checked) .pcard[data-category="6"],
.menu-wrapper:has(#cat-7:checked) .pcard[data-category="7"],
.menu-wrapper:has(#cat-8:checked) .pcard[data-category="8"],
.menu-wrapper:has(#cat-9:checked) .pcard[data-category="9"],
.menu-wrapper:has(#cat-10:checked) .pcard[data-category="10"] {
    display: block;
    animation: pcardIn 0.6s var(--ease-out-expo) forwards;
}

@keyframes pcardIn {
    0% { 
        opacity: 0; 
        transform: translateY(60px) rotateX(-15deg) scale(0.9);
        filter: blur(10px);
    }
    100% { 
        opacity: 1; 
        transform: translateY(0) rotateX(0) scale(1);
        filter: blur(0);
    }
}

/* Card Inner - GOLDEN FRAME ONLY */
.pcard-inner {
    position: relative;
    background: linear-gradient(165deg, 
        rgba(30, 25, 22, 0.98) 0%, 
        rgba(15, 12, 10, 0.99) 50%,
        rgba(20, 16, 14, 0.98) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    overflow: hidden;
    border: 3px solid transparent;
    background-clip: padding-box;
    transition: all 0.5s ease;
    transform-style: preserve-3d;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.4);
}

/* ✨ GOLDEN GLOWING BORDER ONLY ✨ */
.pcard-inner::before {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 27px;
    background: linear-gradient(135deg, 
        #8B6914 0%,
        #D4AF37 20%,
        #FFD700 40%,
        #FFEC8B 50%,
        #FFD700 60%,
        #D4AF37 80%,
        #8B6914 100%);
    background-size: 200% 200%;
    z-index: -1;
    animation: goldenBorderGlow 3s ease-in-out infinite;
}

@keyframes goldenBorderGlow {
    0%, 100% { 
        background-position: 0% 50%;
    }
    50% { 
        background-position: 100% 50%;
    }
}

.pcard:hover .pcard-inner::before {
    filter: drop-shadow(0 0 15px rgba(255, 215, 0, 0.7));
}

/* Remove inner glow - border only */
.pcard-inner::after {
    display: none;
}

/* 🔥 HOVER STATE - BORDER GLOW ONLY 🔥 */
.pcard:hover .pcard-inner {
    transform: translateY(-10px) scale(1.01);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.5);
}

/* 📸 IMAGE CONTAINER */
.pcard-img {
    height: 280px;
    overflow: hidden;
    position: relative;
    border-radius: 21px 21px 0 0;
}

/* Image overlay disabled */
.pcard-img::before {
    display: none;
}

/* Image Styling */
.pcard-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.8s var(--ease-out-expo);
    filter: brightness(0.85) saturate(1.15) contrast(1.05);
}

.pcard:hover .pcard-img img {
    transform: scale(1.15) rotate(1deg);
    filter: brightness(1.1) saturate(1.3) contrast(1.1);
}

/* Emoji Placeholder - Animated */
.pcard-emoji {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 5.5rem;
    background: 
        radial-gradient(ellipse at 30% 30%, rgba(212, 175, 55, 0.1), transparent 50%),
        linear-gradient(160deg, #1e1816 0%, #0c0a09 100%);
    transition: all 0.6s var(--ease-out-back);
    filter: drop-shadow(0 10px 30px rgba(0, 0, 0, 0.5));
}

.pcard:hover .pcard-emoji {
    transform: scale(1.2) rotate(10deg);
    filter: drop-shadow(0 15px 40px rgba(212, 175, 55, 0.3));
}

/* Cinematic Gradient Overlay */
.pcard-img::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 120px;
    background: linear-gradient(
        to top, 
        rgba(18, 14, 12, 1) 0%,
        rgba(18, 14, 12, 0.95) 30%,
        rgba(18, 14, 12, 0.6) 60%,
        transparent 100%
    );
    pointer-events: none;
    z-index: 2;
}

/* 📝 INFO SECTION - ELEGANT TYPOGRAPHY */
.pcard-info {
    padding: 1.8rem 1.8rem 2rem;
    position: relative;
    z-index: 4;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.2) 100%);
}

/* Product Name - Luxurious */
.pcard-info h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 0.8rem;
    transition: all 0.5s var(--ease-out-expo);
    text-shadow: 0 2px 15px rgba(0, 0, 0, 0.4);
    letter-spacing: 0.3px;
    line-height: 1.3;
}

.pcard:hover .pcard-info h3 {
    color: var(--gold-glow);
    text-shadow: 
        0 0 20px rgba(212, 175, 55, 0.5),
        0 0 40px rgba(212, 175, 55, 0.3);
    transform: translateX(8px);
    letter-spacing: 0.5px;
}

/* Description */
.pcard-info p {
    font-size: 0.92rem;
    color: var(--text-muted);
    line-height: 1.65;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: all 0.4s ease;
}

.pcard:hover .pcard-info p {
    color: rgba(255, 255, 255, 0.8);
    transform: translateX(5px);
}

/* 💰 PRICE BADGE - SIMPLE GOLD */
.pcard-price {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: linear-gradient(135deg, #D4AF37, #FFD700);
    color: #000;
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
    z-index: 10;
}

.pcard:hover .pcard-price {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

/* Shine disabled - border only */
.pcard-shine {
    display: none;
}

/* Sparkles disabled */
.pcard::before,
.pcard::after {
    display: none;
}


/* ============================================
   INSTAGRAM SECTION - NEON PORTAL
   ============================================ */
.social-section {
    padding: 8rem 0;
    position: relative;
    overflow: hidden;
}

.social-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(225, 48, 108, 0.08), transparent 70%);
    pointer-events: none;
}

.neon-frame {
    max-width: 950px;
    margin: 0 auto;
    border-radius: 36px;
    padding: 4px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    background-size: 300% 300%;
    animation: instagramGradient 5s ease infinite;
    box-shadow: 
        0 20px 80px rgba(220, 39, 67, 0.2),
        0 0 100px rgba(220, 39, 67, 0.1);
    transition: all 0.5s var(--ease-out-expo);
}

@keyframes instagramGradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.neon-frame:hover {
    transform: scale(1.02) translateY(-10px);
    box-shadow: 
        0 30px 100px rgba(220, 39, 67, 0.3),
        0 0 150px rgba(220, 39, 67, 0.15);
}

.neon-content {
    background: var(--bg-deep);
    border-radius: 32px;
    padding: 5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.neon-content::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 50% 50%, rgba(225, 48, 108, 0.1), transparent 50%);
    animation: neonPulse 4s ease-in-out infinite;
}

@keyframes neonPulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}

.social-icon {
    font-size: 5rem;
    margin-bottom: 2rem;
    display: inline-block;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: 
        instagramGradient 3s ease infinite,
        iconFloat 4s ease-in-out infinite;
    filter: drop-shadow(0 0 40px rgba(220, 39, 67, 0.5));
    position: relative;
    z-index: 2;
}

@keyframes iconFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    25% { transform: translateY(-15px) rotate(5deg); }
    75% { transform: translateY(-10px) rotate(-5deg); }
}

.neon-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 30px rgba(225, 48, 108, 0.4);
    position: relative;
    z-index: 2;
}

.neon-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.2rem;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
}

.neon-content p strong {
    color: var(--gold-glow);
    font-weight: 700;
}

.neon-btn {
    display: inline-block;
    padding: 1.2rem 3.5rem;
    border-radius: 100px;
    font-weight: 800;
    font-size: 1.1rem;
    color: #fff;
    text-decoration: none;
    letter-spacing: 1px;
    background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888);
    background-size: 300% 300%;
    animation: instagramGradient 3s ease infinite;
    box-shadow: 0 10px 40px rgba(220, 39, 67, 0.4);
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.neon-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(45deg, transparent, rgba(255,255,255,0.3), transparent);
    transform: translateX(-100%);
    transition: transform 0.6s;
}

.neon-btn:hover::before {
    transform: translateX(100%);
}

.neon-btn:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 20px 60px rgba(220, 39, 67, 0.5);
}


/* ============================================
   FEEDBACK SECTION - GLASS FORM
   ============================================ */
.feedback-section {
    padding: 6rem 0;
    position: relative;
}

.glass-form-wrapper {
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    padding: 4rem;
    border-radius: 36px;
    max-width: 750px;
    margin: 0 auto;
    text-align: center;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.glass-form-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--gold-primary), var(--accent-warm), var(--gold-primary));
    background-size: 200% auto;
    animation: gradientFlow 3s linear infinite;
}

.glass-form-wrapper h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 2.5rem;
}

/* Radio Group */
.radio-group {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.radio-group label {
    cursor: pointer;
}

.radio-group input {
    display: none;
}

.radio-group span {
    display: block;
    padding: 0.9rem 2rem;
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    color: var(--text-muted);
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.4s var(--ease-out-expo);
    background: rgba(0, 0, 0, 0.2);
}

.radio-group span:hover {
    border-color: rgba(212, 175, 55, 0.3);
    color: #fff;
}

.radio-group input:checked + span {
    background: var(--gold-primary);
    color: #000;
    font-weight: 700;
    border-color: var(--gold-primary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
    transform: scale(1.05);
}

/* Form Inputs */
.glass-input {
    width: 100%;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid var(--glass-border);
    padding: 1.2rem 1.5rem;
    border-radius: 16px;
    color: #fff;
    margin-bottom: 1.5rem;
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.4s var(--ease-out-expo);
}

.glass-input::placeholder {
    color: var(--text-dim);
}

.glass-input:focus {
    outline: none;
    border-color: var(--gold-primary);
    background: rgba(0, 0, 0, 0.5);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.1);
}

textarea.glass-input {
    resize: vertical;
    min-height: 120px;
}

/* Submit Button */
.gold-btn {
    width: 100%;
    padding: 1.3rem;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-glow));
    border: none;
    border-radius: 16px;
    color: #000;
    font-weight: 800;
    font-size: 1.1rem;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.gold-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #fff, transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.gold-btn:hover::before {
    opacity: 0.3;
}

.gold-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.4);
}

.gold-btn:active {
    transform: translateY(-2px);
}

/* ============================================
   BOTTOM NAVIGATION - APP FEEL
   ============================================ */
.bottom-nav {
    position: fixed;
    bottom: 25px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--glass-bg);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border: 1px solid var(--glass-border);
    border-radius: 100px;
    padding: 0.8rem 2.5rem;
    display: flex;
    gap: 2rem;
    box-shadow: var(--shadow-lg);
    z-index: 1000;
    transition: all 0.4s var(--ease-out-expo);
}

.bottom-nav:hover {
    box-shadow: var(--shadow-lg), var(--shadow-glow);
}

.nav-item {
    font-size: 1.5rem;
    color: var(--text-dim);
    padding: 0.6rem;
    transition: all 0.4s var(--ease-out-back);
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.nav-item::before {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%) scale(0);
    width: 6px;
    height: 6px;
    background: var(--gold-primary);
    border-radius: 50%;
    transition: transform 0.4s var(--ease-out-back);
    box-shadow: 0 0 15px var(--gold-primary);
}

.nav-item:hover,
.nav-item.active {
    color: var(--gold-primary);
    transform: translateY(-8px);
}

.nav-item.active::before,
.nav-item:hover::before {
    transform: translateX(-50%) scale(1);
}

/* ============================================
   FOOTER
   ============================================ */
footer {
    text-align: center;
    color: var(--text-dim);
    padding: 3rem 0 10rem;
    font-size: 0.9rem;
    letter-spacing: 1px;
}

footer p {
    opacity: 0.6;
    transition: opacity 0.3s;
}

footer:hover p {
    opacity: 1;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */
@media (max-width: 1024px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .campaigns-grid {
        gap: 1.5rem;
    }
    
    .holo-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .menu-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
        gap: 1.5rem;
    }
    
    .pcard-img {
        height: 200px;
    }
}

@media (max-width: 768px) {
    html {
        font-size: 15px;
    }
    
    .hero {
        min-height: 90vh;
        padding: 1.5rem;
    }
    
    .logo-container {
        width: 160px;
        height: 160px;
        margin-bottom: 2rem;
    }
    
    .logo-circle {
        width: 140px;
        height: 140px;
    }
    
    .logo-glow {
        width: 170px;
        height: 170px;
    }
    
    .hero-badges {
        gap: 1rem;
        margin-bottom: 3rem;
    }
    
    .badge-glass {
        padding: 0.8rem 1.5rem;
        font-size: 0.85rem;
    }
    
    .wifi-content {
        padding: 0.8rem 1.5rem;
        gap: 1rem;
        flex-wrap: wrap;
        justify-content: center;
        border-radius: 20px;
    }
    
    .wifi-pass {
        font-size: 1rem;
    }
    
    /* Campaigns */
    .campaigns-section {
        padding: 5rem 0;
    }
    
    .golden-ticket {
        flex-direction: column;
    }
    
    .ticket-left {
        border-right: none;
        border-bottom: 2px dashed rgba(212, 175, 55, 0.2);
        padding: 2rem;
    }
    
    .ticket-hole {
        display: none;
    }
    
    .ticket-right {
        width: 100%;
        padding: 2rem;
        background: rgba(212, 175, 55, 0.03);
    }
    
    /* Professions */
    .holo-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .holo-card {
        padding: 2.5rem 1.5rem;
    }
    
    /* Menu */
    .menu-wrapper {
        padding: 3rem 0 8rem;
    }
    
    .pill-scroller {
        padding: 0.5rem;
        gap: 0.5rem;
        max-width: 100%;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }
    
    .cat-pill {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        padding: 0 0.8rem;
    }
    
    .pcard-img {
        height: 180px;
    }
    
    .pcard-inner {
        border-radius: 20px;
        border-width: 2px;
    }
    
    .pcard-img {
        border-radius: 18px 18px 0 0;
    }
    
    .pcard-info {
        padding: 1rem;
    }
    
    .pcard-info h3 {
        font-size: 1rem;
        margin-bottom: 0.4rem;
    }
    
    .pcard-info p {
        font-size: 0.75rem;
        -webkit-line-clamp: 1;
        line-height: 1.4;
    }
    
    .pcard-price {
        font-size: 0.9rem;
        padding: 0.5rem 0.9rem;
        top: 0.8rem;
        right: 0.8rem;
    }
    
    .pcard:hover .pcard-inner {
        transform: translateY(-10px) scale(1.02);
    }
    
    .pcard::before,
    .pcard::after {
        font-size: 0.8rem;
    }
    
    /* Instagram */
    .social-section {
        padding: 5rem 0;
    }
    
    .neon-content {
        padding: 3rem 1.5rem;
    }
    
    .social-icon {
        font-size: 4rem;
    }
    
    .neon-btn {
        padding: 1rem 2.5rem;
        font-size: 1rem;
    }
    
    /* Feedback */
    .glass-form-wrapper {
        padding: 2.5rem 1.5rem;
        border-radius: 28px;
    }
    
    .glass-form-wrapper h2 {
        font-size: 2rem;
    }
    
    .radio-group {
        gap: 0.8rem;
    }
    
    .radio-group span {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Bottom Nav */
    .bottom-nav {
        padding: 0.7rem 2rem;
        gap: 1.5rem;
        bottom: 20px;
    }
    
    .nav-item {
        font-size: 1.3rem;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 14px;
    }
    
    .hero {
        min-height: 85vh;
    }
    
    .logo-container {
        width: 130px;
        height: 130px;
    }
    
    .logo-circle {
        width: 110px;
        height: 110px;
    }
    
    .logo-glow {
        width: 140px;
        height: 140px;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 0 1rem;
    }
    
    .pcard-img {
        height: 250px;
    }
    
    .pcard-inner {
        border-radius: 22px;
        border-width: 2px;
    }
    
    .pcard-info {
        padding: 1.4rem;
    }
    
    .pcard-info h3 {
        font-size: 1.3rem;
    }
    
    .pcard-info p {
        font-size: 0.9rem;
        -webkit-line-clamp: 2;
    }
    
    .pcard-price {
        font-size: 1.1rem;
        padding: 0.7rem 1.2rem;
    }
    
    .bottom-nav {
        padding: 0.6rem 1.5rem;
        gap: 1.2rem;
    }
}





/* ============================================
   📱 MOBILE OPTIMIZATION - HERO UNTOUCHED
   ============================================ */
@media (max-width: 768px) {
    /* BACKGROUND EFFECTS - Hide */
    .ambient-light {
        display: none;
    }
    
    .floating-particles,
    .particle {
        display: none;
    }
    
    body::before,
    body::after {
        display: none;
    }
    
    /* MENU CARDS - Disable animations */
    .pcard-inner::before {
        animation: none;
    }
    
    .pcard-inner {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        background: #1a1614;
    }
    
    /* HOLO CARDS - Disable effects */
    .holo-shine {
        display: none;
    }
    
    .holo-card {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    /* INSTAGRAM SECTION */
    .neon-frame {
        animation: none;
    }
    
    .neon-content::before {
        animation: none;
    }
    
    .social-icon {
        animation: none;
    }
    
    /* TICKETS */
    .ticket-right::before {
        animation: none;
        display: none;
    }
    
    .ticket-tag {
        animation: none;
    }
    
    .discount-val {
        animation: none;
    }
    
    /* CATEGORY PILLS - Keep ALL animations on mobile */
    .pill-scroller::before {
        display: block !important;
        animation: pillScrollerGlow 4s linear infinite !important;
        opacity: 0.5 !important;
    }
    
    .pill-scroller {
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        background: linear-gradient(135deg, rgba(20, 18, 16, 0.9) 0%, rgba(15, 12, 10, 0.95) 100%) !important;
        border: 1px solid rgba(212, 175, 55, 0.15) !important;
    }
    
    .cat-pill.active-pill::before {
        animation: activePillGlow 2s ease-in-out infinite !important;
        transform: scale(1) !important;
    }
    
    .cat-pill::after {
        display: block !important;
    }
    
    /* WIFI BAR */
    .wifi-content::before {
        display: none;
    }
    
    .wifi-content {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    /* FORM */
    .glass-form-wrapper {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    .glass-form-wrapper::before {
        animation: none;
    }
    
    /* BOTTOM NAV */
    .bottom-nav {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }
    
    /* SECTION HEADERS */
    .section-header::before {
        animation: none;
    }
    
    .section-header h2 {
        animation: none;
    }
}




/* ============================================
   FIX HORIZONTAL SCROLL - AGGRESSIVE
   ============================================ */
html {
    overflow-x: hidden !important;
    width: 100%;
}

body {
    overflow-x: hidden !important;
    width: 100%;
    max-width: 100%;
    position: relative;
}

/* Hide all overflowing pseudo elements */
*::before,
*::after {
    max-width: 100vw;
}

@media (max-width: 768px) {
    html, body {
        overflow-x: hidden !important;
        width: 100% !important;
    }
    
    /* Main wrapper */
    body > * {
        max-width: 100vw;
        overflow-x: hidden;
    }
    
    /* Hero fixes */
    .hero {
        overflow: hidden;
    }
    
    .hero::before {
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
    }
    
    /* Section fixes */
    .social-section,
    .campaigns-section,
    .profession-section,
    .feedback-section,
    .menu-wrapper {
        overflow: hidden;
        width: 100%;
    }
    
    .social-section::before {
        display: none;
    }
    
    /* Container */
    .container {
        max-width: 100%;
        padding-left: 1rem;
        padding-right: 1rem;
        overflow: hidden;
    }
    
    /* Neon frame */
    .neon-frame {
        margin-left: 1rem;
        margin-right: 1rem;
        max-width: calc(100% - 2rem);
    }
    
    .neon-content::before {
        display: none;
    }
    
    /* Campaigns */
    .campaigns-grid {
        padding: 0;
    }
    
    .golden-ticket {
        max-width: 100%;
    }
    
    .golden-ticket::before {
        display: none;
    }
    
    /* Holo cards */
    .holo-card::before,
    .holo-card::after {
        display: none;
    }
    
    /* Wifi */
    .wifi-dock {
        padding: 0 1rem;
    }
    
    .wifi-content {
        max-width: 100%;
        flex-wrap: wrap;
    }
    
    /* Footer */
    .premium-footer {
        overflow: hidden;
        width: 100%;
    }
    
    .footer-glow {
        max-width: 100%;
    }
}


/* ============================================
   PREMIUM FOOTER
   ============================================ */
.premium-footer {
    position: relative;
    padding: 4rem 0 12rem;
    background: linear-gradient(180deg, transparent 0%, rgba(212, 175, 55, 0.03) 50%, transparent 100%);
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold-primary), var(--gold-glow), var(--gold-primary), transparent);
    animation: footerGlowPulse 3s ease-in-out infinite;
}

@keyframes footerGlowPulse {
    0%, 100% { opacity: 0.5; width: 200px; }
    50% { opacity: 1; width: 400px; }
}

.footer-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.footer-logo {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 2px solid rgba(212, 175, 55, 0.3);
    animation: logoSpin 20s linear infinite;
}

@keyframes logoSpin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-glow));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-instagram {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.1), rgba(188, 24, 136, 0.1));
    border: 1px solid rgba(225, 48, 108, 0.3);
    border-radius: 50px;
    text-decoration: none;
    color: #fff;
    font-weight: 600;
    transition: all 0.4s ease;
}

.footer-instagram i {
    font-size: 1.4rem;
    background: linear-gradient(45deg, #f09433, #dc2743, #bc1888);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.footer-instagram:hover {
    background: linear-gradient(135deg, rgba(225, 48, 108, 0.2), rgba(188, 24, 136, 0.2));
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(225, 48, 108, 0.2);
}

.footer-address {
    text-align: center;
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
}

.footer-address i {
    color: var(--gold-primary);
}

.footer-divider {
    width: 100px;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
    margin: 0 auto 2rem;
}

.footer-bottom {
    text-align: center;
}

.footer-copyright {
    color: var(--text-dim);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.footer-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.85rem;
}

.credit-text {
    color: var(--text-dim);
}

.credit-name {
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold-primary), var(--gold-glow), var(--gold-primary));
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: creditShine 3s ease-in-out infinite;
}

@keyframes creditShine {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 200% center; }
}

.credit-icon {
    font-size: 1rem;
    animation: coffeeFloat 2s ease-in-out infinite;
}

@keyframes coffeeFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-5px) rotate(10deg); }
}

/* Mobile Footer */
@media (max-width: 768px) {
    .premium-footer {
        padding: 3rem 1rem 10rem;
    }
    
    .footer-top {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .footer-brand-name {
        font-size: 1.3rem;
    }
    
    .footer-logo {
        width: 40px;
        height: 40px;
    }
    
    .footer-instagram {
        padding: 0.7rem 1.2rem;
        font-size: 0.9rem;
    }
    
    .footer-address {
        font-size: 0.9rem;
    }
    
    .footer-copyright {
        font-size: 0.8rem;
    }
    
    .footer-credit {
        font-size: 0.8rem;
        flex-wrap: wrap;
    }
    
    /* Disable animations on mobile */
    .footer-glow,
    .footer-logo,
    .credit-name,
    .credit-icon {
        animation: none;
    }
}

/* ============================================
   MIKEL COFFEE - PORTRE MODU (DAHA YÜKSEK GÖRSEL)
   Dosya: menu-cards.css (En alta ekleyin)
   ============================================ */

/* 1. IZGARA - KARTLAR DAHA İNCE VE ZARİF OLSUN */
.menu-grid {
    /* Genişliği biraz daha daralttık (320px), böylece kartlar
       yayvan değil, dikey (uzun) duracak. */
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)) !important;
    gap: 2.5rem !important;
    padding: 0 1.5rem !important;
}

/* 2. GÖRSEL YÜKSEKLİĞİ - İŞTE BURAYI UZATTIK */
.pcard-img {
    /* Yüksekliği 380px yaptık. Bu sayede bardağın/ürünün 
       tamamı görünür, fotoğraf tam sığar. */
    height: 380px !important;
}

/* 3. İÇERİK DENGESİ */
.pcard-info {
    padding: 1.8rem !important;
}

/* 4. BAŞLIK */
.pcard-info h3 {
    font-size: 1.5rem !important;
    margin-bottom: 0.8rem !important;
}

/* 5. FİYAT ETİKETİ */
.pcard-price {
    font-size: 1.2rem !important;
    padding: 0.7rem 1.4rem !important;
    top: 1.2rem !important;
    right: 1.2rem !important;
}

/* ============================================
   MOBİL AYARLARI
   Telefonda da görselin daha uzun görünmesi için
   ============================================ */
@media (max-width: 768px) {
    .menu-grid {
        /* Mobilde yan yana 2'li düzen devam */
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 0.8rem !important;
        padding: 0 0.5rem !important;
    }

    .pcard-img {
        /* Mobilde görseli 250px'e çıkardık (Eskisi 180-200px idi).
           Telefonda ürünler çok daha net ve büyük görünecek. */
        height: 250px !important; 
    }

    .pcard-info {
        padding: 1rem !important;
    }

    .pcard-info h3 {
        font-size: 1.1rem !important;
        /* Başlık çok uzunsa 2 satırda kes, kart uzamasın */
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }

    .pcard-price {
        font-size: 0.9rem !important;
        padding: 0.5rem 0.8rem !important;
    }
}

/* ÇOKLU FİYAT GÖRÜNÜMÜ */
.pcard-price.multi-price-tag {
    padding: 0.5rem 1rem !important;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 80px; 
}

.price-stack {
    display: flex;
    flex-direction: column;
    gap: 2px;
    text-align: right;
}

.p-row {
    font-size: 0.85rem;
    font-weight: 700;
    color: #000;
    line-height: 1.2;
    display: flex;
    justify-content: space-between;
    gap: 8px;
}

.p-row span {
    font-weight: 900;
    opacity: 0.7;
    font-size: 0.75rem;
}
/* ============================================
   S-R-G ETİKET TASARIMI (MODERN KARE)
   ============================================ */

/* Ana Fiyat Kutusu Şekli */
.pcard-price {
    /* OVAL GÖRÜNÜMÜ KAPATIYORUZ */
    border-radius: 12px !important; /* 50px yerine 12px yaptık, daha köşeli oldu */
    
    /* Biraz daha kibar bir boyut */
    padding: 0.6rem 1rem !important;
    
    /* Konum */
    top: 1rem !important;
    right: 1rem !important;
    
    /* Hafif cam efekti ve gölge ayarı */
    box-shadow: 
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.4) !important;
        
    /* Yazı tipi */
    font-family: var(--font-body) !important; /* Daha okunur font */
    letter-spacing: 0.5px !important;
}

/* Tek fiyat yazıyorsa (Örn: 50₺) */
.pcard-price:not(.multi-price-tag) {
    font-weight: 800 !important;
    font-size: 1.2rem !important;
}

/* S-R-G Listesi İçin Özel Ayar */
.pcard-price.multi-price-tag {
    border-radius: 12px !important; /* Burayı da kareleştirdik */
    padding: 0.5rem 0.8rem !important;
    min-width: 70px; /* Genişliği sabitledik, hizalı dursun */
}

/* Satırların (S 90₺) Tasarımı */
.p-row {
    font-size: 0.9rem !important;
    font-weight: 700;
    color: #1a1614; /* Koyu kahve tonu, sarı üstünde net okunur */
    margin-bottom: 2px;
    border-bottom: 1px solid rgba(0,0,0,0.1); /* Satır arasına çok ince çizgi */
    padding-bottom: 2px;
}

/* Son satırın altındaki çizgiyi kaldır */
.p-row:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

/* Harflerin (S-R-G) Tasarımı */
.p-row span {
    color: #000;
    font-weight: 900;
    font-size: 0.75rem;
    opacity: 0.6;
    margin-right: 6px;
}
/* ============================================
   FİYAT ETİKETİ: MİNİMAL & ORTALI (SON HALİ)
   ============================================ */

/* 1. Kutunun Konumu ve Dış Görünümü */
.pcard-price {
    /* KONUM: Tam yukarı ve ortada */
    top: 12px !important;       /* Yukarıdan çok az boşluk */
    left: 50% !important;       /* Soldan %50 it */
    transform: translateX(-50%) !important; /* Tam merkeze hizala */
    right: auto !important;     /* Sağ ayarını iptal et */
    
    /* BOYUT: Daha kibar ve küçük */
    padding: 0.3rem 0.6rem !important;
    width: auto !important;
    min-width: auto !important;
    white-space: nowrap !important; /* Satır kırılmasın */
    
    /* GÖRÜNÜM: Modern Kare */
    border-radius: 8px !important;
    box-shadow: 0 4px 10px rgba(0,0,0,0.25) !important;
    z-index: 20 !important;
}

/* 2. İçerik Düzeni (Yan Yana) */
.price-stack {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    gap: 0 !important;
}

/* 3. Sütun Ayarları (Çizgiler ve Boşluklar) */
.p-row {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    
    /* Yan çizgi (daha ince ve silik) */
    border-right: 1px solid rgba(0,0,0,0.1) !important;
    border-bottom: none !important;
    
    /* İç boşlukları azalttık (Daha kompakt) */
    padding: 0 0.5rem !important; 
    margin: 0 !important;
    line-height: 1 !important;
}

/* Kenar çizgisi temizliği */
.p-row:last-child { border-right: none !important; padding-right: 0 !important; }
.p-row:first-child { padding-left: 0 !important; }

/* 4. Harfler (S-R-G) - Daha Küçük */
.p-row span {
    font-size: 0.55rem !important; /* İyice küçülttük */
    margin-bottom: 2px !important;
    opacity: 0.6 !important;
    font-weight: 800 !important;
    text-transform: uppercase;
}

/* 5. Fiyat Rakamları - Okunaklı ama Kaba Değil */
.p-row {
    font-size: 0.8rem !important; /* Rakam boyutu ideal */
    font-weight: 700 !important;
    color: #1a1614 !important;
}

/* Tek Fiyatlı Ürünler İçin (Örn: 50₺) */
.pcard-price:not(.multi-price-tag) {
    font-size: 1rem !important;
    padding: 0.4rem 0.8rem !important;
    font-weight: 700 !important;
}