:root {
    --primary: #222;
    --accent: #b2d8b2; /* Soft pistachio */
    --white: #fff;
    --black: #000;
    --radius: 1.2rem;
    --shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    --font-main: 'Poppins', 'Montserrat', Arial, sans-serif;
}

button,
a {
    outline: none;
    -webkit-tap-highlight-color: transparent;
}

button:focus,
button:active,
a:focus,
a:active {
    outline: none;
    box-shadow: none;
    background-color: inherit;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: var(--font-main);
    background: var(--white);
    color: var(--primary);
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
    border-radius: var(--radius);
}

.header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 1.2rem;
    box-shadow: var(--shadow);
}

.header__left,
.header__right {
    flex: 1;
    display: flex;
    align-items: center;
}

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

.header__center {
    flex: 2;
    display: flex;
    justify-content: center;
    align-items: center;
}

.header__right {
    justify-content: flex-end;
}

.logo {
    height: 48px;
    width: auto;
}

.icon-btn {
    background: none;
    border: none;
    cursor: pointer;
    position: relative;
    padding: 0.5rem;
    border-radius: 50%;
}

.cart-count {
    position: absolute;
    top: 2px;
    right: 2px;
    background: var(--accent);
    color: var(--black);
    font-size: 0.75rem;
    border-radius: 50%;
    padding: 2px 6px;
    font-weight: bold;
}

.nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    padding: 4rem 2rem 2rem;
    transition: right 0.3s ease-in-out;
    z-index: 1000;
}

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

.nav-menu.animate {
    animation: slideIn 0.3s ease-in-out;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.nav-menu a {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    padding: 0.8rem 1rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

.nav-menu a:hover {
    background: var(--accent);
    color: var(--black);
    transform: translateX(5px);
}

#burger-btn {
    cursor: pointer;
    padding: 0.5rem;
    border-radius: 8px;
    transition: all 0.2s ease;
}

#burger-btn:hover {
    background: rgba(0, 0, 0, 0.05);
    transform: scale(1.1);
}

.hero {
    position: relative;
    height: 80vh;
    background: url('/images/img1.jpg') center/cover no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: var(--white);
    overflow: hidden;
}

.hero__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 1rem;
}

.hero__title {
    font-family: 'Montserrat', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__tagline {
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.hero__btn {
    display: inline-block;
    background: var(--accent);
    color: var(--black);
    padding: 0.8rem 2rem;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
}

.hero__btn:hover {
    background: var(--white);
    color: var(--primary);
    transform: translateY(-2px);
}

@media (min-width: 600px) {
    .hero__title {
        font-size: 3.5rem;
    }
    .hero__tagline {
        font-size: 1.4rem;
    }
    .hero__btn {
        padding: 1rem 2.5rem;
        font-size: 1.2rem;
    }
}

@media (min-width: 900px) {
    .header {
        padding: 0.5rem 3rem;
    }
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100vw;
        width: 70vw;
        max-width: 320px;
        height: 100vh;
        background: var(--white);
        box-shadow: var(--shadow);
        display: flex;
        flex-direction: column;
        gap: 2rem;
        padding: 4rem 2rem 2rem 2rem;
        transition: right 0.3s ease-in-out;
        z-index: 200;
    }
    .nav-menu.open {
        right: 0;
    }
    .nav-menu a {
        border-bottom: 1px solid #eee;
        font-size: 1.2rem;
    }
    #burger-btn {
        display: block;
    }
}

.menu-overview {
    text-align: center;
    padding: 3.5rem 1rem 2rem 1rem;
    background: #fafafa;
}

.menu-overview h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.menu-overview p {
    color: #888;
    font-size: 1.1rem;
    margin-bottom: 1rem;
}

.category-scroll {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 1rem;
    margin: 0 auto;
    max-width: 1100px;
    position: relative;
}

.scroll-items {
    display: flex;
    overflow-x: auto;
    gap: 1rem;
    scroll-behavior: smooth;
    -ms-overflow-style: none;
    scrollbar-width: none;
    width: 100%;
    padding: 0.5rem;
    cursor: grab;
}

.scroll-items:active {
    cursor: grabbing;
}

