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

body {
    font-family: 'Poppins', sans-serif;
    background-color: #ffffff;
    color: #1a1a1a;
    overflow-x: hidden;
}

/* ======================================================= */
/* ===== HERO (was: theme-one) =========================== */
/* ======================================================= */

.scroll-plate {
  transform: translateX(100%);
  opacity: 0;
  transition: transform 1s ease-out, opacity 1s ease-out;
}

.scroll-plate.visible {
  transform: translateX(0);
  opacity: 1;
}


.hero {
    --text-dark: #1a1a1a;
    --text-light: #6b6b6b;
    --text-red: #d32f2f;
    --bg-green: #c2f87f;
    --bg-white: #ffffff;
    --bg-light-gray: #f8f9fa;
    background-color: var(--bg-white);
    color: var(--text-dark);
    overflow: hidden;
}

.hero .container {
    background-color: #fefefe;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 4rem 2rem;
    padding-top: 0;
    position: relative;
    overflow: hidden; 
}
/* Header / Navigation */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    
    position: fixed;
    top: 0;
    z-index: 100;
    
    max-width: 1400px; 
    width: 100%;
    left: 50%;
    transform: translateX(-50%);

    padding: 1rem 4rem;
}
.site-logo {
    font-size: 2.5rem;
    font-weight: 700;
}

.site-logo__initial { color: var(--text-dark); }

.site-logo__name {
    font-family: 'Pacifico', cursive;
    color: var(--text-red);
    font-weight: 400; 
}


.site-nav {
    display: flex;
    gap: 2rem;
    margin-right: 24.5vw;
}

.site-nav a {
    text-decoration: none;
    color: var(--text-dark);
    font-size: 1rem;
    font-weight: 500;
    transition: color 0.3s;
}

.site-nav a:hover { color: var(--text-red); }

.site-header__actions {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.site-header__icon {
    font-size: 1.2rem;
    cursor: pointer;
}

.site-header__cart { position: relative; }

.site-header__cart-badge {
    position: absolute;
    top: -5px;
    right: -8px;
    width: 10px;
    height: 10px;
    background-color: var(--text-red);
    border-radius: 50%;
    border: 2px solid var(--bg-white);
}
.site-header__cart.pop-animation {
    animation: pop 0.3s ease-in-out;
}

@keyframes pop {
    0% { transform: scale(1); }
    50% { transform: scale(1.25); }
    100% { transform: scale(1); }
}

.site-header__cart-badge {
    display: none;
    font-size: 10px;
    padding: 3px;
    width: auto;
    min-width: 10px;
    height: auto;
    min-height: 10px;
    line-height: 1;
    text-align: center;
    top: -8px;
    right: -10px;
}
.hero__main {
    display: flex;
    position: relative;
    min-height: 80vh;
    padding-top: 80px;
}

.hero__content {
    flex: 1;
    padding-right: 2rem;
    z-index: 10;
}

.hero__title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 1.1;
    color: var(--text-dark);
}

.hero__price {
    font-size: 3rem;
    font-weight: 700;
    color: var(--text-red);
    margin: 1.5rem 0;
}

.hero__description {
    font-size: 1rem;
    color: var(--text-light);
    line-height: 1.8;
    max-width: 450px;
}

.hero__controls {
    display: flex;
    align-items: center;
    margin-top: 2.5rem;
    gap: 1.5rem;
}

.quantity {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background-color: var(--bg-light-gray);
    padding: 0.75rem 1rem;
    border-radius: 10px;
}

.quantity button {
    background: none;
    border: none;
    font-size: 1.2rem;
    color: var(--text-light);
    cursor: pointer;
}

.quantity__value {
    font-size: 1.2rem;
    font-weight: 700;
}

.button {
    border: none;
    cursor: pointer;
    font-weight: 700;
    border-radius: 10px;
}

.button--primary {
    background-color: var(--bg-green);
    color: var(--text-dark);
    padding: 1rem 2.5rem;
    font-size: 1rem;
    box-shadow: 0 5px 20px rgba(198, 240, 118, 0.6);
    transition: transform 0.2s;
}

