:root {
    /* Colors */
    --primary-red: #ce2101;
    --primary-yellow: #ffc612;
    --text-dark: #232223;
    --text-body: #575457;
    --bg-white: #FFFFFF;
    --bg-light-gray: #F8F8F8;
    --bg-footer: #232223;
    --price-color: #ce2101;

    /* Fonts */
    --font-heading: 'Josefin Sans', sans-serif;
    --font-body: 'Lato', sans-serif;

    /* Transitions */
    --transition: all 0.3s ease;

    /* Spacing */
    --container-max-width: 1200px;
    --section-padding: 80px 0;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--text-dark);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

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

.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    font-size: 14px;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    text-align: center;
}

.btn-primary {
    background-color: var(--primary-yellow);
    color: var(--text-dark);
}

.btn-primary:hover {
    background-color: var(--text-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.btn-red {
    background-color: var(--primary-red);
    color: #fff;
}

.btn-red:hover {
    background-color: var(--text-dark);
    transform: translateY(-2px);
}

/* Header Styles */
.top-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    font-size: 11px;
    font-weight: 700;
}

.top-bar-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.top-left {
    display: flex;
    gap: 20px;
}

.top-left span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #999;
}

.top-left i {
    font-size: 16px;
    color: var(--primary-red);
}

.top-right a {
    color: #999;
}

.top-right a:hover {
    color: var(--primary-red);
}

/* Notifications */
.notif-bar {
    background: #FFF5F7;
    padding: 10px 0;
    text-align: center;
    font-size: 13px;
    color: var(--primary-red);
    position: relative;
    border-bottom: 1px solid #FFE0E5;
}

.notif-bar strong {
    font-weight: 700;
}

.close-notif {
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #ccc;
    font-size: 12px;
}

header {
    background: #fff;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    will-change: background, box-shadow;
    transition: background 0.3s ease, box-shadow 0.3s ease, padding 0.3s ease;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.05);
}

header.header-scrolled {
    padding: 5px 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

header.header-scrolled .logo img {
    height: 100px;
}

header.header-red {
    background: var(--primary-red);
    color: #fff;
}

header.header-red .nav-links a {
    color: #fff;
}

header.header-red .nav-links a:hover {
    color: var(--primary-yellow);
}

header.header-red .nav-links a::after {
    background: var(--primary-yellow);
}

header.header-red .contact-info,
header.header-red .header-icons i {
    color: #fff;
}

header.header-red .contact-info i {
    color: var(--primary-yellow);
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 100px;
}

.nav-links {
    display: flex;
    gap: 25px;
}

.nav-links a {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    color: var(--text-dark);
    position: relative;
    padding: 5px 0;
}

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

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--primary-red);
    border-radius: 50%;
    opacity: 0;
    transition: var(--transition);
}

.nav-links a:hover::after {
    opacity: 1;
}

.header-right {
    display: flex;
    align-items: center;
    gap: 20px;
}

.contact-info {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 700;
}

.contact-info i {
    color: var(--primary-red);
    font-size: 18px;
}

.header-icons {
    display: flex;
    gap: 15px;
    align-items: center;
}

.header-icons i {
    font-size: 20px;
    cursor: pointer;
}

.cart-icon {
    position: relative;
}

.cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background: var(--primary-red);
    color: #fff;
    font-size: 10px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .nav-links {
        display: none;
    }
}

/* Page Banner */
.page-banner {
    padding: 100px 0;
    background-size: cover;
    background-position: center;
    position: relative;
    text-align: center;
    color: #fff;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.banner-inner {
    position: relative;
    z-index: 1;
}

.page-banner h1 {
    font-size: 64px;
    color: #fff;
    margin-bottom: 15px;
}

.breadcrumbs {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
}

.breadcrumbs a {
    color: var(--primary-yellow);
}

.breadcrumbs span {
    color: #fff;
}



