:root {
    --yt-primary: #e74c3c;
    --yt-primary-dark: #d84335;
    --yt-primary-soft: rgba(231, 76, 60, 0.08);
    --yt-bg: #fafafa;
    --yt-surface: #ffffff;
    --yt-text: #111827;
    --yt-text-soft: #6b7280;
    --yt-text-faint: #9ca3af;
    --yt-border: #ececec;
    --yt-shadow: 0 18px 34px rgba(15, 23, 42, 0.08);
    --yt-shadow-strong: 0 26px 60px rgba(15, 23, 42, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

html.yt-lock,
body.yt-lock {
    overflow: hidden;
}

body.yt-body {
    margin: 0;
    background: var(--yt-bg);
    color: var(--yt-text);
    font-family:
        "Cairo",
        ui-sans-serif,
        system-ui,
        -apple-system,
        BlinkMacSystemFont,
        "Segoe UI",
        sans-serif;
}

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

button,
input,
textarea {
    font: inherit;
}

button {
    cursor: pointer;
}

button:disabled {
    cursor: not-allowed;
}

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

[hidden] {
    display: none !important;
}

svg {
    display: block;
}

.yt-page {
    min-height: 100vh;
    background: var(--yt-bg);
}

.yt-empty {
    padding: 18px;
    border: 1px dashed #d1d5db;
    border-radius: 22px;
    background: #fff;
    text-align: center;
    color: var(--yt-text-soft);
    font-size: 14px;
    line-height: 1.8;
}

.yt-empty--small {
    font-size: 13px;
}

.yt-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
}

.yt-icon svg {
    width: 100%;
    height: 100%;
}

.yt-icon--primary {
    color: var(--yt-primary);
}

.yt-overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(2px);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.28s ease,
        visibility 0.28s ease;
}

.yt-overlay.is-visible {
    opacity: 1;
    visibility: visible;
}

.yt-drawer {
    position: fixed;
    top: 0;
    inset-inline-end: 0;
    z-index: 201;
    height: 100%;
    width: min(85vw, 320px);
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -18px 0 40px rgba(0, 0, 0, 0.18);
    display: flex;
    flex-direction: column;
}

html[dir="ltr"] .yt-drawer {
    inset-inline-end: auto;
    inset-inline-start: 0;
    transform: translateX(-100%);
    box-shadow: 18px 0 40px rgba(0, 0, 0, 0.18);
}

.yt-drawer.is-open {
    transform: translateX(0);
}

.yt-drawer__hero {
    position: relative;
    padding: 40px 20px 28px;
    background: var(--yt-primary);
    color: #fff;
    text-align: center;
}

.yt-drawer__close {
    position: absolute;
    top: 14px;
    inset-inline-start: 14px;
    width: 38px;
    height: 38px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #fff;
}

.yt-drawer__close svg {
    width: 22px;
    height: 22px;
    margin: auto;
}

.yt-drawer__logo {
    width: 82px;
    height: 82px;
    margin: 0 auto 14px;
    border-radius: 50%;
    overflow: hidden;
    background: #fff;
    padding: 5px;
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.18);
}

.yt-drawer__logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.yt-drawer__title {
    margin: 0;
    font-size: 20px;
    font-weight: 900;
}

.yt-drawer__body {
    flex: 1;
    overflow: auto;
    padding: 8px 0 20px;
}

.yt-drawer__body::-webkit-scrollbar,
.yt-nav__scroller::-webkit-scrollbar {
    display: none;
}

.yt-drawer__body,
.yt-nav__scroller {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.yt-accordion {
    border-bottom: 1px solid #f0f0f0;
}

.yt-accordion__button {
    width: 100%;
    border: 0;
    background: transparent;
    padding: 18px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #4b5563;
    font-weight: 800;
    font-size: 14px;
}

.yt-accordion__label {
    display: inline-flex;
    align-items: center;
    gap: 12px;
}

.yt-accordion__arrow {
    width: 16px;
    height: 16px;
    color: #9ca3af;
    transition: transform 0.2s ease;
}

.yt-accordion__button.is-open .yt-accordion__arrow {
    transform: rotate(180deg);
}

.yt-accordion__content {
    padding: 0 18px 18px;
    display: grid;
    gap: 10px;
}

.yt-hours-inline,
.yt-about-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 12px;
    font-weight: 800;
    color: #6b7280;
}