.button--primary:hover { transform: translateY(-2px); }

.button--secondary {
    background-color: var(--accent-green-light, #E0F2E9);
    color: var(--accent-green-dark, #28A745);
    border-radius: 10px;
    padding: 10px 15px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    transition: background-color 0.3s ease;
}

.button--secondary:hover { background-color: #cce8d6; }

.hero__pagination {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 4rem;
    color: var(--text-light);
    max-width: 450px;
}

.hero__line {
    flex-grow: 1;
    height: 1px;
    background-color: #ddd;
}

.hero__page-link {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    padding: 0 0.5rem;
}

.hero__note {
    margin-top: 4rem;
    color: var(--text-light);
    line-height: 1.5;
}

/* Visual / images */
.hero__visual {
    flex: 1.2;
    position: relative;
}

.hero__plate {
    position: absolute;
    left: 150px;
    top: -200px;
    width: 800px;
    height: 760px;
    background: #eff3f4;
    border-radius: 50%;
}

#motionPath {
    position: absolute;
    left: 150px;
    top: -200px;
    pointer-events: none; 
    opacity: 0; 
}

.hero__image {
    position: absolute;
    top: 180px;
    left: 40px;
    width: 450px;
    height: 450px;
    object-fit: cover;
    border-radius: 50%;
}

.hero__thumb {
    position: absolute;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    box-shadow: 0 10px 20px rgba(0,0,0,0.1);
}

.hero__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__thumb--1 { top: -9%; left: 13%; }
.hero__thumb--2 { top: 25%; left: 5.5%; }
.hero__thumb--3 { top: 58%; left: 14.5%; }
.hero__thumb--4 { top: 81%; left: 45%; }

/* decorative arc and dots */
.decorative__arc, .decorative__dot  {
    position: absolute;
    width: 1.5px;
    height: 20px;
    background-color: #ccc;
    border-radius: 2px;
    transform: translate(-50%, -50%);
    transform-origin: center;
    opacity: 0.85;
    filter: blur(1px);
}

.decorative__arc--m1 { top: -11%; left: 24%;  transform: rotate(30deg); }
.decorative__arc--m2 { top: -15%; left: 27%;  transform: rotate(35deg); }
.decorative__arc--m3 { top: -19%; left: 30.5%; transform: rotate(39deg); }

.decorative__dot--1  { top: 3%; left: 17.5%;  transform: rotate(15deg); }
.decorative__dot--2  { top: 9%; left: 16%; transform: rotate(13deg); }
.decorative__dot--3  { top: 15%; left: 14.5%; transform: rotate(11deg); }
.decorative__dot--4  { top: 21.5%; left: 13%; transform: rotate(6deg); }
.decorative__dot--5  { top: 37.5%; left: 12.5%; transform: rotate(-5deg); }
.decorative__dot--6  { top: 43%; left: 13.5%; transform: rotate(-10deg); }
.decorative__dot--7  { top: 49%; left: 15.5%; transform: rotate(-16deg); }
.decorative__dot--8  { top: 55.4%; left: 17.5%; transform: rotate(-23deg); }
.decorative__dot--9  { top: 69%; left: 26%; transform: rotate(-32deg); }
.decorative__dot--10 { top: 74%; left: 30.5%; transform: rotate(-41deg); }
.decorative__dot--11 { top: 78.5%; left: 35.5%; transform: rotate(-50deg); }
.decorative__dot--12 { top: 83%; left: 43%; transform: rotate(-58deg); }
.decorative__dot--13 { top: 89%; left: 59.3%; transform: rotate(-70deg); }
.decorative__dot--14 { top: 90.7%; left: 66%; transform: rotate(-75deg); }
.decorative__dot--15 { top: 92%; left: 72.5%; transform: rotate(-79deg); }
.decorative__dot--16 { top: 92.7%; left: 79%; transform: rotate(-83deg); }
.decorative__dot--17 { top: 92.7%; left: 86.5%; transform: rotate(-86deg); }
.decorative__dot--18 { top: 92.7%; left: 94%; transform: rotate(-90deg); }
.decorative__dot--19 { top: 92.4%; left: 101%; transform: rotate(-94deg); }
.decorative__dot--20 { top: 91.5%; left: 108%; transform: rotate(-100deg); }

/* floating leaf (kept but renamed) */
.hero__floating-leaf {
    position: absolute;
    font-size: 2rem;
    color: #8BC34A;
    opacity: 0.8;
}

.hero__leaf-1 { top: 10%; right: 10%; transform: rotate(45deg); font-size: 3rem; }
.hero__leaf-2 { top: 30%; right: 0; transform: rotate(-30deg); }
.hero__leaf-3 { top: 80%; right: 5%; transform: rotate(120deg); font-size: 2.5rem; }
.hero__leaf-4 { bottom: -20px; left: 70%; transform: rotate(-60deg); }
.hero__leaf-5 { top: 70%; right: 50%; transform: rotate(20deg); }
.hero__leaf-6 { top: 5%; left: 60%; transform: rotate(10deg); opacity: 0.5; font-size: 5rem; }




/* ======================================================= */
/* ===== FEATURE (was: theme-two) ======================== */
/* ======================================================= */
.feature {
    position: relative;
    padding: 4rem 0;
    background-color: #fefefe;
    color: #333;
}

.feature .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.feature__main {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    z-index: 1;
}

.feature__text {
    flex-basis: 45%;
    padding-right: 2rem;
}

.feature__title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: #1a202c;
}

.feature__title .feature__highlight { color: #b92b27; }

.feature__lead,
.feature__sub {
    font-size: 1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: 1.5rem;
}

.feature__cta {
    background-color: #1a202c;
    color: #fff;
    border-radius: 8px;
    padding: 1rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.feature__cta:hover {
    background-color: #000;
    transform: translateY(-2px);
}

.feature__image-wrap {
    flex-basis: 55%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature__image-container {
    position: relative;
    left: 10%;
    width: 450px;
    height: 450px;
    border-radius: 50%;
    overflow: hidden;
}

.feature__image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.feature__leaf {
    position: absolute;
    z-index: 0;
    pointer-events: none;
}

.feature #leaf1 { top: -5%; left: 5%; width: 150px; transform: rotate(-20deg); filter: blur(4px); opacity: 0.8; }
.feature #leaf2 { top: 25%; left: 35%; width: 80px; transform: rotate(15deg); }
.feature #leaf3 { top: 40%; left: 40%; width: 100px; transform: rotate(-10deg); filter: blur(3px); opacity: 0.7; }
.feature #leaf4 { top: 60%; left: 20%; width: 120px; transform: rotate(25deg); }
.feature #leaf5 { bottom: 5%; left: 45%; width: 60px; transform: rotate(-30deg); }
.feature #leaf6 { bottom: -5%; left: 10%; width: 180px; transform: rotate(10deg); filter: blur(2px); opacity: 0.9; }
.feature #leaf7 { bottom: 15%; left: 38%; width: 90px; transform: rotate(5deg); filter: blur(4px); opacity: 0.6; }


/* ======================================================= */
/* ===== MENU / POPULAR (was: theme-three) =============== */
/* ======================================================= */
.menu {
    --bg-color: #fefefe ;
    --main-container-bg:  #eff3f4;
    --text-dark: #212529;
    --text-secondary: #6C757D;
    --text-light: #ADB5BD;
    --accent-red: #E53935;
    --accent-green-light: #E0F2E9;
    --accent-green-dark: #28A745;
    --accent-yellow: #FFC107;
    --border-color: #E9ECEF;
    background-color: var(--bg-color);
    color: var(--text-dark);
    padding: 50px 20px;
}

.menu .container {
    background-color: var(--main-container-bg);
    border-radius: 30px;
    padding: 30px 50px;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.05);
}

.menu__intro {
    text-align: center;
    margin-bottom: 40px;
}

.menu__intro h1 {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Poppins', sans-serif;
}

.menu__highlight { color: var(--accent-red); }

.menu__intro p {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 650px;
    margin: 0 auto;
    line-height: 1.7;
}

.menu__filters {
    text-align: center;
    margin: 0 auto 130px;
}

.menu__filters-list {
    display: inline-flex;
    gap: 18px;
    background: #fdfffe;
    padding: 10px 18px;
    border-radius: 999px;
    list-style: none;
    align-items: center;
}

.menu__filters-list a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 20px;
    transition: all 0.3s ease;
}

.menu__filters-list a:hover { color: var(--text-secondary); }

.menu__filter-item--active a {
    color: var(--text-dark);
    font-weight: 600;
}

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

/* Cards */
.menu__card {
    display: flex;
    flex-direction: column;
    background-color: #FFFFFF;
    border-radius: 20px;
    padding: 20px;
    min-height: 265px;
    text-align: left;
    position: relative;
    padding-top: 70px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.menu__card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
}

.menu__card-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px solid #FFFFFF;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
}

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

.menu__card-title {
    font-size: 17px;
    font-weight: 600;
    color: var(--text-dark);
}

.menu__card-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-light);
}

