/* =========================================
   1. VARIABLES & RESET
   ========================================= */
:root {
    /* Warna Aksen & Brand */
    --accent-color: #3b87d8;
    --hover-color: #425c77;
    --success-green: #25d366;

    /* Warna Dinamis (Light Mode - Default) */
    --primary-color: #2d3e50;
    --text-muted: #555;
    --text-paragraph: #4a4a4a;
    --white: #ffffff;
    /* Background Card & Navbar */
    --bg-light: #f9f9f9;
    /* Background Body */
    --border-color: #eee;
    --border-soft: #f0f0f0;
    --footer-bg: #2d3e50;
    --card-shadow: rgba(0, 0, 0, 0.05);
}

/* Override Warna saat Dark Mode Aktif */
body.dark-mode {
    --primary-color: #e2e8f0;
    --text-muted: #a0aec0;
    --text-paragraph: #cbd5e0;
    --white: #1e1e1e;
    --bg-light: #121212;
    --border-color: #333;
    --border-soft: #2d2d2d;
    --footer-bg: #1a1a1a;
    --card-shadow: rgba(0, 0, 0, 0.4);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Quicksand', sans-serif;
    min-height: 100vh;
    margin: 0;
    display: flex;
    flex-direction: column;
    color: var(--primary-color);
    background-color: var(--bg-light);
    transition: background-color 0.3s ease, color 0.3s ease;
}


/* =========================================
   2. GLOBAL LAYOUT & COMPONENTS
   ========================================= */
main {
    flex: 1;
    width: 100%;
    max-width: 1200px;
    margin-inline: auto;
    padding: 0 2rem 3rem 2rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.section-title {
    margin-top: 0;
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.5rem);
    margin-bottom: 3rem;
    color: var(--primary-color);
    position: relative;
    display: inline-block;
    width: 100%;
    font-weight: 700;
}

/* --- Pengaturan Tombol Global --- */
.cta-container {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
    justify-content: flex-start;
}

.btn-primary,
.btn-wa {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 1px;
    border-radius: 50px;
    height: 54px;
    min-width: 200px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-primary {
    background-color: var(--accent-color);
    color: #ffffff !important;
    border: 2px solid transparent;
}

.btn-primary:hover {
    background-color: transparent;
    border-color: var(--primary-color);
    color: var(--primary-color) !important;
    transform: translateY(-3px);
}

.btn-wa {
    background-color: var(--success-green);
    color: white !important;
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    gap: 8px;
}

.btn-wa:hover {
    background-color: #128c7e;
    transform: scale(1.05);
}

.btn-maps {
    display: inline-block;
    padding: 12px 25px;
    background-color: var(--white);
    color: var(--primary-color);
    border: 2px solid var(--border-color);
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
}

.btn-maps:hover {
    background-color: var(--primary-color);
    color: var(--bg-light);
    border-color: var(--primary-color);
}


/* =========================================
   3. HEADER & NAVIGATION
   ========================================= */
header.navbar-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 2rem;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    background-color: var(--white);
}

header.navbar-container .logo img {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.3s;
}

header.navbar-container .logo img:hover {
    transform: rotate(10deg);
}

header.navbar-container .nav-list {
    margin-right: auto;
    margin-left: 20px;
}

header.navbar-container .nav-list ul {
    padding-left: 0;
    margin: 0;
    display: flex;
    gap: 1rem;
    list-style: none;
}

header.navbar-container .nav-list li a {
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

header.navbar-container .nav-list li:hover a {
    background-color: var(--hover-color);
    color: #ffffff;
    box-shadow: 0 4px 10px rgba(66, 92, 119, 0.3);
}

/* --- Tombol Interaktif Navbar --- */
.dark-mode-btn {
    background: var(--accent-color);
    color: white;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: transform 0.2s ease;
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10000;
}

.menu-toggle {
    display: none;
    font-size: 1.5rem;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--primary-color);
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

#close-icon {
    display: none;
}


/* =========================================
   4. PAGE SPECIFIC & SECTIONS
   ========================================= */

/* --- Halaman Beranda (Index) --- */
.content {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
}

.content-description {
    flex: 1;
}

.content-description .title {
    margin-top: 0;
    margin-bottom: 1rem;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.2;
    color: var(--primary-color);
}

