:root {
    --hy-pink: #fa0050;
    --hy-pink-dark: #d40044;
    --hy-ink: #1a1a1a;
    --hy-muted: #5c5c5c;
    --hy-line: #ececec;
    --hy-surface: #f7f7f7;
    --hy-white: #ffffff;
    --hy-radius: 14px;
    --hy-font-display: "Syne", sans-serif;
    --hy-font-body: "Manrope", sans-serif;
}

.hy-marketplace {
    font-family: var(--hy-font-body);
    color: var(--hy-ink);
    background: var(--hy-white);
}

.hy-marketplace * {
    box-sizing: border-box;
}

/* ===== HERO ===== */
.hy-hero {
    position: relative;
    min-height: min(78vh, 640px);
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    color: var(--hy-white);
}

.hy-hero__media {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(10, 10, 10, 0.25) 0%, rgba(10, 10, 10, 0.72) 70%, rgba(10, 10, 10, 0.88) 100%),
        url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?w=1600&q=80") center/cover no-repeat;
    transform: scale(1.04);
    animation: hyHeroZoom 12s ease-out forwards;
}

.hy-hero__inner {
    position: relative;
    z-index: 1;
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 0 0 3.5rem;
    animation: hyRise 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hy-brand {
    display: inline-block;
    font-family: var(--hy-font-display);
    font-weight: 800;
    font-size: clamp(2.4rem, 6vw, 4.2rem);
    letter-spacing: -0.04em;
    line-height: 0.95;
    margin: 0 0 0.85rem;
    color: #fff !important;
}

.hy-brand span {
    color: var(--hy-pink) !important;
}

.hy-hero__title {
    font-family: var(--hy-font-display);
    font-weight: 700;
    font-size: clamp(1.35rem, 3vw, 2rem);
    letter-spacing: -0.02em;
    max-width: 18ch;
    margin: 0 0 0.6rem;
    color: #fff !important;
}

.hy-hero__text {
    max-width: 36ch;
    margin: 0 0 1.5rem;
    font-size: 1.05rem;
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.88) !important;
}

.hy-search {
    display: flex;
    width: min(100%, 560px);
    background: var(--hy-white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.22);
}

.hy-search__input {
    flex: 1;
    border: 0;
    outline: 0;
    padding: 1rem 1.15rem;
    font: inherit;
    font-size: 0.98rem;
    color: var(--hy-ink);
}

.hy-search__input::placeholder {
    color: #8a8a8a;
}

.hy-search__btn {
    border: 0;
    background: var(--hy-pink);
    color: #fff;
    font-family: var(--hy-font-display);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 0 1.35rem;
    cursor: pointer;
    transition: background 0.2s ease;
}

.hy-search__btn:hover {
    background: var(--hy-pink-dark);
}

.hy-hero__all {
    display: inline-block;
    margin-top: 1rem;
    color: #fff !important;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 2px solid var(--hy-pink);
    padding-bottom: 0.15rem;
}

.hy-hero__all:hover {
    color: var(--hy-pink) !important;
}

/* ===== SECTION ===== */
.hy-section {
    width: min(1120px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2.75rem 0 3.5rem;
}

.hy-section__head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 1.35rem;
}