.yt-hours-inline.is-today {
    color: var(--yt-primary);
}

.yt-about-list {
    display: grid;
    gap: 14px;
}

.yt-about-row {
    justify-content: flex-start;
    color: #4b5563;
}

.yt-about-row--start {
    align-items: flex-start;
}

.yt-drawer__socials {
    margin-top: 28px;
    display: grid;
    place-items: center;
    gap: 14px;
}

.yt-drawer__socials--inside {
    margin-top: 18px;
    padding-top: 18px;
    border-top: 1px solid #eef2f7;
}

.yt-drawer__socials-label {
    color: #9ca3af;
    font-size: 11px;
    font-weight: 800;
}

.yt-drawer__socials-row {
    display: flex;
    gap: 14px;
}

.yt-social {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    border: 1px solid #f0f0f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.08);
    background: #fff;
}

.yt-social svg {
    width: 20px;
    height: 20px;
}

.yt-social--facebook {
    color: #1877f2;
}

.yt-social--instagram {
    color: #e1306c;
}

.yt-social--map {
    color: var(--yt-primary);
}

.yt-hero {
    position: relative;
    width: 100vw;
    max-width: 100vw;
    height: 310px;
    margin-inline: calc(50% - 50vw);
    overflow: hidden;
    background: #e5e7eb;
    border-radius: 0 !important;
}

.yt-hero__image {
    width: 100%;
    max-width: none;
    height: 100%;
    object-fit: cover;
    border-radius: 0 !important;
}

.yt-hero__top {
    position: absolute;
    top: 16px;
    inset-inline-end: 16px;
    z-index: 3;
}

.yt-language {
    position: relative;
}

.yt-language summary::-webkit-details-marker {
    display: none;
}

.yt-language summary::marker {
    display: none;
}

.yt-language__button {
    list-style: none;
    border: 1px solid rgba(17, 24, 39, 0.06);
    background: rgba(255, 255, 255, 0.94);
    color: #374151;
    border-radius: 999px;
    padding: 8px 14px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 800;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08);
}

.yt-language__button svg {
    width: 14px;
    height: 14px;
}

.yt-language__button--static {
    cursor: default;
}

.yt-language__menu {
    position: absolute;
    top: calc(100% + 10px);
    inset-inline-end: 0;
    min-width: 180px;
    padding: 8px;
    border-radius: 18px;
    border: 1px solid var(--yt-border);
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--yt-shadow);
    display: grid;
    gap: 6px;
}

.yt-language__link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 12px;
    color: #4b5563;
    font-size: 13px;
    font-weight: 800;
}

.yt-language__link small {
    color: var(--yt-text-faint);
    font-size: 11px;
}

.yt-language__link:hover,
.yt-language__link.is-current {
    background: var(--yt-primary-soft);
    color: var(--yt-primary);
}

.yt-nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: #fff;
    box-shadow: 0 2px 14px rgba(15, 23, 42, 0.06);
    border-bottom: 1px solid #f3f4f6;
}

.yt-nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.yt-nav__icon {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    border: 0;
    background: transparent;
    color: #9ca3af;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-inline-end: 1px solid #f3f4f6;
}

.yt-nav__icon svg {
    width: 20px;
    height: 20px;
}

.yt-nav__icon.is-active {
    color: var(--yt-primary);
}

.yt-nav__scroller {
    display: flex;
    align-items: center;
    gap: 6px;
    overflow-x: auto;
    padding: 12px;
    scroll-behavior: smooth;
}

.yt-chip {
    border: 0;
    background: transparent;
    color: #6b7280;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 16px;
    white-space: nowrap;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 800;
    transition:
        background 0.2s ease,
        color 0.2s ease,
        box-shadow 0.2s ease,
        transform 0.2s ease;
}

.yt-chip svg {
    width: 14px;
    height: 14px;
}

.yt-chip:hover {
    background: #f8fafc;
}

.yt-chip.is-active {
    background: var(--yt-primary);
    color: #fff;
    box-shadow: 0 12px 24px rgba(231, 76, 60, 0.26);
}

.yt-chip--ghost {
    background: #f8fafc;
}

.yt-search {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 16px;
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition:
        max-height 0.3s ease,
        opacity 0.2s ease,
        padding 0.2s ease;
}

.yt-search.is-open {
    max-height: 96px;
    opacity: 1;
    padding: 14px 16px 16px;
}

