/* ========== ROOT & RESET ========== */
:root {
    --primary: #0f0f0f;
    --primary-dark: #000000;
    --accent: #f39c12;
    --accent-hover: #e67e22;
    --bg: #121212;
    --bg-card: #1e1e1e;
    --text: #ffffff;
    --text-light: #bbbbbb;
    --border: #2a2a2a;
    --shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-hover: 0 10px 35px rgba(0, 0, 0, 0.5);
    --radius: 16px;
    --radius-sm: 10px;
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --safe-top: env(safe-area-inset-top);
    --safe-bottom: env(safe-area-inset-bottom);
    --safe-left: env(safe-area-inset-left);
    --safe-right: env(safe-area-inset-right);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Poppins', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
    background-color: var(--bg);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    padding-top: var(--safe-top);
    padding-bottom: var(--safe-bottom);
    padding-left: var(--safe-left);
    padding-right: var(--safe-right);
    position: relative;
}

/* ========== BACKGROUND GLOW EFFECT ========== */
body::before {
    content: '';
    position: fixed;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: 
        radial-gradient(circle at 80% 20%, rgba(243,156,18,0.04) 0%, transparent 40%),
        radial-gradient(circle at 20% 80%, rgba(243,156,18,0.03) 0%, transparent 40%);
    animation: bgGlow 15s ease-in-out infinite;
    pointer-events: none;
    z-index: 0;
}

@keyframes bgGlow {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -30px) scale(1.05); }
    66% { transform: translate(-20px, 20px) scale(0.95); }
}

/* ========== NAVBAR ========== */
.navbar {
    position: fixed;
    top: var(--safe-top, 0);
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 15, 15, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 0 1.5rem;
    transition: var(--transition);
}
@supports not (backdrop-filter: blur(20px)) {
    .navbar { background: rgba(15, 15, 15, 0.96); }
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 20px rgba(0,0,0,0.5), 0 0 30px rgba(243,156,18,0.05);
}

.nav-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px;
    position: relative;
    z-index: 1;
}

/* Logo dengan wrapper untuk glow presisi */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.5px;
    flex-shrink: 0;
}

.logo-img-wrapper {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Glow di belakang gambar */
.logo-img-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 120%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.6) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    animation: glowPulse 3s ease-in-out infinite;
}

@keyframes glowPulse {
    0% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.9); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.1); }
    100% { opacity: 0.4; transform: translate(-50%, -50%) scale(0.9); }
}

.nav-logo-img {
    height: 40px;
    width: auto;
    vertical-align: middle;
    position: relative;
    z-index: 1;
}

/* HAMBURGER */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 12px;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}
.hamburger span { display: block; width: 26px; height: 3px; background: #fff; border-radius: 3px; transition: var(--transition); }
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 6px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -6px); }

/* NAVIGASI DESKTOP */
.nav-links {
    display: flex;
    list-style: none;
    gap: 0.5rem;
    align-items: center;
}
.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
}
.nav-links a:hover {
    color: var(--accent);
    background: rgba(243, 156, 18, 0.1);
    box-shadow: 0 0 25px rgba(243, 156, 18, 0.3), 0 0 50px rgba(243, 156, 18, 0.1);
    text-shadow: 0 0 15px rgba(243, 156, 18, 0.5);
    transform: translateY(-2px);
}
.nav-links a.active {
    color: var(--accent);
    background: rgba(243, 156, 18, 0.15);
    box-shadow: 0 0 20px rgba(243, 156, 18, 0.2);
    text-shadow: 0 0 10px rgba(243, 156, 18, 0.3);
}
.nav-cart-btn { 
    background: var(--accent) !important; 
    color: #000 !important; 
    padding: 0.6rem 1.3rem !important; 
    font-weight: 700 !important; 
    display: flex; 
    align-items: center; 
    gap: 6px; 
    box-shadow: 0 0 20px rgba(243,156,18,0.3); 
}
.nav-cart-btn:hover { 
    background: var(--accent-hover) !important; 
    transform: translateY(-2px); 
    box-shadow: 0 8px 30px rgba(243,156,18,0.5); 
}
.cart-count { 
    background: #000; 
    color: var(--accent); 
    border-radius: 50%; 
    width: 24px; 
    height: 24px; 
    display: inline-flex; 
    align-items: center; 
    justify-content: center; 
    font-size: 0.75rem; 
    font-weight: 800; 
}