.hy-section__title {
    font-family: var(--hy-font-display);
    font-size: clamp(1.4rem, 2.4vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin: 0;
}

.hy-section__sub {
    margin: 0.25rem 0 0;
    color: var(--hy-muted);
    font-size: 0.95rem;
}

.hy-sort__select {
    border: 1px solid var(--hy-line);
    border-radius: 10px;
    padding: 0.55rem 0.85rem;
    font: inherit;
    font-weight: 600;
    background: #fff;
    color: var(--hy-ink);
    cursor: pointer;
}

.hy-status-filters {
    display: flex;
    gap: 0.55rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.hy-status {
    text-decoration: none;
    color: var(--hy-ink);
    border: 1px solid var(--hy-line);
    background: #fff;
    border-radius: 999px;
    padding: 0.45rem 0.9rem;
    font-weight: 700;
    font-size: 0.88rem;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.hy-status:hover {
    border-color: var(--hy-pink);
    color: var(--hy-pink);
}

.hy-status.is-active {
    background: var(--hy-pink);
    border-color: var(--hy-pink);
    color: #fff;
}

/* ===== CUISINE FILTER ===== */
.hy-cuisines {
    display: flex;
    gap: 0.65rem;
    overflow-x: auto;
    padding-bottom: 0.35rem;
    margin-bottom: 1.75rem;
    scrollbar-width: thin;
}

.hy-cuisine {
    flex: 0 0 auto;
    border: 1px solid var(--hy-line);
    background: var(--hy-white);
    color: var(--hy-ink) !important;
    border-radius: 999px;
    padding: 0.55rem 1rem;
    font: inherit;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.hy-cuisine:hover {
    border-color: var(--hy-pink);
    color: var(--hy-pink) !important;
    transform: translateY(-1px);
}

.hy-cuisine.is-active {
    background: var(--hy-pink);
    border-color: var(--hy-pink);
    color: #fff !important;
}

/* ===== RESTAURANT GRID ===== */
.hy-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
}

.hy-card {
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    background: var(--hy-white);
    border: 1px solid var(--hy-line);
    border-radius: var(--hy-radius);
    overflow: hidden;
    transition: transform 0.28s cubic-bezier(0.22, 1, 0.36, 1), border-color 0.2s ease, box-shadow 0.28s ease;
    animation: hyRise 0.7s cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hy-card:nth-child(1) { animation-delay: 0.05s; }
.hy-card:nth-child(2) { animation-delay: 0.1s; }
.hy-card:nth-child(3) { animation-delay: 0.15s; }
.hy-card:nth-child(4) { animation-delay: 0.2s; }
.hy-card:nth-child(5) { animation-delay: 0.25s; }
.hy-card:nth-child(6) { animation-delay: 0.3s; }
.hy-card:nth-child(7) { animation-delay: 0.35s; }
.hy-card:nth-child(8) { animation-delay: 0.4s; }

.hy-card:hover {
    transform: translateY(-4px);
    border-color: #f3b4c6;
    box-shadow: 0 12px 28px rgba(250, 0, 80, 0.08);
}

.hy-card.is-closed {
    opacity: 0.72;
}

.hy-card__cover {
    position: relative;
    aspect-ratio: 16 / 10;
    background: var(--hy-surface);
    overflow: hidden;
}

.hy-card__cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.45s ease;
}

.hy-card:hover .hy-card__cover img {
    transform: scale(1.05);
}

.hy-card__closed {
    position: absolute;
    inset: auto 0.75rem 0.75rem auto;
    background: rgba(0, 0, 0, 0.72);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
}

.hy-card__open {
    position: absolute;
    inset: auto 0.75rem 0.75rem auto;
    background: rgba(10, 122, 60, 0.92);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 700;
    padding: 0.35rem 0.6rem;
    border-radius: 8px;
}

.hy-card__badge-pickup {
    position: absolute;
    inset: 0.75rem auto auto 0.75rem;
    background: #fa0050;
    color: #fff;
    font-size: 0.72rem;
    font-weight: 800;
    padding: 0.35rem 0.65rem;
    border-radius: 999px;
    letter-spacing: 0.02em;
}

.hy-card__badges {
    display: flex;
    flex-wrap: wrap;
    gap: 0.35rem;
    margin-top: 0.15rem;
}

.hy-badge {
    display: inline-flex;
    align-items: center;
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.18rem 0.5rem;
    border-radius: 999px;
    line-height: 1.2;
}

.hy-badge--free {
    background: #e8f8ef;
    color: #1f9d55;
}

.hy-badge--percent,
.hy-badge--deal {
    background: #fff0f5;
    color: var(--hy-pink);
}

.hy-card__hits {
    margin: 0;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--hy-pink);
}

.hy-loc-hint {
    margin: 0 0 1rem;
    padding: 0.7rem 0.9rem;
    border: 1px dashed #f3b4c6;
    background: #fff5f8;
    border-radius: 12px;
    font-size: 0.88rem;
    font-weight: 700;
    color: var(--hy-pink);
}

.hy-loc-hint--warn {
    border-style: solid;
    border-color: #ffd0de;
    background: #fff7f9;
    color: #3a2a32;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .45rem .7rem;
}
.hy-loc-hint--warn a,
.hy-loc-hint__btn {
    border: 0;
    background: #fa0050;
    color: #fff !important;
    font: inherit;
    font-weight: 800;
    font-size: .78rem;
    padding: .35rem .7rem;
    border-radius: 999px;
    text-decoration: none !important;
    cursor: pointer;
}
.hy-loc-hint--warn a {
    background: #fff;
    color: #fa0050 !important;
    border: 1px solid #ffd0de;
}

.hy-campaigns {
    margin-bottom: 1.75rem;
}

.hy-campaigns__row {
    display: flex;
    gap: 0.9rem;
    overflow-x: auto;
    padding-bottom: 0.4rem;
    scroll-snap-type: x mandatory;
}

.hy-campaigns__row .hy-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
}

.hy-card--compact .hy-card__cover {
    aspect-ratio: 16 / 9;
}

.hy-grid .hy-empty {
    grid-column: 1 / -1;
}

.hy-card__body {
    padding: 0.95rem 1rem 1.1rem;
    display: grid;
    gap: 0.35rem;
}

.hy-card__top {
    display: flex;
    align-items: start;
    justify-content: space-between;
    gap: 0.75rem;
}

.hy-card__name {
    font-family: var(--hy-font-display);
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin: 0;
    line-height: 1.2;
}

.hy-card__rating {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    font-weight: 700;
    font-size: 0.88rem;
    white-space: nowrap;
}

.hy-card__rating svg {
    width: 14px;
    height: 14px;
    fill: var(--hy-pink);
}

.hy-card__meta {
    color: var(--hy-muted);
    font-size: 0.88rem;
    margin: 0;
}

.hy-card__foot {
    display: flex;
    flex-wrap: wrap;
    gap: 0.55rem 0.85rem;
    margin-top: 0.35rem;
    font-size: 0.84rem;
    color: var(--hy-muted);
}

.hy-card__foot strong {
    color: var(--hy-ink);
    font-weight: 700;
}

.hy-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2.5rem 1rem;
    color: var(--hy-muted);
    border: 1px dashed var(--hy-line);
    border-radius: var(--hy-radius);
}

@keyframes hyHeroZoom {
    from { transform: scale(1.08); }
    to { transform: scale(1); }
}

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

