:root {
    --color-primary: #3030C6;
    --color-secondary: #ff8a81;
    --color-bg: #ffffff;
    --color-text: #2d2d2d;
    --color-text-light: #666666;
    --color-accent-green: #7fd1a1;
    --color-accent-yellow: #ffdf60;
    --color-accent-orange: #ffa726;
    --color-accent-pink: #f48fb1;
    --color-accent-pale-yellow: #fff59d;
    --color-accent-pale-green: #c8e6c9;
    --color-accent-raspberry: #f06292;

    --font-main: 'Cera Pro', 'Outfit', sans-serif;

    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;

    --border-radius: 30px;
    --box-shadow: 0 10px 30px rgba(48, 48, 198, 0.1);
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
    scroll-behavior: smooth;
}

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

h1,
h2,
h3 {
    font-weight: 700;
    line-height: 1.1;
}

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

section {
    padding: var(--spacing-xl) 0;
}

/* Sticky Header */
header {
    padding: 1rem 0;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

header.visible {
    transform: translateY(0);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 54px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 30px;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    color: var(--color-text);
    font-weight: 600;
}

/* Hero Section - Centered content with logo */
.hero {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding-top: 110px;
}

.hero-content {
    max-width: min(900px, 92vw);
    position: relative;
    z-index: 10;
}

.hero-logo {
    display: block;
    margin: 0 auto 1rem;
    height: clamp(120px, 12vh, 200px);
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
}

.hero h1 {
    font-size: clamp(2rem, 3vw + 0.5rem, 4.2rem);
    margin-bottom: 1rem;
    color: var(--color-primary);
    letter-spacing: -1px;
}

.hero p {
    font-size: clamp(1rem, 1.2vw + 0.2rem, 1.3rem);
    color: var(--color-text-light);
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Dense Floating Elements */
.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.fruit {
    position: absolute;
}

.float-1 {
    animation: float1 10s ease-in-out infinite;
}

.float-2 {
    animation: float2 12s ease-in-out infinite;
}

.float-3 {
    animation: float3 15s ease-in-out infinite;
}

.float-4 {
    animation: float4 8s ease-in-out infinite;
}

@keyframes float1 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(30px, -50px) rotate(10deg);
    }
}

@keyframes float2 {

    0%,
    100% {
        transform: translate(0, 0) rotate(0deg);
    }

    50% {
        transform: translate(-40px, -30px) rotate(-20deg);
    }
}

@keyframes float3 {

    0%,
    100% {
        transform: translate(0, 0) scale(1);
    }

    50% {
        transform: translate(20px, 20px) scale(1.1);
    }
}

@keyframes float4 {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.2) rotate(10deg);
    }
}

/* Bottom-row fruit animations — downward only, no upward/sideways movement to prevent overlap with buttons or each other */
.float-bottom-1 {
    animation: floatBottom1 11s ease-in-out infinite;
}

.float-bottom-2 {
    animation: floatBottom2 9s ease-in-out infinite;
}

.float-bottom-3 {
    animation: floatBottom3 13s ease-in-out infinite;
}

@keyframes floatBottom1 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50%       { transform: translate(0, 14px) rotate(8deg); }
}

@keyframes floatBottom2 {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50%       { transform: scale(1.12) rotate(-10deg); }
}

@keyframes floatBottom3 {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    50%       { transform: translate(0, 12px) rotate(-7deg); }
}

/* About Us Section - Reduce bottom padding */
.about-split {
    padding-top: 4rem;
    padding-bottom: 1rem;
}

.catering-split {
    padding-top: 2rem;
    padding-bottom: 4rem;
    background-color: #fafaff;
}

.split-section {
    display: grid;
    grid-template-columns: 1.8fr 1.2fr;
    gap: var(--spacing-xl);
    align-items: start;
    max-width: 1400px;
    margin: 0 auto;
}

.split-section.mirrored {
    grid-template-columns: 1.2fr 1.8fr;
}

.menu-previews {
    padding: 0;
}