/* ========== HERO ========== */
.hero {
    margin-top: 70px;
    min-height: 90vh;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 50%, #2a2a2a 100%);
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(243,156,18,0.08) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow 8s ease-in-out infinite;
}
@keyframes heroGlow {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.2); opacity: 1; }
}
.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(243,156,18,0.05) 0%, transparent 70%);
    border-radius: 50%;
    animation: heroGlow2 6s ease-in-out infinite;
}
@keyframes heroGlow2 {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.3); opacity: 0.7; }
}
.hero-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 3rem 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}
.hero-text h1 {
    font-size: clamp(2.5rem, 5vw, 4.2rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1.5rem;
    letter-spacing: -1px;
    text-shadow: 0 0 30px rgba(243,156,18,0.2);
}
.hero-text h1 .highlight {
    color: var(--accent);
    position: relative;
    display: inline-block;
}
.hero-text h1 .highlight::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 12px;
    background: rgba(243,156,18,0.3);
    border-radius: 10px;
    z-index: -1;
    animation: highlightGlow 2s ease-in-out infinite;
}
@keyframes highlightGlow {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}
.hero-text p {
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 550px;
}
.hero-buttons { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    white-space: nowrap;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    overflow: hidden;
}
.btn::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}
.btn:hover::after { opacity: 1; }
.btn-primary { background: var(--accent); color: #000; box-shadow: 0 6px 25px rgba(243,156,18,0.3), 0 0 30px rgba(243,156,18,0.2); }
.btn-primary:hover { background: var(--accent-hover); transform: translateY(-3px); box-shadow: 0 12px 40px rgba(243,156,18,0.5); }
.btn-outline { background: transparent; color: #fff; border: 2px solid #fff; }
.btn-outline:hover { background: #fff; color: #000; transform: translateY(-3px); box-shadow: 0 12px 40px rgba(255,255,255,0.3); }
.hero-image { display: flex; justify-content: center; align-items: center; }
.hero-img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius);
    box-shadow: 0 20px 50px rgba(0,0,0,0.5), 0 0 50px rgba(243,156,18,0.1);
    animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%, 100% { transform: translateY(0px); } 50% { transform: translateY(-15px); } }

/* ========== STATS ========== */
.stats-bar {
    background: var(--bg-card);
    border-bottom: 1px solid var(--border);
    padding: 2rem 1.5rem;
    position: relative;
    box-shadow: 0 0 30px rgba(243,156,18,0.05);
}
.stats-container { max-width: 1300px; margin: 0 auto; display: flex; justify-content: space-around; flex-wrap: wrap; gap: 1.5rem; text-align: center; }
.stat-item { flex: 1 1 150px; max-width: 200px; transition: var(--transition); }
.stat-item:hover { transform: translateY(-5px); }
.stat-number { font-size: clamp(1.8rem, 3vw, 2.2rem); font-weight: 900; color: var(--accent); text-shadow: 0 0 20px rgba(243,156,18,0.3); }
.stat-label { font-size: 0.9rem; color: var(--text-light); }

/* ========== SECTIONS ========== */
section { padding: 5rem 2rem; position: relative; z-index: 1; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 {
    font-size: clamp(2rem, 4vw, 2.4rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 1rem;
    text-shadow: 0 0 20px rgba(243,156,18,0.15);
}
.section-header p { color: var(--text-light); font-size: clamp(1rem, 1.5vw, 1.1rem); max-width: 600px; margin: 0 auto; }
.subtitle-accent {
    display: inline-block;
    background: rgba(243,156,18,0.12);
    color: var(--accent);
    padding: 0.3rem 1.2rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 1rem;
    box-shadow: 0 0 15px rgba(243,156,18,0.1);
}

/* ========== KATALOG ========== */
#katalog { background: var(--bg); }
.catalog-grid { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 2rem; }
.product-card {
    background: var(--bg-card);
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.product-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover), 0 0 40px rgba(243,156,18,0.15);
    border-color: var(--accent);
}
.product-image { height: 200px; background: #2a2a2a; display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden; }
.product-img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s; }
.product-card:hover .product-img { transform: scale(1.05); }
.product-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    background: var(--accent);
    color: #000;
    padding: 0.3rem 0.9rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
    box-shadow: 0 0 15px rgba(243,156,18,0.3);
}
.product-info { padding: 1.5rem 1.3rem 1.2rem; flex: 1; display: flex; flex-direction: column; }
.product-info h3 { font-size: 1.1rem; font-weight: 700; margin-bottom: 0.3rem; color: #fff; }
.product-info .category { font-size: 0.8rem; color: var(--text-light); margin-bottom: 0.6rem; text-transform: uppercase; letter-spacing: 1px; }
.product-info .price {
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--accent);
    margin-bottom: 0.3rem;
    text-shadow: 0 0 10px rgba(243,156,18,0.2);
}
.product-info .price span { font-size: 0.8rem; font-weight: 500; color: var(--text-light); }
.product-info .stock { font-size: 0.85rem; color: #4caf50; font-weight: 600; margin-bottom: 1rem; }
.product-info .stock.low { color: #f39c12; }
.btn-add-cart {
    width: 100%;
    padding: 0.8rem;
    background: var(--accent);
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.9rem;
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    box-shadow: 0 0 15px rgba(243,156,18,0.2);
}
.btn-add-cart:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(243,156,18,0.4);
}
.btn-add-cart.added { background: #27ae60; pointer-events: none; color: #fff; box-shadow: 0 0 15px rgba(39,174,96,0.3); }

/* ========== CARA PESAN ========== */
#cara-pesan { background: var(--bg-card); }
.steps-grid { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 2rem; }
.step-card {
    text-align: center;
    padding: 2.5rem 1.5rem;
    background: var(--bg);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: var(--transition);
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover), 0 0 30px rgba(243,156,18,0.1); border-color: var(--accent); }
.step-number {
    width: 55px;
    height: 55px;
    background: var(--accent);
    color: #000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 900;
    margin: 0 auto 1.5rem;
    box-shadow: 0 0 20px rgba(243,156,18,0.3);
}
.step-card h3 { font-size: 1.2rem; margin-bottom: 0.5rem; color: #fff; }
.step-card p { font-size: 0.9rem; color: var(--text-light); }

/* ========== BOOKING FORM ========== */
#booking { background: var(--bg); }
.booking-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--radius);
    padding: 2.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow), 0 0 30px rgba(243,156,18,0.05);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; margin-bottom: 1.2rem; }
