/* ===== GLOBAL SMOOTH SCROLL ===== */
html {
    scroll-behavior: smooth;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', sans-serif;
    background: #fcf8f4;
    color: #2d1b2a;
    line-height: 1.6;
    padding-bottom: 80px;
}

a {
    text-decoration: none;
    color: inherit;
}
ul {
    list-style: none;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 16px;
}

/* ===== BUTTONS ===== */
.btn {
    display: inline-block;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
    min-height: 48px;
    min-width: 48px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, #fd79a8, #e74c3c);
    color: #fff;
    box-shadow: 0 4px 16px rgba(231, 76, 60, 0.35);
}
.btn-primary:hover {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(231, 76, 60, 0.5);
}
.btn-primary:active {
    transform: scale(0.96);
}

.btn-outline {
    background: transparent;
    color: #e84393;
    border: 2px solid #e84393;
}
.btn-outline:hover {
    background: #e84393;
    color: #fff;
    transform: translateY(-2px);
}

.btn-block {
    display: block;
    width: 100%;
}

.btn-lg {
    padding: 16px;
    font-size: 1.1rem;
}

/* ===== HEADER ===== */
.header {
    background: rgba(255, 252, 248, 0.92);
    padding: 12px 0;
    box-shadow: 0 2px 12px rgba(232, 67, 147, 0.10);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 700;
    font-size: 1.4rem;
    font-family: 'Playfair Display', serif;
}

.logo-img {
    height: 50px;
    width: auto;
    display: block;
    transition: transform 0.3s ease;
}
.logo:hover .logo-img {
    transform: scale(1.04);
}

.nav {
    display: none;
}
.nav__list {
    display: flex;
    gap: 24px;
    font-weight: 500;
}
.nav__link {
    transition: color 0.2s;
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: #e84393;
    transition: width 0.3s ease;
}
.nav__link:hover::after {
    width: 100%;
}
.nav__link:hover {
    color: #e84393;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.cart-btn {
    background: #f0ebe6;
    border: none;
    border-radius: 50px;
    padding: 8px 14px;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    position: relative;
    transition: all 0.2s;
    min-height: 44px;
}
.cart-btn:hover {
    background: #ffe2e6;
    transform: scale(1.04);
}
.cart-btn:active {
    transform: scale(0.94);
}

.cart-badge {
    background: #e84393;
    color: #fff;
    border-radius: 50%;
    width: 22px;
    height: 22px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    transition: transform 0.2s;
}
.cart-btn:hover .cart-badge {
    transform: scale(1.1);
}

.mobile-menu-btn {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 4px;
    min-height: 44px;
    min-width: 44px;
    transition: transform 0.2s;
}
.mobile-menu-btn:hover {
    transform: rotate(90deg);
}

/* ===== MOBILE NAV OVERLAY - POPUP ANIMATION ===== */
.mobile-nav-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 150;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav__inner {
    background: #fff;
    border-radius: 30px;
    padding: 40px 30px;
    max-width: 90%;
    width: 320px;
    position: relative;
    text-align: center;
    transform: scale(0.8) translateY(30px);
    transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}
.mobile-nav-overlay.active .mobile-nav__inner {
    transform: scale(1) translateY(0);
}

.mobile-nav__close {
    position: absolute;
    top: 16px;
    right: 16px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 8px;
    min-height: 44px;
    min-width: 44px;
    transition: transform 0.2s;
}
.mobile-nav__close:hover {
    transform: rotate(90deg);
}

.mobile-nav__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 20px;
}
.mobile-nav__link {
    font-size: 1.6rem;
    font-weight: 600;
    padding: 12px;
    display: block;
    border-radius: 12px;
    transition: all 0.2s;
}
.mobile-nav__link:hover {
    background: #ffe2e6;
    transform: scale(1.04);
}

