 /* ===== RESET & BASE ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
}

body {
    background: #f5efe8;
    color: #2d2a24;
    min-height: 100vh;
}

/* ===== HEADER ===== */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 18px 40px;
    background: rgba(255, 248, 240, 0.95);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(200, 170, 140, 0.2);
    flex-wrap: wrap;
    gap: 16px;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.06);
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.logo-image {
    height: 50px;
    width: auto;
    max-width: 200px;
    object-fit: contain;
    display: block;
}

.logo span {
    font-size: 0.75rem;
    color: #8a7a6a;
    letter-spacing: 2px;
    font-weight: 500;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 8px;
    flex-wrap: wrap;
}

nav ul li a {
    color: #5a4a3a;
    text-decoration: none;
    padding: 8px 18px;
    border-radius: 40px;
    font-weight: 600;
    transition: 0.3s;
    font-size: 0.95rem;
}

nav ul li a:hover,
nav ul li a.active {
    background: #f5a623;
    color: #fff;
}

.cart-icon a {
    color: #5a4a3a;
    font-size: 1.4rem;
    text-decoration: none;
    background: rgba(200, 170, 140, 0.15);
    padding: 8px 14px;
    border-radius: 40px;
    transition: 0.3s;
    position: relative;
}

.cart-icon a:hover {
    background: #f5a623;
    color: #fff;
}

#cartBadge {
    background: #e67e22;
    border-radius: 50%;
    padding: 2px 8px;
    font-size: 0.7rem;
    position: absolute;
    top: -6px;
    right: -6px;
    color: #fff;
}

/* ======================================== */
/* ===== HOME PAGE ===== */
/* ======================================== */

.slideshow-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.slide-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide-bg.active {
    opacity: 1;
}

.dark-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.25);
    z-index: -1;
    pointer-events: none;
}

.main-content {
    flex: 1;
    z-index: 2;
    position: relative;
}

/* ===== HOME PAGE - FOOTER TABS ===== */
.footer-tabs {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 248, 240, 0.92);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(200, 170, 140, 0.15);
    padding: 12px 20px 16px;
    z-index: 10;
}

.footer-content {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
    max-width: 800px;
    margin: 0 auto;
    flex-wrap: wrap;
}

.tab {
    background: transparent;
    border: none;
    color: rgba(90, 74, 58, 0.5);
    padding: 8px 18px;
    border-radius: 40px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-decoration: none;
}

.tab i {
    font-size: 0.9rem;
}

.tab:hover {
    color: rgba(90, 74, 58, 0.8);
    background: rgba(200, 170, 140, 0.1);
}

.tab.active {
    color: #c7791e;
    background: rgba(245, 166, 35, 0.12);
}

.tab.active i {
    color: #f5a623;
}