.rating__star { color: var(--accent-yellow); font-size: 15px; }

.menu__card-desc {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
    flex: 1 1 auto;
}


.menu__card-footer {
    display: flex;
    align-items: center;
    gap: 12px;          
    margin-top: auto;   
    padding-top: 8px;
}

.menu__card-price {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;         
    white-space: nowrap;
}

.menu__card-footer .controls {
    margin-left: auto;
    display: flex;
    align-items: center;
    gap: 12px;
}

.menu__card-quantity {
    display: flex;
    align-items: center;
    gap: 8px;
    background-color: #f1f2f6;
    border-radius: 8px;
    padding: 4px;       
}

.quantity-btn {
    background-color: #fff;
    border: 1px solid rgba(0,0,0,0.06);
    cursor: pointer;
    font-size: 14px;
    font-weight: 700;
    color: #333;
    width: 32px;
    height: 32px;
    border-radius: 6px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: background-color 0.12s, color 0.12s, transform 0.08s;
}
.quantity-btn:active { transform: scale(0.98); }

.quantity-btn:hover {
    background-color: #212529;
    color: #fff;
}

.quantity-value {
    font-size: 14px;
    font-weight: 700;
    color: #212529;
    padding: 0 8px;
    min-width: 20px;
    text-align: center;
}

