/* 
   BLAKE RESORT - Sophisticated Party UI
   Deep Blues & Vibrant Red 
*/

:root {
    --bg-dark: #121214;
    --bg-gradient: radial-gradient(circle at top right, #1f1f24 0%, #0b0b0e 80%);
    --brand-primary: #d4af37;
    --brand-light: #f3d57d;
    --brand-neon: rgba(212, 175, 55, 0.4);
    --brand-blue: #0b0b0e;
    --brand-blue-neon: rgba(212, 175, 55, 0.1);
    
    --glass-bg: rgba(18, 18, 20, 0.8);
    --glass-border: rgba(212, 175, 55, 0.15);
    --glass-blur: blur(25px);
    
    --text-main: #FFFFFF;
    --text-muted: #a3a3a3;

    --font-head: 'Playfair Display', serif;
    --font-body: 'Montserrat', sans-serif;

    --transition: all 0.3s cubic-bezier(0.25, 1, 0.5, 1);
}

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

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

body {
    font-family: var(--font-body);
    font-weight: 400;
    background: var(--bg-dark);
    background-image: var(--bg-gradient);
    background-attachment: fixed;
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

/* Texture overlay for premium feel without looking cheap */
.texture-overlay {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.03;
    background-image: url('data:image/svg+xml;utf8,%3Csvg viewBox="0 0 200 200" xmlns="http://www.w3.org/2000/svg"%3E%3Cfilter id="noiseFilter"%3E%3CfeTurbulence type="fractalNoise" baseFrequency="0.65" numOctaves="3" stitchTiles="stitch"/%3E%3C/filter%3E%3Crect width="100%25" height="100%25" filter="url(%23noiseFilter)"/%3E%3C/svg%3E');
}

/* Party Lighting */
.ambient-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(140px);
    z-index: -1;
    opacity: 0.4;
    pointer-events: none;
}
.glow-1 { top: -10%; left: -10%; width: 600px; height: 600px; background: var(--brand-neon); animation: drift 15s infinite alternate; }
.glow-2 { top: 40%; right: -20%; width: 700px; height: 700px; background: rgba(0, 81, 255, 0.4); animation: float 10s infinite ease-in-out; }
.glow-3 { bottom: 0px; left: 10%; width: 500px; height: 500px; background: rgba(228, 27, 35, 0.2); animation: drift 12s infinite alternate-reverse; }

@keyframes float { 0%, 100% { transform: translate(0, 0); } 50% { transform: translate(-30px, 30px); } }
@keyframes drift { 0% { transform: translate(0, 0); } 100% { transform: translate(40px, -40px); } }

/* Typography - Elegant and Readable */
h1, h2, h3, h4 {
    font-family: var(--font-head);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

a { text-decoration: none; color: inherit; }
.italic { font-style: italic; font-weight: 600; }
.accent-text { color: var(--brand-primary); text-shadow: 0 0 15px var(--brand-neon); }
.text-center { text-align: center; }
.mt-2 { margin-top: 1rem; }
.section-header p { font-size: 1.1rem; color: var(--text-muted); font-weight: 400; margin-top: 15px;}

/* Search Wrap */
.filter-section {
    display: flex; flex-direction: column; align-items: center; gap: 20px;
    margin-bottom: 50px; padding-top: 40px; position: relative;
}
.search-wrap { position: relative; width: 100%; max-width: 600px; }
.search-wrap i { position: absolute; left: 24px; top: 50%; transform: translateY(-50%); color: var(--brand-primary); font-size: 1.1rem; filter: drop-shadow(0 0 10px var(--brand-neon)); }
.search-wrap input {
    width: 100%; padding: 16px 24px 16px 60px; background: var(--glass-bg); backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border); border-radius: 50px; color: white; font-family: var(--font-body);
    font-size: 1rem; font-weight: 400; transition: var(--transition); outline: none; box-shadow: 0 5px 20px rgba(0, 0, 0, 0.5);
}
.search-wrap input::focus { border-color: var(--brand-primary); box-shadow: 0 0 15px var(--brand-neon); }
.filter-pills { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; }
.filter-btn {
    background: transparent; border: 1px solid var(--glass-border); color: var(--text-main);
    padding: 8px 20px; border-radius: 50px; font-family: var(--font-body); font-size: 0.8rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px; cursor: pointer; transition: var(--transition);
}
.filter-btn:hover, .filter-btn.active { background: var(--brand-primary); color: #FFF; border-color: var(--brand-primary); box-shadow: 0 0 15px var(--brand-neon); }

/* Pricing Elements */
.price-tag {
    display: inline-block; margin-top: 15px; font-weight: 700; font-size: 1.1rem; color: var(--brand-light);
    text-shadow: 0 0 10px rgba(228, 27, 35, 0.4); padding: 5px 15px; border: 1px solid var(--brand-primary);
    border-radius: 8px; background: rgba(0, 0, 0, 0.6);
}

/* Buttons */
.btn-solid {
    display: inline-flex; align-items: center; justify-content: center; padding: 12px 32px;
    background: linear-gradient(135deg, var(--brand-primary), #bb0000); color: #FFF;
    font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
    font-size: 0.85rem; border-radius: 50px; border: none; cursor: pointer; transition: var(--transition);
    box-shadow: 0 6px 20px rgba(228, 27, 35, 0.3);
}
.btn-solid:hover { transform: translateY(-3px); box-shadow: 0 10px 25px rgba(228, 27, 35, 0.5); }
.btn-large { padding: 16px 42px; font-size: 0.95rem; }
.btn-outline {
    display: inline-block; padding: 10px 30px; background: transparent; color: var(--text-main);
    font-family: var(--font-body); font-weight: 700; text-transform: uppercase; letter-spacing: 1px;
    font-size: 0.85rem; border-radius: 50px; border: 2px solid var(--brand-primary); cursor: pointer; transition: var(--transition);
}
.btn-outline:hover { background: var(--brand-primary); color: #FFF; box-shadow: 0 0 20px var(--brand-neon); }
.btn-glass {
    display: inline-block; padding: 10px 24px; background: var(--glass-bg); backdrop-filter: var(--glass-blur);
    border: 1px solid var(--brand-primary); color: var(--text-main); font-family: var(--font-body); font-weight: 600;
    text-transform: uppercase; letter-spacing: 1px; font-size: 0.75rem; border-radius: 50px; transition: var(--transition);
}
.btn-glass:hover { background: var(--brand-primary); color: #FFF; box-shadow: 0 0 15px var(--brand-neon); }
.btn-pulse { animation: pulseBrand 2s infinite; }
@keyframes pulseBrand {
    0% { box-shadow: 0 0 0 0 rgba(228, 27, 35, 0.5); }
    70% { box-shadow: 0 0 0 15px rgba(228, 27, 35, 0); }
    100% { box-shadow: 0 0 0 0 rgba(228, 27, 35, 0); }
}

/* Layout */
.container { max-width: 1300px; margin: 0 auto; padding: 0 5%; }
.section { padding: 90px 0; position: relative; z-index: 10; }

/* Navbar Overhaul */
.navbar { position: fixed; top: 0; width: 100%; padding: 20px 0; z-index: 1000; transition: var(--transition); }
.navbar.scrolled { padding: 15px 0; background: rgba(5, 12, 30, 0.9); backdrop-filter: var(--glass-blur); border-bottom: 1px solid var(--glass-border); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6); }
.nav-container { max-width: 1400px; margin: 0 auto; padding: 0 5%; display: flex; justify-content: space-between; align-items: center; }

.brand-logo img, .logo-img { height: 45px; width: auto; transition: var(--transition); filter: brightness(1.2) contrast(1.1); }
.brand-logo:hover img, .logo-img:hover { transform: scale(1.05); filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.4)); }
.mobile-logo { height: 50px; margin-bottom: 40px; filter: brightness(1.2); }
.footer-logo { height: 50px; filter: brightness(1.1); }

.nav-menu { display: flex; gap: 32px; list-style: none; align-items: center;}
.nav-menu a { font-size: 0.85rem; font-weight: 600; text-transform: uppercase; letter-spacing: 1.5px; color: var(--text-main); transition: var(--transition); }
.nav-menu a:hover, .nav-menu a.active { color: var(--brand-light); text-shadow: 0 0 10px var(--brand-neon); }
.mobile-toggle { display: none; background: none; border: none; color: white; font-size: 1.6rem; cursor: pointer; }

/* Mobile Menu */
.mobile-menu {
    position: fixed; top: 0; right: -100%; width: 100%; height: 100vh; background: rgba(5, 12, 30, 0.98);
    backdrop-filter: var(--glass-blur); z-index: 2000; display: flex; flex-direction: column; justify-content: center;
    align-items: center; transition: right 0.5s cubic-bezier(0.77, 0, 0.175, 1);
}
.mobile-menu.open { right: 0; }
.mobile-close { position: absolute; top: 30px; right: 5%; background: none; border: none; color: white; font-size: 2rem; cursor: pointer; }
.mobile-menu a { font-size: 1.5rem; font-family: var(--font-head); font-weight: 700; text-transform: uppercase; margin: 15px 0; color: white; transition: var(--transition); }
.mobile-menu a:hover { color: var(--brand-primary); }
.mobile-menu img { height: 50px; margin-bottom: 40px; }

/* Hero Section */
.hero { position: relative; height: 100vh; min-height: 700px; display: flex; align-items: center; overflow: hidden; }
.hero-bg {
    position: absolute; inset: 0; width: 100%; height: 100%; background-size: cover;
    background-position: center; background-repeat: no-repeat; z-index: 1; filter: brightness(0.65);
}
.hero-vignette {
    position: absolute; inset: 0; width: 100%; height: 100%; z-index: 2;
    background: radial-gradient(circle at center, transparent 0%, rgba(2, 7, 18, 0.8) 100%),
                linear-gradient(to bottom, rgba(2, 7, 18, 0.5) 0%, transparent 40%, rgba(2, 7, 18, 1) 100%);
}
.hero-content { position: relative; z-index: 10; width: 100%; padding-top: 80px; }
.hero-text-wrap { max-width: 800px; }

.pre-heading { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.pre-heading .line { width: 50px; height: 2px; background: var(--brand-primary); box-shadow: 0 0 10px var(--brand-neon); }
.pre-heading .text { text-transform: uppercase; letter-spacing: 4px; font-size: 0.85rem; font-weight: 600; color: var(--brand-primary); }

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem); line-height: 1.1; margin-bottom: 25px; text-shadow: 0 10px 30px rgba(0,0,0,0.8);
}
.hero-subtitle {
    font-size: 1.15rem; color: var(--text-muted); max-width: 600px; margin-bottom: 35px; font-weight: 400;
}
.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }

/* Floating Status */
.floating-status {
    position: absolute; bottom: 40px; right: 5%; background: var(--glass-bg); backdrop-filter: var(--glass-blur);
    border: 1px solid var(--glass-border); padding: 15px 25px; border-radius: 12px; display: flex;
    align-items: center; gap: 15px; z-index: 50; animation: floatStatus 5s infinite ease-in-out;
    box-shadow: 0 10px 25px rgba(0,0,0,0.6);
}
@keyframes floatStatus { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.status-indicator { width: 10px; height: 10px; background: #FF3B30; border-radius: 50%; box-shadow: 0 0 10px #FF3B30; animation: pulseBrand 1.5s infinite; }
.status-info { display: flex; flex-direction: column; }
.status-info .label { text-transform: uppercase; font-size: 0.65rem; color: var(--text-muted); font-weight: 600; letter-spacing: 1.5px; margin-bottom: 3px; }
.status-info .event { font-size: 1.05rem; color: white; font-weight: 700; }

.inner-hero { position: relative; background-size: cover; background-position: center; background-repeat: no-repeat; }

/* Menus & Grid Alignment */
.section-header h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); margin-bottom: 15px; line-height: 1.2;}
.section-header em { color: var(--brand-primary); font-style: italic; text-shadow: 0 0 15px var(--brand-neon); }
.brand-separator { width: 60px; height: 3px; background: var(--brand-primary); margin: 20px auto; box-shadow: 0 0 10px var(--brand-neon); border-radius: 2px; }