.yt-search__field {
    display: flex;
    align-items: center;
    gap: 10px;
    min-height: 52px;
    padding: 0 14px;
    border-radius: 18px;
    border: 1px solid #ececec;
    background: #f8fafc;
    color: #94a3b8;
}

.yt-search__field svg {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
}

.yt-search__field input {
    flex: 1;
    min-width: 0;
    border: 0;
    outline: none;
    background: transparent;
    color: #111827;
    font-size: 14px;
}

.yt-search__field input::placeholder {
    color: #94a3b8;
}

.yt-search__clear {
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: transparent;
    color: #94a3b8;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.yt-search__clear svg {
    width: 18px;
    height: 18px;
}

.yt-main {
    max-width: 1280px;
    margin: 0 auto;
    padding: 32px 16px 120px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.yt-main__content {
    min-width: 0;
}

.yt-section {
    scroll-margin-top: 92px;
}

.yt-section + .yt-section {
    margin-top: 48px;
}

.yt-section--reviews {
    margin-top: 56px;
}

.yt-section__head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.yt-section__title {
    margin: 0;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--yt-primary);
    font-size: clamp(20px, 2vw, 28px);
    font-weight: 900;
}

.yt-section__title svg {
    width: 22px;
    height: 22px;
}

.yt-section__count {
    padding: 4px 10px;
    border-radius: 999px;
    background: #f3f4f6;
    color: #9ca3af;
    font-size: 11px;
    font-weight: 800;
}

.yt-section__line {
    flex: 1;
    height: 1px;
    background: #e5e7eb;
}

.yt-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.yt-card {
    background: #fff;
    border: 1px solid var(--yt-border);
    border-radius: 24px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-width: 0;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease,
        border-color 0.2s ease,
        opacity 0.2s ease;
}

.yt-card > * {
    pointer-events: none;
}

.yt-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--yt-shadow);
}

.yt-card.is-out {
    opacity: 0.8;
}

.yt-card__image-wrap {
    position: relative;
    overflow: hidden;
    background: #f3f4f6;
    aspect-ratio: 1 / 0.8;
}

.yt-card__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.yt-card:hover .yt-card__image {
    transform: scale(1.04);
}

.yt-card__body {
    padding: 12px 12px 14px;
    display: flex;
    flex-direction: column;
    text-align: center;
    flex: 1;
}

.yt-card__title {
    margin: 0 0 6px;
    color: #111827;
    font-size: 13px;
    font-weight: 900;
    line-height: 1.3;
}

.yt-card__desc {
    margin: 0 0 16px;
    color: #9ca3af;
    font-size: 10px;
    line-height: 1.65;
    min-height: 34px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.yt-card__footer {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.yt-card__view {
    border: 0;
    border-radius: 10px;
    background: var(--yt-primary);
    color: #fff;
    padding: 9px 16px;
    font-size: 10px;
    font-weight: 800;
    transition:
        background 0.2s ease,
        transform 0.2s ease;
}

.yt-card__view:hover {
    background: var(--yt-primary-dark);
}

.yt-card__view:active {
    transform: translateY(1px);
}

.yt-card__price {
    color: var(--yt-primary);
    font-size: 14px;
    font-weight: 900;
    white-space: nowrap;
}

.yt-badge {
    position: absolute;
    top: 12px;
    inset-inline-start: 12px;
    border-radius: 999px;
    background: rgba(231, 76, 60, 0.94);
    color: #fff;
    padding: 6px 10px;
    font-size: 10px;
    font-weight: 800;
    box-shadow: 0 8px 18px rgba(231, 76, 60, 0.3);
}

.yt-reviews {
    display: grid;
    gap: 14px;
}

.yt-review {
    padding: 16px;
    border: 1px solid var(--yt-border);
    border-radius: 22px;
    background: #fff;
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.04);
}

.yt-review__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 10px;
}

.yt-review__meta {
    display: flex;
    align-items: center;
    gap: 10px;
}

.yt-review__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(231, 76, 60, 0.1);
    color: var(--yt-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 900;
    flex: 0 0 auto;
}

.yt-review__name {
    margin: 0;
    font-size: 14px;
    font-weight: 900;
    color: #111827;
}

.yt-review__date {
    margin: 2px 0 0;
    color: var(--yt-text-faint);
    font-size: 11px;
}