@media (max-width: 992px) {
    .hy-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .hy-hero {
        min-height: 68vh;
    }

    .hy-hero__inner {
        padding-bottom: 2.25rem;
    }

    .hy-search {
        flex-direction: column;
    }

    .hy-search__btn {
        padding: 0.9rem 1rem;
    }

    .hy-grid {
        grid-template-columns: 1fr;
    }

    .hy-section__head {
        flex-direction: column;
        align-items: start;
    }
}

/* ===== YS-STYLE TOP ===== */
.hy-top {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: #fff;
    border-bottom: 1px solid var(--hy-line);
    font-family: var(--hy-font-body);
}

.hy-top__promo {
    background: var(--hy-pink);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    padding: 0.45rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.hy-top__promo a {
    color: #fff !important;
    text-decoration: underline;
    font-weight: 800;
}

.hy-top__inner {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 1rem;
    min-height: 56px;
}

.hy-top__main .hy-top__inner {
    display: grid;
    grid-template-columns: minmax(120px, 1fr) minmax(240px, 460px) minmax(120px, 1fr);
    min-height: 72px;
}

.hy-top__center {
    justify-self: center;
    width: 100%;
}

.hy-address {
    width: 100%;
    display: flex;
    align-items: center;
    gap: 0.55rem;
    border: 0;
    background: transparent;
    padding: 0.35rem 0.25rem;
    font: inherit;
    cursor: pointer;
    color: var(--hy-ink);
    text-align: left;
}
.hy-address__pin {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff0f5;
    color: var(--hy-pink);
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.hy-address__meta {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
}
.hy-address__meta small {
    font-size: .72rem;
    font-weight: 700;
    color: var(--hy-muted);
    line-height: 1.1;
}
.hy-address__chev {
    color: var(--hy-pink);
    flex-shrink: 0;
}

.hy-address:hover {
    border-color: transparent;
    background: transparent;
}
.hy-address:hover .hy-address__pin { background: #ffe4ec; }

.hy-address__text {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 800;
    font-size: .95rem;
}

.hy-address__text.is-placeholder {
    font-weight: 600;
    color: #8a7380;
}

.hy-top__actions {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    justify-self: end;
    margin-left: 0;
}

.hy-top__inner--sub {
    min-height: 56px;
    gap: 1.25rem;
}

.hy-logo {
    font-family: var(--hy-font-display);
    font-weight: 800;
    font-size: 1.45rem;
    letter-spacing: -0.04em;
    color: var(--hy-ink) !important;
    text-decoration: none;
    white-space: nowrap;
}

.hy-logo span { color: var(--hy-pink); }

.hy-link {
    color: var(--hy-ink) !important;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.92rem;
}

.hy-user {
    position: relative;
}

.hy-user__btn {
    list-style: none;
    display: flex;
    align-items: center;
    gap: .55rem;
    border: 1px solid #ececec;
    background: #fff;
    border-radius: 999px;
    padding: .28rem .7rem .28rem .28rem;
    cursor: pointer;
    font: inherit;
}

.hy-user__btn::-webkit-details-marker { display: none; }
.hy-user summary { list-style: none; }

.hy-user__btn:hover,
.hy-user[open] .hy-user__btn {
    border-color: #ffd0de;
    background: #fff7f9;
}

.hy-user__avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: #fa0050;
    color: #fff;
    font-weight: 800;
    font-size: .78rem;
    display: grid;
    place-items: center;
    letter-spacing: .02em;
}

.hy-user__meta {
    display: flex;
    flex-direction: column;
    line-height: 1.15;
    text-align: left;
    min-width: 0;
}

.hy-user__meta small {
    font-size: .68rem;
    font-weight: 700;
    color: #8a6a75;
}

.hy-user__meta strong {
    font-size: .88rem;
    font-weight: 800;
    color: #1a1a1a;
    max-width: 9ch;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hy-user__chev {
    color: #fa0050;
    font-size: .7rem;
}

.hy-user__menu {
    position: absolute;
    right: 0;
    top: calc(100% + 8px);
    min-width: 220px;
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 14px;
    box-shadow: 0 14px 36px rgba(26,10,18,.14);
    padding: .45rem;
    z-index: 1100;
    display: grid;
}

.hy-user__hello {
    display: grid;
    gap: .1rem;
    padding: .55rem .7rem .65rem;
    border-bottom: 1px solid #f3f3f3;
    margin-bottom: .25rem;
}

.hy-user__hello strong {
    font-size: .92rem;
    color: #1a1a1a;
}

.hy-user__hello span {
    font-size: .75rem;
    color: #8a6a75;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.hy-user__menu a,
.hy-user__menu button {
    display: block;
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    color: #1a1a1a !important;
    text-decoration: none;
    font: inherit;
    font-weight: 700;
    font-size: .9rem;
    padding: .55rem .7rem;
    border-radius: 10px;
    cursor: pointer;
}

.hy-user__menu a:hover,
.hy-user__menu button:hover {
    background: #fff0f5;
    color: #fa0050 !important;
}

.hy-user__menu form { margin: 0; }
.hy-user__menu button {
    color: #fa0050 !important;
    font-weight: 800;
}

.hy-cta {
    background: var(--hy-pink);
    color: #fff !important;
    text-decoration: none;
    font-weight: 800;
    font-size: 0.9rem;
    padding: 0.55rem 0.95rem;
    border-radius: 999px;
}

.hy-cart {
    position: relative;
    color: var(--hy-ink) !important;
    display: inline-flex;
    padding: 0.35rem;
}

.hy-cart__badge {
    position: absolute;
    top: -4px;
    right: -6px;
    background: var(--hy-pink);
    color: #fff;
    font-size: 0.68rem;
    font-weight: 800;
    min-width: 16px;
    height: 16px;
    border-radius: 999px;
    display: grid;
    place-items: center;
}

.hy-cart__badge[hidden] {
    display: none !important;
}

.hy-top__sub {
    border-top: 1px solid var(--hy-line);
}

.hy-tabs {
    display: flex;
    gap: 0.35rem;
}

.hy-tab {
    text-decoration: none;
    color: var(--hy-muted) !important;
    font-weight: 800;
    padding: 0.7rem 0.55rem;
    border-bottom: 3px solid transparent;
}

.hy-tab.is-active {
    color: var(--hy-pink) !important;
    border-bottom-color: var(--hy-pink);
}

.hy-top-search {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--hy-surface);
    border-radius: 999px;
    padding: 0.55rem 0.95rem;
    color: var(--hy-muted);
}

.hy-top-search input {
    border: 0;
    outline: 0;
    background: transparent;
    width: 100%;
    font: inherit;
    color: var(--hy-ink);
}

/* ===== BANNER ===== */
.hy-banner {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 280px;
    border-bottom: 0;
    background: #1a0a12;
}

.hy-banner__media {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        linear-gradient(100deg, rgba(18, 6, 12, 0.92) 0%, rgba(18, 6, 12, 0.72) 42%, rgba(18, 6, 12, 0.28) 100%),
        url("https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
    transform: scale(1.03);
}

.hy-banner__inner {
    position: relative;
    z-index: 1;
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 2.6rem 0 2.7rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

.hy-banner__copy {
    min-width: 0;
    flex: 1;
    max-width: 34rem;
}

.hy-banner__eyebrow {
    margin: 0;
    color: #ff8aab !important;
    font-weight: 800;
    font-size: 0.82rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hy-banner__title {
    margin: 0.45rem 0 0.5rem;
    font-family: var(--hy-font-display);
    font-size: clamp(2.15rem, 5vw, 3.4rem);
    letter-spacing: -0.05em;
    color: #ffffff !important;
    line-height: 0.98;
}

.hy-banner__text {
    margin: 0;
    color: rgba(255, 255, 255, 0.86) !important;
    font-size: 1.05rem;
    line-height: 1.5;
    max-width: 32rem;
}

.hy-banner__pills {
    display: none;
}

.hy-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: .55rem;
    margin-top: 1.25rem;
}

.hy-banner__btn {
    background: #fa0050;
    color: #fff !important;
    text-decoration: none !important;
    font-weight: 800;
    padding: 0.85rem 1.25rem;
    border-radius: 12px;
    white-space: nowrap;
    flex-shrink: 0;
    border: 0;
    cursor: pointer;
    font: inherit;
    box-shadow: 0 10px 24px rgba(250, 0, 80, 0.35);
    transition: background 0.15s ease, transform 0.15s ease;
}

.hy-banner__btn:hover {
    background: #d40045;
    color: #fff !important;
    transform: translateY(-1px);
}

.hy-banner__btn--ghost {
    background: rgba(255, 255, 255, 0.12);
    color: #fff !important;
    border: 1px solid rgba(255, 255, 255, 0.28);
    box-shadow: none;
    backdrop-filter: blur(8px);
}

.hy-banner__btn--ghost:hover {
    background: #fff;
    border-color: #fff;
    color: #fa0050 !important;
}

.hy-banner__plates {
    position: relative;
    width: min(340px, 38%);
    height: 210px;
    flex-shrink: 0;
}

.hy-banner__plate {
    position: absolute;
    margin: 0;
    border-radius: 22px;
    background-size: cover;
    background-position: center;
    box-shadow: 0 18px 40px rgba(0, 0, 0, 0.35);
    border: 3px solid rgba(255, 255, 255, 0.55);
}

.hy-banner__plate--a {
    width: 168px;
    height: 168px;
    left: 8px;
    top: 18px;
    background-image: url("https://images.unsplash.com/photo-1565299624946-b28f40a0ae38?auto=format&fit=crop&w=400&q=80");
    transform: rotate(-8deg);
    z-index: 2;
}

.hy-banner__plate--b {
    width: 132px;
    height: 132px;
    right: 6px;
    top: 0;
    background-image: url("https://images.unsplash.com/photo-1550547660-d9450f859349?auto=format&fit=crop&w=360&q=80");
    transform: rotate(7deg);
    z-index: 1;
}

.hy-banner__plate--c {
    width: 118px;
    height: 118px;
    right: 28px;
    bottom: 0;
    background-image: url("https://images.unsplash.com/photo-1546069901-ba9599a7e63c?auto=format&fit=crop&w=320&q=80");
    transform: rotate(4deg);
    z-index: 3;
}

.hy-banner--pickup .hy-banner__media {
    background:
        linear-gradient(100deg, rgba(12, 28, 20, 0.92) 0%, rgba(12, 28, 20, 0.7) 42%, rgba(12, 28, 20, 0.28) 100%),
        url("https://images.unsplash.com/photo-1414235077428-338989a2e8c0?auto=format&fit=crop&w=1600&q=80") center/cover no-repeat;
}

.hy-banner--pickup .hy-banner__eyebrow {
    color: #9be7c4 !important;
}

.hy-banner--pickup .hy-banner__btn {
    background: #fff;
    color: #1a3d2b !important;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
}

.hy-banner--pickup .hy-banner__btn:hover {
    background: #e8f8ef;
    color: #1a3d2b !important;
}

/* ===== LISTING + SIDEBAR ===== */
.hy-listing {
    width: min(1180px, calc(100% - 2rem));
    margin: 0 auto;
    padding: 1.75rem 0 3.5rem;
    display: grid;
    grid-template-columns: 240px minmax(0, 1fr);
    gap: 1.5rem;
    align-items: start;
}

.hy-filters {
    position: sticky;
    top: 140px;
    border: 1px solid var(--hy-line);
    border-radius: 14px;
    padding: 1.1rem 1rem 1rem;
    background: #fff;
    box-shadow: 0 1px 0 rgba(0,0,0,.02);
}

.hy-filters__title {
    margin: 0 0 1rem;
    font-family: var(--hy-font-display);
    font-size: 1.2rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.hy-filters__block {
    margin-bottom: 1.15rem;
    padding-bottom: 1.05rem;
    border-bottom: 1px solid var(--hy-line);
}

.hy-filters__block:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.hy-filters__block h3 {
    margin: 0 0 0.7rem;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #8a8a8a;
}

.hy-sort-list {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.hy-sort-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 0.7rem;
    margin: 0;
    padding: 0.55rem 0.65rem;
    border-radius: 10px;
    cursor: pointer;
    transition: background 0.15s ease;
    width: 100%;
}

.hy-sort-item:hover {
    background: #fafafa;
}

.hy-sort-item input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 0;
    height: 0;
    margin: 0;
}

.hy-sort-item__ui {
    flex: 0 0 18px;
    width: 18px;
    height: 18px;
    border: 2px solid #cfcfcf;
    border-radius: 50%;
    display: inline-grid;
    place-items: center;
    background: #fff;
}

.hy-sort-item__ui::after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: transparent;
}

.hy-sort-item input:checked + .hy-sort-item__ui {
    border-color: var(--hy-pink);
}

.hy-sort-item input:checked + .hy-sort-item__ui::after {
    background: var(--hy-pink);
}

.hy-sort-item input:checked ~ .hy-sort-item__label {
    color: var(--hy-ink);
    font-weight: 800;
}

.hy-sort-item__label {
    flex: 1;
    font-size: 0.94rem;
    font-weight: 600;
    color: #333;
    line-height: 1.25;
}

.hy-chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.hy-chip {
    display: inline-flex;
    align-items: center;
    margin: 0;
    text-decoration: none;
    color: var(--hy-ink) !important;
    border: 1px solid var(--hy-line);
    border-radius: 999px;
    padding: 0.4rem 0.75rem;
    font-size: 0.82rem;
    font-weight: 700;
    background: #fff;
    line-height: 1.2;
}

.hy-chip.is-active {
    background: var(--hy-pink);
    border-color: var(--hy-pink);
    color: #fff !important;
}

.hy-cuisines--stack {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
    overflow: visible;
    margin-bottom: 0;
    padding-bottom: 0;
}

.hy-cuisines--stack .hy-cuisine {
    width: 100%;
    text-align: left;
    border-radius: 10px;
    padding: 0.55rem 0.7rem;
}

/* legacy class kept harmless */
.hy-radio { display: none; }

/* ===== ADDRESS OVERLAY (fullscreen, Yemeksepeti-style) ===== */
html.hy-loc-open,
html.hy-loc-open body {
    overflow: hidden !important;
}
#hyAddressModal.hy-loc-overlay,
#hyAddressModal.hy-loc-overlay[hidden] {
    display: none !important;
}
#hyAddressModal.hy-loc-overlay {
    position: fixed !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    inset: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    height: 100dvh !important;
    max-width: none !important;
    max-height: none !important;
    margin: 0 !important;
    padding: 0 !important;
    border: 0 !important;
    border-radius: 0 !important;
    transform: none !important;
    z-index: 99999 !important;
    background: #fff !important;
    pointer-events: none;
}
#hyAddressModal.hy-loc-overlay.is-open {
    display: flex !important;
    pointer-events: auto;
}
#hyAddressModal .hy-loc-sheet {
    display: flex !important;
    flex-direction: row;
    width: 100% !important;
    height: 100% !important;
    min-height: 0 !important;
    background: #fff;
}
#hyAddressModal .hy-loc-side {
    flex: 0 0 400px;
    width: 400px;
    max-width: 100%;
    padding: 1.1rem 1.15rem 1.4rem;
    border-right: 1px solid var(--hy-line);
    overflow: auto;
    background: #fff;
    z-index: 2;
    height: 100%;
    min-height: 0;
    box-sizing: border-box;
}
.hy-loc-side__head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: .75rem;
    margin-bottom: .85rem;
}
.hy-loc-side__head h2 {
    margin: .15rem 0 0;
    font-family: var(--hy-font-display);
    font-size: 1.35rem;
}
.hy-loc-back {
    display: inline-flex;
    align-items: center;
    gap: .2rem;
    border: 0;
    background: transparent;
    padding: 0;
    margin: 0 0 .15rem;
    color: #fa0050;
    font: inherit;
    font-weight: 800;
    font-size: .88rem;
    cursor: pointer;
}
.hy-loc-back:hover { text-decoration: underline; }
#hyAddressModal .hy-loc-mapcol {
    position: relative !important;
    flex: 1 1 auto;
    width: auto;
    min-width: 0 !important;
    min-height: 0 !important;
    height: 100% !important;
    background: #e8eee9;
    overflow: hidden;
}
#hyAddressModal #hyLocMap,
#hyAddressModal .hy-loc-map {
    position: absolute !important;
    top: 0 !important;
    right: 0 !important;
    bottom: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    min-height: 100% !important;
    z-index: 1;
    background: #e8eee9;
}
#hyAddressModal .leaflet-container img,
#hyAddressModal img.leaflet-tile {
    max-width: none !important;
    max-height: none !important;
    object-fit: unset !important;
}
#hyAddressModal img.leaflet-tile {
    width: 256px !important;
    height: 256px !important;
    object-fit: fill !important;
}
.hy-map-pin {
    position: absolute;
    left: 50%;
    top: 46%;
    transform: translate(-50%, -100%);
    z-index: 5;
    pointer-events: none;
    filter: drop-shadow(0 8px 12px rgba(26,10,18,.28));
}
.hy-map-pin span {
    display: block;
    width: 28px;
    height: 28px;
    background: var(--hy-pink);
    border: 3px solid #fff;
    border-radius: 50% 50% 50% 0;
    transform: rotate(-45deg);
}
.hy-map-card {
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 16px;
    z-index: 6;
    background: #fff;
    border-radius: 16px;
    padding: 1rem 1.1rem;
    box-shadow: 0 16px 40px rgba(26,10,18,.18);
    display: grid;
    gap: .35rem;
}
.hy-map-card small {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #8a6a75;
}
.hy-map-card strong {
    font-size: .95rem;
    line-height: 1.35;
    color: var(--hy-ink);
}
.hy-map-card .hy-modal__save {
    width: 100%;
    margin-top: .35rem;
    padding: .75rem 1rem;
    border-radius: 12px;
}
.hy-map-card .hy-modal__save:disabled,
.hy-map-card .hy-modal__save.is-disabled {
    background: #cfcfcf;
    cursor: not-allowed;
    box-shadow: none;
}
.hy-map-card.is-outside strong {
    color: #a00030;
}
.hy-loc-extra {
    display: grid;
    grid-template-columns: 1.3fr .9fr .55fr;
    gap: .4rem;
    margin-top: .35rem;
}
.hy-loc-extra__hint {
    grid-column: 1 / -1;
    margin: 0;
    font-size: .72rem;
    font-weight: 700;
    color: #8a6a75;
}
.hy-loc-extra input {
    width: 100%;
    border: 1px solid #eadfe4;
    border-radius: 10px;
    padding: .5rem .65rem;
    font: inherit;
    font-size: .85rem;
    background: #fff;
}
.hy-loc-extra__note { grid-column: 1 / -1; }
@media (max-width: 860px) {
    .hy-loc-extra { grid-template-columns: 1fr 1fr; }
    .hy-map-card { padding: .75rem .8rem; }
}
.hy-map-zone {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 6;
    background: rgba(255,255,255,.94);
    color: #fa0050;
    font-weight: 800;
    font-size: .82rem;
    padding: .4rem .75rem;
    border-radius: 999px;
    box-shadow: 0 6px 16px rgba(26,10,18,.12);
    pointer-events: none;
}
.hy-map-layers {
    position: absolute;
    top: 12px;
    right: 12px;
    z-index: 6;
    display: flex;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(26,10,18,.14);
}
.hy-map-layers button {
    border: 0;
    background: #fff;
    color: #1a1a1a;
    font: inherit;
    font-weight: 800;
    font-size: .8rem;
    padding: .45rem .7rem;
    cursor: pointer;
}
.hy-map-layers button + button {
    border-left: 1px solid #ececec;
}
.hy-map-layers button.is-active {
    background: #fa0050;
    color: #fff;
}