/* ===== HERO WITH SCROLLING BANNER ===== */
.hero {
    padding: 0 0 60px;
    background: linear-gradient(135deg, #fff5f7 0%, #ffe2e6 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 120%;
    background: radial-gradient(circle, rgba(231, 76, 60, 0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* Scrolling banner (marquee) */
.hero__banner {
    background: #e84393;
    color: #fff;
    padding: 10px 0;
    overflow: hidden;
    white-space: nowrap;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(232, 67, 147, 0.3);
}

.hero__banner-track {
    display: inline-block;
    animation: scrollBanner 20s linear infinite;
}

.hero__banner-track span {
    display: inline-block;
    padding: 0 30px;
    position: relative;
}
.hero__banner-track span::after {
    content: '•';
    position: absolute;
    right: -2px;
    color: rgba(255,255,255,0.5);
}

@keyframes scrollBanner {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.hero__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    text-align: center;
    padding-top: 30px;
    position: relative;
    z-index: 1;
}

.hero__tag {
    background: #ffebee;
    color: #c0392b;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 12px;
    animation: fadeInUp 0.6s ease;
}

.hero__title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    animation: fadeInUp 0.7s ease;
    font-family: 'Playfair Display', serif;
}
.hero__title span {
    color: #e84393;
}

.hero__desc {
    font-size: 1rem;
    color: #4a3a42;
    max-width: 450px;
    margin: 0 auto 24px;
    animation: fadeInUp 0.8s ease;
}

.hero__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 32px;
    animation: fadeInUp 0.9s ease;
}
.hero__buttons .btn {
    width: 100%;
}

.hero__stats {
    display: flex;
    justify-content: center;
    gap: 24px;
    animation: fadeInUp 1s ease;
}

.stat__number {
    font-size: 1.4rem;
    font-weight: 700;
    display: block;
    color: #e84393;
}
.stat__label {
    font-size: 0.8rem;
    color: #5a4a52;
}

.hero__image {
    position: relative;
    max-width: 400px;
    margin: 0 auto;
    animation: fadeInUp 0.8s ease;
}
.hero__image img {
    width: 100%;
    border-radius: 30px;
    box-shadow: 0 12px 24px rgba(231, 76, 60, 0.15);
    transition: transform 0.4s ease;
}
.hero__image img:hover {
    transform: scale(1.02);
}

.hero__floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    padding: 8px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    font-size: 0.8rem;
    animation: float 3s ease-in-out infinite;
}
.floating-card--1 {
    bottom: 10px;
    left: -10px;
    animation-delay: 0s;
}
.floating-card--2 {
    top: 10px;
    right: -10px;
    animation-delay: 1.5s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== SECTION HEADERS ===== */
.section-header {
    text-align: center;
    margin-bottom: 32px;
}

.section-tag {
    display: inline-block;
    background: #ffebee;
    color: #c0392b;
    padding: 4px 14px;
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
}

.section-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}
.section-title span {
    color: #e84393;
}

.section-desc {
    color: #5a4a52;
    max-width: 600px;
    margin: 0 auto;
    font-size: 0.95rem;
}

/* ===== CATALOGUE (MENU) ===== */
.menu {
    padding: 40px 0;
}

.menu__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.menu-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: row;
    align-items: center;
    padding: 12px;
    gap: 16px;
    transition: all 0.3s ease;
    cursor: default;
}
.menu-item:hover {
    transform: translateY(-3px) scale(1.01);
    box-shadow: 0 12px 28px rgba(232, 67, 147, 0.15);
}
.menu-item:active {
    transform: scale(0.98);
}

.menu-item__image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 16px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}
.menu-item:hover .menu-item__image {
    transform: scale(1.05);
}

.menu-item__body {
    flex: 1;
    padding: 0;
}

.menu-item__title {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.menu-item__desc {
    color: #5a4a52;
    font-size: 0.8rem;
    margin-bottom: 6px;
    max-height: 2.6em;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    line-clamp: 2;
}

.menu-item__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
}

.menu-item__price {
    font-weight: 700;
    font-size: 1rem;
    color: #2d1b2a;
}

.menu-item__add {
    background: #e84393;
    color: #fff;
    border: none;
    border-radius: 50px;
    padding: 8px 18px;
    font-weight: 600;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    min-height: 44px;
    white-space: nowrap;
}
.menu-item__add:hover {
    background: #c0392b;
    transform: scale(1.06);
}
.menu-item__add:active {
    transform: scale(0.92);
}

