/* ===========================
   EKMEK ARASI - Sandviç Dükkanı
   =========================== */

/* ---------- CSS Variables ---------- */
:root {
    --primary: #F2A900;
    --primary-dark: #D98C00;
    --primary-light: #FFC033;
    --secondary: #CE1C24;
    --accent: #4CAF50;
    --bg: #0B0B0B;
    --bg-alt: #161616;
    --bg-card: #1A1A1A;
    --text: #F5F5F5;
    --text-light: #BBBBBB;
    --text-muted: #888888;
    --white: #FFFFFF;
    --border: #2A2A2A;
    --shadow-sm: 0 4px 12px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.05), 0 4px 8px rgba(0, 0, 0, 0.03);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.08), 0 8px 16px rgba(0, 0, 0, 0.04);
    --shadow-hover: 0 14px 40px rgba(0, 0, 0, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    --radius-sm: 14px;
    --radius-md: 18px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --radius-full: 9999px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;
}

/* ---------- Reset & Base ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 110px;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.highlight { color: var(--primary); }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-weight: 800;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-full);
    transition: var(--transition);
    gap: 8px;
    white-space: nowrap;
    letter-spacing: -0.01em;
}

.btn-primary {
    background: var(--primary);
    color: #000;
    padding: 14px 32px;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: -0.01em;
}

.btn-primary:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(242, 169, 0, 0.35);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    padding: 12px 28px;
    font-size: 0.95rem;
    border: 2px solid rgba(255,255,255,0.25);
}

.btn-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-full { width: 100%; }

/* ---------- Section Common ---------- */
.section-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.section-badge {
    display: inline-block;
    background: rgba(242, 169, 0, 0.12);
    color: var(--primary);
    font-weight: 800;
    font-size: 0.82rem;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    margin-bottom: 16px;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--text);
    letter-spacing: -0.03em;
}

.section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
}

/* ---------- Navbar ---------- */
.navbar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    background: rgba(0, 0, 0, 1);
    border-bottom: 2px solid var(--secondary);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(0, 0, 0, 0.98);
    border-bottom-color: var(--primary);
    box-shadow: 0 4px 20px rgba(0,0,0,0.8);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    position: relative;
}

.logo {
    display: flex;
    align-items: center;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}
.logo-img { height: 90px; width: auto; }

.nav-btn {
    position: absolute;
    right: 24px;
    font-size: 0.9rem;
    padding: 10px 24px;
}

.nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 24px;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
    z-index: 1000;
}

.nav-links.active {
    transform: translateY(0);
}

.nav-links a {
    font-weight: 600;
    font-size: 1.2rem;
    color: var(--text);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: var(--primary);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active { color: var(--primary); }

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.hamburger {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
    position: absolute;
    left: 24px;
}

.hamburger span {
    width: 24px;
    height: 2.5px;
    background: var(--white);
    border-radius: 2px;
    transition: var(--transition);
}

.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: flex-start;
    padding-top: 160px;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: transparent;
    z-index: 0;
}

.hero-container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 60px;
    padding-bottom: 100px;
}

.hero-content { max-width: 700px; }

.hero-badge {
    display: inline-block;
    background: rgba(242, 169, 0, 0.15);
    border: 1px solid rgba(242, 169, 0, 0.3);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.9rem;
    color: var(--primary);
    margin-bottom: 24px;
}

.hero h1 {
    font-family: var(--font-display);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 20px;
    color: var(--white);
    text-shadow: 4px 4px 0px var(--secondary);
    text-transform: uppercase;
    letter-spacing: -0.02em;
}

.hero-desc {
    font-size: 1.15rem;
    color: rgba(255,255,255,0.65);
    margin-bottom: 32px;
    line-height: 1.7;
}

.hero-actions {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    justify-content: center;
}

.hero-stats { display: flex; gap: 40px; justify-content: center; }
.stat { display: flex; flex-direction: column; }
.stat strong { font-family: var(--font-display); font-size: 1.5rem; color: var(--primary); }
.stat span { font-size: 0.85rem; color: rgba(255,255,255,0.5); }