.rounded-hero {
    border-radius: 20px;
    background: linear-gradient(135deg, #FF002E 0%, #B80021 100%);
    overflow: hidden;
    padding: 80px 0;
    position: relative;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

/* Background Pattern (Doodles) */
.rounded-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: radial-gradient(rgba(255, 255, 255, 0.1) 1px, transparent 1px);
    background-size: 30px 30px;
    opacity: 0.5;
    pointer-events: none;
}

.hero-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 2;
    padding: 0 80px;
}

.hero-title.tilt {
    font-size: 90px;
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -2px;
    /* transform: rotate(-2deg); */
    margin-bottom: 40px;
}

.hero-title .plus {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 80px;
    vertical-align: middle;
}

.yellow-price .price {
    color: var(--primary-yellow);
    font-size: 52px;
}

.yellow-price .label {
    color: #fff;
    font-size: 11px;
    background: rgba(0, 0, 0, 0.2);
    padding: 2px 8px;
    border-radius: 4px;
    margin-top: -5px;
}

.collage-image img {
    max-width: 140% !important;
    transform: rotate(5deg);
    filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.4));
}

@media (max-width: 1200px) {
    .hero-inner {
        padding: 0 40px;
    }

    .hero-title.tilt {
        font-size: 70px;
    }
}

/* Process Section */
.process {
    padding: var(--section-padding);
    background: var(--bg-white);
}

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

.process-item {
    background: #FFFDDD;
    padding: 40px 30px;
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    gap: 20px;
    border: 1px dashed var(--primary-yellow);
    position: relative;
}

.process-item::after {
    content: '';
    position: absolute;
    right: -10px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #FFFDDD;
    border-right: 1px dashed var(--primary-yellow);
    border-top: 1px dashed var(--primary-yellow);
    transform: translateY(-50%) rotate(45deg);
}

.process-item:last-child::after {
    display: none;
}

.process-icon {
    background: var(--primary-red);
    color: #fff;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.process-icon i {
    font-size: 30px;
}

.process-text h3 {
    margin-bottom: 10px;
    font-size: 18px;
}

.process-text p {
    font-size: 14px;
    color: var(--text-body);
}

@media (max-width: 768px) {
    .hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .hero-content {
        margin-bottom: 50px;
    }

    .hero-prices {
        justify-content: center;
    }

    .process-grid {
        grid-template-columns: 1fr;
    }

    .process-item::after {
        display: none;
    }
}

/* Menu Section */
.menu-section {
    padding: var(--section-padding);
    background: #fff;
    text-align: center;
}

.section-title {
    font-size: 42px;
    margin-bottom: 40px;
}

.menu-tabs-wrapper {
    position: relative;
    margin-bottom: 50px;
    padding: 0 45px;
}

.menu-tabs-scroll {
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    scroll-behavior: smooth;
    padding: 10px 0;
}

.menu-tabs-scroll::-webkit-scrollbar {
    display: none;
}

.menu-tabs {
    display: flex;
    gap: 15px;
    flex-wrap: nowrap;
    width: max-content;
}

.menu-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 20px 30px;
    border-radius: 30px;
    position: relative;
    background: transparent;
    min-width: 125px;
}

.tab-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    color: #333;
}

.tab-arrow:hover {
    background: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
    box-shadow: 0 8px 20px rgba(235, 0, 41, 0.2);
}

.tab-prev {
    left: -10px;
}

.tab-next {
    right: -10px;
}

@media (max-width: 1200px) {
    .tab-prev {
        left: 0;
    }

    .tab-next {
        right: 0;
    }
}

.menu-tab span {
    font-size: 13px;
    font-weight: 800;
    color: #111;
    text-transform: capitalize;
}

.tab-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F4F4F4;
    /* Inactive splash */
    color: #333;
    transition: all 0.4s ease;
    position: relative;
}

.tab-icon i {
    font-size: 26px;
    z-index: 2;
}