/* ===== PAGINATION ===== */
.menu__pagination {
    text-align: center;
    margin-top: 32px;
}

.btn-load-more {
    padding: 14px 36px;
    font-size: 1rem;
    min-width: 180px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.btn-load-more:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(232, 67, 147, 0.2);
}
.btn-load-more:active {
    transform: scale(0.95);
}
.btn-load-more .btn-text {
    transition: opacity 0.2s;
}
.btn-load-more.loading .btn-text {
    opacity: 0.6;
}
.btn-load-more.loading i {
    animation: spin 0.8s linear infinite;
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.menu-item {
    animation: fadeInUp 0.4s ease;
}

/* ===== CLASSIC FLAVOURS ===== */
.classic {
    padding: 40px 0;
    background: #fff5f7;
}

.classic__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.classic-item {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    text-align: center;
    padding: 20px 16px;
    transition: all 0.3s ease;
}
.classic-item:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(232, 67, 147, 0.15);
}
.classic-item img {
    width: 100%;
    height: 160px;
    object-fit: cover;
    border-radius: 12px;
    margin-bottom: 12px;
}
.classic-item h3 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}
.classic-item p {
    color: #5a4a52;
    font-size: 0.9rem;
    margin-bottom: 8px;
}
.classic-item .price {
    font-weight: 700;
    color: #e84393;
}

/* ===== ABOUT ===== */
.about {
    padding: 40px 0;
    background: #fff5f7;
}

.about__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    text-align: center;
}

.about__image img {
    width: 100%;
    border-radius: 24px;
    box-shadow: 0 8px 20px rgba(231, 76, 60, 0.10);
    transition: transform 0.4s ease;
}
.about__image img:hover {
    transform: scale(1.02);
}

.about__desc {
    margin: 12px 0 20px;
    color: #4a3a42;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px 16px;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    font-size: 0.9rem;
    transition: transform 0.2s;
}
.about__feature:hover {
    transform: translateX(4px);
}
.about__feature i {
    color: #e84393;
    font-size: 1.2rem;
    width: 24px;
}