.hy-modal__input {
    width: 100%;
    border: 1px solid var(--hy-line);
    border-radius: 10px;
    padding: 0.75rem 0.9rem;
    font: inherit;
    margin-bottom: 0.85rem;
}
.hy-modal__save {
    border: 0;
    border-radius: 10px;
    padding: 0.55rem 0.9rem;
    font-weight: 800;
    cursor: pointer;
    background: var(--hy-pink);
    color: #fff;
}
.hy-loc-more {
    margin: 0 0 .85rem;
}
.hy-loc-more summary {
    cursor: pointer;
    font-weight: 800;
    font-size: .85rem;
    color: #6b5a62;
    margin-bottom: .45rem;
}
.hy-modal__x {
    border: 0;
    background: #f4eef1;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    font-size: 1.25rem;
    line-height: 1;
    cursor: pointer;
    color: #333;
    flex-shrink: 0;
}
.hy-loc-gps {
    width: 100%;
    display: flex;
    align-items: center;
    gap: .55rem;
    border: 1px solid #ffd0de;
    background: #fff5f8;
    color: var(--hy-pink);
    border-radius: 12px;
    padding: .75rem .9rem;
    font-weight: 800;
    margin-bottom: .65rem;
    cursor: pointer;
}
.hy-loc-gps:hover { background: #ffe4ec; }
.hy-loc-gps:disabled { opacity: .6; cursor: wait; }
.hy-loc-status {
    margin: 0 0 .7rem;
    font-size: .85rem;
    color: #0a7a3c;
    font-weight: 700;
}
.hy-loc-status.is-error { color: #a00030; }
.hy-loc-denied {
    margin: -.35rem 0 .75rem;
    padding: .75rem .85rem;
    border-radius: 12px;
    background: #fff0f5;
    border: 1px solid #ffd0de;
    color: #8a1238;
}
.hy-loc-denied strong {
    display: block;
    font-size: .9rem;
    font-weight: 800;
    margin: 0 0 .3rem;
    color: #a00030;
}
.hy-loc-denied p {
    margin: 0;
    font-size: .82rem;
    line-height: 1.45;
    font-weight: 600;
}
.hy-loc-search-wrap { position: relative; }
.hy-loc-suggest {
    position: absolute;
    left: 0; right: 0; top: calc(100% - .7rem);
    background: #fff;
    border: 1px solid var(--hy-line);
    border-radius: 12px;
    box-shadow: 0 12px 28px rgba(26,10,18,.12);
    max-height: 220px;
    overflow: auto;
    z-index: 3;
}
.hy-loc-suggest button {
    display: block;
    width: 100%;
    text-align: left;
    border: 0;
    background: transparent;
    padding: .65rem .85rem;
    font: inherit;
    cursor: pointer;
}
.hy-loc-suggest button:hover { background: #fff5f8; color: var(--hy-pink); }
.hy-loc-label {
    display: block;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .04em;
    text-transform: uppercase;
    color: #8a6a75;
    margin: .35rem 0 .45rem;
}
.hy-loc-saved { margin-bottom: .85rem; }
.hy-loc-saved__item {
    display: grid;
    gap: .1rem;
    width: 100%;
    text-align: left;
    border: 1px solid var(--hy-line);
    background: #fff;
    border-radius: 12px;
    padding: .7rem .85rem;
    margin-bottom: .45rem;
    cursor: pointer;
    font: inherit;
}
.hy-loc-saved__item strong { font-size: .82rem; color: var(--hy-pink); }
.hy-loc-saved__item span { font-size: .88rem; }
.hy-loc-saved__item em { font-style: normal; font-size: .78rem; color: var(--hy-muted); }
.hy-loc-saved__item.is-active,
.hy-loc-saved__item:hover {
    border-color: var(--hy-pink);
    background: #fff5f8;
}
.hy-loc-cascade .hy-loc-select { margin-bottom: .55rem; }

@media (max-width: 992px) {
    .hy-listing {
        grid-template-columns: 1fr;
    }
    .hy-filters {
        position: static;
    }
}

@media (max-width: 860px) {
    #hyAddressModal .hy-loc-sheet {
        flex-direction: column;
    }
    #hyAddressModal .hy-loc-side {
        flex: 0 0 auto;
        width: 100%;
        max-height: 42%;
        height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--hy-line);
    }
    #hyAddressModal .hy-loc-mapcol {
        flex: 1 1 auto;
        min-height: 58%;
        height: auto;
    }
}