.menu__card-action {
    background-color: var(--accent-green-light);
    color: var(--accent-green-dark);
    border: none;
    border-radius: 10px;
    padding: 10px 14px;    
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;      
    min-width: 110px;      
    justify-content: center;
    white-space: nowrap;
    transition: background-color 0.18s ease, transform 0.12s ease;
}
.menu__card-action:hover { background-color: #cce8d0; transform: translateY(-2px); }

.menu__explore {
    text-align: center;
}

.menu__explore .button {
    background-color: var(--text-dark);
    color: #FFFFFF;
    border-radius: 12px;
    padding: 15px 40px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.menu__explore .button:hover { background-color: #343a40; }




/* ======================================================= */
/* ===== SITE FOOTER ===================================== */
/* ======================================================= */
.site-footer {
    background-color: #c5f881;
    padding: 40px 0 0;
    position: relative;
    z-index: 0;
}

.site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
}

.site-footer__content {
    display: grid;
    grid-template-columns: 2fr 2fr 1fr 1fr;
    gap: 30px;
    color: #333;
    padding-bottom: 30px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.site-footer__col h4 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 16px;
    font-weight: 600;
}

.site-footer__col p,
.site-footer__col a {
    margin: 0 0 10px 0;
    font-size: 14px;
    line-height: 1.6;
    color: #333;
    text-decoration: none;
    display: block;
}

.site-footer__col a:hover { text-decoration: underline; }

.site-footer__social {
    display: flex;
    gap: 15px;
    font-size: 18px;
}

.site-footer__social a { color: #333; }

.site-footer__bottom {
    padding: 20px 0;
    background: transparent;
    font-size: 12px;
    color: #555;
}

.site-footer__bottom .site-footer__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.site-footer__links {
    display: flex;
    gap: 20px;
}
.site-footer__links a {
    text-decoration: none;
    color: #555;
}
.site-footer__links a:hover { text-decoration: underline; }












/* ===== BURGER MENU & MOBILE NAVIGATION ===== */
.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
    z-index: 1001;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background-color: #1a1a1a;
    border-radius: 3px;
    transition: all 0.3s ease;
}

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

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

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

.mobile-nav-overlay {
    position: fixed;
    inset: 0; 
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px); 
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
    z-index: 99;
}
.mobile-nav-overlay.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    gap: 2rem;
}