/* ===== CONTACT ===== */
.contact {
    padding: 40px 0;
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.contact__desc {
    margin: 8px 0 20px;
    color: #4a3a42;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.contact__item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: transform 0.2s;
}
.contact__item:hover {
    transform: translateX(4px);
}
.contact__item i {
    color: #e84393;
    font-size: 1.2rem;
    width: 24px;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.contact__form input,
.contact__form textarea {
    padding: 14px 16px;
    border: 1px solid #f8d7da;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    width: 100%;
    background: #fff;
}
.contact__form input:focus,
.contact__form textarea:focus {
    outline: none;
    border-color: #e84393;
    box-shadow: 0 0 0 4px rgba(232, 67, 147, 0.15);
    transform: scale(1.01);
}

/* ===== FOOTER ===== */
.footer {
    background: #2d1b2a;
    color: #e6ddd6;
    padding-top: 40px;
}

.footer__inner {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    padding-bottom: 30px;
    text-align: center;
}

.footer__brand p {
    margin: 12px 0 20px;
    color: #b8a8a8;
}

.footer__socials {
    display: flex;
    justify-content: center;
    gap: 16px;
    font-size: 1.4rem;
}
.footer__socials a {
    color: #b8a8a8;
    transition: all 0.3s;
    display: inline-block;
}
.footer__socials a:hover {
    color: #fd79a8;
    transform: translateY(-3px) scale(1.1);
}

.footer__links {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

.footer__links h4 {
    color: #fff;
    margin-bottom: 8px;
}
.footer__links ul li {
    margin-bottom: 6px;
    color: #b8a8a8;
    transition: transform 0.2s;
}
.footer__links ul li:hover {
    transform: translateX(4px);
}
.footer__links ul li a {
    transition: color 0.2s;
}
.footer__links ul li a:hover {
    color: #fd79a8;
}

.footer__bottom {
    border-top: 1px solid #3a2a38;
    padding: 16px 0;
    text-align: center;
    color: #8a7a7a;
    font-size: 0.8rem;
}

/* ===== BOTTOM CART BAR ===== */
.bottom-cart-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    padding: 12px 16px;
    z-index: 90;
    display: none;
    border-top: 1px solid #f8d7da;
    animation: slideUp 0.3s ease;
}
@keyframes slideUp {
    from { transform: translateY(100%); }
    to { transform: translateY(0); }
}
.bottom-cart-bar.active {
    display: block;
}

.bottom-cart-bar__inner {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 1200px;
    margin: 0 auto;
}

.bottom-cart-bar__total {
    font-weight: 700;
    font-size: 1.1rem;
    color: #e84393;
    white-space: nowrap;
}

.bottom-cart-bar__inner .btn {
    flex: 1;
    min-height: 48px;
}

/* ===== CART SIDEBAR (PERFORMANCE) ===== */
.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 200;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.cart-overlay.open {
    opacity: 1;
    pointer-events: auto;
}

.cart-sidebar {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 300;
    box-shadow: -4px 0 20px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
    contain: layout style paint;
    backface-visibility: hidden;
    perspective: 1000px;
}
.cart-sidebar.open {
    transform: translateX(0%);
}

.cart-sidebar__header {
    padding: 16px 20px;
    border-bottom: 1px solid #f8d7da;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}
.cart-sidebar__header h2 {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.cart-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 8px;
    min-height: 44px;
    min-width: 44px;
    transition: transform 0.2s;
}
.cart-close:hover {
    transform: rotate(90deg);
}

.cart-sidebar__body {
    flex: 1;
    overflow-y: auto;
    padding: 16px 20px;
    -webkit-overflow-scrolling: touch;
}

.cart-empty {
    text-align: center;
    margin-top: 60px;
    color: #5a4a52;
}
.cart-empty i {
    font-size: 3rem;
    color: #f8d7da;
    margin-bottom: 16px;
}

.cart-items {
    list-style: none;
}

.cart-item {
    display: flex;
    gap: 14px;
    padding: 12px 0;
    border-bottom: 1px solid #f0ebe6;
    align-items: center;
    animation: fadeInUp 0.3s ease;
}
.cart-item__image {
    width: 56px;
    height: 56px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
}
.cart-item__info {
    flex: 1;
}
.cart-item__title {
    font-weight: 600;
    font-size: 0.95rem;
}
.cart-item__price {
    color: #e84393;
    font-weight: 500;
    font-size: 0.9rem;
}
.cart-item__remove {
    background: none;
    border: none;
    color: #b00;
    cursor: pointer;
    font-size: 1.2rem;
    padding: 8px;
    min-height: 44px;
    min-width: 44px;
    transition: transform 0.2s;
}
.cart-item__remove:hover {
    transform: scale(1.2);
}

.cart-sidebar__footer {
    padding: 16px 20px 20px;
    border-top: 1px solid #f8d7da;
    flex-shrink: 0;
    background: #fff;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 14px;
}
.cart-total__price {
    color: #e84393;
}

/* ===== CHECKOUT MODAL ===== */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 400;
    display: none;
    animation: fadeIn 0.3s ease;
}

.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: 500;
    display: none;
    flex-direction: column;
    overflow: hidden;
    border-radius: 0;
    animation: slideUp 0.3s ease;
}
.modal.open {
    display: flex;
}

.modal__header {
    padding: 16px 20px;
    border-bottom: 1px solid #f8d7da;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
}
.modal__header h2 {
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    padding: 8px;
    min-height: 44px;
    min-width: 44px;
    transition: transform 0.2s;
}
.modal-close:hover {
    transform: rotate(90deg);
}

.modal__body {
    padding: 20px;
    overflow-y: auto;
    flex: 1;
}

.checkout-summary {
    background: #fff5f7;
    padding: 14px 16px;
    border-radius: 16px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    border-left: 4px solid #e84393;
}
.checkout-summary p {
    margin: 4px 0;
}

.checkout-form .form-group {
    margin-bottom: 16px;
}
.checkout-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 4px;
    font-size: 0.9rem;
}
.checkout-form input,
.checkout-form textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid #f8d7da;
    border-radius: 12px;
    font-family: inherit;
    font-size: 1rem;
    transition: all 0.3s;
    background: #fafafa;
}
.checkout-form input:focus,
.checkout-form textarea:focus {
    outline: none;
    border-color: #e84393;
    box-shadow: 0 0 0 4px rgba(232, 67, 147, 0.12);
    background: #fff;
}