.massive-about-image {
    width: 100%;
    border-radius: 80px;
    box-shadow: 0 30px 60px rgba(48, 48, 198, 0.2);
    transition: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.about-text h2,
.catering-text h2 {
    font-size: clamp(2rem, 2.8vw + 0.5rem, 3.5rem);
    margin-bottom: var(--spacing-md);
    color: var(--color-primary);
}

.catering-text {
    padding-right: 40px;
}

/* Footer logo */
.footer-logo {
    height: 90px;
    max-width: 100%;
    display: block;
}

/* About Us - Read More toggle */
.about-body {
    max-height: 10.5em;
    overflow: hidden;
    transition: max-height 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    line-height: 1.75;
}

.about-body.expanded {
    max-height: 600px;
}

.about-fade {
    height: 48px;
    margin-top: -48px;
    background: linear-gradient(to bottom, transparent, #ffffff);
    position: relative;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.about-fade.hidden {
    opacity: 0;
}

.about-toggle {
    display: block;
    background: none;
    border: none;
    color: var(--color-primary);
    font-weight: 600;
    font-size: 1rem;
    font-family: inherit;
    cursor: pointer;
    padding: 0;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    text-decoration: underline;
    text-decoration-style: dotted;
    text-underline-offset: 3px;
    transition: color 0.2s ease;
    text-align: left;
}

.about-toggle:hover {
    color: var(--color-secondary);
}

/* Gallery Section - Reduce top padding */
.gallery {
    padding-top: 2rem;
}

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

.gallery-item {
    aspect-ratio: 1;
    border-radius: 20px;
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

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

/* Gallery Lightbox - Mobile Only */
.gallery-lightbox {
    display: none;
}

/* Creative Button Hovers */
.btn {
    display: inline-block;
    padding: 1.2rem 2.8rem;
    border-radius: 50px;
    background-color: var(--color-secondary);
    color: white;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: none;
    cursor: pointer;
    box-shadow: 0 10px 20px rgba(255, 138, 129, 0.4);
    position: relative;
    overflow: visible;
}

.btn::after {
    content: '😋';
    position: absolute;
    top: -20px;
    right: -10px;
    font-size: 1.5rem;
    opacity: 0;
    transform: translateY(10px) scale(0);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    pointer-events: none;
}

.btn:hover {
    transform: scale(1.1) rotate(2deg);
    background-color: var(--color-primary);
    box-shadow: 0 15px 30px rgba(48, 48, 198, 0.4);
}

.btn:hover::after {
    opacity: 1;
    transform: translateY(-10px) scale(1) rotate(15deg);
}

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

@keyframes wiggle {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-3deg);
    }

    75% {
        transform: rotate(3deg);
    }
}

.nav-links a:hover {
    color: var(--color-secondary);
    display: inline-block;
    animation: wiggle 0.3s ease infinite;
}

/* Contact Section */
.contact {
    background-color: #fcfcfc;
}

.contact-map {
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
    filter: saturate(0.8) contrast(1.1);
    /* Stylizing map to match the brand */
}

.contact-info h3 {
    font-size: clamp(1.8rem, 2.5vw + 0.5rem, 3rem);
    color: var(--color-primary);
    margin-bottom: 2rem;
}

.contact-detail {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--color-text);
}

.contact-detail a {
    color: var(--color-secondary);
    text-decoration: none;
    font-weight: 600;
}

.social-hub {
    margin-top: 3rem;
}

.social-hub h4 {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    color: var(--color-text-light);
}

.social-icons {
    display: flex;
    gap: 20px;
}

.social-icon {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.social-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--color-primary);
    transition: all 0.4s ease;
}

.social-icon:hover {
    transform: scale(1.2) rotate(8deg);
    background: var(--color-primary);
    box-shadow: 0 15px 30px rgba(48, 48, 198, 0.2);
}