.mobile-nav__link {
    color: var(--text-red);
    text-decoration: none;
    font-size: 2rem;
    font-weight: 600;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
    cursor: pointer;
}

.mobile-nav-overlay.active .mobile-nav__link {
    opacity: 1;
    transform: translateY(0);
}

.mobile-nav-overlay.active .mobile-nav__link:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-overlay.active .mobile-nav__link:nth-child(2) { transition-delay: 0.2s; }
.mobile-nav-overlay.active .mobile-nav__link:nth-child(3) { transition-delay: 0.3s; }
.mobile-nav-overlay.active .mobile-nav__link:nth-child(4) { transition-delay: 0.4s; }

.mobile-nav__link:hover {
    color: var(--bg-green);
}

/* ===== CART MODAL ===== */
.cart-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.cart-modal-content {
    background: #fff;
    border-radius: 20px;
    max-width: 500px;
    width: 100%;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.cart-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 25px 30px;
    border-bottom: 2px solid #f0f0f0;
}

.cart-modal-header h2 {
    font-size: 24px;
    font-weight: 700;
    color: #1a1a1a;
    display: flex;
    align-items: center;
    gap: 10px;
}

.cart-modal-close {
    background: none;
    border: none;
    font-size: 28px;
    cursor: pointer;
    color: #666;
    transition: color 0.3s;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-modal-close:hover {
    color: #d32f2f;
}

.empty-cart-message {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 60px 30px;
    color: #999;
}

.empty-cart-message i {
    font-size: 64px;
    margin-bottom: 20px;
    opacity: 0.5;
}

.empty-cart-message p {
    font-size: 18px;
}

.cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px 30px;
    max-height: 400px;
}

.cart-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 15px;
    transition: transform 0.2s;
}

.cart-item:hover {
    transform: translateX(5px);
}

.cart-item-info h4 {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 5px;
}

.cart-item-info p {
    font-size: 14px;
    color: #666;
}

.cart-item-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.cart-item-total {
    font-size: 18px;
    font-weight: 700;
    color: #d32f2f;
}

.cart-item-remove {
    background: #ff4444;
    color: #fff;
    border: none;
    width: 35px;
    height: 35px;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.cart-item-remove:hover {
    background: #cc0000;
}

.cart-total {
    display: none;
    padding: 25px 30px;
    border-top: 2px solid #f0f0f0;
}

.cart-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1a1a1a;
}

#cart-total-amount {
    color: #d32f2f;
    font-size: 24px;
}

.cart-checkout {
    width: 100%;
    margin-bottom: 10px;
    font-size: 16px;
    padding: 15px;
}



.cart-clear .confirm-yes,
.cart-clear .confirm-cancel {
  padding: 2px 8px;
  border-radius: 6px;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  display: inline-block;
}

