/* ==================== GLOBAL STYLES ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Premium Honey & Chocolate Color Palette */
    --cream: #FFFBF2;
    --chocolate: #3E2723;
    --honey: #FFB300;
    --golden: #D4AF37;
    --light-brown: #8D6E63;
    --charcoal: #1a1a1a;
    --white: #ffffff;
    
    /* Spacing */
    --container-width: 1200px;
    --section-padding: 100px;
}

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

body {
    font-family: 'Cairo', 'Tajawal', 'Segoe UI', Tahoma, Arial, sans-serif;
    background-color: var(--cream);
    color: var(--chocolate);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 20px;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: var(--cream);
}

::-webkit-scrollbar-thumb {
    background: var(--honey);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--chocolate);
}

/* ==================== ANIMATIONS ==================== */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(255, 179, 0, 0.7);
    }
    50% {
        box-shadow: 0 0 0 20px rgba(255, 179, 0, 0);
    }
}

@keyframes bounce {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(10px);
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.pulse-button {
    animation: pulse-glow 2s infinite;
}

/* ==================== HERO SECTION ==================== */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(62, 39, 35, 0.8), rgba(62, 39, 35, 0.7), rgba(62, 39, 35, 0.9));
    z-index: 1;
}

.floating-nav {
    position: fixed;
    top: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 50;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 16px 32px;
    border-radius: 50px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    display: none;
}

.floating-nav a {
    margin: 0 16px;
    color: var(--chocolate);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s;
}

.floating-nav a:hover {
    color: var(--honey);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
}

.sparkle-icon {
    font-size: 64px;
    margin-bottom: 20px;
    animation: float 3s ease-in-out infinite;
}

.hero-title {
    font-family: 'Cairo', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 8vw, 6rem);
    color: var(--honey);
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    line-height: 1.2;
    margin-bottom: 30px;
}

.brand-badge {
    display: inline-block;
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    padding: 16px 32px;
    border-radius: 24px;
    margin-bottom: 30px;
}

.brand-badge h2 {
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    color: var(--honey);
}

.hero-subtitle {
    font-size: clamp(1rem, 3vw, 1.875rem);
    color: var(--cream);
    font-weight: 500;
    line-height: 1.8;
    margin-bottom: 30px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.flavor-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.flavor-tag {
    background: rgba(255, 179, 0, 0.2);
    backdrop-filter: blur(5px);
    color: var(--cream);
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 0.875rem;
    font-weight: 600;
    border: 1px solid rgba(255, 179, 0, 0.3);
    transition: all 0.3s;
}

.flavor-tag:hover {
    background: rgba(255, 179, 0, 0.4);
    transform: scale(1.05);
}

.cta-button {
    display: inline-block;
    background: linear-gradient(to right, var(--honey), #FFCA28);
    color: var(--chocolate);
    padding: 24px 56px;
    border-radius: 50px;
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 900;
    text-decoration: none;
    box-shadow: 0 10px 40px rgba(255, 179, 0, 0.4);
    transition: all 0.3s;
    margin-bottom: 40px;
}

.cta-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 179, 0, 0.6);
}

.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 30px;
}

.trust-badge {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: blur(10px);
    padding: 16px 24px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.badge-icon {
    font-size: 32px;
}

.badge-value {
    color: var(--honey);
    font-weight: 700;
    font-size: 1.25rem;
}

.badge-label {
    color: rgba(255, 251, 242, 0.8);
    font-size: 0.875rem;
}

.locations {
    color: rgba(255, 179, 0, 0.9);
    font-size: clamp(1rem, 2vw, 1.25rem);
    font-weight: 600;
    margin-top: 24px;
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--honey);
    animation: bounce 1.5s ease-in-out infinite;
    cursor: pointer;
}

/* ==================== SECTION HEADERS ==================== */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-emoji {
    font-size: 72px;
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Cairo', sans-serif;
    font-weight: 900;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--chocolate);
    margin-bottom: 16px;
}

.section-divider {
    width: 128px;
    height: 8px;
    background: linear-gradient(to right, var(--honey), var(--golden));
    margin: 0 auto 24px;
    border-radius: 4px;
}

.section-subtitle {
    font-size: clamp(1rem, 2.5vw, 1.5rem);
    color: var(--light-brown);
    font-weight: 500;
    line-height: 1.8;
    max-width: 900px;
    margin: 0 auto;
}

/* ==================== MENU SECTION ==================== */
.menu-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(to bottom, var(--cream), var(--white));
    position: relative;
}

.tab-switcher {
    display: flex;
    justify-content: center;
    margin-bottom: 60px;
}