.dots-container {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
}

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(200, 170, 140, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot:hover {
    background: rgba(199, 121, 30, 0.5);
}

.dot.active {
    background: #f5a623;
    box-shadow: 0 0 12px rgba(245, 166, 35, 0.3);
}

/* ======================================== */
/* ===== HOME PAGE - MAIN CONTENT ===== */
/* ======================================== */

.home-main {
    padding-top: 30px;
    min-height: calc(100vh - 80px);
    position: relative;
    z-index: 2;
}

.featured-categories {
    padding: 40px 20px 30px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-header h2 {
    font-size: 2.2rem;
    color: #2d2a24;
    font-weight: 700;
}

.section-header h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f5a623, #c7791e);
    margin: 8px auto 0;
    border-radius: 4px;
}

.section-header p {
    color: #8a7a6a;
    font-size: 1.05rem;
    margin-top: 6px;
}

.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.category-card {
    background: rgba(255, 248, 240, 0.9);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 35px 25px;
    text-align: center;
    text-decoration: none;
    border: 1px solid rgba(200, 170, 140, 0.15);
    transition: 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.category-card:hover {
    transform: translateY(-8px);
    border-color: #f5a623;
    box-shadow: 0 12px 40px rgba(245, 166, 35, 0.15);
}

.category-icon {
    font-size: 3rem;
    color: #f5a623;
    margin-bottom: 12px;
}

.category-card h3 {
    font-size: 1.3rem;
    color: #2d2a24;
    margin-bottom: 6px;
}

.category-card p {
    color: #5a4a3a;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.category-link {
    color: #c7791e;
    font-weight: 600;
    font-size: 0.9rem;
    transition: 0.3s;
}

.category-card:hover .category-link {
    color: #f5a623;
}

.home-specials {
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.specials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.special-card {
    background: rgba(255, 248, 240, 0.9);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid rgba(200, 170, 140, 0.15);
    transition: 0.3s;
}

.special-card:hover {
    transform: translateY(-5px);
    border-color: #f5a623;
}

.special-badge {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 3px 16px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.special-card h3 {
    font-size: 1.3rem;
    color: #2d2a24;
    margin-bottom: 4px;
}

.special-card p {
    color: #5a4a3a;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.special-price {
    font-size: 1.8rem;
    font-weight: 700;
    color: #c7791e;
    margin-bottom: 15px;
}

.special-price span {
    font-size: 0.9rem;
    color: #27ae60;
    font-weight: 600;
    display: inline-block;
    margin-left: 8px;
}

.btn-small {
    display: inline-block;
    background: #f5a623;
    color: #fff;
    padding: 8px 25px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.btn-small:hover {
    background: #c7791e;
    transform: scale(1.05);
}

.why-choose {
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 25px;
}

.feature {
    text-align: center;
    padding: 25px 20px;
    background: rgba(255, 248, 240, 0.8);
    border-radius: 16px;
    border: 1px solid rgba(200, 170, 140, 0.08);
    transition: 0.3s;
}

.feature:hover {
    transform: translateY(-5px);
    border-color: #f5a623;
}

.feature-icon {
    font-size: 2.5rem;
    color: #f5a623;
    margin-bottom: 12px;
}

.feature h3 {
    font-size: 1.1rem;
    color: #2d2a24;
    margin-bottom: 6px;
}

.feature p {
    font-size: 0.95rem;
    color: #5a4a3a;
    line-height: 1.5;
}

.testimonials {
    padding: 40px 20px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.testimonial-card {
    background: rgba(255, 248, 240, 0.9);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 30px 25px;
    border: 1px solid rgba(200, 170, 140, 0.1);
    transition: 0.3s;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    border-color: #f5a623;
}

.stars {
    color: #f5a623;
    font-size: 1.2rem;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.testimonial-card p {
    color: #2d2a24;
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
    margin-bottom: 12px;
}

.customer-name {
    color: #8a7a6a;
    font-weight: 600;
    font-size: 0.9rem;
    font-style: normal;
}

.home-cta {
    padding: 40px 20px 30px;
    position: relative;
    z-index: 2;
}

.cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 50px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(8px);
    border-radius: 30px;
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.cta-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 8px;
}

.cta-content h2 .highlight {
    color: #f5a623;
}

.cta-content p {
    color: #c4b8a8;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary {
    background: #f5a623;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-buttons .btn-primary:hover {
    background: #c7791e;
    transform: scale(1.05);
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(255, 255, 255, 0.3);
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #f5a623;
}

/* ======================================== */
/* ===== CHILL VIBE & HUBBLY PREVIEW ===== */
/* ======================================== */

.home-chill-preview {
    padding: 40px 20px 20px;
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.chill-preview-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.chill-preview-card {
    background: rgba(255, 248, 240, 0.9);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid rgba(200, 170, 140, 0.15);
    transition: 0.3s;
}

.chill-preview-card:hover {
    transform: translateY(-5px);
    border-color: #f5a623;
    box-shadow: 0 12px 40px rgba(245, 166, 35, 0.1);
}

.chill-preview-card i {
    font-size: 2.5rem;
    color: #f5a623;
    margin-bottom: 12px;
}

.chill-preview-card h3 {
    font-size: 1.2rem;
    color: #2d2a24;
    margin-bottom: 8px;
}

.chill-preview-card p {
    color: #5a4a3a;
    font-size: 0.95rem;
    margin-bottom: 15px;
    line-height: 1.5;
}

.chill-preview-card .btn-small {
    display: inline-block;
    background: #f5a623;
    color: #fff;
    padding: 8px 25px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.chill-preview-card .btn-small:hover {
    background: #c7791e;
    transform: scale(1.05);
}

/* ======================================== */
/* ===== MENU PAGE ===== */
/* ======================================== */

.menu-page {
    padding: 40px 20px 60px;
    max-width: 1000px;
    margin: 0 auto;
}

.menu-container {
    max-width: 1000px;
    margin: 0 auto;
}

.menu-title {
    text-align: center;
    margin-bottom: 30px;
}

.menu-title h1 {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 4px;
    color: #2d2a24;
}

.menu-title h1::after {
    content: '';
    display: block;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #f5a623, #c7791e);
    margin: 10px auto 0;
    border-radius: 4px;
}

.menu-title p {
    color: #8a7a6a;
    font-size: 1rem;
    letter-spacing: 6px;
    margin-top: 8px;
}

.order-type {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 40px;
}

.order-type button {
    background: rgba(255, 248, 240, 0.8);
    border: 1px solid #e0d5c8;
    color: #5a4a3a;
    padding: 10px 30px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 10px;
}

.order-type button.active {
    background: #f5a623;
    border-color: #f5a623;
    color: #fff;
}

.order-type button:hover {
    background: #f5a623;
    border-color: #f5a623;
    color: #fff;
}

.delivery-address-container {
    background: rgba(255, 248, 240, 0.9);
    border-radius: 16px;
    padding: 18px 22px;
    margin-bottom: 30px;
    border: 1px solid rgba(200, 170, 140, 0.15);
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.delivery-address-container label {
    font-weight: 600;
    color: #2d2a24;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap;
}

.delivery-address-container input {
    flex: 1;
    min-width: 200px;
    padding: 10px 16px;
    border: 2px solid #e0d5c8;
    border-radius: 40px;
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.8);
    color: #2d2a24;
    transition: 0.3s;
    outline: none;
}

.delivery-address-container input:focus {
    border-color: #f5a623;
    box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.15);
}

.delivery-address-container input::placeholder {
    color: #aaa;
}

.menu-sections {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.menu-section {
    position: relative;
    background-size: cover;
    background-position: center;
    border-radius: 20px;
    padding: 35px 40px;
    border: 1px solid rgba(200, 170, 140, 0.15);
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.08);
}

.african-section {
    background-image: url('assets/cafe3.png');
}

.street-section {
    background-image: url('assets/cafe6.png');
}

.section-bg-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 248, 240, 0.6);
    z-index: 0;
}

.menu-section .section-title,
.menu-section .menu-grid {
    position: relative;
    z-index: 1;
}

.section-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #c7791e;
    letter-spacing: 3px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(199, 121, 30, 0.2);
    margin-bottom: 20px;
}

.section-title::before {
    content: '✦ ';
    color: #f5a623;
}

.menu-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2px;
}

.menu-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 14px;
    border-bottom: 1px solid rgba(200, 170, 140, 0.1);
    border-radius: 8px;
    transition: 0.2s;
    background: rgba(255, 248, 240, 0.3);
}

.menu-item:hover {
    background: rgba(255, 248, 240, 0.7);
}

.menu-item .item-name {
    color: #2d2a24;
    font-size: 0.95rem;
    font-weight: 500;
    flex: 1;
}

.menu-item .item-price {
    color: #c7791e;
    font-weight: 700;
    font-size: 0.95rem;
    margin-right: 15px;
    min-width: 50px;
    text-align: right;
}

.menu-item .add-btn {
    background: #f5a623;
    border: none;
    color: #fff;
    font-weight: 700;
    padding: 6px 16px;
    border-radius: 30px;
    cursor: pointer;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    white-space: nowrap;
}

.menu-item .add-btn:hover {
    background: #c7791e;
    transform: scale(1.05);
}

.menu-item .add-btn i {
    font-size: 0.8rem;
}

.cart-section {
    background: rgba(255, 248, 240, 0.9);
    border-radius: 20px;
    padding: 25px 30px;
    margin-top: 40px;
    border: 1px solid rgba(200, 170, 140, 0.15);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
}

.cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    padding-bottom: 12px;
    border-bottom: 1px solid rgba(200, 170, 140, 0.15);
}

.cart-header h3 {
    font-size: 1.2rem;
    color: #2d2a24;
}

.cart-header h3 i {
    color: #f5a623;
    margin-right: 10px;
}

.cart-count {
    background: rgba(245, 166, 35, 0.15);
    color: #c7791e;
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
}

#cartItemsContainer {
    margin: 12px 0;
    max-height: 200px;
    overflow-y: auto;
}