.tab-icon::before {
    content: '';
    position: absolute;
    top: -4px;
    left: -4px;
    right: -4px;
    bottom: -4px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    z-index: 1;
}

.menu-tab.active {
    background: var(--primary-yellow);
}

.menu-tab.active .tab-icon {
    background: #E80000;
    /* Red Splash */
    color: #fff;
    box-shadow: 0 8px 16px rgba(232, 0, 0, 0.25);
}

.menu-tab.active::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-top: 10px solid var(--primary-yellow);
}

.menu-tab {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    padding: 25px 40px;
    border-radius: 30px;
    position: relative;
    background: transparent;
    min-width: 140px;
}

.menu-tab span {
    font-size: 14px;
    font-weight: 800;
    color: #111;
    text-transform: capitalize;
}

.tab-icon {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #F4F4F4;
    /* Inactive splash */
    color: #333;
    transition: all 0.4s ease;
    position: relative;
}

.tab-icon i {
    font-size: 28px;
    z-index: 2;
}

/* Splash Detail - Pseudo-elements for the jagged effect if needed, but simple circle for now as per image */
.tab-icon::before {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    border-radius: 50%;
    background: inherit;
    opacity: 0.3;
    z-index: 1;
}

.menu-tab.active {
    background: #ffc612d1;
}

.menu-tab.active .tab-icon {
    background: #E80000;
    /* Red Splash */
    color: #fff;
    box-shadow: 0 10px 20px rgba(232, 0, 0, 0.3);
}

.menu-tab.active::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-top: 12px solid var(--primary-yellow);
}

.menu-tab:hover:not(.active) .tab-icon {
    transform: scale(1.1);
    background: #e0e0e0;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 15px;
    margin-bottom: 50px;
}

.menu-item {
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    border: 2px solid transparent;
    /* No border by default */
    border-radius: 30px;
    padding: 15px;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.menu-item:hover {
    transform: translateY(-8px);
    border-color: var(--primary-yellow);
    /* Yellow border on hover */
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.08);
}

/* Menu Slider Controls */
.nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: #fff;
    border: 1px solid #eee;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--transition);
    color: #999;
}

.mini-pill {
    padding: 8px;
    border: 1px solid #f0f0f0;
    background: #fff;
    border-radius: 30px;
    font-size: 13px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    color: #444;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 45px;
}

.mini-pill:hover {
    background: #f8f8f8;
    border-color: #ddd;
}

.mini-pill.active {
    background: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
    box-shadow: 0 8px 16px rgba(235, 0, 41, 0.2);
    transform: scale(1.05);
}

.mini-config label {
    display: block;
    font-size: 11px;
    font-weight: 800;
    color: #333;
    margin-bottom: 8px;
    /* Slightly tighter */
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}

.nav-arrow:hover {
    background: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
}

.prev-arrow {
    left: -60px;
}

.next-arrow {
    right: -60px;
}

.menu-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin: 30px 0;
}

.dot {
    width: 10px;
    height: 10px;
    background: #ddd;
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    background: var(--primary-red);
    transform: scale(1.2);
}

.menu-item.highlight {
    border-color: var(--primary-yellow);
    border-width: 2px;
    box-shadow: 0 15px 40px rgba(235, 225, 23, 0.15);
}

@media (max-width: 1300px) {
    .nav-arrow {
        display: none;
    }
}

.menu-item-image {
    position: relative;
    border-radius: 50%;
    overflow: hidden;
    aspect-ratio: 1;
    margin-bottom: 25px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.12);
    border: 5px solid #fff;
    /* White border for the circular image */
}

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

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

.badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
}

.badge-green {
    background: #4CAF50;
}

.badge-red {
    background: var(--primary-red);
}