/* Hero Visual */
.hero-visual {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image-wrapper {
    position: relative;
    width: 420px;
    height: 420px;
}

.hero-circle {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0.12;
}

.hero-main-logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 320px;
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0,0,0,0.8));
}

.hero-wave {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 1;
}

.hero-wave svg {
    display: block;
    width: 100%;
    height: 80px;
}

/* ---------- Features ---------- */
.features {
    padding: 80px 0;
    background: var(--bg-alt);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.feature-card {
    text-align: center;
    padding: 44px 28px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.feature-icon { font-size: 2.5rem; margin-bottom: 16px; }

.feature-card h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--text);
    letter-spacing: -0.02em;
}

.feature-card p { color: var(--text-light); font-size: 0.9rem; }

/* ---------- Menu Section ---------- */
.menu-section {
    padding: 100px 0;
    background: var(--bg);
}

.menu-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 48px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 28px;
    border: 2px solid var(--border);
    border-radius: var(--radius-full);
    background: var(--bg-card);
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
    letter-spacing: -0.01em;
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.filter-btn.active {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 24px;
}

.menu-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.menu-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.menu-card.hidden { display: none; }

.menu-card-img {
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #111;
    border-bottom: 1px solid var(--border);
    overflow: hidden;
}

.menu-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.menu-emoji { font-size: 4rem; }

.menu-badge-popular {
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(242, 169, 0, 0.15);
    color: var(--primary);
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(242, 169, 0, 0.3);
}

.menu-card-body { padding: 28px; }

.menu-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.menu-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 800;
    color: var(--text);
    letter-spacing: -0.02em;
}

.price {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
}

.menu-card-body > p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 16px;
}

.menu-tags { display: flex; gap: 8px; flex-wrap: wrap; }

.tag {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(242, 169, 0, 0.1);
    border: 1px solid rgba(242, 169, 0, 0.2);
    color: var(--primary-light);
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: var(--radius-full);
}

/* ---------- About Section ---------- */
.about-section {
    padding: 100px 0;
    background: var(--bg-alt);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-img-wrapper {
    position: relative;
    width: 360px;
    height: 360px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-circle-bg {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border: 3px solid rgba(242, 169, 0, 0.3);
}

.about-chef-img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    border-radius: 50%;
}

.about-floating-badge {
    position: absolute;
    bottom: 20px; right: -10px;
    background: var(--primary);
    color: #000;
    padding: 16px 24px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    font-size: 1rem;
    font-weight: 700;
    z-index: 2;
}

.about-content .section-badge { display: inline-block; }

.about-content h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 20px;
    color: var(--text);
    letter-spacing: -0.03em;
}

.about-content p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 32px;
}

.value { display: flex; align-items: center; gap: 16px; }
.value-icon { font-size: 1.3rem; }
.value strong { display: block; font-size: 0.95rem; color: var(--text); }
.value span { color: var(--text-muted); font-size: 0.85rem; }

/* ---------- Gallery ---------- */
.gallery-section {
    padding: 100px 0;
    background: var(--bg);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 220px;
    gap: 16px;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    position: relative;
}

.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.tall { grid-row: span 2; }

.gallery-placeholder {
    width: 100%; height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: var(--text);
    background: linear-gradient(145deg, #1A1A1A, #111111);
    border: 1px solid var(--border);
    transition: var(--transition);
    cursor: pointer;
}

.gallery-placeholder span { font-size: 3rem; margin-bottom: 8px; }
.gallery-placeholder p { font-weight: 700; font-size: 0.95rem; opacity: 0.9; }
.gallery-item:hover .gallery-placeholder { border-color: var(--primary); }

/* ---------- Reviews ---------- */
.reviews-section {
    padding: 100px 0;
    background: var(--bg-alt);
}

.reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.review-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 36px;
    border-radius: var(--radius-lg);
    transition: var(--transition);
}

.review-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-hover);
    border-color: var(--primary);
}

.review-stars { margin-bottom: 16px; font-size: 1.1rem; }