.social-icon:hover svg {
    fill: white;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

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

.hero h1 {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.2s forwards;
}

.hero p {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.4s forwards;
}

.hero .btn {
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

@media (max-width: 992px) {

    .split-section,
    .split-section.mirrored {
        grid-template-columns: 1fr;
    }

    .about-split .split-section {
        gap: 4rem;
    }

    .catering-split .split-section {
        gap: 4rem;
    }
}

/* Hero Actions */
.hero-actions {
    display: flex;
    gap: 20px;
    justify-content: center;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out 0.6s forwards;
}

.btn-outline {
    background-color: transparent;
    border: 2px solid var(--color-secondary);
    color: var(--color-secondary);
    box-shadow: none;
}

.btn-outline:hover {
    background-color: var(--color-secondary);
    color: white;
}

/* Modal Styling */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(48, 48, 198, 0.4);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    background: white;
    padding: 3rem 2.5rem;
    border-radius: 40px;
    max-width: 620px;
    width: 92%;
    text-align: center;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
    transform: scale(0.8);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal-overlay.active .modal-content {
    transform: scale(1);
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2.5rem;
    border: none;
    background: none;
    cursor: pointer;
    color: var(--color-text-light);
    line-height: 1;
}

.modal-close:hover {
    color: var(--color-secondary);
}

.modal-content h3 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 1rem;
}

.modal-content p {
    font-size: 1.2rem;
    color: var(--color-text-light);
    margin-bottom: 2rem;
}

.delivery-options {
    display: flex;
    gap: 15px;
    justify-content: center;
}

.order-options {
    display: flex;
    flex-direction: row;
    gap: 12px;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
}

.order-option-btn {
    flex: 1;
    text-align: center;
    white-space: nowrap;
    padding: 1rem 1.4rem;
    font-size: 1rem;
}

.order-option-catering {
    background-color: var(--color-accent-green);
    box-shadow: 0 10px 20px rgba(127, 209, 161, 0.4);
}

.order-option-catering:hover {
    background-color: var(--color-primary);
}

.btn-disabled {
    background-color: #eee;
    color: #999;
    box-shadow: none;
    cursor: not-allowed;
    pointer-events: none;
}

@media (max-width: 992px) {
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background-color: var(--color-primary);
    margin: 3px 0;
    transition: all 0.3s ease;
    border-radius: 3px;
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Mobile Order Button */
.btn-mobile-order {
    display: none;
}

.nav-order-mobile {
    display: none;
}

.btn-desktop-order {
    display: inline-block;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 2rem;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    header {
        padding: 0.8rem 0;
    }

    nav {
        position: relative;
    }

    .logo {
        order: 2;
        margin: 0 auto;
    }

    .hamburger {
        display: flex;
        order: 3;
    }

    .btn-mobile-order {
        display: inline-block;
        order: 1;
        padding: 0.5rem 1rem !important;
        font-size: 0.8rem !important;
    }

    .btn-desktop-order {
        display: none;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 70%;
        height: 100vh;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        background: white;
        box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
        transition: right 0.3s ease;
        z-index: 1000;
        padding-top: 80px;
    }

    .nav-menu.active {
        right: 0;
    }

    .nav-links {
        flex-direction: column;
        gap: 0;
        padding: 2rem;
        align-items: center;
        text-align: center;
    }

    .nav-links li {
        margin-bottom: 1.5rem;
        width: 100%;
        text-align: center;
    }

    .nav-links a {
        font-size: 1.2rem;
    }

    .nav-order-mobile {
        display: block;
        margin-top: 0.5rem;
    }

    /* Fix hero section for mobile */
    .hero {
        padding-top: 90px;
        padding-bottom: 3rem;
        height: auto;
        min-height: unset;
        align-items: flex-start;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        padding: 0 1.2rem;
    }

    .hero-logo {
        height: 80px;
        margin-bottom: 0.7rem;
    }

    .hero h1 {
        font-size: 1.7rem;
        letter-spacing: -0.5px;
        margin-bottom: 0.8rem;
    }

    .hero p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
        padding: 0;
    }

    .hero-actions {
        flex-direction: row;
        gap: 10px;
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        padding: 0;
    }

    .hero-actions .btn,
    .hero-actions .btn-outline {
        flex: 1;
        min-width: 120px;
        max-width: 160px;
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
        white-space: nowrap;
        text-align: center;
    }

    /* Hide floating food decorations on mobile */
    .floating-elements {
        display: none;
    }

    /* Hide hero logo on mobile */
    .hero-logo {
        display: none;
    }

    /* Header logo size on mobile */
    .logo img {
        height: 55px;
    }

    /* Reduce section spacing on mobile */
    section {
        padding: var(--spacing-md) 0;
    }

    .about-split {
        padding-top: var(--spacing-md);
        padding-bottom: var(--spacing-sm);
    }

    .catering-split {
        padding-top: var(--spacing-md);
        padding-bottom: var(--spacing-md);
    }

    .gallery {
        padding-top: var(--spacing-sm);
    }

    /* Footer logo on mobile */
    .footer-logo {
        height: auto;
        width: auto;
        max-height: 55px;
        max-width: 75vw;
        margin: 0 auto;
    }
}

/* Overlay for mobile menu */
.menu-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 999;
}