.menu-item-info {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.menu-item-info h3 {
    font-size: 20px;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
    text-align: center;
    min-height: 55px;
    /* Harmonious height */
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1.2;
}

.menu-item-info p {
    font-size: 14px;
    color: var(--text-body);
    min-height: 75px;
    /* Compact but aligned */
    text-align: center;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.5;
}

.mini-config {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* Center content to avoid empty gaps */
    /* Ensure a minimum area for config elements */
}

.variations-row,
.extras-row,
.customize-row {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.customize-row {
    margin-top: 5px;
}

.mini-options {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    justify-content: center;
    margin-bottom: 5px;
}

.btn-add-ingredients {
    background: #f8f8f8;
    border: 1px solid #eee;
    padding: 10px 18px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 700;
    color: #555;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 8px 0;
    width: 100%;
}

.btn-add-ingredients i {
    color: var(--primary-red);
    font-size: 18px;
    transition: transform 0.3s ease;
}

.btn-add-ingredients:hover {
    background: #fff;
    border-color: var(--primary-red);
    color: var(--primary-red);
    box-shadow: 0 4px 12px rgba(235, 0, 41, 0.08);
}

.btn-add-ingredients:hover i {
    transform: rotate(90deg);
}

.menu-item-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: auto;
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid #f9f9f9;
}

.mini-qty {
    display: flex;
    align-items: center;
    background: #f4f4f4;
    padding: 4px;
    border-radius: 12px;
}

.m-qty-btn {
    width: 32px;
    height: 32px;
    border: none;
    background: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-weight: 700;
    color: var(--text-dark);
    transition: var(--transition);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.m-qty-btn:hover {
    background: var(--primary-red);
    color: #fff;
}

.mini-qty input {
    width: 35px;
    text-align: center;
    border: none;
    background: none;
    font-weight: 700;
    font-family: var(--font-heading);
    color: var(--text-dark);
}

.menu-item-price {
    font-size: 28px;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 0;
    font-family: var(--font-heading);
}

.btn-block {
    width: 100%;
}

.btn-red {
    padding: 18px 30px;
    /* More substantial button */
    border-radius: 15px;
}

.btn-red:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(235, 0, 41, 0.25);
    background-color: #a01502;
    /* Slightly darker on hover instead of dark gray */
}

.menu-footer {
    display: flex;
    justify-content: center;
}

.btn-gray {
    background: #F0F0F0;
    color: var(--text-dark);
}

.btn-gray:hover {
    background: var(--text-dark);
    color: #fff;
}

/* Promo Section New */
.promo {
    padding: 60px 0;
    background: #fff;
}

.promo-grid-new {
    display: flex;
    gap: 30px;
    width: 100%;
    padding: 0 40px;
}

.promo-column {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.promo-box {
    border-radius: 20px;
    overflow: hidden;
    position: relative;
    transition: var(--transition);
}

.promo-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.promo-box.small {
    height: 140px;
    display: flex;
    align-items: center;
    padding: 30px;
}

.promo-box.large {
    flex: 1;
    min-height: 300px;
}

.promo-yellow {
    background: var(--primary-yellow);
}

.promo-yellow h3 {
    color: var(--primary-red);
    font-size: 18px;
    line-height: 1.2;
    margin-bottom: 5px;
}

.promo-yellow a {
    color: var(--primary-red);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
}

.promo-content.horizontal {
    display: flex;
    align-items: center;
    gap: 20px;
}

.promo-content.horizontal i {
    font-size: 50px;
    color: var(--primary-red);
}

.promo-dark {
    background-color: #111;
    background-size: cover;
    background-position: right;
    color: #fff;
    padding: 40px;
    display: flex;
    align-items: center;
}

.promo-dark .promo-content {
    max-width: 60%;
}

.promo-dark h2 {
    font-size: 32px;
    margin-bottom: 15px;
    line-height: 1.1;
}

.promo-dark p {
    font-size: 13px;
    color: #ccc;
    margin-bottom: 25px;
}

.promo-white {
    background: #FFF5F7;
    padding: 40px;
    display: flex;
    align-items: center;
}

.app-promo-inner {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
}

.app-promo-inner .text {
    flex: 1;
}

.app-promo-inner h2 {
    font-size: 32px;
    color: var(--text-dark);
    margin-bottom: 20px;
    line-height: 1.1;
}

.app-badges {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.app-badges img {
    height: 35px;
    width: fit-content;
}

.phone-mockup {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.phone-mockup img {
    max-height: 250px;
    filter: drop-shadow(0 15px 30px rgba(0, 0, 0, 0.1));
}

@media (max-width: 1024px) {
    .promo-grid-new {
        flex-direction: column;
    }
}

/* Testimonials */
.testimonials {
    padding: var(--section-padding);
    background: #fff;
    overflow: hidden;
}

.testimonials-inner {
    display: flex;
    align-items: center;
    gap: 50px;
}

.testimonials-text {
    flex: 1;
}

.testimonials-image {
    flex: 1;
}

.testimonials-image img {
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.stars {
    display: flex;
    gap: 2px;
}

/* Footer */
footer {
    background: var(--bg-footer);
    color: #fff;
    padding: 80px 0 30px;
}

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

.footer-col h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 30px;
    position: relative;
}

.footer-col img {
    height: 100px !important;
    margin-bottom: 10px !important;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--primary-red);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #aaa;
    font-size: 14px;
}

.footer-contact i {
    color: var(--primary-red);
}

/* Mobile Adjustments */
/* Locations Section */
.locations-section {
    background: #fff;
}

.locations-title {
    font-size: 32px;
    margin-bottom: 40px;
    text-align: left;
}

.map-container-full {
    width: 100%;
    height: 500px;
}

.map-container-full iframe {
    width: 100%;
    height: 100%;
    display: block;
}

.locations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}

.location-card {
    background: #fff;
    padding: 30px;
    border-radius: 20px;
    border: 1px solid #eee;
    transition: var(--transition);
}

.location-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.05);
    border-color: var(--primary-yellow);
}