.review-card > p {
    color: var(--text-light);
    font-size: 0.95rem;
    line-height: 1.7;
    margin-bottom: 24px;
    font-style: italic;
}

.review-author { display: flex; align-items: center; gap: 12px; }

.author-avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: rgba(242, 169, 0, 0.15);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 1.1rem;
}

.review-author strong { display: block; font-size: 0.95rem; color: var(--text); }
.review-author span { color: var(--text-muted); font-size: 0.8rem; }

/* ---------- Contact ---------- */
.contact-section {
    padding: 100px 0;
    background: var(--bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info .section-badge { display: inline-block; }

.contact-info h2 {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 800;
    line-height: 1.15;
    margin-bottom: 16px;
    color: var(--text);
    letter-spacing: -0.03em;
}

.contact-info > p {
    color: var(--text-light);
    margin-bottom: 32px;
    line-height: 1.7;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 32px;
}

.contact-item { display: flex; gap: 16px; align-items: start; }
.contact-icon { font-size: 1.5rem; margin-top: 2px; }
.contact-item strong { display: block; font-size: 0.95rem; margin-bottom: 2px; color: var(--text); }
.contact-item span { color: var(--text-light); font-size: 0.9rem; }

.social-links { display: flex; gap: 12px; }

.social-link {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    transition: var(--transition);
}

.social-link:hover {
    background: var(--primary);
    color: #000;
    border-color: var(--primary);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(242, 169, 0, 0.3);
}

/* Contact Form */
.contact-form-wrapper {
    background: var(--bg-card);
    border: 1px solid var(--border);
    padding: 44px;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 24px;
    color: var(--text);
    letter-spacing: -0.02em;
}

.form-group { margin-bottom: 16px; }

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
    width: 100%;
    padding: 16px 20px;
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--bg);
    transition: var(--transition);
    outline: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(242, 169, 0, 0.15);
}

.contact-form textarea { resize: vertical; min-height: 100px; }

/* ---------- Map ---------- */
.map-section { background: var(--bg); }

.map-placeholder {
    height: 320px;
    background: linear-gradient(135deg, #1A1A1A, #2A2A2A);
    display: flex;
    align-items: center;
    justify-content: center;
}

.map-content { text-align: center; color: var(--white); }
.map-icon { font-size: 3rem; display: block; margin-bottom: 16px; }

.map-content h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.map-content p { opacity: 0.7; margin-bottom: 24px; }

/* ---------- Footer ---------- */
.footer {
    background: #0A0A0A;
    color: rgba(255, 255, 255, 0.8);
    padding: 80px 0 0;
    border-top: 1px solid var(--border);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-brand-name {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
    opacity: 0.7;
}

.footer-links h4 {
    font-family: var(--font-display);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.footer-links li {
    margin-bottom: 12px;
    font-size: 0.9rem;
    opacity: 0.7;
}

.footer-links a:hover { opacity: 1; color: var(--primary-light); }

.footer-bottom {
    padding: 24px 0;
    text-align: center;
    font-size: 0.85rem;
    opacity: 0.5;
}

/* ---------- Scroll to Top ---------- */
.scroll-top {
    position: fixed;
    bottom: 30px; right: 30px;
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--primary);
    color: #000;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.scroll-top:hover {
    background: var(--primary-dark);
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(242, 169, 0, 0.3);
}

.scroll-top svg { stroke: #000; }

/* ---------- PWA Install Banner ---------- */
.pwa-install-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    transform: translateY(100%);
    animation: slideUpBanner 0.5s 2s forwards;
}

@keyframes slideUpBanner {
    to { transform: translateY(0); }
}

.pwa-install-inner {
    max-width: 500px;
    margin: 0 auto;
    padding: 0 16px 16px;
}

.pwa-install-card {
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
    border: 1px solid var(--primary);
    border-radius: var(--radius-lg);
    padding: 18px 20px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 -4px 30px rgba(242, 169, 0, 0.2), 0 8px 32px rgba(0,0,0,0.5);
    position: relative;
    overflow: hidden;
}

.pwa-install-card::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent 0%, rgba(242,169,0,0.08) 25%, transparent 50%);
    animation: rotateBannerGlow 4s linear infinite;
}