.form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-weight: 600; font-size: 0.9rem; color: var(--text-light); }
.form-group input, .form-group select, .form-group textarea {
    padding: 0.9rem 1.2rem;
    background: var(--bg);
    border: 2px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 1rem;
    font-family: inherit;
    color: #fff;
    transition: var(--transition);
    width: 100%;
    resize: vertical;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--accent);
    box-shadow: 0 0 25px rgba(243,156,18,0.15);
}
.btn-submit {
    width: 100%;
    padding: 1rem;
    background: var(--accent);
    color: #000;
    border: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.1rem;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 1rem;
    box-shadow: 0 0 20px rgba(243,156,18,0.3);
}
.btn-submit:hover {
    background: var(--accent-hover);
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(243,156,18,0.5);
}

/* ========== MODAL ========== */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.85); z-index: 4000; display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity 0.3s; padding: 1rem; }
.modal-overlay.open { opacity: 1; pointer-events: auto; }
.modal-container {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    width: 90%;
    max-width: 500px;
    padding: 2.5rem;
    box-shadow: 0 20px 50px rgba(0,0,0,0.7), 0 0 50px rgba(243,156,18,0.1);
    transform: translateY(20px);
    transition: transform 0.3s;
}
.modal-overlay.open .modal-container { transform: translateY(0); }
.modal-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.5rem; }
.modal-header h3 { font-size: 1.4rem; color: #fff; }
.modal-close { background: none; border: none; font-size: 2rem; cursor: pointer; color: #888; padding: 0 0.5rem; transition: var(--transition); }
.modal-close:hover { color: #fff; text-shadow: 0 0 10px rgba(255,255,255,0.5); }
.modal-body p { margin-bottom: 1rem; color: var(--text-light); }
.modal-actions { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1.5rem 0 0.5rem; }
.modal-actions .btn { flex: 1 1 auto; justify-content: center; }

/* ========== CART SIDEBAR ========== */
.cart-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.8); z-index: 2000; opacity: 0; pointer-events: none; transition: opacity 0.3s; }
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-sidebar {
    position: fixed; top: 0; right: 0;
    width: 420px; max-width: 100vw;
    height: 100vh; height: 100dvh;
    background: var(--bg-card);
    z-index: 2001;
    box-shadow: -8px 0 30px rgba(0,0,0,0.5), -2px 0 30px rgba(243,156,18,0.05);
    transform: translateX(100%);
    transition: transform 0.4s;
    display: flex;
    flex-direction: column;
}
.cart-sidebar.open { transform: translateX(0); }
.cart-header { padding: 1.5rem; border-bottom: 1px solid var(--border); display: flex; justify-content: space-between; align-items: center; color: #fff; }
.cart-close { background: none; border: none; color: #fff; font-size: 1.5rem; cursor: pointer; transition: var(--transition); }
.cart-close:hover { color: var(--accent); text-shadow: 0 0 10px rgba(243,156,18,0.5); }
.cart-items { flex: 1; overflow-y: auto; padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.cart-empty { text-align: center; color: var(--text-light); padding: 3rem 1rem; }
.cart-item {
    display: flex; gap: 1rem; align-items: center; padding: 0.8rem;
    background: var(--bg); border-radius: var(--radius-sm); border: 1px solid var(--border);
    transition: var(--transition);
}
.cart-item:hover { border-color: var(--accent); box-shadow: 0 0 15px rgba(243,156,18,0.1); }
.cart-item-img { width: 50px; height: 50px; object-fit: cover; border-radius: 8px; background: #2a2a2a; }
.cart-item-info h4 { color: #fff; }
.cart-item-price { color: var(--accent); font-weight: 700; }
.cart-item-remove { color: #e74c3c; cursor: pointer; background: none; border: none; font-size: 1.1rem; padding: 8px; transition: var(--transition); }
.cart-item-remove:hover { color: #ff6b6b; text-shadow: 0 0 10px rgba(231,76,60,0.5); }
.cart-footer { padding: 1.5rem; border-top: 1px solid var(--border); color: #fff; }
.cart-total { display: flex; justify-content: space-between; font-size: 1.2rem; font-weight: 800; margin-bottom: 1rem; }
.btn-checkout {
    width: 100%; padding: 0.9rem; background: var(--accent); color: #000;
    border: none; border-radius: 50px; font-weight: 700; cursor: pointer;
    transition: var(--transition); box-shadow: 0 0 20px rgba(243,156,18,0.3);
}
.btn-checkout:hover { background: var(--accent-hover); box-shadow: 0 8px 30px rgba(243,156,18,0.5); }

/* ========== TOAST ========== */
.toast {
    position: fixed; bottom: 30px; left: 50%;
    transform: translateX(-50%) translateY(100px);
    background: #1e1e1e; color: #fff;
    padding: 1rem 2rem; border-radius: 50px;
    font-weight: 600; z-index: 3000;
    transition: transform 0.4s;
    border: 1px solid var(--border);
    white-space: nowrap;
    max-width: calc(100vw - 2rem);
    text-align: center;
    box-shadow: 0 0 30px rgba(243,156,18,0.2);
}
.toast.show { transform: translateX(-50%) translateY(0); }
.toast.success { border-color: #27ae60; color: #27ae60; box-shadow: 0 0 30px rgba(39,174,96,0.2); }

/* ========== FOOTER ========== */
footer {
    background: #050505;
    color: #999;
    padding: 4rem 2rem 2rem;
    position: relative;
    box-shadow: 0 -4px 30px rgba(243,156,18,0.05);
}
.footer-container { max-width: 1300px; margin: 0 auto; display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 2.5rem; }
.footer-col h4 { color: #fff; font-weight: 800; margin-bottom: 1rem; display: flex; align-items: center; gap: 8px; }
.footer-logo-img { height: 28px; vertical-align: middle; }
.footer-col p, .footer-col a { color: #888; font-size: 0.9rem; text-decoration: none; display: block; margin-bottom: 0.5rem; transition: var(--transition); }
.footer-col a:hover { color: var(--accent); padding-left: 4px; text-shadow: 0 0 10px rgba(243,156,18,0.3); }
.social-icons { display: flex; gap: 1.2rem; margin-top: 0.5rem; }
.social-icons a {
    display: flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; background: #1a1a1a; border-radius: 50%;
    color: #888; font-size: 1.3rem; transition: var(--transition); text-decoration: none;
}
.social-icons a:hover {
    background: var(--accent); color: #000; transform: translateY(-3px);
    box-shadow: 0 0 25px rgba(243,156,18,0.4);
}
.footer-bottom { text-align: center; margin-top: 3rem; padding-top: 1.5rem; border-top: 1px solid #222; color: #666; font-size: 0.85rem; }

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
    .hamburger {
        display: flex !important;
    }

    .nav-links {
        position: fixed;
        top: 70px;
        left: 50%;
        transform: translateX(-50%);
        width: 90%;
        max-height: 70vh;
        background: rgba(15, 15, 15, 0.95);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border-radius: 0 0 16px 16px;
        border: 1px solid var(--border);
        box-shadow: 0 8px 20px rgba(0,0,0,0.5);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        gap: 0.2rem;
        padding: 0.8rem;
        overflow-y: auto;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.3s ease, visibility 0.3s ease;
        z-index: 999;
    }

    .nav-links.open {
        opacity: 1;
        visibility: visible;
    }

    .nav-links.open li {
        display: block !important;
        opacity: 1 !important;
        visibility: visible !important;
        width: 100%;
        text-align: center;
    }

    .nav-links.open li a {
        display: flex !important;
        font-size: 0.9rem;
        width: 100%;
        padding: 0.4rem 0.6rem;
        align-items: center;
        justify-content: center;
        border-radius: 50px;
        color: var(--text-light);
        text-decoration: none;
    }

    .nav-links.open li a:hover {
        background: rgba(243, 156, 18, 0.1);
        color: var(--accent);
    }

    .nav-links.open .nav-cart-btn {
        display: flex !important;
        justify-content: center;
        margin-top: 0.2rem;
        width: auto;
        font-size: 0.9rem;
        padding: 0.4rem 1.2rem !important;
    }

    .hero-container { grid-template-columns: 1fr; text-align: center; }
    .hero-text p { max-width: 100%; margin-left: auto; margin-right: auto; }
    .hero-buttons { justify-content: center; }
    .hero-image { order: -1; }
    .hero-img { max-width: 300px; }
    .form-row { grid-template-columns: 1fr; }
    .cart-sidebar { width: 100%; max-width: 100vw; }
    section { padding: 4rem 1.5rem; }
    .booking-container { padding: 2rem; }
}

@media (max-width: 640px) {
    .hero { min-height: 80vh; }
    .btn { padding: 0.8rem 1.5rem; font-size: 0.9rem; }
    .stats-container { gap: 1rem; }
    .stat-number { font-size: 1.6rem; }
    .catalog-grid { grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 1.5rem; }
    .product-image { height: 180px; }
    .steps-grid { grid-template-columns: 1fr; }
    .booking-container { padding: 1.5rem; }
    .nav-logo-img { height: 32px; }
}

@media (max-width: 480px) {
    .hero { min-height: 70vh; margin-top: 60px; }
    .navbar { padding: 0 1rem; }
    .nav-container { height: 60px; }
    .hero-container { padding: 2rem 1rem; }
    .hero-text h1 { font-size: 1.9rem; }
    .hero-buttons { flex-direction: column; width: 100%; }
    .hero-buttons .btn { width: 100%; justify-content: center; }
    .stats-container { flex-direction: column; align-items: center; }
    .stat-item { max-width: 100%; }
    .section-header h2 { font-size: 1.8rem; }
    .catalog-grid { grid-template-columns: 1fr; gap: 1.5rem; }
    .product-card { max-width: 400px; margin: 0 auto; }
    .modal-container { padding: 1.5rem; }
    .modal-actions .btn { flex: 1 1 100%; }
    .toast { left: 5%; right: 5%; transform: translateX(0) translateY(100px); max-width: 90%; }
    .toast.show { transform: translateX(0) translateY(0); }
}

@supports (padding-top: env(safe-area-inset-top)) {
    .navbar { padding-top: env(safe-area-inset-top); }
    .cart-sidebar { padding-top: env(safe-area-inset-top); }
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    body { -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
}

@media print {
    .navbar, .cart-sidebar, .modal-overlay, .toast { display: none !important; }
    body { background: white; color: black; }
}