/* Grid adjustments to fix clashing */
.menu-staggered-grid {
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 25px; padding-top: 20px;
}
/* Subtle shifts instead of aggressive ones to avoid overlap */
.shift-up { transform: translateY(-20px); }
.shift-down { transform: translateY(20px); }

.menu-glass-card {
    background: var(--glass-bg); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border);
    border-radius: 16px; overflow: hidden; padding: 20px; transition: var(--transition); cursor: pointer; display: flex; flex-direction: column;
}
.menu-glass-card:hover { border-color: var(--brand-primary); box-shadow: 0 20px 40px rgba(0, 0, 0, 0.7), 0 0 20px var(--brand-neon); transform: translateY(-5px); }

.menu-img-wrap { width: 100%; height: 250px; border-radius: 10px; overflow: hidden; margin-bottom: 20px; position: relative; flex-shrink: 0;}
.menu-img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: var(--transition); }
.menu-glass-card:hover .menu-img-wrap img { transform: scale(1.08); }

.menu-info { display: flex; flex-direction: column; flex-grow: 1; }
.menu-info h3 { font-size: 1.25rem; margin-bottom: 8px; color: white; line-height: 1.3; }
.menu-info .chef-note { font-size: 0.9rem; color: var(--text-muted); font-weight: 400; flex-grow: 1; }