.tab-switcher {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 8px;
    border-radius: 50px;
    display: inline-flex;
    gap: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.tab-button {
    padding: 16px 40px;
    border-radius: 50px;
    border: none;
    background: transparent;
    color: var(--light-brown);
    font-family: 'Cairo', sans-serif;
    font-weight: 700;
    font-size: 1.25rem;
    cursor: pointer;
    transition: all 0.3s;
}

.tab-button.active {
    background: linear-gradient(to right, var(--honey), #FFCA28);
    color: var(--chocolate);
    box-shadow: 0 4px 15px rgba(255, 179, 0, 0.3);
    transform: scale(1.05);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
    animation: fadeIn 0.5s ease-out;
}

.category-header {
    text-align: center;
    margin-bottom: 48px;
}

.category-header h3 {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    color: var(--chocolate);
    margin-bottom: 12px;
}

.category-header p {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: var(--light-brown);
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.menu-item {
    background: var(--white);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.menu-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(62, 39, 35, 0.2);
}

.menu-item-image {
    position: relative;
    height: 224px;
    overflow: hidden;
}

.menu-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s;
}

.menu-item:hover .menu-item-image img {
    transform: scale(1.25);
}

.menu-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3), transparent);
}

.calories-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: var(--chocolate);
    color: var(--honey);
    padding: 8px 16px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    font-size: 0.875rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.price-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(62, 39, 35, 0.95), rgba(62, 39, 35, 0.9), transparent);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding-bottom: 24px;
    opacity: 0;
    transition: opacity 0.3s;
}

.menu-item:hover .price-overlay {
    opacity: 1;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    width: 90%;
}

.price-item {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 12px;
    padding: 12px;
    text-align: center;
}

.price-label {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.75rem;
    margin-bottom: 4px;
}

.price-value {
    color: var(--honey);
    font-weight: 700;
    font-size: 1.125rem;
}

.menu-item-content {
    padding: 24px;
}

.menu-item-content h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--chocolate);
    margin-bottom: 8px;
}

.menu-item-content p {
    color: var(--light-brown);
    line-height: 1.6;
    margin-bottom: 16px;
}

.hover-hint {
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: var(--honey);
    font-weight: 700;
    font-size: 0.875rem;
}

.menu-cta {
    text-align: center;
    margin-top: 64px;
}

.secondary-button {
    display: inline-block;
    background: linear-gradient(to right, var(--chocolate), #5D4037);
    color: var(--honey);
    padding: 20px 48px;
    border-radius: 50px;
    font-family: 'Cairo', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    text-decoration: none;
    box-shadow: 0 10px 30px rgba(62, 39, 35, 0.3);
    transition: all 0.3s;
}

.secondary-button:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 40px rgba(62, 39, 35, 0.5);
}

/* ==================== WHY US SECTION ==================== */
.why-us-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(to bottom, var(--white), var(--cream));
    position: relative;
}

.stats-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-bottom: 64px;
}

.stat-badge {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 24px 32px;
    border-radius: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
}

.stat-badge:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.stat-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