.menu-overlay.active {
    display: block;
}

/* Food Placeholders */
.food-placeholder {
    width: 200px;
    height: 200px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.food-placeholder:hover {
    transform: scale(1.05) !important;
}

.salad-placeholder {
    background: linear-gradient(135deg, #c8e6c9 0%, #7fd1a1 100%);
}

.pasta-placeholder {
    background: linear-gradient(135deg, #ffe082 0%, #ffab91 100%);
}

.sandwich-placeholder {
    background: linear-gradient(135deg, #fff9c4 0%, #ffe082 100%);
}

/* Menu Section Styles */
.menu-section {
    padding: var(--spacing-xl) 0;
    background: #fafaff;
}

.menu-close {
    position: absolute;
    top: 20px;
    right: 30px;
    background: none;
    border: none;
    font-size: 48px;
    color: var(--color-primary);
    cursor: pointer;
    transition: transform 0.3s ease, color 0.3s ease;
    z-index: 2001;
}

.menu-close:hover {
    transform: rotate(90deg);
    color: var(--color-accent);
}

.menu-category {
    margin-bottom: 20px;
    border: 2px solid #f0f0f0;
    border-radius: 15px;
    overflow: hidden;
    background: white;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.menu-category-header {
    width: 100%;
    padding: 25px 30px;
    background: linear-gradient(135deg, #ff8a81 0%, #7fd1a1 100%) !important;
    color: white !important;
    border: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 700;
    transition: all 0.3s ease;
    text-align: left;
}

.menu-category-header:hover {
    background: linear-gradient(135deg, #7fd1a1 0%, #ff8a81 100%) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.15);
}

.menu-arrow {
    transition: transform 0.3s ease;
    font-size: 1.2rem;
}

.menu-category-header.active .menu-arrow {
    transform: rotate(180deg);
}

.menu-category-content {
    padding: 20px 30px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 20px 0;
    border-bottom: 1px solid #f0f0f0;
}

.menu-item:last-child {
    border-bottom: none;
}

.menu-item-info h4 {
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.menu-item-info p {
    color: var(--color-text-light);
    font-size: 0.95rem;
    margin: 0;
}

.menu-item-price {
    color: var(--color-accent);
    font-size: 1.3rem;
    font-weight: 700;
    white-space: nowrap;
    margin-left: 20px;
}

/* Mobile Responsive for Menu */
@media (max-width: 768px) {
    .food-placeholder {
        width: 150px;
        height: 150px;
        font-size: 60px;
    }

    .menu-accordion {
        padding: 80px 15px 40px;
    }

    .menu-category-header {
        font-size: 1.2rem;
        padding: 20px;
    }

    .menu-item {
        flex-direction: column;
        gap: 10px;
    }

    .menu-item-price {
        margin-left: 0;
    }

    .menu-close {
        font-size: 36px;
        top: 15px;
        right: 20px;
    }
}

/* Cart Section */
.cart-section {
    margin-top: 60px;
    padding: 30px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px;
    border: 2px solid var(--color-primary);
}

.cart-section h3 {
    color: var(--color-primary);
    font-size: 1.8rem;
    margin-bottom: 20px;
    text-align: center;
}

.cart-items {
    min-height: 100px;
    margin-bottom: 20px;
}

.cart-empty {
    text-align: center;
    color: var(--color-text-light);
    font-style: italic;
    padding: 20px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: white;
    border-radius: 10px;
    margin-bottom: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.cart-item.swiping {
    transition: transform 0.1s ease;
}

.cart-item.removing {
    animation: slideOutLeft 0.3s ease forwards;
    opacity: 0;
}

@keyframes slideOutLeft {
    to {
        transform: translateX(-100%);
        opacity: 0;
    }
}

.cart-item-name {
    font-weight: 600;
    color: var(--color-primary);
    font-size: 1.1rem;
    flex: 1;
}

.cart-item-quantity {
    display: inline-block;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-accent) 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.85rem;
    margin-left: 8px;
    font-weight: 700;
}

.cart-item-price {
    color: var(--color-accent);
    font-weight: 700;
    font-size: 1.2rem;
    margin-right: 10px;
}

.cart-item-remove {
    background: var(--color-secondary);
    color: white;
    border: none;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    font-size: 1.5rem;
    line-height: 1;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cart-item-remove:hover {
    background: var(--color-primary);
    transform: scale(1.1) rotate(90deg);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: white;
    border-radius: 10px;
    font-size: 1.5rem;
    border: 2px solid var(--color-primary);
}

.cart-total strong {
    color: var(--color-primary);
}

.cart-total span {
    color: var(--color-accent);
    font-weight: 700;
}

/* Menu item interaction styling */
.menu-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-item:hover {
    background: rgba(0, 0, 0, 0.02);
    transform: translateX(5px);
}

.menu-item.adding {
    animation: itemAdded 0.3s ease;
}

@keyframes itemAdded {
    0% {
        background: rgba(127, 209, 161, 0.3);
        transform: scale(1);
    }

    50% {
        background: rgba(127, 209, 161, 0.5);
        transform: scale(1.02);
    }

    100% {
        background: transparent;
        transform: scale(1);
    }
}

/* Mobile responsive for cart */
@media (max-width: 768px) {
    .cart-section {
        padding: 20px;
        margin-top: 40px;
    }

    .cart-item {
        padding: 12px 15px;
    }

    .cart-item-name {
        font-size: 1rem;
    }

    .cart-item-price {
        font-size: 1.1rem;
    }

    .cart-item-remove {
        width: 28px;
        height: 28px;
        font-size: 1.3rem;
    }

    .cart-total {
        font-size: 1.2rem;
    }
}

/* --- New Menu Page Structure --- */
.menu-hero {
    height: 60vh;
    background:
        linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)) center / cover no-repeat,
        url('assets/menuback.png') center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 85px;
    /* Header offset */
}

.menu-hero-content h1 {
    font-size: 5rem;
    margin-bottom: 1rem;
    color: white !important;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.menu-hero-content p {
    font-size: 1.5rem;
    opacity: 0.9;
    color: white !important;
}

.category-nav {
    position: sticky;
    top: 122px;
    background: white;
    z-index: 99;
    padding: 14px 0;
    border-bottom: 1px solid #f0f0f0;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-pills-wrapper {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.nav-pills {
    display: flex;
    gap: 10px;
    flex-wrap: nowrap;
    padding: 4px 16px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    justify-content: center;
    min-width: max-content;
    margin: 0 auto;
}

.nav-pills::-webkit-scrollbar {
    display: none;
}

/* Fade edges when overflowing */
.nav-pills-wrapper::before,
.nav-pills-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 32px;
    z-index: 1;
    pointer-events: none;
    transition: opacity 0.3s;
}
.nav-pills-wrapper::before {
    left: 0;
    background: linear-gradient(to right, white, transparent);
}
.nav-pills-wrapper::after {
    right: 0;
    background: linear-gradient(to left, white, transparent);
}

.nav-carousel-arrow {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #e0e0f0;
    background: white;
    color: var(--color-primary);
    font-size: 1.4rem;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    margin: 0 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.nav-carousel-arrow:hover {
    background: var(--color-primary);
    color: white;
    border-color: var(--color-primary);
    box-shadow: 0 4px 12px rgba(48,48,198,0.2);
}

.nav-carousel-arrow:disabled {
    opacity: 0.25;
    cursor: default;
    box-shadow: none;
}

.nav-pill {
    padding: 10px 25px;
    border-radius: 50px;
    text-decoration: none;
    color: var(--color-primary);
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    background: #f8f8ff;
}

.nav-pill:hover,
.nav-pill.active {
    background: var(--color-primary);
    color: white;
}

.menu-category {
    padding: 80px 0 20px;
    scroll-margin-top: 200px;
}

.menu-category h2 {
    font-size: 2.5rem;
    color: var(--color-primary);
    margin-bottom: 40px;
    text-align: center;
}

.menu-items-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 900px;
    margin: 0 auto;
}

.menu-item-card {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-left: 5px solid var(--color-secondary);
    transition: all 0.3s ease;
}

.menu-item-card:hover {
    transform: translateX(10px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.item-info h3 {
    font-size: 1.5rem;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.item-info p {
    color: var(--color-text-light);
    font-size: 1rem;
}

.item-card-price {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-primary);
    white-space: nowrap;
    margin-left: 20px;
}

@media (max-width: 768px) {
    .menu-hero {
        height: 42vh;
    }

    .menu-hero-content h1 {
        font-size: 3rem;
    }

    .menu-item-card {
        flex-direction: column;
        gap: 15px;
    }

    .item-card-price {
        margin-left: 0;
    }

    .category-nav {
        top: 78px;
        padding: 10px 0;
    }

    .nav-carousel-arrow {
        width: 30px;
        height: 30px;
        font-size: 1.2rem;
        margin: 0 4px;
    }

    /* justify-content: center + overflow-x: auto clips the left side on mobile —
       flex-start lets the container scroll freely from the beginning */
    .nav-pills {
        justify-content: flex-start;
        min-width: unset;
        margin: 0;
    }
}

/* =============================================
   TABLET — 769px to 1199px
   ============================================= */
@media (min-width: 769px) and (max-width: 1199px) {
    .split-section {
        gap: 3rem;
    }

    .hero {
        padding-top: 120px;
    }

    .catering-text {
        padding-right: 20px;
    }

    .contact-info h3 {
        font-size: 2rem;
    }

    .contact-detail {
        font-size: 1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 15px;
    }

    .logo img {
        height: 42px;
    }

    .nav-links {
        gap: 20px;
    }
}

/* =============================================
   LARGE DESKTOP — 1400px to 1919px (1440p)
   ============================================= */
@media (min-width: 1400px) {
    .container {
        max-width: 1380px;
    }

    .split-section {
        max-width: 1380px;
    }

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

    .logo img {
        height: 60px;
    }
}

/* =============================================
   FULL HD+ — 1920px to 2559px
   ============================================= */
@media (min-width: 1920px) {
    .container {
        max-width: 1700px;
    }

    .split-section {
        max-width: 1700px;
    }

    .hero {
        padding-top: 130px;
    }

    .logo img {
        height: 66px;
    }

    .nav-links {
        gap: 40px;
        font-size: 1.1rem;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 28px;
    }

    .gallery-item {
        border-radius: 28px;
    }

    .massive-about-image {
        border-radius: 60px;
    }

    .contact-map {
        border-radius: 50px;
    }

    .social-icon {
        width: 72px;
        height: 72px;
    }

    .social-icon svg {
        width: 30px;
        height: 30px;
    }
}

/* =============================================
   4K — 2560px and above
   ============================================= */
@media (min-width: 2560px) {
    html {
        font-size: 20px;
    }

    .container {
        max-width: 2200px;
    }

    .split-section {
        max-width: 2200px;
    }

    .hero {
        padding-top: 160px;
    }

    .logo img {
        height: 84px;
    }

    .nav-links {
        gap: 50px;
    }

    header {
        padding: 1.5rem 0;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 36px;
    }

    .gallery-item {
        border-radius: 36px;
    }

    .massive-about-image {
        border-radius: 80px;
    }

    .contact-map {
        border-radius: 60px;
    }

    .social-icon {
        width: 90px;
        height: 90px;
    }

    .social-icon svg {
        width: 38px;
        height: 38px;
    }

    .btn {
        padding: 1.4rem 3.2rem;
        font-size: 1.3rem;
    }

    .modal-content {
        max-width: 680px;
        padding: 5rem;
        border-radius: 56px;
    }

    .contact-detail {
        font-size: 1.3rem;
        margin-bottom: 1.4rem;
    }

    .social-hub h4 {
        font-size: 1.5rem;
    }

    .catering-text {
        padding-right: 60px;
    }
}

/* Gallery Lightbox - Mobile Only Active Styles */
@media (max-width: 768px) {
    .gallery-lightbox.active {
        position: fixed;
        inset: 0;
        background: rgba(0, 0, 0, 0.92);
        z-index: 9999;
        display: flex;
        align-items: center;
        justify-content: center;
        padding: 1rem;
    }

    .gallery-lightbox img {
        max-width: 100%;
        max-height: 90vh;
        object-fit: contain;
        border-radius: 12px;
        display: block;
    }

    .gallery-item img {
        cursor: pointer;
    }
}