@keyframes rotateBannerGlow {
    to { transform: rotate(360deg); }
}

.pwa-install-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    box-shadow: 0 4px 12px rgba(242, 169, 0, 0.3);
}

.pwa-install-text {
    flex: 1;
    position: relative;
    z-index: 1;
}

.pwa-install-title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--white);
    margin-bottom: 2px;
}

.pwa-install-discount {
    display: inline-block;
    background: var(--secondary);
    color: #fff;
    font-size: 0.7rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: var(--radius-full);
    margin-left: 6px;
    animation: pulseBadge 2s infinite;
}

@keyframes pulseBadge {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.pwa-install-desc {
    font-size: 0.78rem;
    color: var(--text-muted);
    line-height: 1.3;
}

.pwa-install-btn {
    background: var(--primary);
    color: #000;
    border: none;
    padding: 10px 18px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.82rem;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
    z-index: 1;
    transition: var(--transition);
    flex-shrink: 0;
}

.pwa-install-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.05);
}

.pwa-install-btn:active {
    transform: scale(0.95);
}

.pwa-install-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.1rem;
    cursor: pointer;
    z-index: 2;
    padding: 4px;
    line-height: 1;
}

.pwa-install-close:hover {
    color: var(--white);
}

.pwa-install-banner.hidden {
    animation: slideDownBanner 0.3s forwards;
}

@keyframes slideDownBanner {
    to { transform: translateY(100%); }
}

/* iOS Install Instructions Modal */
.ios-install-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
}

.ios-install-modal.show {
    opacity: 1;
    visibility: visible;
}

.ios-install-content {
    background: #1e1e1e;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    padding: 28px 24px 36px;
    max-width: 400px;
    width: 100%;
    text-align: center;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.ios-install-modal.show .ios-install-content {
    transform: translateY(0);
}

.ios-install-content h3 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 20px;
}

.ios-install-steps {
    text-align: left;
    margin-bottom: 20px;
}

.ios-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text-light);
    font-size: 0.9rem;
}

.ios-step:last-child {
    border-bottom: none;
}

.ios-step-num {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: var(--primary);
    color: #000;
    font-weight: 700;
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ios-install-ok {
    background: var(--primary);
    color: #000;
    border: none;
    padding: 12px 32px;
    border-radius: var(--radius-full);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.9rem;
    cursor: pointer;
}

/* ---------- Fade-in Animation ---------- */
.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========================================
   RESPONSIVE DESIGN
   ======================================== */

/* Tablet */
@media screen and (max-width: 1024px) {
    .features-grid { grid-template-columns: repeat(2, 1fr); }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-visual { order: -1; }
    .about-content h2 { font-size: 2rem; }

    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .reviews-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }

    .s-layer.active::after,
    .s-layer:nth-child(even).active::after { display: none; }
}