.scroll-items::-webkit-scrollbar {
    display: none;
}

.scroll-prev,
.scroll-next {
    background: var(--white);
    color: var(--accent);
    border: 2px solid var(--accent);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    font-size: 20px;
    font-weight: bold;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
    padding: 0;
}

.scroll-prev i,
.scroll-next i {
    width: 24px;
    height: 24px;
    stroke-width: 3;
}

.scroll-prev::before,
.scroll-next::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--accent);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.scroll-prev:hover,
.scroll-next:hover {
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.scroll-prev:hover::before,
.scroll-next:hover::before {
    opacity: 1;
}

.scroll-prev:active,
.scroll-next:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.category-scroll__item {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--accent);
    border-radius: var(--radius);
    padding: 0.8rem 1.8rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
    box-shadow: var(--shadow);
    flex-shrink: 0;
    user-select: none;
}

.category-scroll__item:hover,
.category-scroll__item.active {
    background: var(--accent);
    color: var(--black);
    border-color: var(--black);
}

.categories {
    max-width: 900px;
    margin: 0 auto;
    padding: 1.5rem 1rem 2rem 1rem;
}

.category {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    margin-bottom: 1.2rem;
    overflow: hidden;
    display: none;
}

.category.active {
    display: block;
    animation: fadeIn 0.3s;
}

.category__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.1rem 1.2rem;
    font-size: 1.2rem;
    font-weight: 600;
    background: var(--accent);
    color: var(--black);
    border: none;
    outline: none;
    transition: background 0.2s;
}

.category {
    padding: 1.2rem;
    background: #fafafa;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.menu-item {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1.2rem;
}

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

.menu-item__top {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.menu-item__img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: var(--radius);
    background: #eee;
    flex-shrink: 0;
}

.menu-item__info {
    flex: 1;
}

.menu-item__name {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.2rem;
}

.menu-item__sizes,
.menu-item__addons {
    display: flex;
    flex-wrap: wrap;
    gap: 0.7rem;
    margin: 0.5rem 0;
}

.size-option,
.addon-option {
    background: #f2f2f2;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    padding: 0.3rem 0.9rem;
    font-size: 0.95rem;
    cursor: pointer;
    transition: background 0.2s, border 0.2s;
}

.size-option.selected,
.addon-option.selected {
    background: var(--accent);
    border: 1.5px solid var(--black);
    color: var(--black);
}

.menu-item__pieces-selector {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0.5rem 0;
    font-size: 0.95rem;
}