.payment-options {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 4px;
}

.payment-option {
    display: flex;
    align-items: center;
    gap: 6px;
    background: #fff5f7;
    padding: 8px 14px;
    border-radius: 50px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.25s ease;
    font-size: 0.9rem;
}
.payment-option:hover {
    background: #ffe2e6;
    transform: scale(1.04);
}
.payment-option input[type="radio"] {
    accent-color: #e84393;
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    cursor: pointer;
}
.payment-option:has(input:checked) {
    border-color: #e84393;
    background: #ffe2e6;
    box-shadow: 0 4px 12px rgba(232, 67, 147, 0.2);
}

#mmgGroup {
    display: block;
}
#mmgGroup input {
    margin-top: 4px;
}

small {
    color: #5a4a52;
    display: block;
    margin-top: 4px;
    font-size: 0.8rem;
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 90px;
    left: 50%;
    transform: translateX(-50%) translateY(80px);
    background: #2d1b2a;
    color: #fff;
    padding: 14px 20px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    gap: 14px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
    z-index: 600;
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    pointer-events: none;
    max-width: 90%;
    width: auto;
}
.toast.show {
    transform: translateX(-50%) translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.toast__icon {
    color: #fd79a8;
    font-size: 1.4rem;
}
.toast__title {
    font-weight: 700;
    display: block;
    font-size: 0.9rem;
}
.toast__message {
    font-size: 0.85rem;
    opacity: 0.9;
}
.toast__close {
    background: none;
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    opacity: 0.6;
    transition: opacity 0.2s;
    padding: 4px;
}
.toast__close:hover {
    opacity: 1;
}

/* ===== SCROLL TO TOP ===== */
.scroll-top {
    position: fixed;
    bottom: 100px;
    right: 16px;
    background: #e84393;
    color: #fff;
    border: none;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
    cursor: pointer;
    box-shadow: 0 4px 16px rgba(232, 67, 147, 0.4);
    z-index: 80;
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}
.scroll-top.visible {
    opacity: 1;
    transform: scale(1);
}
.scroll-top:hover {
    transform: scale(1.1) translateY(-4px);
    background: #c0392b;
    box-shadow: 0 8px 24px rgba(232, 67, 147, 0.5);
}
.scroll-top:active {
    transform: scale(0.9);
}

/* ======================================================
   RESPONSIVE BREAKPOINTS
   ====================================================== */

/* --- TABLETS & DESKTOP (768px+) --- */
@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }
    .header {
        padding: 16px 0;
    }
    .nav {
        display: block;
    }
    .mobile-menu-btn {
        display: none;
    }
    .mobile-nav-overlay {
        display: none !important;
    }

    .hero {
        padding: 0 0 80px;
    }
    .hero__inner {
        grid-template-columns: 1fr 1fr;
        text-align: left;
        padding-top: 40px;
    }
    .hero__desc {
        margin-left: 0;
    }
    .hero__buttons {
        flex-direction: row;
        justify-content: flex-start;
    }
    .hero__buttons .btn {
        width: auto;
    }
    .hero__stats {
        justify-content: flex-start;
    }
    .hero__title {
        font-size: 3rem;
    }

    .menu__grid {
        grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
        gap: 24px;
    }
    .menu-item {
        flex-direction: column;
        padding: 0;
        align-items: stretch;
    }
    .menu-item__image {
        width: 100%;
        height: 180px;
        border-radius: 20px 20px 0 0;
    }
    .menu-item__body {
        padding: 16px 18px 20px;
    }

    .classic__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .contact__inner {
        grid-template-columns: 1fr 1fr;
    }

    .footer__inner {
        grid-template-columns: 1.5fr 2fr;
        text-align: left;
    }
    .footer__socials {
        justify-content: flex-start;
    }
    .footer__links {
        grid-template-columns: repeat(3, 1fr);
    }

    .bottom-cart-bar {
        display: none !important;
    }

    .cart-sidebar {
        width: 400px;
        transform: translateX(calc(100% + 20px));
    }
    .cart-sidebar.open {
        transform: translateX(0%);
    }

    .modal {
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        width: 90%;
        max-width: 600px;
        max-height: 90vh;
        border-radius: 28px;
        height: auto;
    }
    .modal.open {
        display: flex;
    }

    .toast {
        bottom: 30px;
        left: auto;
        right: 30px;
        transform: translateY(80px);
        max-width: 400px;
    }
    .toast.show {
        transform: translateY(0);
    }

    .scroll-top {
        bottom: 30px;
        right: 30px;
    }
}