.yt-review__comment {
    margin: 0;
    color: var(--yt-text-soft);
    font-size: 13px;
    line-height: 1.8;
}

.yt-stars {
    display: inline-flex;
    align-items: center;
    gap: 2px;
}

.yt-stars svg {
    width: 14px;
    height: 14px;
}

.yt-star--filled {
    color: #f59e0b;
}

.yt-star--empty {
    color: #d1d5db;
}

.yt-endnote {
    padding-top: 18px;
    text-align: center;
    color: var(--yt-text-faint);
    font-size: 14px;
}

.yt-sidebar {
    display: none;
}

.yt-hours-card {
    background: #fff;
    border: 1px solid var(--yt-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--yt-shadow);
}

.yt-hours-card__title {
    padding: 16px;
    background: var(--yt-primary);
    color: #fff;
    text-align: center;
    font-size: 14px;
    font-weight: 900;
}

.yt-hours-card__body {
    padding: 20px;
    display: grid;
    gap: 14px;
}

.yt-hours-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    color: #4b5563;
    font-size: 13px;
    font-weight: 800;
}

.yt-hours-row span:last-child {
    color: var(--yt-text-soft);
    font-weight: 700;
    text-align: end;
}

.yt-hours-row small {
    margin-inline-start: 6px;
    color: var(--yt-primary);
    font-size: 11px;
}

.yt-hours-row.is-today {
    color: var(--yt-primary);
}

.yt-fab,
.yt-menu-fab {
    position: fixed;
    z-index: 150;
    width: 56px;
    height: 56px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.18);
}

.yt-fab {
    inset-inline-start: 24px;
    color: #fff;
}

.yt-fab svg,
.yt-menu-fab svg {
    width: 24px;
    height: 24px;
}

.yt-fab--phone {
    bottom: 96px;
    background: #2563eb;
}

.yt-fab--whatsapp {
    bottom: 24px;
    background: #22c55e;
}

.yt-menu-fab {
    bottom: 24px;
    inset-inline-end: 24px;
    border-color: #f3f4f6;
    background: #fff;
    color: var(--yt-primary);
}

.yt-cart-pill {
    position: fixed;
    left: 50%;
    bottom: 24px;
    z-index: 149;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    border-radius: 999px;
    background: #111827;
    color: #fff;
    box-shadow: 0 18px 28px rgba(0, 0, 0, 0.24);
    max-width: calc(100vw - 150px);
}

.yt-cart-pill__count {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.14);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
}

.yt-cart-pill__text,
.yt-cart-pill__total {
    white-space: nowrap;
    font-size: 13px;
    font-weight: 900;
}

.yt-toast {
    position: fixed;
    top: 18px;
    left: 50%;
    z-index: 240;
    transform: translateX(-50%);
    border-radius: 999px;
    padding: 12px 16px;
    background: #111827;
    color: #fff;
    font-size: 13px;
    font-weight: 800;
    box-shadow: var(--yt-shadow-strong);
}

.yt-toast.is-success {
    background: #16a34a;
}

.yt-toast.is-error {
    background: #dc2626;
}

.yt-modal-backdrop {
    position: fixed;
    inset: 0;
    z-index: 220;
    background: rgba(0, 0, 0, 0.46);
    opacity: 0;
    visibility: hidden;
    transition:
        opacity 0.25s ease,
        visibility 0.25s ease;
}

.yt-modal-backdrop.is-visible {
    opacity: 1;
    visibility: visible;
}

.yt-modal {
    position: fixed;
    inset: 0;
    z-index: 221;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
    pointer-events: none;
}

.yt-modal.is-visible {
    pointer-events: auto;
}

.yt-modal__dialog {
    width: min(100%, 680px);
    max-height: 90vh;
    background: #fff;
    border-radius: 28px 28px 0 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transform: translateY(30px);
    opacity: 0;
    transition:
        transform 0.25s ease,
        opacity 0.25s ease;
    box-shadow: var(--yt-shadow-strong);
}

.yt-modal.is-visible .yt-modal__dialog {
    transform: translateY(0);
    opacity: 1;
}

.yt-modal__hero {
    position: relative;
    background: #f3f4f6;
    aspect-ratio: 16 / 9;
}

.yt-modal__image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.yt-modal__close {
    position: absolute;
    top: 16px;
    inset-inline-end: 16px;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #111827;
    box-shadow: var(--yt-shadow);
}