.pieces-counter {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.pieces-btn {
    background: var(--accent);
    border: none;
    color: var(--black);
    font-size: 1.1rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}

.pieces-btn:hover {
    background: var(--black);
    color: var(--white);
}

.pieces-val {
    font-size: 0.95rem;
    min-width: 24px;
    text-align: center;
}

.pieces-price {
    font-size: 0.95rem;
    color: var(--accent);
    font-weight: 600;
}

.menu-item__actions {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 0.5rem;
}

.quantity-selector {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.quantity-btn {
    background: var(--accent);
    border: none;
    color: var(--black);
    font-size: 1.1rem;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.2s;
}

.quantity-btn:hover {
    background: var(--black);
    color: var(--white);
}

.quantity-val {
    font-size: 0.95rem;
    min-width: 24px;
    text-align: center;
}

.menu-item__add-btn {
    background: linear-gradient(135deg, var(--black) 0%, #333 100%);
    color: var(--white);
    border: none;
    padding: 0.7rem 1.5rem;
    border-radius: var(--radius);
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    position: relative;
    overflow: hidden;
}

.menu-item__add-btn::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.3s;
}

.menu-item__add-btn:hover::before {
    left: 100%;
}

.menu-item__add-btn:hover {
    background: linear-gradient(135deg, var(--accent) 0%, #a0cfa0 100%);
    color: var(--black);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.menu-item__add-btn.added {
    background: linear-gradient(135deg, var(--accent) 0%, #a0cfa0 100%);
    color: var(--black);
    transform: scale(1.05);
}

.menu-item__add-btn.added::before {
    left: 100%;
}

.menu-item__edit {
    font-size: 0.95rem;
    color: var(--accent);
    margin-left: 0.7rem;
    cursor: pointer;
    text-decoration: underline;
}

.menu-item__addons-message {
    font-size: 0.95rem;
    color: #666;
    margin-top: 0.2rem;
}

.featured {
    background: #fafafa;
    padding: 2.5rem 1rem;
    margin-top: 1.5rem;
}

.featured h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.featured__tabs {
    display: flex;
    justify-content: center;
    gap: 1.2rem;
    margin-bottom: 1.5rem;
}

.tab {
    background: #f2f2f2;
    border: none;
    border-radius: var(--radius);
    padding: 0.6rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.tab.active,
.tab:hover {
    background: var(--accent);
    color: var(--black);
}

.featured__content {
    display: flex;
    gap: 1.2rem;
    overflow-x: auto;
    padding-bottom: 0.5rem;
}

.featured-item {
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
}

.featured-item img {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: var(--radius);
}

.featured-item__name {
    font-size: 1.1rem;
    font-weight: 600;
    text-align: center;
}

.featured-item__price {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.1rem;
}

.featured-item__btn {
    background: var(--black);
    color: var(--white);
    border: none;
    padding: 0.5rem 1.2rem;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.featured-item__btn:hover {
    background: var(--accent);
    color: var(--black);
}

.featured-item__btn.added {
    background: var(--accent);
    color: var(--black);
}

.signature-creations {
    padding: 2.5rem 1rem;
    max-width: 1100px;
    margin: 0 auto;
}

.signature-creations h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
}

.signature-creations__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.2rem;
}

.signature-card {
    background: var(--white);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.signature-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.signature__image {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.signature__content {
    padding: 1.2rem;
}

.signature__name {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.signature__description {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.5;
    margin-bottom: 1rem;
}

.signature__btn {
    display: inline-block;
    background: var(--accent);
    color: var(--black);
    padding: 0.6rem 1.2rem;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    text-align: center;
    transition: background 0.2s, transform 0.2s;
}

.signature__btn:hover {
    background: var(--black);
    color: var(--white);
    transform: translateY(-2px);
}

.cart-panel {
    position: fixed;
    top: 0;
    right: -100vw;
    width: 90vw;
    max-width: 400px;
    height: 100vh;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 300;
    display: flex;
    flex-direction: column;
    transition: right 0.3s;
}

.cart-panel.open {
    right: 0;
}

.cart-panel__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem;
    border-bottom: 1px solid #eee;
    flex-shrink: 0;
}

.cart-panel__items {
    flex: 1;
    overflow-y: auto;
    padding: 1rem;
    min-height: 0;
    max-height: calc(100vh - 300px);
}

.cart-panel__footer {
    padding: 1rem;
    border-top: 1px solid #eee;
    background: #fafafa;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-shrink: 0;
}

.cart-customer {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.cart-customer label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
}

.cart-customer input {
    padding: 0.5rem;
    border: 1px solid #ddd;
    border-radius: var(--radius);
    font-size: 0.95rem;
    font-family: var(--font-main);
    background: var(--white);
    transition: border 0.2s;
}

.cart-order-type {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.cart-order-type label {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--primary);
}

.order-type-options {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}

.order-type-options label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    cursor: pointer;
}

.error-message {
    color: #e74c3c;
    font-size: 0.9rem;
    display: none;
}

.error-message.show {
    display: block;
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 1rem;
    font-weight: 600;
    padding: 0.4rem 0;
}

.whatsapp-btn {
    background: #25d366;
    color: var(--white);
    border: none;
    padding: 0.7rem 1rem;
    border-radius: var(--radius);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
    transition: background 0.2s;
    margin-top: 0.3rem;
}

.whatsapp-btn:hover {
    background: #128c7e;
}

.cart-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.18);
    z-index: 250;
    display: none;
}

.cart-overlay.open {
    display: block;
}

.cart-item {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
    margin-bottom: 1.2rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
}

.cart-item:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.cart-item__top {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.cart-item__img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: var(--radius);
    background: #eee;
}

.cart-item__info {
    flex: 1;
}

.cart-item__name {
    font-size: 1rem;
    font-weight: 600;
}

.cart-item__details {
    font-size: 0.95rem;
    color: #666;
}

.cart-item__actions {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin-top: 0.3rem;
}

.cart-item__remove {
    background: none;
    border: none;
    color: #e74c3c;
    font-size: 1.1rem;
    cursor: pointer;
    padding: 0.2rem;
}

@media (min-width: 600px) {
    .menu-overview h2,
    .featured h2,
    .signature-creations h2 {
        font-size: 2.3rem;
    }
    .categories {
        padding: 2.5rem 2rem 3rem 2rem;
    }
    .featured {
        padding: 3.5rem 2rem;
    }
    .signature-creations {
        padding: 3.5rem 2rem;
    }
}

::-webkit-scrollbar {
    width: 8px;
    background: #f2f2f2;
}

::-webkit-scrollbar-thumb {
    background: #e0e0e0;
    border-radius: 8px;
}

/* Footer */
.footer {
    background-color: #000000;
    color: #ffffff;
    padding: 40px 20px 20px;
    font-family: Arial, sans-serif;
}

.footer-container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1200px;
    margin: auto;
}

.footer-brand h2 {
    font-size: 28px;
    margin: 0;
    letter-spacing: 2px;
}

.footer-brand p {
    margin-top: 5px;
    font-size: 16px;
    font-style: italic;
    color: #ffffff;
}

.footer-links,
.footer-social {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links h4,
.footer-social h4 {
    margin-bottom: 10px;
    font-size: 16px;
    color: #fff;
    text-transform: uppercase;
}

.footer-links a,
.footer-social a {
    color: #ffffff;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    font-size: 12px;
    color: #e3e3e3;
    border-top: 1px solid #eaeaea;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .footer-container {
        display: none;
    }

    .footer-bottom {
        margin-top: 0;
        border-top: none;
        padding-top: 0;
        font-size: 14px;
        color: #ffffff;
    }
}

/* Responsive Styles */
@media (max-width: 768px) {
  .header {
    padding: 10px 15px;
  }

  .menu-icon {
    font-size: 20px;
    padding: 0.5rem;
  }

  .logo img {
    height: 30px;
  }

  .nav-menu {
    width: 100%;
    max-width: 280px;
    padding: 3.5rem 1.5rem 1.5rem;
  }

  .nav-menu a {
    font-size: 1.1rem;
    padding: 0.7rem 0.9rem;
  }

  .menu-overview {
    padding: 2.5rem 1rem;
  }

  .menu-overview h2 {
    font-size: 1.8rem;
  }

  .category-scroll {
    padding: 0.8rem;
  }

  .category-scroll__item {
    padding: 0.6rem 1.4rem;
    font-size: 1rem;
  }

  .categories {
    padding: 1.2rem 1rem;
  }

  .category__header {
    padding: 1rem;
    font-size: 1.1rem;
  }

  .menu-item {
    padding: 1rem;
  }

  .menu-item__img {
    width: 70px;
    height: 70px;
  }

  .menu-item__name {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .header {
    padding: 8px 12px;
  }

  .menu-icon {
    font-size: 18px;
    padding: 0.4rem;
  }

  .logo img {
    height: 25px;
  }

  .nav-menu {
    padding: 3rem 1.2rem 1.2rem;
  }

  .nav-menu a {
    font-size: 1rem;
    padding: 0.6rem 0.8rem;
  }

  .menu-overview {
    padding: 2rem 0.8rem;
  }

  .menu-overview h2 {
    font-size: 1.6rem;
  }

  .category-scroll {
    padding: 0.6rem;
  }

  .category-scroll__item {
    padding: 0.5rem 1.2rem;
    font-size: 0.9rem;
  }

  .categories {
    padding: 1rem 0.8rem;
  }

  .category__header {
    padding: 0.8rem;
    font-size: 1rem;
  }

  .menu-item {
    padding: 0.8rem;
  }

  .menu-item__img {
    width: 60px;
    height: 60px;
  }

  .menu-item__name {
    font-size: 0.9rem;
  }

  .menu-item__sizes,
  .menu-item__addons {
    gap: 0.5rem;
  }

  .size-option,
  .addon-option {
    padding: 0.2rem 0.7rem;
    font-size: 0.85rem;
  }
}