.empty-cart {
    color: #8a7a6a;
    text-align: center;
    padding: 16px 0;
    font-size: 0.95rem;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid rgba(200, 170, 140, 0.08);
    color: #2d2a24;
    flex-wrap: wrap;
    gap: 8px;
}

.cart-item .item-name {
    font-weight: 500;
    font-size: 0.9rem;
}

.cart-item .item-details {
    font-size: 0.75rem;
    color: #8a7a6a;
    display: block;
}

.cart-item .item-qty {
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-item .item-qty button {
    background: #e8ddd0;
    border: none;
    color: #2d2a24;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    font-weight: 700;
    transition: 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item .item-qty button:hover {
    background: #f5a623;
    color: #fff;
}

.cart-item .item-qty button.remove-btn {
    background: #e8ddd0;
    font-size: 0.7rem;
}

.cart-item .item-qty button.remove-btn:hover {
    background: #e67e22;
    color: #fff;
}

.cart-item .item-price {
    color: #c7791e;
    font-weight: 600;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1.3rem;
    font-weight: 700;
    padding-top: 12px;
    border-top: 1px solid rgba(200, 170, 140, 0.15);
    color: #2d2a24;
}

.cart-total span:last-child {
    color: #c7791e;
}

.checkout-btn {
    background: #25D366;
    border: none;
    padding: 14px;
    border-radius: 40px;
    font-weight: 700;
    font-size: 1rem;
    color: #fff;
    cursor: pointer;
    width: 100%;
    margin-top: 12px;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.checkout-btn:hover {
    background: #1da851;
    transform: scale(1.01);
}

.checkout-btn i {
    font-size: 1.2rem;
}

.menu-footer {
    text-align: center;
    margin-top: 30px;
    padding: 16px;
    color: #8a7a6a;
    font-size: 0.9rem;
    border-top: 1px solid rgba(200, 170, 140, 0.1);
}

.menu-footer i {
    color: #f5a623;
    margin-right: 8px;
}

/* ======================================== */
/* ===== CART LINK SCROLL ===== */
/* ======================================== */

.cart-link {
    scroll-behavior: smooth;
}

/* ======================================== */
/* ===== MODAL ===== */
/* ======================================== */

.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(4px);
    z-index: 999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.modal-overlay.show {
    display: flex;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-content {
    background: #f5efe8;
    border-radius: 20px;
    padding: 30px 35px;
    max-width: 480px;
    width: 95%;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: 15px;
    border-bottom: 1px solid rgba(200, 170, 140, 0.2);
    margin-bottom: 20px;
}

.modal-header h3 {
    font-size: 1.3rem;
    color: #2d2a24;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    color: #8a7a6a;
    cursor: pointer;
    transition: 0.2s;
    padding: 0 5px;
}

.modal-close:hover {
    color: #e67e22;
    transform: rotate(90deg);
}

.modal-body {
    margin-bottom: 20px;
}

.modal-section {
    margin-bottom: 20px;
}

.modal-label {
    display: block;
    font-weight: 600;
    color: #2d2a24;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.modal-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.modal-option {
    background: rgba(255, 248, 240, 0.8);
    border: 2px solid #e0d5c8;
    color: #5a4a3a;
    padding: 8px 18px;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 0.85rem;
    font-weight: 500;
}

.modal-option:hover {
    background: #f5a623;
    border-color: #f5a623;
    color: #fff;
}

.modal-option.active {
    background: #f5a623;
    border-color: #f5a623;
    color: #fff;
}

/* ===== SAUCE MULTI-SELECT ===== */
.sauce-options.multi-select {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.sauce-options.multi-select .modal-option {
    font-size: 0.8rem;
    padding: 6px 16px;
    border-radius: 40px;
    border: 2px solid #e0d5c8;
    background: rgba(255, 248, 240, 0.8);
    color: #5a4a3a;
    transition: all 0.3s ease;
    cursor: pointer;
    user-select: none;
}

.sauce-options.multi-select .modal-option:hover {
    background: #f5a623;
    border-color: #f5a623;
    color: #fff;
    transform: scale(1.05);
}

.sauce-options.multi-select .modal-option.selected {
    background: #f5a623;
    border-color: #f5a623;
    color: #fff;
    box-shadow: 0 2px 12px rgba(245, 166, 35, 0.3);
}

.sauce-options.multi-select .modal-option.selected:hover {
    background: #c7791e;
    border-color: #c7791e;
}

.sauce-selection-info {
    font-size: 0.8rem;
    color: #8a7a6a;
    margin-top: 6px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.sauce-selection-info i {
    color: #f5a623;
}

.modal-footer {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    padding-top: 15px;
    border-top: 1px solid rgba(200, 170, 140, 0.15);
}

.modal-cancel {
    background: transparent;
    border: 1px solid #e0d5c8;
    color: #5a4a3a;
    padding: 10px 24px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 600;
    transition: 0.3s;
}

.modal-cancel:hover {
    background: #e8ddd0;
}

.modal-confirm {
    background: #f5a623;
    border: none;
    color: #fff;
    padding: 10px 24px;
    border-radius: 40px;
    cursor: pointer;
    font-weight: 700;
    transition: 0.3s;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-confirm:hover {
    background: #c7791e;
    transform: scale(1.02);
}

/* ======================================== */
/* ===== PROMOTIONS PAGE ===== */
/* ======================================== */

.promotions-page {
    padding: 100px 20px 60px;
    min-height: 70vh;
    background: #f5efe8;
}

.promotions-container {
    max-width: 1100px;
    margin: 0 auto;
}

.promotions-header {
    text-align: center;
    margin-bottom: 40px;
}

.promotions-header h1 {
    font-size: 2.8rem;
    color: #2d2a24;
    letter-spacing: 2px;
}

.promotions-header h1 i {
    margin-right: 15px;
}

.promotions-header p {
    font-size: 1.1rem;
    color: #8a7a6a;
    letter-spacing: 2px;
    margin-top: 6px;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 25px;
}

.promo-card {
    background: rgba(255, 248, 240, 0.9);
    backdrop-filter: blur(6px);
    border-radius: 20px;
    padding: 30px 25px;
    text-align: center;
    border: 1px solid rgba(200, 170, 140, 0.15);
    transition: 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.promo-card:hover {
    transform: translateY(-8px);
    border-color: #f5a623;
    box-shadow: 0 12px 40px rgba(245, 166, 35, 0.15);
}

.promo-badge {
    display: inline-block;
    background: #e67e22;
    color: #fff;
    padding: 3px 16px;
    border-radius: 40px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 10px;
}

.promo-card h3 {
    font-size: 1.4rem;
    color: #2d2a24;
    margin-bottom: 6px;
}

.promo-card p {
    color: #5a4a3a;
    font-size: 0.95rem;
    margin-bottom: 10px;
}

.promo-price {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: #c7791e;
    margin: 12px 0 15px;
}

.promo-card .btn-primary {
    display: inline-block;
    background: #f5a623;
    color: #fff;
    padding: 10px 30px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.3s;
}

.promo-card .btn-primary:hover {
    background: #c7791e;
    transform: scale(1.05);
}

/* ======================================== */
/* ===== GALLERY PAGE ===== */
/* ======================================== */

.gallery-page {
    padding: 100px 20px 60px;
    min-height: 100vh;
    background: #f5efe8;
}

.gallery-container {
    max-width: 1100px;
    margin: 0 auto;
}

.gallery-header {
    text-align: center;
    margin-bottom: 40px;
}

.gallery-header h1 {
    font-size: 2.8rem;
    color: #2d2a24;
    letter-spacing: 2px;
}

.gallery-header h1 i {
    margin-right: 15px;
}

.gallery-header p {
    font-size: 1.1rem;
    color: #8a7a6a;
    letter-spacing: 2px;
    margin-top: 6px;
}

.chill-vibe-section {
    margin-bottom: 35px;
}

.chill-banner {
    background: linear-gradient(135deg, #2d2a24, #5a4a3a);
    border-radius: 20px;
    padding: 35px 40px;
    text-align: center;
    border: 1px solid rgba(200, 170, 140, 0.15);
}

.chill-icon {
    font-size: 3rem;
    color: #f5a623;
    margin-bottom: 10px;
}

.chill-banner h2 {
    font-size: 1.8rem;
    color: #f5efe8;
    margin-bottom: 8px;
}

.chill-banner p {
    color: #c4b8a8;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.chill-features {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.chill-features span {
    background: rgba(255, 248, 240, 0.1);
    color: #f5efe8;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.85rem;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.chill-features span i {
    color: #f5a623;
}

.hubbly-section {
    margin-bottom: 35px;
}

.hubbly-banner {
    background: linear-gradient(135deg, #1a1a2e, #16213e);
    border-radius: 20px;
    padding: 35px 40px;
    text-align: center;
    border: 1px solid rgba(200, 170, 140, 0.15);
}

.hubbly-icon {
    font-size: 3rem;
    color: #f5a623;
    margin-bottom: 10px;
}

.hubbly-banner h2 {
    font-size: 1.8rem;
    color: #f5efe8;
    margin-bottom: 8px;
}

.hubbly-banner p {
    color: #c4b8a8;
    font-size: 1.05rem;
    margin-bottom: 15px;
}

.hubbly-flavors {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px;
}

.hubbly-flavors span {
    background: rgba(255, 248, 240, 0.08);
    color: #f5efe8;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.85rem;
    border: 1px solid rgba(255, 248, 240, 0.06);
    transition: 0.3s;
}

.hubbly-flavors span:hover {
    background: rgba(245, 166, 35, 0.15);
    border-color: #f5a623;
}

.photo-gallery {
    margin-bottom: 40px;
}

.photo-gallery h2 {
    font-size: 1.8rem;
    color: #c7791e;
    text-align: center;
    margin-bottom: 6px;
}

.photo-gallery h2 i {
    margin-right: 10px;
}

.photo-gallery > p {
    text-align: center;
    color: #8a7a6a;
    margin-bottom: 25px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
}

.gallery-item:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.7), transparent);
    padding: 20px 15px 12px;
    opacity: 0;
    transition: 0.3s;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    color: #fff;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
}

.video-section {
    margin-bottom: 40px;
}

.video-section h2 {
    font-size: 1.8rem;
    color: #c7791e;
    text-align: center;
    margin-bottom: 6px;
}

.video-section h2 i {
    margin-right: 10px;
}

.video-section > p {
    text-align: center;
    color: #8a7a6a;
    margin-bottom: 25px;
}

.video-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.1);
    background: #0a0a0a;
}

.video-container video {
    width: 100%;
    height: auto;
    display: block;
    max-height: 500px;
    object-fit: cover;
}

.gallery-cta {
    padding: 20px 0;
}

.gallery-cta .cta-content {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    padding: 40px 50px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 30px;
    border: 1px solid rgba(200, 170, 140, 0.1);
}

.gallery-cta .cta-content h2 {
    font-size: 2rem;
    color: #2d2a24;
    margin-bottom: 8px;
}

.gallery-cta .cta-content p {
    color: #5a4a3a;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

.gallery-cta .cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.gallery-cta .cta-buttons .btn-primary {
    background: #f5a623;
    color: #fff;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.gallery-cta .cta-buttons .btn-primary:hover {
    background: #c7791e;
    transform: scale(1.05);
}

.gallery-cta .cta-buttons .btn-secondary {
    background: transparent;
    color: #2d2a24;
    padding: 14px 35px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid rgba(200, 170, 140, 0.3);
    transition: 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.gallery-cta .cta-buttons .btn-secondary:hover {
    background: rgba(200, 170, 140, 0.1);
    border-color: #f5a623;
}

/* ======================================== */
/* ===== ABOUT PAGE ===== */
/* ======================================== */

.about-page {
    padding: 100px 20px 60px;
    min-height: 100vh;
    background: #f5efe8;
}

.about-container {
    max-width: 1100px;
    margin: 0 auto;
}

.about-hero {
    text-align: center;
    padding: 40px 0 30px;
    border-bottom: 2px solid rgba(200, 170, 140, 0.15);
    margin-bottom: 40px;
}

.about-hero h1 {
    font-size: 3rem;
    color: #2d2a24;
    letter-spacing: 2px;
}

.about-hero h1 i {
    margin-right: 15px;
}

.about-hero p {
    font-size: 1.2rem;
    color: #8a7a6a;
    letter-spacing: 4px;
    margin-top: 8px;
}

.about-story {
    background: rgba(255, 248, 240, 0.8);
    border-radius: 20px;
    padding: 35px 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(200, 170, 140, 0.1);
}

.about-story h2 {
    font-size: 1.8rem;
    color: #c7791e;
    margin-bottom: 15px;
}

.about-story p {
    color: #2d2a24;
    line-height: 1.8;
    font-size: 1.05rem;
    margin-bottom: 12px;
}

.about-story .quote {
    font-size: 1.2rem;
    font-style: italic;
    text-align: center;
    padding: 15px 0;
    color: #5a4a3a;
}

.about-story .quote i {
    margin: 0 8px;
}

.about-values {
    margin-bottom: 40px;
}

.about-values h2 {
    font-size: 1.8rem;
    color: #c7791e;
    text-align: center;
    margin-bottom: 25px;
}

.about-values h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f5a623, #c7791e);
    margin: 8px auto 0;
    border-radius: 4px;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.value-card {
    background: rgba(255, 248, 240, 0.8);
    border-radius: 16px;
    padding: 25px 20px;
    text-align: center;
    border: 1px solid rgba(200, 170, 140, 0.1);
    transition: 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: #f5a623;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.06);
}

.value-icon {
    font-size: 2.5rem;
    color: #f5a623;
    margin-bottom: 12px;
}

.value-card h3 {
    font-size: 1.1rem;
    color: #2d2a24;
    margin-bottom: 8px;
}

.value-card p {
    font-size: 0.95rem;
    color: #5a4a3a;
    line-height: 1.5;
}

.about-customization {
    background: rgba(255, 248, 240, 0.8);
    border-radius: 20px;
    padding: 35px 40px;
    margin-bottom: 40px;
    border: 1px solid rgba(200, 170, 140, 0.1);
}

.about-customization h2 {
    font-size: 1.8rem;
    color: #c7791e;
    text-align: center;
    margin-bottom: 10px;
}

.customization-intro {
    text-align: center;
    color: #5a4a3a;
    font-size: 1rem;
    margin-bottom: 30px;
}

.customization-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
}

.customization-card {
    background: rgba(255, 255, 255, 0.6);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(200, 170, 140, 0.08);
}

.customization-card h3 {
    font-size: 1.1rem;
    color: #2d2a24;
    margin-bottom: 8px;
}

.customization-card h3 i {
    color: #f5a623;
    margin-right: 8px;
}

.customization-card p {
    color: #5a4a3a;
    font-size: 0.95rem;
    margin-bottom: 12px;
}

.customization-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.option-badge {
    background: rgba(255, 248, 240, 0.8);
    border: 2px solid #e0d5c8;
    color: #5a4a3a;
    padding: 6px 16px;
    border-radius: 40px;
    font-size: 0.8rem;
    font-weight: 500;
    cursor: default;
    transition: 0.3s;
}

.option-badge.active {
    background: #f5a623;
    border-color: #f5a623;
    color: #fff;
}

.option-badge span {
    margin-right: 4px;
}

.option-badge.all-sauces {
    border-color: #c7791e;
    background: rgba(199, 121, 30, 0.1);
    color: #c7791e;
    font-weight: 600;
}

.option-note {
    font-size: 0.8rem;
    color: #8a7a6a;
    font-style: italic;
    margin-top: 8px;
}

.customization-cta {
    text-align: center;
    margin-top: 30px;
    padding: 25px;
    background: rgba(245, 166, 35, 0.08);
    border-radius: 16px;
    border: 1px solid rgba(245, 166, 35, 0.15);
}

.customization-cta h3 {
    font-size: 1.3rem;
    color: #2d2a24;
    margin-bottom: 6px;
}

.customization-cta p {
    color: #5a4a3a;
    margin-bottom: 15px;
}

.customization-cta .btn-primary {
    display: inline-block;
    background: #f5a623;
    color: #fff;
    padding: 12px 35px;
    border-radius: 40px;
    text-decoration: none;
    font-weight: 700;
    transition: 0.3s;
}

.customization-cta .btn-primary:hover {
    background: #c7791e;
    transform: scale(1.03);
}

.customization-cta .btn-primary i {
    margin-right: 10px;
}

.about-contact {
    margin-bottom: 40px;
}

.about-contact h2 {
    font-size: 1.8rem;
    color: #c7791e;
    text-align: center;
    margin-bottom: 25px;
}

.about-contact h2::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #f5a623, #c7791e);
    margin: 8px auto 0;
    border-radius: 4px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 15px;
    background: rgba(255, 248, 240, 0.8);
    border-radius: 16px;
    padding: 18px 20px;
    border: 1px solid rgba(200, 170, 140, 0.08);
    transition: 0.3s;
}

.contact-item:hover {
    border-color: #f5a623;
}

.contact-item i {
    font-size: 1.5rem;
    color: #f5a623;
    min-width: 35px;
    text-align: center;
}

.contact-item h4 {
    font-size: 0.9rem;
    color: #8a7a6a;
    font-weight: 500;
}

.contact-item p {
    font-size: 0.95rem;
    color: #2d2a24;
    font-weight: 600;
}

.about-footer {
    text-align: center;
    padding: 30px 0 10px;
    border-top: 2px solid rgba(200, 170, 140, 0.1);
}

.about-footer p {
    font-size: 1.2rem;
    color: #2d2a24;
    font-weight: 600;
}

.about-footer .tagline {
    font-size: 1rem;
    color: #8a7a6a;
    font-weight: 400;
    margin-top: 4px;
}

/* ======================================== */
/* ===== FOOTER ===== */
/* ======================================== */

footer {
    background: rgba(20, 18, 16, 0.95);
    backdrop-filter: blur(10px);
    border-top: 1px solid rgba(200, 170, 140, 0.1);
    color: #c4b8a8;
    padding: 40px 20px 20px;
    position: relative;
    z-index: 2;
}

.footer-grid {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(200, 170, 140, 0.08);
}

.footer-brand .footer-logo {
    height: 45px;
    width: auto;
    margin-bottom: 8px;
}

.footer-brand p {
    font-size: 0.85rem;
    color: #8a7a6a;
    margin-bottom: 12px;
}

.social-links {
    display: flex;
    gap: 10px;
}

.social-links a {
    color: #8a7a6a;
    font-size: 1.2rem;
    transition: 0.3s;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.social-links a:hover {
    color: #f5a623;
    background: rgba(245, 166, 35, 0.15);
}

.footer-links h4 {
    color: #f5efe8;
    font-size: 1rem;
    margin-bottom: 10px;
}

.footer-links a {
    display: block;
    color: #8a7a6a;
    text-decoration: none;
    font-size: 0.9rem;
    padding: 4px 0;
    transition: 0.3s;
}

.footer-links a:hover {
    color: #f5a623;
}

.footer-links p {
    font-size: 0.9rem;
    color: #8a7a6a;
    padding: 3px 0;
}

.footer-links p i {
    color: #f5a623;
    margin-right: 8px;
    width: 18px;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
    padding-top: 18px;
    font-size: 0.85rem;
    color: #6a5a4a;
}

/* ======================================== */
/* ===== SCROLLBARS ===== */
/* ======================================== */

#cartItemsContainer::-webkit-scrollbar,
.modal-content::-webkit-scrollbar {
    width: 4px;
}

#cartItemsContainer::-webkit-scrollbar-track,
.modal-content::-webkit-scrollbar-track {
    background: rgba(200, 170, 140, 0.1);
    border-radius: 10px;
}

#cartItemsContainer::-webkit-scrollbar-thumb,
.modal-content::-webkit-scrollbar-thumb {
    background: #f5a623;
    border-radius: 10px;
}

body::-webkit-scrollbar {
    width: 8px;
}

body::-webkit-scrollbar-track {
    background: rgba(200, 170, 140, 0.1);
}

body::-webkit-scrollbar-thumb {
    background: #f5a623;
    border-radius: 10px;
}

/* ======================================== */
/* ===== RESPONSIVE ===== */
/* ======================================== */

@media (max-width: 768px) {
    header {
        flex-direction: column;
        padding: 14px 20px;
        gap: 10px;
        align-items: center;
        text-align: center;
    }
    
    .logo {
        align-items: center;
    }
    
    .logo-image {
        height: 40px;
        max-width: 150px;
    }
    
    .logo span {
        font-size: 0.7rem;
    }
    
    nav ul li a {
        font-size: 0.8rem;
        padding: 6px 12px;
    }
    
    .menu-page {
        padding: 20px 12px 40px;
    }
    
    .menu-title h1 {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .menu-title p {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }
    
    .order-type button {
        padding: 8px 18px;
        font-size: 0.8rem;
    }
    
    .menu-section {
        padding: 20px 16px;
    }
    
    .section-title {
        font-size: 1.1rem;
    }
    
    .menu-item {
        flex-wrap: wrap;
        gap: 6px;
        padding: 10px 8px;
    }
    
    .menu-item .item-name {
        font-size: 0.85rem;
        flex: 1 1 100%;
    }
    
    .menu-item .item-price {
        font-size: 0.85rem;
        margin-right: 10px;
    }
    
    .menu-item .add-btn {
        padding: 5px 12px;
        font-size: 0.7rem;
    }
    
    .cart-section {
        padding: 18px 16px;
    }
    
    .footer-content {
        gap: 4px;
    }
    
    .tab {
        padding: 6px 10px;
        font-size: 0.7rem;
        gap: 4px;
    }
    
    .tab i {
        font-size: 0.7rem;
    }
    
    .modal-content {
        padding: 20px;
    }
    
    .modal-options {
        gap: 6px;
    }
    
    .modal-option {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .promotions-page {
        padding: 140px 15px 40px;
    }
    
    .promotions-header h1 {
        font-size: 2.2rem;
    }
    
    .gallery-page {
        padding: 140px 15px 40px;
    }
    
    .gallery-header h1 {
        font-size: 2.2rem;
    }
    
    .chill-banner,
    .hubbly-banner {
        padding: 25px 20px;
    }
    
    .chill-banner h2,
    .hubbly-banner h2 {
        font-size: 1.4rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
        gap: 12px;
    }
    
    .gallery-cta .cta-content {
        padding: 25px 20px;
    }
    
    .gallery-cta .cta-content h2 {
        font-size: 1.5rem;
    }
    
    .chill-features {
        gap: 8px;
    }
    
    .chill-features span {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
    
    .hubbly-flavors {
        gap: 6px;
    }
    
    .hubbly-flavors span {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
    
    .about-page {
        padding: 140px 15px 40px;
    }
    
    .about-hero h1 {
        font-size: 2.2rem;
    }
    
    .about-hero p {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    
    .about-story {
        padding: 25px 20px;
    }
    
    .about-story h2 {
        font-size: 1.4rem;
    }
    
    .about-story p {
        font-size: 0.95rem;
    }
    
    .about-customization {
        padding: 25px 20px;
    }
    
    .about-customization h2 {
        font-size: 1.4rem;
    }
    
    .customization-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .customization-options {
        gap: 6px;
    }
    
    .option-badge {
        padding: 4px 12px;
        font-size: 0.7rem;
    }
    
    .delivery-address-container {
        flex-direction: column;
        align-items: stretch;
    }
    
    .delivery-address-container label {
        white-space: normal;
    }
}

@media (max-width: 480px) {
    .logo-image {
        height: 35px;
        max-width: 120px;
    }
    
    .menu-title h1 {
        font-size: 1.6rem;
    }
    
    .menu-section {
        padding: 14px 10px;
    }
    
    .menu-item {
        padding: 8px 6px;
    }
    
    .menu-item .item-name {
        font-size: 0.8rem;
    }
    
    .menu-item .item-price {
        font-size: 0.8rem;
    }
    
    .menu-item .add-btn {
        padding: 4px 10px;
        font-size: 0.65rem;
    }
    
    .order-type {
        gap: 8px;
    }
    
    .order-type button {
        padding: 6px 14px;
        font-size: 0.7rem;
    }
    
    .footer-content {
        gap: 2px;
    }
    
    .tab {
        padding: 4px 8px;
        font-size: 0.6rem;
    }
    
    .modal-footer {
        flex-direction: column;
    }
    
    .modal-cancel,
    .modal-confirm {
        width: 100%;
        justify-content: center;
    }
    
    .promotions-header h1 {
        font-size: 1.8rem;
    }
    
    .promo-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-header h1 {
        font-size: 1.8rem;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
        gap: 10px;
    }
    
    .gallery-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .gallery-cta .cta-buttons .btn-primary,
    .gallery-cta .cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
    
    .about-hero h1 {
        font-size: 1.8rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .customization-card {
        padding: 18px 15px;
    }
    
    .about-footer p {
        font-size: 1rem;
    }
}