.location-card h4 {
    font-size: 18px;
    margin-bottom: 20px;
}

.location-card ul {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.location-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 13px;
    color: #777;
    line-height: 1.4;
}

.location-card li i {
    color: var(--primary-red);
    font-size: 18px;
}

.locations-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 1024px) {
    .locations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .locations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 991px) {
    .testimonials-inner {
        flex-direction: column;
        text-align: center;
    }

    .section-title {
        text-align: center !important;
    }
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-contact li {
        justify-content: center;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .social-links {
        justify-content: center;
    }

    .hero-title {
        font-size: 40px;
    }

    .hero-subtitle {
        font-size: 30px;
    }

    .menu-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .menu-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 991px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Modal Overlay */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 500px;
    padding: 40px;
    border-radius: 30px;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.2);
    position: relative;
    max-height: 90vh;
    overflow-y: auto;
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.modal-header h3 {
    font-size: 24px;
    margin: 0;
}

.close-modal {
    background: #f8f8f8;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #999;
}

.close-modal:hover {
    background: #eee;
    color: var(--primary-red);
}

.ingredients-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 30px;
}

.ingredient-opt {
    padding: 15px;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: #444;
    cursor: pointer;
    will-change: background, box-shadow;
    transition: var(--transition);
    text-align: center;
}

.ingredient-opt:hover {
    border-color: var(--primary-red);
    color: var(--primary-red);
    background: rgba(235, 0, 41, 0.03);
}

.ingredient-opt.active {
    background: var(--primary-red);
    color: #fff;
    border-color: var(--primary-red);
    box-shadow: 0 5px 15px rgba(235, 0, 41, 0.2);
}

.btn-full {
    width: 100%;
}

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-60px);
    transition: all 1s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.reveal-left.active {
    opacity: 1;
    transform: translateX(0);
}