.stat-icon.rating {
    background: linear-gradient(135deg, var(--honey), #FFC107);
}

.stat-icon.sales {
    background: linear-gradient(135deg, #4CAF50, #8BC34A);
}

.stat-icon.quality {
    background: linear-gradient(135deg, #9C27B0, #E91E63);
}

.stat-value {
    font-family: 'Cairo', sans-serif;
    font-weight: 900;
    font-size: 1.875rem;
    color: var(--chocolate);
}

.stat-label {
    color: var(--light-brown);
    font-weight: 600;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.feature-card {
    background: var(--white);
    padding: 32px;
    border-radius: 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.feature-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.feature-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: inline-block;
    padding: 16px;
    border-radius: 16px;
    background: linear-gradient(135deg, rgba(255, 179, 0, 0.2), rgba(212, 175, 55, 0.2));
}

.feature-card h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--chocolate);
    margin-bottom: 12px;
}

.feature-card p {
    color: var(--light-brown);
    line-height: 1.8;
}

.bottom-badge {
    text-align: center;
    margin-top: 80px;
}

.bottom-badge p {
    display: inline-block;
    background: linear-gradient(to right, var(--honey), #FFCA28);
    color: var(--chocolate);
    padding: 24px 48px;
    border-radius: 50px;
    font-family: 'Cairo', sans-serif;
    font-size: clamp(1.25rem, 3vw, 2rem);
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(255, 179, 0, 0.3);
}

/* ==================== DELIVERY SECTION ==================== */
.delivery-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(to bottom, var(--cream), var(--white));
    position: relative;
}

.delivery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 32px;
    max-width: 1000px;
    margin: 0 auto 64px;
}

.delivery-card {
    background: var(--white);
    padding: 48px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    color: inherit;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.delivery-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.delivery-icon {
    font-size: 56px;
    margin-bottom: 24px;
    display: inline-block;
    padding: 24px;
    border-radius: 24px;
    transition: transform 0.6s;
}

.delivery-card:hover .delivery-icon {
    transform: rotate(360deg);
}

.delivery-card.hungerstation .delivery-icon {
    background: linear-gradient(135deg, #EF5350, #EC407A);
}

.delivery-card.jahez .delivery-icon {
    background: linear-gradient(135deg, #FF9800, #FFB300);
}

.delivery-card h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--chocolate);
    margin-bottom: 16px;
}

.delivery-card p {
    color: var(--light-brown);
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.delivery-button {
    display: inline-block;
    padding: 16px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--white);
    transition: all 0.3s;
}

.hungerstation .delivery-button {
    background: linear-gradient(to right, #EF5350, #EC407A);
}

.jahez .delivery-button {
    background: linear-gradient(to right, #FF9800, #FFB300);
}

.delivery-card:hover .delivery-button {
    transform: scale(1.1);
}

.contact-card {
    max-width: 700px;
    margin: 0 auto;
    background: linear-gradient(to right, var(--honey), #FFCA28);
    padding: 40px;
    border-radius: 24px;
    text-align: center;
    box-shadow: 0 15px 50px rgba(255, 179, 0, 0.3);
    position: relative;
}

.contact-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, var(--honey), #FFCA28);
    filter: blur(40px);
    opacity: 0.2;
    z-index: -1;
}

.contact-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 24px;
}

.phone-icon {
    font-size: 40px;
}

.contact-header h3 {
    font-family: 'Cairo', sans-serif;
    font-size: clamp(1.5rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--chocolate);
}

.phone-number {
    display: inline-block;
    font-family: 'Cairo', sans-serif;
    font-size: clamp(1.875rem, 4vw, 2.5rem);
    font-weight: 900;
    color: var(--chocolate);
    text-decoration: none;
    transition: transform 0.3s;
}

.phone-number:hover {
    transform: scale(1.05);
}

.contact-hours {
    margin-top: 24px;
    color: rgba(62, 39, 35, 0.8);
    font-size: 1.125rem;
    font-weight: 600;
}

.contact-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
}

.contact-tags span {
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(5px);
    color: var(--chocolate);
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 700;
    font-size: 0.875rem;
}

.offer-badge {
    text-align: center;
    margin-top: 48px;
}

.offer-badge p {
    display: inline-block;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 16px 32px;
    border-radius: 50px;
    color: var(--chocolate);
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* ==================== FOOTER ==================== */
.footer {
    background: linear-gradient(to bottom, var(--chocolate), #2C1810);
    color: var(--cream);
    padding: 80px 0 40px;
    position: relative;
    overflow: hidden;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 48px;
    margin-bottom: 64px;
}

.footer-col.branches {
    grid-column: span 2;
}

.footer-brand h3 {
    font-family: 'Cairo', sans-serif;
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--honey);
    margin-bottom: 8px;
}

.brand-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(to right, var(--honey), #FFCA28);
    border-radius: 2px;
    margin-bottom: 24px;
}

.footer-desc {
    color: rgba(255, 251, 242, 0.8);
    line-height: 1.8;
    font-size: 1.125rem;
    margin-bottom: 24px;
}

.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.footer-contact {
    display: flex;
    align-items: center;
    gap: 12px;
    color: rgba(255, 251, 242, 0.9);
    text-decoration: none;
    transition: color 0.3s;
    font-weight: 600;
}

.footer-contact:hover {
    color: var(--honey);
}

.contact-icon {
    background: rgba(255, 179, 0, 0.2);
    padding: 8px;
    border-radius: 8px;
    font-size: 20px;
}

.footer-col h4 {
    font-family: 'Cairo', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--honey);
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
}

.branch-item {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(5px);
    border-right: 4px solid var(--honey);
    padding: 16px;
    border-radius: 8px;
    transition: all 0.3s;
}

.branch-item:hover {
    background: rgba(255, 255, 255, 0.1);
}

.branch-item h5 {
    font-family: 'Cairo', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.branch-item p {
    color: rgba(255, 251, 242, 0.7);
    font-size: 0.875rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-bottom: 32px;
}

.social-links a {
    width: 56px;
    height: 56px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.social-links a:hover {
    background: var(--honey);
    transform: scale(1.15) rotate(5deg);
}

.working-hours {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(5px);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255, 179, 0, 0.3);
}

.hours-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

.hours-header span {
    font-size: 24px;
}

.hours-header h5 {
    font-family: 'Cairo', sans-serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--honey);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(255, 251, 242, 0.9);
    font-weight: 600;
}

.hours-row span:last-child {
    color: var(--honey);
    font-weight: 700;
}

.hours-divider {
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.2);
    margin: 12px 0;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 32px;
    text-align: center;
}

.footer-bottom > p {
    color: rgba(255, 251, 242, 0.8);
    font-weight: 600;
    margin-bottom: 16px;
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
}

.footer-links a {
    color: rgba(255, 251, 242, 0.8);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--honey);
}

.footer-links span {
    color: rgba(255, 255, 255, 0.3);
}

.footer-love {
    color: rgba(255, 179, 0, 0.6);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 16px;
}

/* ==================== RESPONSIVE DESIGN ==================== */
@media (min-width: 768px) {
    .floating-nav {
        display: flex;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .menu-grid,
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .delivery-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-col.branches {
        grid-column: span 1;
    }
    
    .branches-grid {
        grid-template-columns: 1fr;
    }
    
    .stats-badges {
        flex-direction: column;
        align-items: stretch;
    }
    
    .tab-button {
        padding: 12px 24px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .cta-button {
        padding: 18px 36px;
        font-size: 1.25rem;
    }
    
    .flavor-tags {
        gap: 8px;
    }
    
    .flavor-tag {
        padding: 8px 16px;
        font-size: 0.75rem;
    }
}