/* Elegant Menu Layout from Inspiration */
.elegant-menu-layout {
    display: grid; grid-template-columns: 1fr 1fr; gap: 60px; padding-top: 30px;
}
.menu-category-header { text-align: center; margin-bottom: 40px; position: relative; }
.menu-category-header .subtitle { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 3px; color: var(--brand-primary); font-weight: 600; margin-bottom: 10px; display: block; }
.menu-category-header h3 { font-size: 2.2rem; text-transform: none; font-weight: 400; letter-spacing: 0; }
.menu-list { display: flex; flex-direction: column; gap: 30px; }
.menu-list-item { display: flex; gap: 20px; align-items: flex-start; }
.menu-item-img { width: 65px; height: 65px; border-radius: 12px; object-fit: cover; flex-shrink: 0; box-shadow: 0 5px 15px rgba(0,0,0,0.5); }
.menu-item-content { flex-grow: 1; }
.menu-item-header { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 5px; position: relative; }
.menu-item-header h4 { font-family: var(--font-body); font-weight: 600; font-size: 1rem; text-transform: none; letter-spacing: 0; margin: 0; color: #FFF; background: var(--bg-dark); padding-right: 10px; position: relative; z-index: 2;}
.menu-item-header .price { font-weight: 500; color: var(--text-main); font-size: 1rem; background: var(--bg-dark); padding-left: 10px; position: relative; z-index: 2;}
.menu-item-header::after { content: ''; position: absolute; left: 0; right: 0; bottom: 8px; border-bottom: 1px dashed rgba(212, 175, 55, 0.3); z-index: 1;}
.menu-item-content p { font-size: 0.85rem; color: var(--text-muted); margin: 0; line-height: 1.5; font-weight: 300; }

@media (max-width: 991px) {
    .elegant-menu-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* Nightlife Grid */
.nightlife-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.nightlife-text h2 { font-size: clamp(2.5rem, 5vw, 4rem); line-height: 1.1; margin-bottom: 20px; }
.nightlife-text .lead { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 30px; line-height: 1.6; }
.vibe-perks { list-style: none; margin-bottom: 30px; }
.vibe-perks li { font-size: 1rem; font-weight: 600; margin-bottom: 15px; display: flex; align-items: center; gap: 15px; }
.vibe-perks i { color: var(--brand-primary); font-size: 1.3rem; }

.nightlife-calendar { display: flex; flex-direction: column; gap: 15px; }
.event-row {
    background: var(--glass-bg); backdrop-filter: var(--glass-blur); border: 1px solid var(--glass-border);
    border-radius: 12px; padding: 25px; display: flex; align-items: center; gap: 25px; transition: var(--transition); position: relative;
}
.event-row:hover { background: rgba(10, 28, 81, 0.4); transform: translateX(8px); border-color: var(--brand-primary); }
.active-event { border-color: var(--brand-primary); box-shadow: 0 0 25px rgba(228, 27, 35, 0.2); }
.event-date { font-family: var(--font-head); font-size: 2.2rem; font-weight: 800; color: var(--text-muted); transition: var(--transition); }
.active-event .event-date, .event-row:hover .event-date { color: var(--brand-primary); text-shadow: 0 0 15px var(--brand-neon); }
.event-details h4 { font-size: 1.3rem; margin-bottom: 5px; }
.event-details p { color: var(--text-muted); font-size: 0.9rem; margin: 0; }
.neon-badge { position: absolute; right: 25px; top: 50%; transform: translateY(-50%); background: #00fff2; color: #000; font-weight: 800; font-size: 0.75rem; padding: 5px 10px; border-radius: 4px; box-shadow: 0 0 10px #00fff2; }

/* Dynamic Masonry */
.dynamic-gallery { display: grid; grid-template-columns: repeat(4, 1fr); grid-auto-rows: 200px; grid-auto-flow: dense; gap: 15px; }
.gallery-item { position: relative; border-radius: 12px; overflow: hidden; cursor: pointer; border: 1px solid var(--glass-border); transition: var(--transition); background: var(--glass-bg); }
.gallery-item:hover { border-color: var(--brand-primary); box-shadow: 0 0 25px var(--brand-neon); z-index: 5; }
.item-large { grid-column: span 2; grid-row: span 2; }
.item-wide { grid-column: span 2; grid-row: span 1; }
.item-tall { grid-column: span 1; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; filter: brightness(0.8); transition: var(--transition); }
.gallery-item:hover img { filter: brightness(1.1); transform: scale(1.05); }

/* Newsletter */
.newsletter-section { padding: 60px 0; border-top: 1px solid var(--glass-border); margin-top: 40px;}
.nl-box { background: var(--glass-bg); border-radius: 16px; padding: 50px; display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; border: 1px solid var(--glass-border); }
.nl-text h2 { font-size: 2.2rem; margin-bottom: 10px; }
.nl-text p { color: var(--text-muted); max-width: 400px; font-size: 1rem;}
.nl-form .search-wrap { display: flex; }
.nl-form input { border-radius: 50px; width: 280px; }

/* Filter Hidden State */
.item-card.hide, .pic-item.hide { display: none !important; }

/* WhatsApp Point */
.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; z-index: 1000; width: 60px; height: 60px;
    background: #25D366; color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: 30px; box-shadow: 0 5px 20px rgba(37, 211, 102, 0.4); transition: var(--transition);
}
.whatsapp-float:hover { transform: scale(1.1); background: #1ebe5d; box-shadow: 0 5px 25px rgba(37, 211, 102, 0.7);}

/* Footer Overhaul */
.footer {
    background: #01040a;
    border-top: 1px solid rgba(228, 27, 35, 0.2);
    padding: 80px 0 40px;
    position: relative;
    z-index: 10;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col h4 {
    color: white;
    font-size: 1.1rem;
    margin-bottom: 25px;
    position: relative;
    display: inline-block;
}

.footer-col h4::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -8px;
    width: 30px;
    height: 2px;
    background: var(--brand-primary);
}

.footer-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.8;
    margin-top: 20px;
    max-width: 300px;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-muted);
    font-size: 0.95rem;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--brand-primary);
    padding-left: 5px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.5;
}