.cart-clear .confirm-yes {
  background: linear-gradient(135deg,#ef5350,#d32f2f);
  color: #fff;
  font-size: 13px;
}

.cart-clear .confirm-cancel {
  background: transparent;
  color: inherit;
  border: 1px solid rgba(0,0,0,0.06);
  font-size: 13px;
}

.cart-clear .confirm-yes:focus,
.cart-clear .confirm-cancel:focus {
  box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}


.cart-clear {
    display: inline-flex;          
    justify-content: center;
    align-items: center;
    gap: 8px;
    width: 100%;                   
    height: auto;                   
    padding: 12px;                 
    font-size: 16px;                
    font-weight: 600;               
    border-radius: 10px;          
    background: #f5f5f5;          
    color: #666;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    border: none;
}

.cart-clear:hover {
    background: #e0e0e0;
}

.site-header__cart {
    cursor: pointer;
    transition: transform 0.2s;
}

.site-header__cart:hover {
    transform: scale(1.1);
}

.menu__filter-item {
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu__filter-item:hover {
    transform: translateY(-2px);
}

.menu__filter-item--active {
    background: linear-gradient(135deg, #c2f87f 0%, #a8e063 100%);
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(194, 248, 127, 0.3);
}

.menu__filter-item--active a {
    color: #1a1a1a !important;
    font-weight: 700 !important;
}




.menu__explore .button {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.menu__explore .button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.menu__explore .button i {
    margin-right: 8px;
    transition: transform 0.3s ease;
}

.menu__explore .button:hover i {
    transform: translateY(2px);
}

.menu__explore .button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: left 0.5s ease;
}

.menu__explore .button:hover::before {
    left: 100%;
}


.toast {
  position: fixed;
  top: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(-50px);
  background: linear-gradient(135deg, #16a34a, #22c55e);
  color: white;
  padding: 14px 26px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  opacity: 0;
  z-index: 2000;
  transition: all 0.4s ease;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}



#cart-modal {
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.4);
  z-index: 1500;
  padding: 16px;
}

.cart-content {
  background: white;
  border-radius: 16px;
  width: 90%;
  max-width: 400px;
  max-height: 80vh;
  overflow-y: auto;
  padding: 20px;
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.cart-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  font-size: 14px;
}

.cart-checkout {
  width: 100%;
  background: linear-gradient(135deg, #15803d, #16a34a);
  color: #fff;
  border: none;
  padding: 12px;
  border-radius: 10px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.cart-checkout:active {
  transform: scale(0.97);
}




.fullscreen-toast {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: linear-gradient(135deg,#6a11cb,#2575fc);
    color: #fff;
    padding: 2rem 3rem;
    border-radius: 16px;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    z-index: 3000;
    box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.animated-cart-item {
    position: fixed;
    top: 50px;
    right: 50px;
    background: #fff;
    padding: 0.5rem 1rem;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
    z-index: 2500;
}

body * { text-decoration: none !important; }
/* =============================================================
   1200px — Large tablet / small laptop
   ============================================================= */
@media (max-width: 1200px) {

  .site-header {
    padding: 1rem 2.5rem;
  }

  .site-nav {
    margin-right: 0;
    gap: 1.5rem;
  }

  .hero .container {
    padding: 0 2.5rem 2rem;
  }

  .hero__title {
    font-size: 4rem;
  }

  .hero__plate {
    width: 650px;
    height: 620px;
    left: 80px;
    top: -160px;
  }

  .hero__image {
    width: 370px;
    height: 370px;
    top: 150px;
    left: 30px;
  }

  .feature__title {
    font-size: 2.8rem;
  }

  .feature__image-container {
    width: 380px;
    height: 380px;
  }

  .menu__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}


/* =============================================================
   960px — Tablet landscape
   ============================================================= */
@media (max-width: 960px) {

  .site-header {
    padding: 1rem 2rem;
  }

  .site-nav {
    gap: 1.25rem;
  }

  .site-nav a {
    font-size: 0.9rem;
  }

  .hero .container {
    padding: 0 2rem 2rem;
  }

  .hero__main {
    min-height: 70vh;
  }

  .hero__title {
    font-size: 3.5rem;
  }

  .hero__price {
    font-size: 2.5rem;
  }

  .hero__plate {
    width: 520px;
    height: 500px;
    left: 40px;
    top: -120px;
  }

  .hero__image {
    width: 310px;
    height: 310px;
    top: 120px;
    left: 15px;
  }

  .hero__thumb {
    width: 65px;
    height: 65px;
  }

  .feature__title {
    font-size: 2.4rem;
  }

  .feature__image-container {
    width: 320px;
    height: 320px;
  }

  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 80px 24px;
  }

  .menu .container {
    padding: 30px 32px;
  }

  .site-footer__content {
    grid-template-columns: 1fr 1fr;
    gap: 24px;
  }
}


/* =============================================================
   768px — Tablet portrait  (burger appears, big layout shifts)
   ============================================================= */
@media (max-width: 768px) {

  .site-nav {
    display: none;
  }

  .burger-menu {
    display: flex;
    order: -1; 
  }

  .site-header {
    padding: 1rem 1.5rem;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
  }

  .site-logo {
    font-size: 2rem;
  }

  .hero .container {
    padding: 0 1.5rem 3rem;
  }
.hero__main {
  flex-direction: column;
  align-items: flex-start;
  position: relative;
  min-height: unset;
  padding-top: 95px;
  gap: 0;
}

.hero__content {
  width: 100%;
  padding-right: 0;
  text-align: left;
  position: relative;
  z-index: 2;
}

.hero__title {
  font-size: 4rem;
  line-height: 1.0;
  padding-right: 150px;
  margin-bottom: 1.5rem;
}

.hero__price {
  font-size: 2rem;
  margin: 0.75rem 0;
}

.hero__description {
  max-width: 100%;
  margin: 0;
}

.hero__controls {
  justify-content: flex-start;
}

.hero__pagination {
  max-width: 100%;
  justify-content: flex-start;
}

.hero__note {
  margin-top: 1.5rem;
}

.hero__visual {
  position: absolute;
  right: -10px;
  top: 60px;      
  width: 210px;
  height: 210px;
  max-width: unset;
  flex: none;
  z-index: 1;        
}

.hero__plate {
  position: relative;
  width: 200px;
  height: 200px;
  left: -15px;
  top: 50px;
  transform: none;
  border-radius: 50%;
  background: #eff3f4;

}

.hero__image {
  width: 172px;
  height: 172px;
  top: 14px;
  left: 28px;
  transform: none;
}

.hero__thumb,
.decorative__dot,
.decorative__arc {
  display: none;
}



  .feature__text {
    flex-basis: auto;
    padding-right: 0;
  }

  .feature__title {
    font-size: 2.2rem;
  }

.feature__image-wrap {
  position: relative;
  right: unset;
  top: unset;
  transform: none;
  width: 100%;
  height: auto;
  pointer-events: auto;
  z-index: unset;
  display: flex;
  justify-content: center;
}

.feature__image-container {
  left: 0;
  width: 280px;
  height: 280px;
  opacity: 1;
  filter: none;
}

.feature__text {
  flex-basis: 100%;
  position: relative;
  z-index: unset;
}

.feature__main {
 flex-direction: column-reverse;
  align-items: center;
}

.site-footer {
  padding: 28px 0 0;
}

.site-footer__content {
  gap: 16px;
  padding-bottom: 20px;
}

.site-footer__col h4 {
  margin-bottom: 8px;
  font-size: 14px;
}

.site-footer__col p,
.site-footer__col a {
  margin-bottom: 5px;
  font-size: 13px;
}

.site-footer {
  padding: 28px 0 0;
}

.site-footer__content {
  gap: 16px;
  padding-bottom: 20px;
}

.site-footer__col h4 {
  margin-bottom: 8px;
  font-size: 14px;
}

.site-footer__col p,
.site-footer__col a {
  margin-bottom: 5px;
  font-size: 13px;
}

.site-footer__social {
  gap: 12px;
  font-size: 16px;
}

.site-footer__bottom {
  padding: 14px 0;
  font-size: 11px;
}

  .feature__image-wrap {
    flex-basis: auto;
    width: 100%;
  }

  .feature__image-container {
    width: 280px;
    height: 280px;
    margin-top: 0;
    margin-bottom: 10px;
  }

  .feature #leaf1,
  .feature #leaf3,
  .feature #leaf6,
  .feature #leaf7 {
    display: none;
  }

  /* ── Menu ── */
  .menu__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 90px 20px;
  }

  .menu__intro h1,
  .menu__title {
    font-size: 2rem;
  }

  /* ── Footer ── */
  .site-footer__content {
    grid-template-columns: 1fr 1fr;
  }

  .site-footer__inner {
    padding: 0 24px;
  }

  .site-footer__bottom .site-footer__inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    padding: 0 24px;
  }

  .site-footer__links {
    flex-wrap: wrap;
    gap: 10px;
  }

  .cart-modal-content {
    max-width: 100%;
    max-height: 85vh;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    margin-top: auto; /* pin to bottom */
  }

  #cart-modal {
    align-items: flex-end;
    padding: 0;
  }
}


/* =============================================================
   480px — Mobile phones
   ============================================================= */
@media (max-width: 480px) {

  /* ── Header ── */
  .site-header {
    padding: 0.875rem 1.25rem;
  }

  .site-logo {
    font-size: 1.75rem;
  }

  /* ── Hero ── */
  .hero .container {
    padding: 0 1.25rem 2.5rem;
  }

  .hero__main {
    padding-top: 88px;
    gap: 1.5rem;
  }

.hero__title {
  font-size: 3.2rem;
  padding-right: 130px;
}



  .hero__price {
    font-size: 2rem;
    margin: 1rem 0;
  }

  .hero__description {
    font-size: 0.9rem;
  }

  .hero__controls {
    flex-wrap: wrap;
    gap: 1rem;
  }

  .quantity {
    flex: 1;
    justify-content: center;
  }

  .button--primary.hero__order {
    flex: 1;
    text-align: center;
    padding: 1rem 1.5rem;
  }

.hero__plate {
  width: 165px;
  height: 165px;
}

.hero__visual {
  right: -8px;
  top: 52px;
  width: 175px;
  height: 175px;
}

.hero__image {
  width: 142px;
  height: 142px;
  top: 11px;
  left: 11px;
}

  /* ── Feature ── */
  .feature {
    padding: 3rem 0;
  }

  .feature .container {
    padding: 0 1.25rem;
  }

  .feature__title {
    font-size: 1.9rem;
  }

  .feature__image-container {
    width: 240px;
    height: 240px;
  }

  .feature__cta {
    width: 100%;
    text-align: center;
  }

  /* ── Menu ── */
  .menu {
    padding: 40px 12px;
  }

  .menu .container {
    padding: 24px 20px;
    border-radius: 20px;
  }

  .menu__grid {
    grid-template-columns: 1fr;
    gap: 90px 0;
    max-width: 360px;
    margin-left: auto;
    margin-right: auto;
  }

  .menu__intro h1,
  .menu__title {
    font-size: 1.75rem;
  }

  .menu__desc {
    font-size: 0.875rem;
  }

  .menu__filters {
    margin-bottom: 100px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  .menu__filters::-webkit-scrollbar { display: none; }

  .menu__filters-list {
    white-space: nowrap;
    display: inline-flex;
    gap: 10px;
    padding: 8px 14px;
  }

  .menu__filters-list a {
    font-size: 0.85rem;
    padding: 6px 12px;
    white-space: nowrap;
  }

  .menu__card-footer {
    flex-wrap: wrap;
    gap: 10px;
  }

  .menu__card-action {
    width: 100%;
    justify-content: center;
  }

  /* ── Footer ── */
  .site-footer__content {
    grid-template-columns: 1fr; 
    gap: 20px;
  }

  .site-footer__social {
    gap: 18px;
    font-size: 20px;
  }

  /* ── Cart modal ── */
  .cart-modal-header {
    padding: 20px;
  }

  .cart-modal-header h2 {
    font-size: 20px;
  }

  .cart-items {
    padding: 16px 20px;
  }

  .cart-total {
    padding: 20px;
  }

  .cart-total-row {
    font-size: 17px;
  }

  #cart-total-amount {
    font-size: 20px;
  }

  .animated-cart-item {
    top: 70px;  
    right: 16px;
    left: 16px;
    text-align: center;
  }
}


/* =============================================================
   360px — Small mobile safety net
   ============================================================= */
@media (max-width: 360px) {

  .hero__title {
    font-size: 2.4rem;
  }

  .hero__plate,
  .hero__visual {
    width: 220px;
    height: 220px;
  }

  .hero__image {
    width: 185px;
    height: 185px;
  }

  .feature__title {
    font-size: 1.7rem;
  }

  .feature__image-container {
    width: 200px;
    height: 200px;
  }

  .site-header {
    padding: 0.75rem 1rem;
  }
}