.specialty-tag {
    background: linear-gradient(135deg, var(--primary-red) 0%, #B80021 100%);
    color: #fff;
    padding: 6px 14px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 900;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 12px;
    letter-spacing: 1px;
}

/* --- Duo Promo Section --- */
.duo-promo {
    padding: 80px 0;
    background: #fff;
    position: relative;
    overflow: hidden;
}

.duo-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

.duo-item {
    position: relative;
    height: 450px;
    border-radius: 40px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    cursor: pointer;
    transition: all 0.7s cubic-bezier(0.15, 0.83, 0.66, 1);
}

.duo-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.7));
    transition: all 0.7s ease;
}

.duo-item:hover::before {
    background: rgba(0, 0, 0, 0.35);
}

.duo-item:hover {
    transform: translateY(-12px) scale(1.02);
}

.duo-content {
    position: relative;
    z-index: 2;
    padding: 40px;
}

.duo-content h2 {
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 15px;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
    letter-spacing: -2px;
    line-height: 0.9;
    text-transform: uppercase;
}

.duo-content p {
    font-size: 15px;
    margin-bottom: 30px;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
    line-height: 1.4;
}

.duo-item .btn-red {
    padding: 15px 35px;
    font-size: 13px;
    font-weight: 800;
}

@media (max-width: 991px) {
    .duo-grid {
        grid-template-columns: 1fr;
    }

    .duo-item {
        height: 350px;
    }

    .duo-content h2 {
        font-size: 3rem;
    }
}

/* Announcement Modal (We Are Open) */
.announcement-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.announcement-modal-overlay.active {
    display: flex;
    opacity: 1;
}