.yt-modal__close svg {
    width: 20px;
    height: 20px;
    margin: auto;
}

.yt-modal__content {
    padding: 20px;
    display: grid;
    gap: 18px;
    overflow: auto;
}

.yt-modal__headline {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.yt-modal__title {
    margin: 0 0 8px;
    color: #111827;
    font-size: 24px;
    font-weight: 900;
}

.yt-modal__desc {
    margin: 0;
    color: var(--yt-text-soft);
    font-size: 14px;
    line-height: 1.8;
}

.yt-modal__price {
    color: var(--yt-primary);
    font-size: 24px;
    font-weight: 900;
    white-space: nowrap;
}

.yt-modal__group {
    padding-top: 18px;
    border-top: 1px solid var(--yt-border);
    display: grid;
    gap: 12px;
}

.yt-modal__group-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: #111827;
    font-size: 16px;
    font-weight: 900;
}

.yt-required {
    padding: 4px 8px;
    border-radius: 999px;
    background: rgba(231, 76, 60, 0.12);
    color: var(--yt-primary);
    font-size: 11px;
    font-weight: 800;
}

.yt-choice-group {
    display: grid;
    gap: 10px;
}

.yt-choice-group__label {
    color: #374151;
    font-size: 13px;
    font-weight: 800;
}

.yt-choice-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.yt-choice {
    border: 1px solid #e5e7eb;
    background: #fff;
    color: #374151;
    padding: 10px 14px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition:
        border-color 0.18s ease,
        background 0.18s ease,
        color 0.18s ease,
        box-shadow 0.18s ease;
}

.yt-choice small {
    color: var(--yt-text-faint);
    font-size: 11px;
}

.yt-choice:hover {
    border-color: var(--yt-primary);
    color: var(--yt-primary);
}

.yt-choice.is-selected {
    border-color: var(--yt-primary);
    background: var(--yt-primary);
    color: #fff;
    box-shadow: 0 12px 24px rgba(231, 76, 60, 0.2);
}

.yt-choice.is-selected small {
    color: rgba(255, 255, 255, 0.78);
}

.yt-choice:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.yt-extra-stack {
    display: grid;
    gap: 14px;
}

.yt-extra-group {
    display: grid;
    gap: 10px;
}

.yt-extra-group--accordion {
    border: 1px solid var(--yt-border);
    border-radius: 20px;
    background: #fff;
    overflow: hidden;
}

.yt-extra-group__toggle {
    width: 100%;
    margin: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    -webkit-appearance: none;
    appearance: none;
    padding: 16px;
    min-height: 58px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: inherit;
    line-height: 1.2;
}

.yt-extra-group__label-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
}

.yt-choice-group__label--group {
    margin: 0;
}

.yt-extra-group__count {
    min-width: 28px;
    height: 28px;
    padding: 0 8px;
    border-radius: 999px;
    background: rgba(231, 76, 60, 0.1);
    color: var(--yt-primary);
    font-size: 11px;
    font-weight: 900;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.yt-extra-group__arrow {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 22px;
    font-weight: 900;
    line-height: 1;
    transition: transform 0.2s ease;
}

.yt-extra-group__toggle.is-open .yt-extra-group__arrow {
    transform: rotate(180deg);
}

.yt-extra-group__panel {
    padding: 0 14px 14px;
    border-top: 1px solid var(--yt-border);
}

.yt-extra-group--flat .yt-extra-list,
.yt-extra-group__panel .yt-extra-list {
    gap: 10px;
    padding-top: 12px;
}

.yt-extra-list {
    display: grid;
    gap: 10px;
}

.yt-extra {
    width: 100%;
    border: 1px solid var(--yt-border);
    background: #fff;
    border-radius: 18px;
    padding: 12px 14px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-align: inherit;
    transition:
        border-color 0.18s ease,
        background 0.18s ease;
}

.yt-extra:hover {
    border-color: rgba(231, 76, 60, 0.35);
}

.yt-extra.is-selected {
    border-color: rgba(231, 76, 60, 0.35);
    background: rgba(231, 76, 60, 0.06);
}

.yt-extra__meta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.yt-extra__check {
    width: 20px;
    height: 20px;
    border-radius: 6px;
    border: 1px solid #d1d5db;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    background: #fff;
    transition:
        background 0.18s ease,
        border-color 0.18s ease;
}

.yt-extra__check svg {
    width: 14px;
    height: 14px;
}

.yt-extra.is-selected .yt-extra__check {
    background: var(--yt-primary);
    border-color: var(--yt-primary);
}

.yt-extra__name {
    color: #111827;
    font-size: 13px;
    font-weight: 800;
}

.yt-extra__price {
    color: var(--yt-primary);
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
}

.yt-textarea {
    width: 100%;
    min-height: 96px;
    border: 1px solid var(--yt-border);
    border-radius: 18px;
    padding: 14px;
    background: #fff;
    color: #111827;
    resize: vertical;
    outline: none;
}

.yt-textarea::placeholder {
    color: #9ca3af;
}

.yt-textarea:focus {
    border-color: var(--yt-primary);
    box-shadow: 0 0 0 4px rgba(231, 76, 60, 0.08);
}

.yt-modal__footer {
    padding: 18px 20px 20px;
    border-top: 1px solid var(--yt-border);
    background: #fff;
    display: grid;
    gap: 12px;
}

.yt-modal__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.yt-qty {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--yt-border);
    background: #f8fafc;
    border-radius: 16px;
    overflow: hidden;
}