.content-description p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-paragraph);
    margin-bottom: 2rem;
}

.video {
    flex: 1;
    height: 350px;
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 15px 30px var(--card-shadow);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.01);
}

.video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
    pointer-events: none;
}

/* --- Halaman Tentang (About) --- */
.about-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px 20px 40px 20px;
}

.about-title {
    text-align: center;
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-top: 0;
    margin-bottom: 20px;
    font-weight: 700;
}

.about-header-img {
    margin-bottom: 25px;
    width: 100%;
}

.about-header-img img {
    width: 100%;
    height: auto;
    max-height: 450px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 10px 25px var(--card-shadow);
}

.about-text-content p {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 25px;
    text-align: justify;
}

.soft-sell {
    border-top: 1px solid var(--border-color);
    padding-top: 25px;
    margin-top: 40px;
    font-style: italic;
    color: var(--text-muted) !important;
}

.cta-area {
    text-align: center;
    margin-top: 40px;
}

.delivery-logos {
    margin-top: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.delivery-logos span {
    font-size: 0.9rem;
    color: #888;
}

.delivery-logos img {
    height: 25px;
    filter: grayscale(100%);
    opacity: 0.6;
    transition: 0.3s;
}

.delivery-logos img:hover {
    filter: grayscale(0%);
    opacity: 1;
}

/* --- Styles Tambahan untuk List Keunggulan Halaman About --- */
.features-title {
    margin-top: 25px;
    margin-bottom: 15px;
    font-size: 1.2rem;
    color: var(--primary-color);
}

.features-list {
    list-style-type: none;
    padding-left: 0;
    line-height: 1.6;
    margin-bottom: 20px;
}

.features-list li {
    margin-bottom: 10px;
    color: var(--text-muted);
}

/* --- HALAMAN MENU BARU (DENGAN GAMBAR) --- */
.menu-section {
    width: 100%;
}

.menu-wrapper {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
    width: 100%;
}

.menu-category {
    width: 100%;
}

.category-header {
    margin-bottom: 1.5rem;
    text-align: left;
    border-bottom: 2px solid var(--border-soft);
    padding-bottom: 10px;
}

.category-header h3 {
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
    font-size: 1.8rem;
    display: inline-block;
    border-bottom: 3px solid var(--accent-color);
    padding-bottom: 5px;
}

.menu-desc {
    font-size: 0.95rem;
    color: var(--text-muted);
    font-style: italic;
    margin: 0;
}

.extra-note {
    font-size: 0.85rem;
    color: #888;
    margin: 0 0 10px 0;
    line-height: 1.2;
}

/* Grid Pembungkus Kartu Menu */
.items-grid {
    display: grid;
    /* Desktop: min 220px kolom */
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

/* Desain Kartu Menu per Item */
.item-card {
    background: var(--white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 20px var(--card-shadow);
    border: 1px solid var(--border-soft);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    display: flex;
    flex-direction: column;
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 25px var(--card-shadow);
    border-color: var(--accent-color);
}

.item-img-wrapper {
    width: 100%;
    height: 200px;
    background-color: var(--border-soft);
    overflow: hidden;
}

.item-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.item-card:hover .item-img-wrapper img {
    transform: scale(1.05);
}

.item-details {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    justify-content: space-between;
}

.item-details h4 {
    margin: 0 0 10px 0;
    font-size: 1.1rem;
    color: var(--primary-color);
    line-height: 1.3;
}

.item-details .price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.item-details .price {
    font-weight: 700;
    color: var(--accent-color);
    font-size: 1.1rem;
}

/* Container untuk tombol Download PDF Menu */
.menu-pdf-container {
    margin-top: 4rem;
    text-align: center;
}

/* Utilitas Teks & Badge Menu */
.badge-new {
    background-color: #ff4757;
    color: white;
    font-size: 0.65rem;
    padding: 3px 6px;
    border-radius: 6px;
    margin-left: 5px;
    vertical-align: middle;
    font-weight: bold;
}

.text-accent {
    color: var(--accent-color);
    font-size: 0.9rem;
}

.text-warning {
    color: #ffc107;
    font-size: 0.9rem;
}


/* --- Halaman Kontak --- */
.contact-section {
    padding: 2rem 0 4rem 0;
    width: 100%;
}

.contact-wrapper {
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
}

.menu-intro {
    max-width: 650px;
    margin: 0 auto 3rem auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    font-style: italic;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 4rem;
}

.contact-card {
    background: var(--white);
    padding: 3.5rem 2rem;
    border-radius: 24px;
    border: 1px solid var(--border-soft);
    box-shadow: 0 15px 35px var(--card-shadow);
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.contact-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 50px rgba(59, 135, 216, 0.12);
    border-color: var(--accent-color);
}

.contact-card::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 120px;
    height: 120px;
    background: var(--accent-color);
    opacity: 0.03;
    border-radius: 50%;
    transition: all 0.4s ease;
}

.contact-card:hover::before {
    transform: scale(2);
    opacity: 0.05;
}

.contact-card h3 {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-weight: 700;
}

.contact-card p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 2rem;
    height: 50px;
}

.contact-link {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    text-decoration: none;
    padding: 12px 25px;
    border-radius: 50px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    transition: all 0.3s ease;
    width: 100%;
    display: block;
    text-align: center;
}

.contact-link:hover {
    background: var(--primary-color);
    color: var(--white) !important;
    border-color: var(--primary-color);
}

/* Konfigurasi Ikon pada Kartu Kontak */
.contact-card i {
    font-size: 2.2rem;
    color: #ffffff;
    background: var(--accent-color);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 2rem;
    box-shadow: 0 10px 20px rgba(59, 135, 216, 0.3);
    transition: all 0.3s ease;
}

.contact-card:hover i {
    transform: scale(1.1) rotate(5deg);
}

.contact-card:first-child i {
    background: #25d366;
    /* Warna WhatsApp */
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.contact-card.card-maps i {
    background: #DB4437;
    /* Warna Google Maps */
    box-shadow: 0 10px 20px rgba(219, 68, 55, 0.3);
}

.contact-meta {
    margin-top: 2rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 20px;
    border: 1px dashed var(--border-color);
}

/* --- Seksi Testimoni --- */
.testimonials-section {
    padding: 60px 20px;
    background-color: var(--bg-light);
    text-align: center;
}

.testimonial-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 25px;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 35px 25px;
    border-radius: 20px;
    width: 310px;
    box-shadow: 0 8px 20px var(--card-shadow);
    border: 1px solid var(--border-soft);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 30px var(--card-shadow);
    border-color: var(--border-color);
}

.stars {
    color: #ffc107;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.testimonial-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary-color);
    border-top: 1px solid var(--border-soft);
    padding-top: 15px;
}

.more-reviews {
    margin-top: 40px;
}

/* --- Seksi Galeri Foto --- */
.gallery-section {
    padding: 60px 5%;
    background-color: var(--white);
    text-align: center;
}

.gallery-container {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

.gallery-item {
    flex: 0 1 calc(33.333% - 20px);
    min-width: 300px;
    aspect-ratio: 1 / 1;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 5px 15px var(--card-shadow);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

@media (hover: hover) {
    .gallery-item:hover img {
        transform: scale(1.1);
    }
}

/* --- Seksi FAQ (Tanya Jawab) --- */
.faq-section {
    padding: 80px 20px;
    background-color: var(--bg-light);
    width: 100%;
}

.faq-container,
.about-container .faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

details {
    background: var(--white);
    margin-bottom: 1.2rem;
    padding: 1.2rem 1.5rem;
    border-radius: 15px;
    border: 1px solid var(--border-soft);
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px var(--card-shadow);
}

details:hover {
    border-color: var(--border-color);
    box-shadow: 0 6px 20px var(--card-shadow);
}

details[open] {
    box-shadow: 0 10px 30px var(--card-shadow);
    border-color: var(--accent-color);
}

summary {
    font-weight: 700;
    font-size: 1.15rem;
    color: var(--primary-color);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    outline: none;
}

summary::-webkit-details-marker {
    display: none;
}

summary::after {
    content: '\f0fe';
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    color: var(--accent-color);
    font-size: 1.2rem;
    transition: transform 0.3s ease;
}

details[open] summary::after {
    content: '\f146';
    transform: rotate(180deg);
}

details p {
    margin-top: 1.2rem;
    line-height: 1.8;
    color: var(--text-muted);
    padding-top: 15px;
    border-top: 1px dashed var(--border-color);
    font-size: 1.05rem;
}

.faq-footer {
    text-align: center;
    margin-top: 30px;
}

.faq-link {
    color: var(--accent-color);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.faq-link:hover {
    color: var(--hover-color);
    text-decoration: underline;
    transform: translateY(-2px);
}


/* =========================================
   5. FLOATING WIDGET (Sosial Media)
   ========================================= */
aside {
    position: fixed !important;
    bottom: 30px;
    right: 30px;
    top: auto;
    transform: none;
    z-index: 9999;
    width: auto;
    background: transparent;
    margin: 0;
}

aside .social-media ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column-reverse;
    gap: 15px;
    background: transparent;
    box-shadow: none;
    width: auto;
}

aside .social-media li a {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 50px;
    background-color: var(--white);
    border-radius: 50%;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    color: var(--primary-color);
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

aside .social-media li a:hover {
    transform: scale(1.15) translateY(-5px);
    color: #ffffff;
}

aside .social-media li a[title*="WhatsApp"]:hover {
    background-color: #25D366;
}

aside .social-media li a[title*="Instagram"]:hover {
    background-color: #E1306C;
}

aside .social-media li a[title*="TikTok"]:hover {
    background-color: #000000;
}


/* =========================================
   6. FOOTER
   ========================================= */
.main-footer {
    background-color: var(--footer-bg);
    color: #ffffff;
    padding: 4rem 2rem 1.5rem;
    margin-top: auto;
    transition: background-color 0.3s ease;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 3rem;
}

.footer-column h2,
.footer-column h3 {
    color: var(--accent-color);
    margin-bottom: 1.2rem;
}

.delivery-logos-container {
    display: flex;
    gap: 1rem;
    align-items: center;
    margin-top: 1rem;
}

.location-link {
    color: #cbd5e1 !important;
    text-decoration: none;
    transition: color 0.2s;
}

.location-link:visited {
    color: #cbd5e1 !important;
}

.location-link:hover {
    color: var(--accent-color) !important;
    text-decoration: underline;
}

.logo-item img {
    height: 40px;
    width: auto;
    object-fit: contain;
    margin: 0 5px;
    transition: transform 0.2s;
}

.logo-item img:hover {
    transform: scale(1.1);
}

.footer-bottom {
    text-align: center;
    margin-top: 3rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.9rem;
    color: #94a3b8;
}

/* =========================================
   7. ERROR PAGE (404) STYLING
   ========================================= */
.error-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    min-height: 70vh;
    padding-top: 2rem;
}

.error-code {
    font-size: clamp(6rem, 20vw, 10rem);
    font-weight: 700;
    color: var(--accent-color);
    line-height: 1;
    opacity: 0.15;
    margin-bottom: -2rem;
    z-index: 1;
}

.error-container .title {
    position: relative;
    z-index: 2;
    margin-bottom: 1rem;
    font-size: clamp(1.8rem, 4vw, 2.8rem);
}

.error-container .menu-intro {
    max-width: 500px;
    margin-bottom: 2.5rem;
}

/* =========================================
   8. BACK TO TOP BUTTON
   ========================================= */
#back-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 45px;
    height: 45px;
    background-color: var(--accent-color);
    color: #ffffff;
    border: none;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

#back-to-top.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

#back-to-top:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}



/* =========================================
   9. RESPONSIVE MEDIA QUERIES
   ========================================= */
@media screen and (max-width: 992px) {
    main {
        padding: 2rem;
    }

    .content {
        flex-direction: column;
        text-align: center;
    }

    .video {
        width: 100%;
        max-width: 600px;
    }
}

@media screen and (max-width: 768px) {

    /* Penyesuaian Tombol Mobile */
    .cta-container {
        flex-direction: column;
        width: 100%;
        gap: 10px;
    }

    .btn-primary,
    .btn-wa {
        width: 100%;
        min-width: unset;
    }

    /* Penyesuaian Posisi Header & Navigasi */
    .dark-mode-btn {
        right: 70px;
        top: 50%;
        transform: translateY(-50%);
    }

    .menu-toggle {
        display: block !important;
        position: absolute;
        right: 20px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 99999;
        cursor: pointer;
        background: none;
        border: none;
    }

    .menu-toggle i {
        pointer-events: none;
    }

    #close-icon {
        color: var(--primary-color);
    }

    header.navbar-container {
        display: flex;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        padding: 1rem 1.5rem;
    }

    header.navbar-container .logo img {
        width: 60px;
        height: 60px;
    }

    header.navbar-container .nav-list {
        display: none;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background-color: var(--white);
        padding: 100px 2rem 2rem 2rem;
        box-shadow: 0 10px 20px var(--card-shadow);
        z-index: 10000;
        animation: slideDown 0.3s ease-out;
    }

    @keyframes slideDown {
        from {
            opacity: 0;
            transform: translateY(-10px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    header.navbar-container .nav-list.active {
        display: block;
    }

    header.navbar-container .nav-list ul {
        flex-direction: column;
        gap: 1rem;
    }

    header.navbar-container .nav-list li {
        width: 100%;
        text-align: center;
    }

    header.navbar-container .nav-list li a {
        display: block;
        padding: 1rem;
        border: 1px solid var(--border-color);
    }

    /* Penyesuaian Seksi Konten Utama */
    .video {
        height: 250px;
    }

    .section-title {
        font-size: 1.6rem !important;
        line-height: 1.3;
        padding: 0 15px;
        white-space: normal;
        word-wrap: break-word;
        display: block;
        margin-bottom: 20px;
    }

    .about-container {
        padding-top: 30px;
    }

    .about-title {
        font-size: 2rem;
    }

    .about-header-img img {
        max-height: 300px;
    }

    .about-text-content p {
        font-size: 1.05rem;
        text-align: left;
    }

    /* UPDATE MENU GRID UNTUK MOBILE (2 KOLOM MIN 150px) */
    .items-grid {
        grid-template-columns: repeat(auto-fill, minmax(150px, 1fr));
        gap: 1rem;
    }

    .item-img-wrapper {
        height: 150px;
    }

    .item-details {
        padding: 1rem;
    }

    .item-details h4 {
        font-size: 1rem;
        margin-bottom: 5px;
    }

    .item-details .price {
        font-size: 1rem;
    }

    .category-header h3 {
        font-size: 1.4rem;
    }

    /* Galeri bisa digeser menyamping di Mobile (Swipeable) */
    .gallery-container {
        display: flex;
        flex-wrap: nowrap;
        justify-content: flex-start;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        gap: 15px;
        padding: 20px 5%;
        scrollbar-width: none;
        scroll-behavior: smooth;
    }

    .gallery-container::-webkit-scrollbar {
        display: none;
    }

    .gallery-item {
        flex: 0 0 85%;
        min-width: unset;
        scroll-snap-align: center;
        aspect-ratio: 4 / 5;
    }

    .testimonial-card {
        width: 100%;
    }

    /* Pengaturan Halaman Kontak di HP */
    .contact-grid {
        grid-template-columns: 1fr;
        padding: 0 10px;
    }

    .contact-card {
        padding: 3rem 1.5rem;
    }

    .contact-card p {
        height: auto;
    }

    /* Pengaturan FAQ */
    .faq-section {
        padding: 50px 15px;
    }

    details {
        padding: 1rem 1.2rem;
        border-radius: 12px;
    }

    summary {
        font-size: 1rem;
        line-height: 1.4;
    }

    details p {
        font-size: 0.95rem;
        line-height: 1.6;
    }

    .faq-footer {
        margin-top: 20px;
    }

    /* Pengaturan Footer */
    .footer-container {
        flex-direction: column;
        text-align: center;
    }

    .delivery-logos-container {
        justify-content: center;
    }

    /* Posisi Widget Sosial Media di Mobile */
    aside {
        position: fixed !important;
        bottom: 20px;
        right: 15px;
        width: auto;
        margin-top: 0;
        z-index: 9999;
    }

    aside .social-media ul {
        flex-direction: column-reverse;
        gap: 10px;
        background: transparent;
        box-shadow: none;
        width: auto;
        padding: 0;
    }

    aside .social-media li a {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    }

    .error-container {
        min-height: 60vh;
    }

    .error-container .cta-container {
        justify-content: center;
        width: 100%;
        padding: 0 20px;
    }

    #back-to-top {
        bottom: 20px;
        left: 15px;
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
}