@media (max-width: 760px) {
    .hy-top__promo { display: none; }
    .hy-top__main .hy-top__inner {
        display: flex;
        flex-wrap: wrap;
        min-height: auto;
        padding: 0.65rem 0;
    }
    .hy-logo { order: 1; }
    .hy-top__actions { order: 2; margin-left: auto; }
    .hy-top__center { order: 3; flex: 1 1 100%; }
    .hy-address { width: 100%; }
    .hy-top__inner--sub { flex-wrap: wrap; }
    .hy-top-search { flex: 1 1 100%; }
    .hy-banner__inner { flex-direction: column; align-items: flex-start; padding: 1.85rem 0 1.9rem; }
    .hy-banner__plates { display: none; }
    .hy-banner__title { font-size: clamp(1.85rem, 9vw, 2.5rem); }
    .hy-cta { display: none; }
    .hy-user__meta small { display: none; }
    .hy-user__chev { display: none; }
}

/* ===== Restaurant map page (Haritada göster) ===== */
.hy-map-toggle {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    border: 1px solid #eadfe4;
    background: #fff;
    color: #1a0a12;
    border-radius: 999px;
    padding: .55rem .95rem;
    font: inherit;
    font-weight: 800;
    font-size: .86rem;
    cursor: pointer;
    white-space: nowrap;
}