.announcement-modal {
    background: #f0f2f5;
    width: 90%;
    max-width: 800px;
    display: flex;
    border-radius: 40px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 50px 100px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    transition: transform 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

.announcement-image {
    flex: 1;
    background-size: cover;
    background-position: center;
    min-height: 480px;
}

.announcement-content {
    flex: 1.2;
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.announcement-close {
    position: absolute;
    top: 25px;
    right: 25px;
    background: #fff;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    font-size: 20px;
    color: #333;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.announcement-close:hover {
    color: var(--primary-red);
    transform: rotate(90deg);
}

.announcement-content h2 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 900;
    color: #1a1a1a;
    margin-bottom: 20px;
    line-height: 0.95;
    text-transform: none;
}

.announcement-content p {
    font-size: 16px;
    color: #555;
    margin-bottom: 15px;
    line-height: 1.5;
}

.announcement-content .highlight {
    font-weight: 700;
    color: #333;
    margin-top: 15px;
    margin-bottom: 30px;
    font-size: 15px;
}

.announcement-btn {
    background: var(--primary-red);
    color: #fff !important;
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 800;
    text-transform: uppercase;
    text-decoration: none;
    display: inline-block;
    width: fit-content;
    box-shadow: 0 15px 30px rgba(235, 0, 41, 0.2);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.announcement-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(235, 0, 41, 0.3);
    background: #d30025;
}

@media (max-width: 768px) {
    .announcement-modal {
        flex-direction: column;
    }

    .announcement-image {
        height: 200px;
        min-height: 200px;
    }

    .announcement-content {
        padding: 40px 30px;
        text-align: center;
        align-items: center;
    }

    .announcement-content h2 {
        font-size: 2.5rem;
    }

    .announcement-close {
        top: 15px;
        right: 15px;
    }
}


/* ========================================
   COMPREHENSIVE RESPONSIVE DESIGN FIXES
   ======================================== */

/* Tablet Landscape (1024px and below) */
@media (max-width: 1024px) {
    .container {
        padding: 0 15px;
    }
    
    .hero-inner {
        padding: 0 30px;
    }
    
    .hero-title.tilt {
        font-size: 60px;
    }
    
    .menu-tabs-wrapper {
        padding: 0 35px;
    }
}

/* Tablet Portrait (991px and below) */
@media (max-width: 991px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .hero-prices {
        flex-direction: column;
        gap: 15px;
        align-items: center;
    }
    
    .price-item {
        width: 100%;
        max-width: 300px;
    }
}

/* Mobile Landscape (768px and below) */
@media (max-width: 768px) {
    /* Container adjustments */
    .container {
        padding: 0 15px;
    }
    
    /* Hero Section */
    .hero-inner {
        flex-direction: column;
        padding: 0 20px;
        text-align: center;
    }
    
    .hero-content {
        width: 100%;
        margin-bottom: 30px;
    }
    
    .hero-title.tilt {
        font-size: 48px;
        line-height: 1;
        margin-bottom: 30px;
    }
    
    .hero-title .plus {
        font-size: 50px;
    }
    
    .hero-prices {
        flex-direction: row;
        justify-content: center;
        gap: 15px;
        flex-wrap: wrap;
    }
    
    .yellow-price .price {
        font-size: 40px;
    }
    
    .yellow-price .label {
        font-size: 10px;
    }
    
    .hero-image {
        width: 100%;
        display: flex;
        justify-content: center;
    }
    
    .collage-image img {
        max-width: 100% !important;
        transform: rotate(0deg);
    }
    
    .btn-large {
        padding: 14px 30px;
        font-size: 14px;
    }
    
    .hero-info {
        font-size: 14px;
        margin-top: 15px;
    }
    
    /* Duo Promo Section */
    .duo-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .duo-item {
        height: 300px;
    }
    
    .duo-content h2 {
        font-size: 2.5rem;
    }
    
    .duo-content p {
        font-size: 14px;
    }
    
    /* Menu Section */
    .section-title {
        font-size: 32px;
        margin-bottom: 30px;
    }
    
    .menu-tabs-wrapper {
        padding: 0 40px;
        margin-bottom: 30px;
    }
    
    .menu-tabs {
        gap: 10px;
    }
    
    .menu-tab {
        padding: 15px 20px;
        min-width: 100px;
    }
    
    .tab-icon {
        width: 50px;
        height: 50px;
    }
    
    .tab-icon i {
        font-size: 22px;
    }
    
    .menu-tab span {
        font-size: 12px;
    }
    
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .menu-item {
        padding: 12px;
    }
    
    .menu-item-info h3 {
        font-size: 16px;
        min-height: 45px;
    }
    
    .menu-item-info p {
        font-size: 13px;
        min-height: 60px;
    }
    
    .menu-item-price {
        font-size: 22px;
    }
    
    .mini-pill {
        font-size: 12px;
        padding: 6px;
        min-width: 40px;
    }
    
    .btn-add-ingredients {
        font-size: 12px;
        padding: 8px 14px;
    }
    
    /* Locations Section */
    .locations-title {
        font-size: 2rem;
        margin-bottom: 30px;
    }
    
    .map-container-full {
        margin: 0 15px;
        border-radius: 20px;
    }
    
    .map-container-full iframe {
        height: 400px;
    }
}

/* Mobile Portrait (576px and below) */
@media (max-width: 576px) {
    /* Hero Section */
    .rounded-hero {
        padding: 40px 0;
        border-radius: 15px;
    }
    
    .hero-inner {
        padding: 0 15px;
    }
    
    .hero-title.tilt {
        font-size: 36px;
        margin-bottom: 20px;
    }
    
    .hero-title .plus {
        font-size: 36px;
    }
    
    .hero-prices {
        flex-direction: column;
        gap: 10px;
        width: 100%;
    }
    
    .price-item {
        width: 100%;
    }
    
    .yellow-price .price {
        font-size: 32px;
    }
    
    .yellow-price .label {
        font-size: 9px;
    }
    
    .btn-large {
        padding: 12px 25px;
        font-size: 13px;
        width: 100%;
    }
    
    .hero-info {
        font-size: 13px;
    }
    
    /* Duo Promo Section */
    .duo-item {
        height: 250px;
    }
    
    .duo-content {
        padding: 25px;
    }
    
    .duo-content h2 {
        font-size: 2rem;
    }
    
    .duo-content p {
        font-size: 13px;
        max-width: 100%;
    }
    
    .duo-item .btn-red {
        padding: 12px 25px;
        font-size: 12px;
    }
    
    /* Menu Section */
    .section-title {
        font-size: 26px;
        margin-bottom: 25px;
    }
    
    .menu-tabs-wrapper {
        padding: 0 35px;
    }
    
    .menu-tabs {
        gap: 8px;
    }
    
    .menu-tab {
        padding: 12px 15px;
        min-width: 85px;
    }
    
    .tab-icon {
        width: 45px;
        height: 45px;
    }
    
    .tab-icon i {
        font-size: 20px;
    }
    
    .menu-tab span {
        font-size: 11px;
    }
    
    .tab-arrow {
        width: 35px;
        height: 35px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .menu-item {
        padding: 15px;
    }
    
    .menu-item-image {
        margin-bottom: 20px;
    }
    
    .menu-item-info h3 {
        font-size: 18px;
        min-height: auto;
    }
    
    .menu-item-info p {
        font-size: 14px;
        min-height: auto;
    }
    
    .mini-config label {
        font-size: 10px;
    }
    
    .mini-options {
        gap: 6px;
    }
    
    .mini-pill {
        font-size: 11px;
        padding: 6px 8px;
        min-width: 38px;
    }
    
    .btn-add-ingredients {
        font-size: 11px;
        padding: 8px 12px;
    }
    
    .menu-item-footer {
        flex-direction: column;
        gap: 10px;
        align-items: stretch;
    }
    
    .mini-qty {
        justify-content: center;
    }
    
    .menu-item-price {
        font-size: 24px;
        text-align: center;
    }
    
    .btn-red {
        padding: 14px 25px;
        font-size: 13px;
    }
    
    /* Locations Section */
    .locations-title {
        font-size: 1.75rem;
        margin-bottom: 25px;
    }
    
    .map-container-full {
        margin: 0 10px;
        border-radius: 15px;
    }
    
    .map-container-full iframe {
        height: 300px;
    }
    
    /* Modal Adjustments */
    .modal-content {
        padding: 25px;
        border-radius: 20px;
    }
    
    .modal-header h3 {
        font-size: 20px;
    }
    
    .ingredients-grid {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .ingredient-opt {
        padding: 12px;
        font-size: 13px;
    }
}

/* Extra Small Mobile (480px and below) */
@media (max-width: 480px) {
    .hero-title.tilt {
        font-size: 32px;
    }
    
    .hero-title .plus {
        font-size: 32px;
    }
    
    .yellow-price .price {
        font-size: 28px;
    }
    
    .duo-content h2 {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 24px;
    }
    
    .menu-tab {
        min-width: 75px;
        padding: 10px 12px;
    }
    
    .tab-icon {
        width: 40px;
        height: 40px;
    }
    
    .tab-icon i {
        font-size: 18px;
    }
    
    .menu-tab span {
        font-size: 10px;
    }
    
    .menu-item-info h3 {
        font-size: 16px;
    }
    
    .menu-item-info p {
        font-size: 13px;
    }
}

/* Landscape Orientation Fix for Mobile */
@media (max-height: 500px) and (orientation: landscape) {
    .hero-inner {
        padding: 20px 15px;
    }
    
    .hero-title.tilt {
        font-size: 28px;
        margin-bottom: 15px;
    }
    
    .hero-prices {
        flex-direction: row;
        gap: 10px;
    }
    
    .yellow-price .price {
        font-size: 24px;
    }
    
    .btn-large {
        padding: 10px 20px;
        font-size: 12px;
    }
    
    .duo-item {
        height: 200px;
    }
}