.yt-qty button {
    width: 46px;
    height: 48px;
    border: 0;
    background: transparent;
    color: #4b5563;
    font-size: 24px;
    line-height: 1;
}

.yt-qty span {
    min-width: 42px;
    text-align: center;
    color: #111827;
    font-size: 16px;
    font-weight: 900;
}

.yt-add-btn {
    flex: 1;
    min-height: 48px;
    border: 0;
    border-radius: 16px;
    background: var(--yt-primary);
    color: #fff;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    font-size: 15px;
    font-weight: 900;
    box-shadow: 0 18px 28px rgba(231, 76, 60, 0.24);
    transition:
        background 0.2s ease,
        box-shadow 0.2s ease;
}

.yt-add-btn:hover {
    background: var(--yt-primary-dark);
}

.yt-add-btn:disabled {
    opacity: 0.55;
    box-shadow: none;
}

.yt-go-cart {
    min-height: 48px;
    border-radius: 16px;
    border: 1px solid var(--yt-border);
    background: #fff;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 900;
}

.yt-modal__error {
    margin: 0;
    color: #dc2626;
    font-size: 13px;
    font-weight: 700;
}

@media (min-width: 768px) {
    .yt-hero {
        height: clamp(260px, 38vw, 320px);
    }

    .yt-grid {
        gap: 20px;
    }

    .yt-card__body {
        padding: 16px 16px 18px;
    }

    .yt-card__title {
        font-size: 16px;
    }

    .yt-card__desc {
        font-size: 12px;
        min-height: 40px;
    }

    .yt-card__view {
        font-size: 13px;
        padding: 11px 22px;
        border-radius: 12px;
    }

    .yt-card__price {
        font-size: 19px;
    }

    .yt-reviews {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .yt-modal {
        align-items: center;
        padding: 16px;
    }

    .yt-modal__dialog {
        border-radius: 28px;
    }
}

@media (min-width: 1024px) {
    .yt-hero {
        height: clamp(320px, 34vw, 400px);
    }

    .yt-main {
        flex-direction: row;
        align-items: flex-start;
    }

    .yt-main__content {
        flex: 1 1 auto;
    }

    .yt-sidebar {
        display: block;
        flex: 0 0 320px;
        position: sticky;
        top: 96px;
    }

    .yt-grid {
        gap: 24px;
    }

    .yt-card__image-wrap {
        aspect-ratio: 1 / 1;
    }

    .yt-card__body {
        padding: 18px 18px 20px;
    }

    .yt-card__title {
        font-size: 18px;
    }

    .yt-card__price {
        font-size: 22px;
    }
}

@media (max-width: 479px) {
    .yt-main {
        padding-inline: 12px;
    }

    .yt-search {
        padding-inline: 12px;
    }

    .yt-search.is-open {
        padding-inline: 12px;
    }

    .yt-card__body {
        padding-inline: 10px;
    }

    .yt-card__price {
        font-size: 13px;
    }

    .yt-card__view {
        padding-inline: 12px;
    }

    .yt-modal__headline {
        flex-direction: column;
    }

    .yt-modal__actions {
        flex-direction: column;
        align-items: stretch;
    }

    .yt-qty {
        justify-content: center;
    }
}