@media (min-width: 1024px) {
    .hero__title {
        font-size: 3.6rem;
    }
}

/* --- MOBILE (max-width: 767px) --- */
@media (max-width: 767px) {
    .menu-item {
        flex-direction: column;
        padding: 0;
        border-radius: 16px;
        overflow: hidden;
        align-items: stretch;
        background: #fff;
        margin-bottom: 4px;
    }
    .menu-item__image {
        width: 100%;
        height: 200px;
        border-radius: 0;
        object-fit: cover;
    }
    .menu-item__body {
        padding: 16px 16px 18px;
    }
    .menu-item__desc {
        font-size: 0.85rem;
        max-height: 3em;
    }
    .menu-item__footer {
        margin-top: 8px;
        flex-wrap: wrap;
    }
    .menu-item__price {
        font-size: 1.1rem;
    }
    .menu-item__add {
        padding: 10px 20px;
        width: 100%;
        text-align: center;
        font-size: 1rem;
        min-height: 48px;
        border-radius: 12px;
    }

    .classic-item img {
        height: 140px;
    }

    .hero__title {
        font-size: 1.8rem;
    }
    .hero__stats {
        gap: 12px;
    }
    .stat__number {
        font-size: 1.2rem;
    }
}
/* ===== HERO – FULL-WIDTH BAKERY BANNER ===== */
.hero {
    position: relative;
    min-height: 90vh;
    background-image: url('banner.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    text-align: center;
    padding: 80px 0;
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.55); /* dark overlay for readability */
    z-index: 1;
}

.hero__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.hero__content {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 16px;
}

.hero__tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(4px);
    color: #fff;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__title {
    font-size: 3.2rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
    font-family: 'Playfair Display', serif;
    color: #fff;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
}
.hero__title span {
    color: #fd79a8;
}

.hero__desc {
    font-size: 1.6rem;
    font-weight: 400;
    color: #f0ebe6;
    margin-bottom: 28px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
}
.hero__desc span {
    color: #fd79a8;
    font-weight: 600;
}

.hero__buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 40px;
}
.hero__buttons .btn {
    width: 100%;
}

/* Hero Stats – overlaid at bottom of banner */
.hero__stats {
    display: flex;
    justify-content: center;
    gap: 32px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
}

.stat__number {
    font-size: 1.6rem;
    font-weight: 700;
    display: block;
    color: #fd79a8;
}
.stat__label {
    font-size: 0.8rem;
    color: #e6ddd6;
    font-weight: 400;
}

/* ===== RESPONSIVE – HERO ===== */
@media (min-width: 768px) {
    .hero {
        min-height: 85vh;
        padding: 100px 0;
    }
    .hero__title {
        font-size: 4.2rem;
    }
    .hero__desc {
        font-size: 1.8rem;
    }
    .hero__buttons {
        flex-direction: row;
        justify-content: center;
    }
    .hero__buttons .btn {
        width: auto;
        min-width: 200px;
    }
    .hero__stats {
        gap: 48px;
    }
}

@media (max-width: 767px) {
    .hero {
        background-attachment: scroll; /* better performance on mobile */
        min-height: 80vh;
        padding: 60px 0;
    }
    .hero__title {
        font-size: 2.4rem;
    }
    .hero__desc {
        font-size: 1.2rem;
    }
    .hero__stats {
        gap: 16px;
        flex-wrap: wrap;
    }
    .stat__number {
        font-size: 1.3rem;
    }
}