/* Mobile */
@media screen and (max-width: 768px) {
    .container { padding: 0 16px; }

    /* Navbar */
    .nav-btn { font-size: 0.75rem; padding: 8px 14px; }

    /* Hero */
    .hero { min-height: auto; padding-top: 150px; padding-bottom: 0; }
    .hero-container { padding-top: 20px; padding-bottom: 60px; }
    .hero h1 { font-size: 2.2rem; text-shadow: 2px 2px 0px var(--secondary); }
    .hero-desc { font-size: 1rem; }
    .hero-badge { font-size: 0.8rem; padding: 6px 14px; }
    .hero-actions { flex-direction: column; align-items: center; }
    .hero-actions .btn { width: 100%; text-align: center; }
    .hero-stats { gap: 24px; flex-wrap: wrap; justify-content: center; }
    .stat strong { font-size: 1.2rem; }
    .hero-image-wrapper { width: 220px; height: 220px; }
    .hero-main-logo { width: 180px; }

    /* Features */
    .features { padding: 60px 0; }
    .features-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .feature-card { padding: 24px 16px; }
    .feature-card h3 { font-size: 1rem; }

    /* Menu */
    .menu-section { padding: 60px 0; }
    .section-header h2 { font-size: 2rem; }
    .section-header { margin-bottom: 40px; }
    .menu-filters { gap: 8px; }
    .filter-btn { padding: 8px 16px; font-size: 0.8rem; }
    .menu-grid { grid-template-columns: 1fr; gap: 16px; }

    /* About */
    .about-section { padding: 60px 0; }
    .about-img-wrapper { width: 260px; height: 260px; }
    .about-content h2 { font-size: 1.8rem; }

    /* Gallery */
    .gallery-section { padding: 60px 0; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-auto-rows: 160px;
        gap: 12px;
    }
    .gallery-item.large { grid-column: span 2; grid-row: span 1; }
    .gallery-item.tall { grid-row: span 1; }

    /* Reviews */
    .reviews-section { padding: 60px 0; }
    .reviews-grid { grid-template-columns: 1fr; }
    .review-card { padding: 24px; }

    /* Contact */
    .contact-section { padding: 60px 0; }
    .contact-info h2 { font-size: 2rem; }
    .form-row { grid-template-columns: 1fr; }
    .contact-form-wrapper { padding: 24px; }

    /* Map */
    .map-placeholder { height: 240px; }

    /* Footer */
    .footer { padding: 48px 0 0; }
    .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .footer-bottom { padding: 20px 0; }

    /* Scroll top */
    .scroll-top { bottom: 20px; right: 20px; width: 40px; height: 40px; }

    /* Sandwich Build */
    .sandwich-scroll-area { min-height: auto; padding: 60px 0; }
    .sandwich-main-title { font-size: 1.6rem; }
    .bread-top, .bread-bottom { width: 180px; }
    .bread-top { height: 42px; }
    .bread-bottom { height: 26px; }
    .lettuce-layer { width: 195px; height: 18px; }
    .tomato-layer { width: 185px; }
    .tomato-slice { width: 55px; height: 15px; }
    .cheese-layer { width: 185px; height: 13px; }
    .meat-layer { width: 182px; height: 17px; }
    .sauce-layer { width: 160px; }
    .sesame { width: 6px; height: 3px; }
    .s1 { top: 6px; left: 30px; }
    .s2 { top: 10px; left: 70px; }
    .s3 { top: 5px; left: 105px; }
    .s4 { top: 12px; left: 130px; }
    .s5 { top: 8px; left: 55px; }
}

/* Small Mobile */
@media screen and (max-width: 480px) {
    .hero h1 { font-size: 1.8rem; }
    .hero-image-wrapper { width: 180px; height: 180px; }
    .hero-main-logo { width: 140px; }
    .features-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: 1fr; grid-auto-rows: 180px; }
    .gallery-item.large { grid-column: span 1; }
    .about-img-wrapper { width: 200px; height: 200px; }
    .section-header h2 { font-size: 1.6rem; }
    .contact-info h2 { font-size: 1.6rem; }
    .about-content h2 { font-size: 1.5rem; }

    /* Sandwich Build - Small */
    .sandwich-scroll-area { height: 350vh; }
    .sandwich-main-title { font-size: 1.3rem; }
    .bread-top, .bread-bottom { width: 150px; }
    .bread-top { height: 36px; border-radius: 50px 50px 5px 5px; }
    .bread-bottom { height: 22px; }
    .lettuce-layer { width: 165px; height: 16px; }
    .lettuce-layer::before { width: 50px; height: 14px; }
    .lettuce-layer::after { width: 40px; height: 12px; }
    .tomato-layer { width: 155px; }
    .tomato-slice { width: 46px; height: 13px; }
    .cheese-layer { width: 155px; height: 12px; }
    .cheese-corner { border-left-width: 15px; border-bottom-width: 12px; right: -8px; bottom: -6px; }
    .meat-layer { width: 152px; height: 15px; }
    .sauce-layer { width: 130px; }
    .sauce-drip { width: 22px; height: 6px; }
    .sp-dot { width: 8px; height: 8px; }
    .sandwich-progress { gap: 7px; }
}