.footer-contact i {
    color: var(--brand-primary);
    font-size: 1.2rem;
    margin-top: 3px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.1rem;
    transition: var(--transition);
}

.social-links a:hover {
    background: var(--brand-primary);
    box-shadow: 0 0 15px var(--brand-neon);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* Responsive adjustments */
@media (max-width: 991px) {
    .nav-menu, .btn-glass { display: none; }
    .mobile-toggle { display: block; }
    .menu-staggered-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
    .shift-up, .shift-down { transform: none; }
    .nightlife-layout { grid-template-columns: 1fr; gap: 40px; }
    .dynamic-gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 200px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .nl-box { flex-direction: column; text-align: center; }
}

@media (max-width: 576px) {
    .menu-staggered-grid { grid-template-columns: 1fr; }
    .dynamic-gallery { grid-template-columns: 1fr; }
    .item-large, .item-wide, .item-tall { grid-column: span 1; grid-row: span 1; }
    .nl-form input { width: 100%; margin-bottom: 15px; border-radius: 10px;}
    .nl-form .search-wrap { flex-direction: column; }
    .nl-form .btn-solid { margin-left: 0; width: 100%; }
    .footer-grid { grid-template-columns: 1fr; gap: 30px; }
}

/* Custom Modal */
.custom-modal {
    display: none; position: fixed; inset: 0; z-index: 9999;
    background: rgba(0,0,0,0.8); backdrop-filter: blur(5px);
    align-items: center; justify-content: center; padding: 20px;
}
.custom-modal.active { display: flex; animation: fadeInModal 0.3s ease; }
@keyframes fadeInModal { from { opacity: 0; } to { opacity: 1; } }
.custom-modal .modal-content {
    background: var(--bg-dark); border: 1px solid var(--glass-border);
    border-radius: 16px; max-width: 500px; width: 100%; overflow: hidden;
    position: relative; box-shadow: 0 15px 40px rgba(0,0,0,0.8), 0 0 20px var(--brand-neon);
}
.custom-modal .close-modal {
    position: absolute; top: 15px; right: 20px; font-size: 2rem; color: #fff;
    cursor: pointer; z-index: 10; text-shadow: 0 2px 5px rgba(0,0,0,0.5);
    transition: var(--transition);
}
.custom-modal .close-modal:hover { color: var(--brand-primary); transform: scale(1.1); }
.custom-modal img {
    width: 100%; height: 250px; object-fit: cover; border-bottom: 2px solid var(--brand-primary);
}
.custom-modal .modal-info { padding: 30px; text-align: center; }
.custom-modal .modal-info h3 { font-size: 1.8rem; margin-bottom: 10px; color: #fff; }
.custom-modal .modal-info .price { font-size: 1.4rem; color: var(--brand-primary); font-weight: 700; margin-bottom: 15px; }
.custom-modal .modal-info .desc { color: var(--text-muted); line-height: 1.6; margin-bottom: 25px; }

/* Back to Top */
.back-to-top {
    position: fixed; bottom: 30px; left: 30px; width: 50px; height: 50px;
    background: var(--brand-primary); color: #000; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; cursor: pointer; z-index: 900;
    opacity: 0; visibility: hidden; transition: var(--transition);
    box-shadow: 0 0 20px var(--brand-neon);
}
.back-to-top.visible { opacity: 1; visibility: visible; }
.back-to-top:hover { transform: translateY(-5px); background: #fff; }

.whatsapp-float {
    position: fixed; bottom: 30px; right: 30px; width: 60px; height: 60px;
    background: #25d366; color: white; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 2rem; z-index: 1000; box-shadow: 2px 2px 20px rgba(0,0,0,0.4);
}
.pulse-glow { animation: pulse 2s infinite; }
@keyframes pulse { 0% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.7); } 70% { box-shadow: 0 0 0 15px rgba(37, 211, 102, 0); } 100% { box-shadow: 0 0 0 0 rgba(37, 211, 102, 0); } }