.hy-map-toggle:hover {
    border-color: #fa0050;
    color: #fa0050;
}

.hy-map-fab {
    position: fixed;
    left: 50%;
    bottom: 22px;
    transform: translateX(-50%);
    z-index: 80;
    display: none;
    align-items: center;
    gap: .45rem;
    border: 0;
    border-radius: 999px;
    padding: .8rem 1.2rem;
    background: #1a0a12;
    color: #fff;
    font: inherit;
    font-weight: 800;
    font-size: .92rem;
    cursor: pointer;
    box-shadow: 0 12px 28px rgba(26, 10, 18, .28);
}

.hy-map-fab svg { color: #fa0050; }

.hy-rmap[hidden] { display: none !important; }

.hy-rmap.is-open {
    display: block;
    margin-top: .25rem;
    background: #fff;
    border: 1px solid #f0e4e8;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(26, 10, 18, .06);
}

.hy-rmap__bar {
    display: flex;
    align-items: center;
    gap: .85rem;
    padding: .8rem 1rem;
    border-bottom: 1px solid #f0e4e8;
    background: linear-gradient(180deg, #fff8fa 0%, #fff 100%);
}

.hy-rmap__back {
    border: 1px solid #eadfe4;
    background: #fff;
    border-radius: 999px;
    padding: .45rem .85rem;
    font: inherit;
    font-weight: 800;
    font-size: .84rem;
    cursor: pointer;
}

.hy-rmap__back:hover { border-color: #fa0050; color: #fa0050; }

.hy-rmap__title strong {
    display: block;
    font-size: .98rem;
    font-weight: 800;
    color: #1a0a12;
}

.hy-rmap__title span {
    display: block;
    font-size: .78rem;
    color: #6b5a62;
    font-weight: 600;
}

.hy-rmap__layout {
    display: grid;
    grid-template-columns: 260px minmax(0, 1fr);
    align-items: stretch;
}

.hy-rmap__list {
    max-height: 420px;
    overflow: auto;
    border-right: 1px solid #f0e4e8;
    background: #fffafa;
}

.hy-rmap__item {
    width: 100%;
    display: flex;
    align-items: center;
    gap: .65rem;
    padding: .7rem .8rem;
    border: 0;
    border-bottom: 1px solid #f6eef1;
    background: transparent;
    text-align: left;
    cursor: pointer;
    font: inherit;
}

.hy-rmap__item:hover { background: #fff; }

.hy-rmap__item.is-active {
    background: #fff3f7;
    box-shadow: inset 3px 0 0 #fa0050;
}

.hy-rmap__item.is-closed { opacity: .7; }

.hy-rmap__item-img {
    width: 42px;
    height: 42px;
    border-radius: 10px;
    background: #fa0050 center/cover no-repeat;
    flex-shrink: 0;
}

.hy-rmap__item-meta strong {
    display: block;
    font-size: .86rem;
    font-weight: 800;
    color: #1a0a12;
    line-height: 1.25;
}

.hy-rmap__item-meta span {
    display: block;
    margin-top: .12rem;
    font-size: .75rem;
    color: #6b5a62;
    font-weight: 600;
}

.hy-rmap__stage {
    position: relative;
    height: 420px;
    background: #e8eee9;
}

.hy-rmap__canvas,
.hy-rmap .leaflet-container {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: #e8eee9;
}

.hy-rmap .hy-map-layers {
    top: 10px;
    right: 10px;
}

.hy-rmap-marker {
    background: transparent !important;
    border: 0 !important;
}

.hy-rmap-marker__dot {
    display: block;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fa0050 center/cover no-repeat;
    border: 3px solid #fff;
    box-shadow: 0 8px 16px rgba(26, 10, 18, .28);
}

.hy-rmap-marker.is-closed .hy-rmap-marker__dot {
    filter: grayscale(.6);
    opacity: .85;
}

.hy-rmap-marker.is-selected .hy-rmap-marker__dot {
    width: 46px;
    height: 46px;
    border-width: 4px;
    box-shadow: 0 0 0 3px rgba(250, 0, 80, .25), 0 10px 22px rgba(250, 0, 80, .35);
}

.hy-rmap__card {
    position: absolute;
    left: 12px;
    right: 12px;
    bottom: 12px;
    z-index: 6;
    display: grid;
    grid-template-columns: 84px minmax(0, 1fr);
    gap: .7rem;
    background: #fff;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 12px 28px rgba(26, 10, 18, .18);
    max-width: 340px;
}

.hy-rmap__card[hidden] { display: none !important; }

.hy-rmap__card-media img {
    width: 84px;
    height: 100%;
    min-height: 88px;
    object-fit: cover;
    display: block;
}

.hy-rmap__card-body {
    padding: .65rem .75rem .7rem 0;
    display: flex;
    flex-direction: column;
    gap: .12rem;
}

.hy-rmap__card-body strong {
    font-size: .92rem;
    color: #1a0a12;
}

.hy-rmap__card-body span,
.hy-rmap__card-body em {
    font-style: normal;
    font-size: .75rem;
    color: #6b5a62;
    font-weight: 600;
}

.hy-rmap__card-body .hy-btn {
    margin-top: .35rem;
    align-self: flex-start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .35rem .75rem;
    font-size: .78rem;
    font-weight: 800;
    border-radius: 10px;
    background: #fa0050;
    color: #fff !important;
    text-decoration: none !important;
}

@media (max-width: 860px) {
    .hy-map-toggle { display: none; }
    .hy-map-fab { display: inline-flex; }
    .hy-rmap.is-open .hy-map-fab { display: none; }
    .hy-rmap__layout { grid-template-columns: 1fr; }
    .hy-rmap__stage { height: 260px; }
    .hy-rmap__list { max-height: 280px; border-right: 0; border-top: 1px solid #f0e4e8; }
    .hy-rmap__card { max-width: none; }
}
