/* Trigger minify workflow rerun. */
.deals {
    width: 100%;
}

.deals .inner {
    display: flex;
    flex-display: row;
    flex-wrap: wrap;
    justify-content: space-between;
}

.deal {
    position: relative;
    display: flex;
    flex-basis: calc(50% - 0.5rem);
    flex-direction: column;
    justify-content: flex-end;
    height: 350px;
    margin-bottom: 1rem;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0px 0px 30px 5px hsla(0, 0%, 0%, 0.15);

    @media (max-width: 991px) {
        height: 300px;
    }

    @media (max-width: 767px) {
        margin-left: -5px;
        margin-right: -5px;
        flex-basis: calc(100% + 10px);
    }

    @media (max-width: 599px) {
        height: 250px;
    }

    @media (max-width: 419px) {
        height: 190px;

    }
}

.deal__image,
.deal__image img {
    position: absolute;
    inset: 0;
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.deal:hover {
    box-shadow: 0px 0px 30px 10px hsla(0, 0%, 0%, 0.18);
}
.deals.odd .deal:first-child {
    flex-basis: calc(100% + 10px);
}


.deal .content {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: auto;
    padding: 3rem 1.5rem 1rem 1.5rem;
    display: flex;
    flex-direction: row;
    align-items: flex-end;
    justify-content: space-between;
    background: linear-gradient(3deg, rgba(30, 10, 50, 1) 0%, rgba(30, 10, 50, 0.1) 65%, rgba(30, 10, 50, 0) 75%,rgba(30, 10, 50, 0) 100%);

    @media (max-width: 599px) {
        padding: 3rem 1rem 0.75rem 1rem;
    }

    /*@media (max-width: 359px) {*/
    /*    padding: 3rem 0.75rem 0.5rem 0.75rem;*/

    /*}*/
}

.deal .logo-container {
    position: relative;
    width: 112px;
    height: 112px;
    border-radius: 5px;
    overflow: hidden;
    margin-bottom: 0.5rem;
    box-shadow: 0px 0px 10px 5px hsla(0, 0%, 0%, 0.15);

    @media (max-width: 1199px) {
        width: 88px;
        height: 88px;
    }

    @media (max-width: 599px) {
        width: 72px;
        height: 72px;
    }

    @media (max-width: 419px) {
        width: 56px;
        height: 56px;
    }

    @media (max-width: 320px) {
        width: 56px;
        height: 56px;
    }
}

@media (min-width: 768px) {
    .deal-card--double .logo-container {
        width: 88px;
        height: 88px;

        @media (max-width: 1199px) {
            width: 72px;
            height: 72px;
        }

        @media (max-width: 991px) {
            width: 56px;
            height: 56px;
        }
    }
}

.deal .logo-container picture {
    display: block;
    width: 100%;
    height: 100%;
}

.deal .logo-container img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.deal .title {
    font-family: "Roboto Condensed";
    font-size: 56px;
    line-height: 1.2;
    color: white;
    font-weight: 600;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);

    @media (max-width: 1199px) {
        font-size: 44px;
    }

    @media (max-width: 599px) {
        font-size: 36px;
    }

    @media (max-width: 419px) {
        font-size: 30px;
    }

    @media (max-width: 359px) {
        font-size: 24px;
    }
}

@media (min-width: 768px) {
    .deal-card--double .title {
        font-size: 44px;

        @media (max-width: 1199px) {
            font-size: 36px;
        }

        @media (max-width: 991px) {
            font-size: 30px;
        }
    }
}

.deal .title > .subtitle {
    font-size: 20px;
    margin-left: 0.375em;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);

    @media (max-width: 1199px) {
        font-size: 18px;
    }

    @media (max-width: 599px) {
        font-size: 14px;
    }

    @media (max-width: 419px) {
        font-size: 12px;
    }
}

@media (min-width: 768px) {
    .deal-card--double .title > .subtitle {
        font-size: 14px;

        @media (max-width: 991px) {
            font-size: 12px;
        }
    }
}

.deal .value-text {
    font-family: "Roboto Condensed";
    font-size: 36px;
    color: #E4531B;
    font-weight: 600;
    margin-top: -0.5rem;
    margin-bottom: -0.375rem;
    text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);

    @media (max-width: 1199px) {
        font-size: 30px;
    }

    @media (max-width: 599px) {
        font-size: 24px;
        margin-bottom: -0.15rem;
    }

    @media (max-width: 419px) {
        font-size: 18px;
        margin-top: -0.375rem;
        margin-bottom: 0px;
    }

    @media (max-width: 359px) {
        margin-top: -0.25rem;
    }
}

@media (min-width: 768px) {
    .deal-card--double .value-text {
        font-size: 24px;
        margin-bottom: -0.15rem;

        @media (max-width: 991px) {
            font-size: 18px;
            margin-top: -0.375rem;
            margin-bottom: 0px;
        }
    }
}

.search-headline {
    text-align: center;
    margin-top: 20px;
}

.search-button-wrapper {
    margin-left: auto;
    margin-right: auto;
    width: fit-content;
}

.search-button-wrapper > button {
    margin-right: 10px;
}

.show-tag-list {
    padding-bottom: 5px;
    padding-top: 7px;
}

.show-tag-list > span {
    margin-right: -3px;
    vertical-align: middle;
    margin-bottom: 5px;
    margin-left: 6px;
}

.reset-filter > span {
    padding-top: 2px;
}

.btn-glyph {
    padding-bottom: 2px;
    padding-left: 10px;
    padding-right: 10px;
    height: 34px;
}

button.hide-tag-list {
    position: relative;
    float: right;
    margin-top: -20px;
    -webkit-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 1px 4px 0px rgba(0, 0, 0, 0.16);
}

.restaurant-container {
    padding: 5px 10px;
    margin: 0px -15px;
    display: flex;
    flex-wrap: wrap;

}

.restaurant-container .restaurant-link {
    margin: 5px;
    /* max-width: 280px; */
    color: var(--text-color);
    flex: 1 0 26%;
    min-width: 145px;
    max-width: calc(33.33% - 10px);
}

.restaurant-container .restaurant-link:hover {
    color: #3C3C3C;
}

.restaurant-container .restaurant-link:hover .url-container > p {
    color: #ec6922;
}

.restaurant-container .restaurant-link:hover > .restaurant {
    transition: all 0.2s ease;
    box-shadow: 0px 0px 30px 10px hsla(0, 0%, 0%, 0.18);
    /*    transform: scale(1.01); */
}

.restaurant-container .restaurant-link:hover > .restaurant * {
    transition: all 0.2s ease-in-out;
}

.restaurant-container a:hover {
    text-decoration: none;
}

.restaurant-link:focus {
    text-decoration: none !important;
}

.restaurant-link:focus .title,
.restaurant-link:focus .description {
    color: #3C3C3C;
    text-decoration: none !important;

}

.restaurant {
    border-radius: 10px;
    box-shadow: 0px 0px 30px 5px hsla(0, 0%, 0%, 0.15);
}

.restaurant {
    /*margin-bottom: 30px;*/
    border-radius: 10px;
}

.restaurant-image {
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
    overflow: hidden;
    position: relative;
}

/* Discount overlays container */
.discount-overlays {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.4rem;
    z-index: 2;
    background: #1E0A328F;
    border-top-left-radius: 8px;
    border-top-right-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(2px);
}

/* Individual discount overlay */
.discount-overlay {
    display: flex;
    align-items: center;
    padding: 0.25rem 0.35rem;
    gap: 0.5rem;
}


.discount-icon {
    color: var(--primary-color);
    font-size: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.discount-text {
    color: white;
    font-family: "Roboto Condensed", "Arial Narrow", sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    /*line-height: 1.2;*/
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
    flex: 1;
}

@media (max-width: 991px) {
    .discount-overlay {
        padding: 0.2rem 0.3rem;
    }

    .discount-icon {
        font-size: 1.25rem;
    }

    .discount-text {
        font-size: 1rem;
    }
}

@media (max-width: 767px) {
    .discount-overlays {
        padding: 0.3rem;
    }

    .discount-overlay {
        padding: 0.18rem 0.28rem;
        gap: 0.4rem;
    }

    .discount-icon {
        font-size: 1.1rem;
    }

    .discount-text {
        font-size: 0.8rem;
    }
}

@media (max-width: 599px) {
    .discount-overlays {
        padding: 0.3rem;
    }

    .discount-overlay {
        gap: 0.3rem;
    }

    .discount-icon {
        font-size: 1rem;
    }

    .discount-text {
        font-size: 0.7rem;
    }
}

@media (max-width: 320px) {
    .discount-overlays {
        padding: 0.15rem;
    }

    .discount-overlay {
        padding: 0.15rem 0.25rem;
        gap: 0.2rem;
    }

    .discount-icon {
        font-size: 0.8rem;
    }

    .discount-text {
        font-size: 0.6rem;
    }
}

.restaurant-image:before {
    padding-top: 56.2%;
    float: left;
    position: absolute;
    top: -20%;
    left: -20%;
    width: 40%;
    height: 40%;
    background: white;
    transform: rotate(-45deg);
    padding-top: 29%;
    color: var(--primary-color);
    font-size: 16px;
    font-weight: bold;
    text-align: center;
}

.restaurant-image.has-deal:before {
    content: 'DEAL';
}

.restaurant-image.is-new:before {
    content: 'NEU';
}

.restaurant-image > img, .restaurant-image > picture > img {
    width: 100%;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px;
}

.restaurant-footer {
    background-color: white;
    border-bottom-left-radius: 10px;
    border-bottom-right-radius: 10px;
}

.shop-info-image > picture > img {
    width: 100%;
}

span.genre {
    font-size: 0.675rem;
    font-weight: 300;
    line-height: 1.2;
    color: #BCBCBC;
    border: 1px #BCBCBC solid;
    border-radius: 3px;
    padding: 2px 3px 1px 3px;
    margin: 4px 2px 0px 0px;
    white-space: nowrap;
    display: inline-block;

}

span.genre:first-child {
    margin-left: 0px;
}

span.genre:last-child {
    margin-right: 0px;
}

.url-container {
    margin-top: 1rem;
    color: #BCBCBC;
}

.url-container:hover {
    color: #ec6922;
}

.url-container > p {
    margin-bottom: 0px;
}


@media (max-width: 991px) {

    .restaurant-image.discount:before {
        padding-top: 28%;
        font-size: 20px;
    }
}

/*767 - 992*/

@media only screen and (max-width: 767px) {

    .logo-container {
        margin-top: 30px;
    }

    .headline-container {
        margin-top: 40px;
        margin-bottom: 10px;
    }

    .headline-container > h1 {
        margin-bottom: 10px;
    }

    .tag-list-container {
        padding-top: 0px;
        padding-bottom: 0px;
    }

    .tag-wrapper {
        width: calc(100vw - 30px);
        margin: 15px;
    }

    .restaurant-container {
        margin-top: 10px;
        padding: 5px;
    }

    .restaurant-image.discount:before {
        padding-top: 28%;
        font-size: 16px;
    }

    .restaurant-image.has-deal:before,
    .restaurant-image.is-new:before {
        font-size: 14px;
    }
}

@media (max-width: 599px) {

    .restaurant-image.discount:before {
        padding-top: 27%;
        font-size: 14px;
    }

    .restaurant-image.has-deal:before,
    .restaurant-image.is-new:before {
        font-size: 12px;
    }
}

@media only screen and (max-width: 474px) {

    .restaurant-container .restaurant-link {
        max-width: calc(50% - 10px);
    }

    .restaurant-image.discount:before {
        padding-top: 27%;
        font-size: 16px;
    }

    .restaurant-image.has-deal:before,
    .restaurant-image.is-new:before {
        font-size: 14px;
    }
}

@media only screen and (max-width: 320px) {

    .restaurant-container .signs {
        font-size: 13px;
    }

    .restaurant-image.discount:before {
        padding-top: 27%;
        font-size: 14px;
    }

    .restaurant-image.has-deal:before,
    .restaurant-image.is-new:before {
        font-size: 12px;
    }
}

/* Figma shop list redesign */
:root {
    --shoplist-brand: #e76f24;
    --shoplist-ink: #1e0a32;
    --shoplist-muted: #596172;
    --shoplist-page: #f7f7f7;
    --shoplist-card: #ffffff;
    --shoplist-tag: #ececf0;
    --shoplist-border: #ddddE4;
    --shoplist-deal: #f9dfcf;
    --shoplist-open-bg: #d5f6e2;
    --shoplist-open: #176241;
    --shoplist-closed-bg: #f7d9d8;
    --shoplist-closed: #7d251d;
}

.shoplist-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, .92fr);
    grid-template-areas: "copy art" "address address" "notice notice";
    gap: 36px 56px;
    max-width: 1440px;
    min-height: 640px;
    margin: 0 auto;
    padding: 72px;
    background: var(--shoplist-page);
    color: var(--shoplist-ink);
}

.shoplist-hero--address-known { grid-template-areas: "copy art" "notice notice"; min-height: 0; }
.shoplist-hero--genre { grid-template-columns: minmax(0, 600px); grid-template-areas: "copy" "address" "notice"; min-height: 0; }
.shoplist-hero--genre.shoplist-hero--address-known { grid-template-areas: "copy" "notice"; }
.shoplist-hero--address-known.shoplist-hero--address-feedback { grid-template-areas: "copy art" "address address" "notice notice"; }
.shoplist-hero--genre.shoplist-hero--address-feedback { grid-template-areas: "copy" "address" "notice"; }

.shoplist-hero__copy { grid-area: copy; align-self: center; max-width: 600px; }
.shoplist-hero__eyebrow { margin: 0 0 18px; color: var(--shoplist-ink); font-size: 12px; font-weight: 700; letter-spacing: .01em; text-transform: uppercase; }
.shoplist-hero__eyebrow span { display: inline-block; width: 6px; height: 6px; margin: 0 7px 1px 0; border-radius: 50%; background: var(--shoplist-brand); }
.shoplist-hero h1 { max-width: 560px; margin: 0 0 22px; color: var(--shoplist-ink); font-family: "Roboto Condensed", sans-serif; font-size: 48px; font-weight: 700; letter-spacing: -.01em; line-height: 1.08; text-align: left; }
.shoplist-hero__intro { max-width: 560px; margin: 0 0 20px; color: var(--shoplist-muted); font-size: 14px; line-height: 1.55; }
.shoplist-hero__prompt { margin: 0 0 14px; color: var(--shoplist-ink); font-size: 14px; font-weight: 600; }
.shoplist-hero .pros { justify-content: flex-start; gap: 8px; margin: 0; }
.shoplist-hero .pros > div { margin: 0; padding: 5px 8px; border: 0; border-radius: 999px; background: #ededf0; color: var(--shoplist-muted); font-size: 11px; box-shadow: none; }
.shoplist-hero__art { grid-area: art; position: relative; min-height: 410px; }
.shoplist-hero__plate { position: absolute; top: 50%; left: 50%; width: min(32vw, 420px); height: min(32vw, 420px); transform: translate(-50%, -50%); border: 52px solid #f8e9dc; border-radius: 50%; background: #fff; box-shadow: inset 0 0 0 5px #f5f5f5, 0 8px 24px rgba(30, 10, 50, .05); }
.shoplist-hero__food { position: absolute; z-index: 1; top: 50%; left: 50%; width: min(38vw, 492px); transform: translate(-50%, -50%); filter: drop-shadow(0 7px 8px rgba(30, 10, 50, .16)); }
.shoplist-address-search-wrap { grid-area: address; padding-top: 18px; }
.shoplist-address-search { grid-area: address; display: flex; align-items: center; justify-content: space-between; min-height: 52px; overflow: hidden; border: 1px solid #e3e2e5; border-radius: 10px; background: #fff; box-shadow: 0 7px 18px rgba(30, 10, 50, .08); color: var(--shoplist-muted); text-decoration: none; }
.shoplist-address-search:hover, .shoplist-address-search:focus { color: var(--shoplist-muted); text-decoration: none; box-shadow: 0 7px 22px rgba(30, 10, 50, .14); }
.shoplist-address-search--consent { cursor: text; }
.shoplist-address-search--consent .shoplist-address-search__input { cursor: text; }
.shoplist-address-search__placeholder { padding: 0 16px; font-size: 13px; }
.shoplist-address-search__placeholder i { margin-right: 8px; color: var(--shoplist-brand); }
.shoplist-address-search__icon { flex: 0 0 auto; padding-left: 16px; color: var(--shoplist-brand); }
.shoplist-address-search__input { flex: 1 1 auto; min-width: 0; height: 50px; padding: 0 12px; border: 0; background: transparent; color: var(--shoplist-ink); font-size: 16px; line-height: 50px; transform: translateY(2px); outline: none; }
.shoplist-address-search__input::placeholder { color: var(--shoplist-muted); opacity: 1; }
.shoplist-address-search__cta { align-self: stretch; display: flex; align-items: center; padding: 0 25px; background: var(--shoplist-brand); color: #fff; font-size: 13px; font-weight: 700; }
.shoplist-address-search button.shoplist-address-search__cta { border: 0; cursor: pointer; }
.shoplist-address-consent__message { margin: 8px 0 0; font-size: 14px; line-height: 1.45; }
.shoplist-address-consent__message[hidden] { display: none; }
.shoplist-address-consent__action { display: inline-block; margin-left: 0; font-weight: 700; text-decoration: none; }
.shoplist-address-consent__action:hover, .shoplist-address-consent__action:focus { color: #fff; text-decoration: none; }
.shoplist-address-consent__action.is-consent-attention { animation: shoplist-consent-attention .7s ease-out; }
@keyframes shoplist-consent-attention { 0%, 100% { text-shadow: 0 0 0 rgba(231, 111, 36, 0); } 45% { text-shadow: 0 0 10px rgba(231, 111, 36, .95), 0 0 18px rgba(231, 111, 36, .5); } }
.shoplist-address-feedback { position: relative; grid-area: address; margin: 0; border-left-width: 4px; font-size: 14px; }
.shoplist-address-feedback[hidden] { display: none; }
.shoplist-address-feedback .close { position: absolute; top: 50%; right: 10px; transform: translateY(-50%); }
.shoplist-active-address { display: flex; align-items: center; gap: 9px; min-height: 40px; margin-top: 8px; padding: 7px 11px; border-radius: 8px; background: #eeeeF1; color: var(--shoplist-muted); font-size: 12px; line-height: 1.25; text-decoration: none; }
.shoplist-active-address:hover, .shoplist-active-address:focus { background: #e6e6eb; color: var(--shoplist-ink); text-decoration: none; }
.shoplist-active-address > span { display: flex; flex: 1 1 auto; min-width: 0; align-items: baseline; gap: 6px; overflow: hidden; white-space: nowrap; text-overflow: ellipsis; }
.shoplist-active-address small { flex: 0 0 auto; color: var(--shoplist-muted); font-size: 11px; }
.shoplist-active-address > i:last-child { flex: 0 0 auto; font-size: 10px; }
.shoplist-spinner { display: inline-block; width: 14px; height: 14px; margin-right: 7px; border: 2px solid transparent; border-top-color: currentColor; border-right-color: currentColor; border-radius: 50%; animation: shoplist-spin .7s linear infinite; }
@keyframes shoplist-spin { to { transform: rotate(360deg); } }
.shoplist-address-search-wrap.is-google-search-inactive .shoplist-address-search { opacity: .58; pointer-events: none; }
.shoplist-address-search-wrap.is-address-search-busy { cursor: progress; }
.shoplist-address-house-number { display: flex; align-items: center; gap: 12px; margin-top: 8px; padding: 10px 12px; border-radius: 10px; background: #fff5ee; color: var(--shoplist-ink); }
.shoplist-address-house-number[hidden] { display: none; }
.shoplist-address-house-number__label { margin: 0; font-size: 12px; }
.shoplist-address-house-number__label { align-self: center; flex: 1 1 auto; font-weight: 600; }
.shoplist-address-house-number__form { display: flex; flex: 0 1 auto; gap: 6px; }
.shoplist-address-house-number input { box-sizing: border-box; width: 100px; height: 40px; min-height: 40px; padding: 6px 9px; border: 1px solid #e3e2e5; border-radius: 7px; background: #fff; color: var(--shoplist-ink); font-size: 12px; }
.shoplist-address-house-number button { box-sizing: border-box; height: 40px; min-height: 40px; padding: 6px 10px; border: 0; border-radius: 7px; background: var(--shoplist-brand); color: #fff; cursor: pointer; font-size: 12px; font-weight: 700; }
.shoplist-address-house-number button:disabled, .shoplist-address-search__cta:disabled { cursor: wait; opacity: .7; }
.shoplist-address-house-number__cancel { background: #e8e8ec !important; color: var(--shoplist-muted) !important; }
.shoplist-address-house-number__message { position: relative; margin: 0 0 8px; border-left-width: 4px; font-size: 12px; }
.shoplist-address-house-number__message .shoplist-spinner { margin: 0 0 0 7px; vertical-align: -2px; }
.shoplist-address-house-number__message .close { position: absolute; top: 50%; right: 10px; transform: translateY(-50%); }
.shoplist-address-house-number__message[hidden] { display: none; }
.shoplist-hero__notice { grid-area: notice; margin: 0; }

.shoplist-results { width: 100vw; margin-left: calc(50% - 50vw); }
.shoplist-results > .headline-container { box-sizing: border-box; width: 100%; max-width: 1494px; margin-right: auto; margin-left: auto; padding-right: 16px; padding-left: 16px; }
.shoplist-section-heading { display: flex; align-items: center; gap: 34px; margin: 38px 0 28px; color: var(--shoplist-ink); font-family: "Roboto Condensed", sans-serif; font-size: 25px; font-weight: 700; letter-spacing: -.01em; line-height: 1.1; }
.shoplist-section-heading:before, .shoplist-section-heading:after { flex: 1 1 auto; height: 12px; border-top: 1px solid #82788d; content: ""; }
.shoplist-section-heading:before { border-top-left-radius: 12px; }
.shoplist-section-heading:after { border-top-right-radius: 12px; }
.shoplist-controls { box-sizing: border-box; display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 18px 32px; width: 100%; max-width: 1494px; margin: 30px auto 0; padding: 0 16px 10px; }
.shoplist-controls__group { min-width: 0; }
.shoplist-controls__group--sort { text-align: left; }
.shoplist-controls__label { display: block; margin-bottom: 8px; color: var(--shoplist-ink); font-family: "Roboto Condensed", sans-serif; font-size: 16px; font-weight: 700; }
.shoplist-controls__buttons { display: flex; flex-wrap: wrap; gap: 7px; }
.shoplist-controls__buttons--sort { display: inline-flex; justify-content: flex-start; padding: 4px; border-radius: 10px; background: #f1f1f4; }
.shoplist-control { min-height: 34px; padding: 7px 10px; border: 0; border-radius: 8px; background: #f1f1f4; color: var(--shoplist-muted); cursor: pointer; font-size: 12px; font-weight: 700; line-height: 1; }
.shoplist-control:hover, .shoplist-control:focus { background: #e7e7eb; color: var(--shoplist-ink); outline: none; }
.shoplist-control.is-active { background: var(--shoplist-brand); color: #fff; }
.shoplist-control:disabled { cursor: not-allowed; opacity: .48; }
.shoplist-controls__empty { grid-column: 1 / -1; box-sizing: border-box; width: min(100%, 640px); margin: 14px auto 0; padding: 12px 16px; border-left-width: 4px; color: #6f5b28; font-size: 14px; font-weight: 600; line-height: 1.4; text-align: center; }
.restaurant-container { box-sizing: border-box; display: grid; width: 100%; grid-template-columns: minmax(0, 1fr); justify-content: center; gap: 24px; margin: 0 auto; padding: 0 16px 40px; }
.restaurant-container .restaurant-link.shop-card { position: relative; width: 100%; min-width: 0; max-width: 450px; margin: 0; justify-self: center; color: var(--shoplist-ink); }
.shop-card__primary-link { position: absolute; z-index: 1; inset: 0; border-radius: 16px; }
.shop-card .restaurant { overflow: hidden; border-radius: 16px; background: var(--shoplist-card); box-shadow: 0 9px 26px rgba(30, 10, 50, .10); }
.restaurant-container .restaurant-link.shop-card { align-self: start; }
.shop-card:hover .restaurant, .shop-card:focus .restaurant { box-shadow: 0 13px 32px rgba(30, 10, 50, .17); }
.shop-card__image { aspect-ratio: 2.67 / 1; min-height: 0; border-radius: 0; background: #e8e8e8; }
.shop-card__image:before { display: none; }
.shop-card__image picture, .shop-card__image picture img { display: block; width: 100%; height: 100%; }
.shop-card__image picture img { border-radius: 0; object-fit: cover; }
.shop-card__badges { position: absolute; top: 12px; left: 12px; z-index: 2; display: flex; gap: 6px; pointer-events: none; }
.shop-card__badge { padding: 5px 9px; border-radius: 999px; color: #fff; font-size: 10px; font-weight: 700; line-height: 1; text-transform: uppercase; }
.shop-card__badge--new { background: #35a56f; }
.shop-card__badge--deal { background: var(--shoplist-brand); }
.shop-card__image > .shop-card__logo { position: absolute; z-index: 2; bottom: 12px; left: 12px; width: 64px; height: 64px; padding: 3px; border-radius: 12px; background: #fff; box-shadow: 0 3px 10px rgba(30, 10, 50, .2); object-fit: contain; pointer-events: none; }
.shop-card__status { position: absolute; right: 47px; bottom: 12px; z-index: 2; display: inline-flex; align-items: center; gap: 5px; padding: 5px 9px; border-radius: 999px; background: var(--shoplist-open-bg); color: var(--shoplist-open); font-size: 10px; font-weight: 700; pointer-events: none; }
.shop-card__status > span { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.shop-card__status--closed { background: var(--shoplist-closed-bg); color: var(--shoplist-closed); }
.shop-card__status--soon { background: #fff1bf; color: #7d520f; }
.shop-card__info { position: absolute; right: 16px; bottom: 12px; z-index: 3; display: grid; box-sizing: border-box; width: 25px; height: 25px; padding: 0; place-items: center; border: 2px solid #fff; border-radius: 50%; box-shadow: 0 2px 7px rgba(30, 10, 50, .45); color: #fff; cursor: pointer; }
.shop-card__info-glyph { font-family: "Roboto Condensed", sans-serif; font-size: 15px; font-weight: 700; line-height: 1; transform: translateX(.5px); }
.shop-card__body { display: flex; flex-direction: column; min-height: 120px; padding: 16px; border-radius: 0; background: var(--shoplist-card); }
.shop-card__title { position: relative; margin: 0 0 10px; overflow: hidden; padding-right: 40px; color: var(--shoplist-ink); font-family: "Roboto Condensed", sans-serif; font-size: 24px; font-weight: 700; letter-spacing: -.01em; line-height: 1.1; text-overflow: clip; white-space: nowrap; }
.shop-card__title:after { position: absolute; z-index: 1; top: 0; right: 25px; width: 72px; height: 100%; background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--shoplist-card) 70%); content: ""; pointer-events: none; }
.shop-card__favorite { position: absolute; z-index: 2; top: 0; right: 0; display: grid; box-sizing: border-box; width: 26px; height: 26px; margin: 0; padding: 0; place-items: center; border: 0; border-radius: 50%; background: #f1f1f4; color: var(--shoplist-muted); cursor: pointer; font-size: 14px; transform: none; }
.shop-card__favorite > i { transform: translateY(1px); }
.shop-card__favorite:hover, .shop-card__favorite:focus, .shop-card.is-favorite .shop-card__favorite { background: #fff0e8; color: var(--shoplist-brand); outline: none; }
.shop-card__genres-wrap { position: relative; z-index: 2; overflow: hidden; margin: 0 -16px 13px 0; }
.shop-card__genres { display: flex; gap: 5px; overflow-x: auto; margin: 0; padding: 0 16px 3px 0; scrollbar-width: none; white-space: nowrap; }
.shop-card__genres::-webkit-scrollbar { display: none; }
.shop-card__genres-wrap.is-overflowing:after { position: absolute; top: 0; right: 0; bottom: 3px; width: 38px; background: linear-gradient(90deg, rgba(255, 255, 255, 0), var(--shoplist-card) 82%); content: ""; pointer-events: none; }
.shop-card__genre { flex: 0 0 auto; padding: 4px 7px; border-radius: 5px; background: var(--shoplist-tag); color: #4a4d57; font-size: 11px; font-weight: 600; line-height: 1; text-decoration: none; }
.shop-card__genre:hover, .shop-card__genre:focus { background: #e0e0e5; color: var(--shoplist-ink); outline: none; text-decoration: none; }
.shop-card__facts { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 8px; margin: auto 0 0; }
.shop-card__fact { display: flex; min-width: 0; align-items: center; gap: 5px; margin: 0; color: var(--shoplist-muted); font-size: 11px; font-weight: 600; white-space: nowrap; }
.shop-card__fact:last-child { grid-column: 3; justify-self: end; }
.shop-card__fact dt, .shop-card__fact dd { margin: 0; overflow: hidden; text-overflow: ellipsis; }
.shop-card__fact dt { color: var(--shoplist-brand); }
.shop-card__fact--shipping-free { color: var(--shoplist-open); }
.shop-card__fact--shipping-free dt { color: var(--shoplist-open); }
.shop-card__deal { position: relative; z-index: 2; display: flex; width: 100%; align-items: center; gap: 6px; margin: 13px 0 0; overflow: hidden; padding: 6px 8px; border: 0; border-radius: 6px; background: var(--shoplist-deal); color: #ad5928; cursor: pointer; font: inherit; font-size: 11px; font-weight: 700; line-height: 1.15; text-align: left; white-space: nowrap; }
.shop-card__deal > i { flex: 0 0 auto; color: var(--shoplist-brand); }
.shop-card__deal-primary { min-width: 0; overflow: hidden; }
.shop-card__deal-more { flex: 0 0 auto; margin-left: auto; }

/* Shop-list info cards live after the result grid and reuse the visual language
   of the restaurant cards without changing the standalone shop modal. */
.shop-info-modal-collection { position: relative; }
.shop-info-modal-overlay { box-sizing: border-box; padding: 24px 12px; background: rgba(30, 10, 50, .62); backdrop-filter: blur(2px); }
.shop-info.fuchs-modal.shop-info--shoplist { box-sizing: border-box; max-width: 450px !important; padding-bottom: 0; border-radius: 16px; background: var(--shoplist-card); box-shadow: 0 18px 50px rgba(30, 10, 50, .26); color: var(--shoplist-muted); }
.shop-info--shoplist .shop-info-title { align-items: center; min-height: 64px; padding: 14px 16px 14px 20px !important; background: var(--shoplist-card) !important; color: var(--shoplist-ink); font-family: "Roboto Condensed", sans-serif; font-size: 24px; font-weight: 700; letter-spacing: -.01em; line-height: 1.1; }
.shop-info--shoplist .shop-info-title > span { min-width: 0; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.shop-info--shoplist .shop-info__close { display: grid; flex: 0 0 34px; width: 34px; height: 34px; margin-left: 12px; padding: 0; place-items: center; border: 1px solid var(--shoplist-border); border-radius: 50%; background: #f4f4f6; color: var(--shoplist-ink); font-size: 17px; }
.shop-info--shoplist .shop-info__close:hover, .shop-info--shoplist .shop-info__close:focus { border-color: var(--shoplist-brand); color: var(--shoplist-brand); outline: none; }
.shop-info--shoplist .shop-info-image { position: relative; aspect-ratio: 2.67 / 1; overflow: hidden; background: #e8e8e8; }
.shop-info--shoplist .shop-info-image picture, .shop-info--shoplist .shop-info-image picture img { display: block; width: 100%; height: 100%; }
.shop-info--shoplist .shop-info-image picture img { object-fit: cover; }
.shop-info--shoplist .shop-info__logo { position: absolute; bottom: 12px; left: 12px; width: 64px; height: 64px; padding: 3px; border-radius: 12px; background: #fff; box-shadow: 0 3px 10px rgba(30, 10, 50, .2); object-fit: contain; }
.shop-info--shoplist .shop-info__status { position: absolute; right: 12px; bottom: 12px; display: inline-flex; align-items: center; gap: 5px; padding: 5px 9px; border-radius: 999px; background: var(--shoplist-open-bg); color: var(--shoplist-open); font-size: 10px; font-weight: 700; }
.shop-info--shoplist .shop-info__status > span { width: 6px; height: 6px; border-radius: 50%; background: currentColor; }
.shop-info--shoplist .shop-info__status--closed { background: var(--shoplist-closed-bg); color: var(--shoplist-closed); }
.shop-info--shoplist .shop-info__status--soon { background: #fff1bf; color: #7d520f; }
.shop-info--shoplist .tab-container { box-sizing: border-box; display: grid; height: auto; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 2px; margin: 14px 16px 0; padding: 4px !important; border-radius: 10px; background: #f1f1f4 !important; }
.shop-info--shoplist .tab { overflow: hidden; margin: 0; padding: 8px 4px; border: 0; border-radius: 7px; color: var(--shoplist-muted); cursor: pointer; font-size: 12px; font-weight: 700; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
.shop-info--shoplist .tab.active { border: 0; background: var(--shoplist-brand); color: #fff; }
.shop-info--shoplist .tab-content { padding: 6px 0 18px; }
.shop-info--shoplist .tab-content > *:not(.alert) { margin: 0; padding: 14px 20px 0; }
.shop-info--shoplist h4 { margin: 0 0 10px; color: var(--shoplist-ink); font-family: "Roboto Condensed", sans-serif; font-size: 17px; font-weight: 700; }
.shop-info--shoplist .shop-info-tag-container { display: flex; flex-wrap: wrap; gap: 5px; }
.shop-info--shoplist .shop-info-tag { margin: 0; padding: 4px 7px; border: 0; border-radius: 5px; background: var(--shoplist-tag); color: #4a4d57; font-size: 11px; font-weight: 600; line-height: 1; }
.shop-info--shoplist .legend { display: flex; flex-wrap: wrap; gap: 6px; color: var(--shoplist-muted); font-size: 11px; }
.shop-info--shoplist .legend > div { align-items: center; gap: 5px; margin: 0; padding: 6px 8px; border-radius: 7px; background: #f5f5f7; }
.shop-info--shoplist .legend[data-discount="1"] > .discount, .shop-info--shoplist .legend[data-vegan="1"] > .vegan, .shop-info--shoplist .legend[data-veggie="1"] > .veggie, .shop-info--shoplist .legend[data-halal="1"] > .halal { display: inline-flex; }
.shop-info--shoplist .legend img { width: 15px; height: 15px; margin: 0; }
.shop-info--shoplist .alert { margin: 0; padding: 12px 14px; border: 0; border-radius: 10px; font-size: 12px; line-height: 1.35; }
.shop-info--shoplist .alert-warning { background: #fff5dc; color: #6f5b28; }
.shop-info--shoplist .alert a { color: var(--shoplist-brand); font-weight: 700; }
.shop-info--shoplist .shop-info-discount-container { gap: 6px; margin: 0; }
.shop-info--shoplist .shop-info-discount-pill { padding: 7px 9px; border-radius: 7px; background: var(--shoplist-deal); color: #ad5928; font-size: 11px; }
.shop-info--shoplist .shop-info-discount-pill i { color: var(--shoplist-brand); }
.shop-info--shoplist .shop-info-payment-container { display: flex; flex-wrap: wrap; gap: 6px; }
.shop-info--shoplist .shop-info-payment-option { gap: 6px; margin: 0 !important; padding: 7px 9px; border-radius: 7px; background: var(--shoplist-tag); color: #4a4d57; font-size: 11px; font-weight: 600; }
.shop-info--shoplist .shop-info-payment-option i { margin: 0; color: var(--shoplist-brand); }
.shop-info--shoplist .shop-info-area-row { box-sizing: border-box; align-items: center; gap: 10px; margin-bottom: 6px; padding: 6px 9px; border: 1px solid transparent; border-radius: 7px; background: #f6f6f8; color: var(--shoplist-muted); font-size: 11px; }
.shop-info--shoplist .shop-info-area-row.current { border-color: rgba(231, 111, 36, .45); background: #fff5ee; }
.shop-info--shoplist .shop-info-area-row.current div { font-weight: inherit; }
.shop-info--shoplist .shop-info-area-distance { flex: 0 0 auto; color: var(--shoplist-ink); }
.shop-info--shoplist .shop-info-area-facts { display: flex; min-width: 0; align-items: center; justify-content: flex-end; gap: 10px; }
.shop-info--shoplist .shop-info-area-fact { display: inline-flex; align-items: center; gap: 5px; white-space: nowrap; }
.shop-info--shoplist .shop-info-area-fact i { margin: 0; color: var(--shoplist-brand); font-size: 1.1em; }
.shop-info--shoplist .shop-info-area-pickup { font-weight: 600; }
.shop-info--shoplist .open-times .popup-slot { display: inline-block; padding: 7px 9px; border-radius: 7px; background: #f6f6f8; color: var(--shoplist-muted); font-size: 12px; }
.shop-info--shoplist [id^="tab-times-"] .flex-justify-between { margin-bottom: 4px; padding: 9px 11px; border-radius: 8px; background: #f6f6f8; font-size: 12px; }
.shop-info--shoplist [id^="tab-times-"] .flex-justify-between.today { background: #fff5ee; color: var(--shoplist-ink); }
.shop-info--shoplist .shop-info-contact-group { margin-bottom: 12px; line-height: 1.5; }
.shop-info--shoplist .shop-info-contact-group a { color: var(--shoplist-brand); }
.shop-info--shoplist .shop-info-contact-buttons { gap: 6px; margin: 0; }
.shop-info--shoplist .shop-info-contact-buttons > a { display: grid; height: 38px; margin: 0; place-items: center; border: 1px solid rgba(231, 111, 36, .38); border-radius: 9px; background: #fff5ee; color: var(--shoplist-brand); font-size: 17px; }

@media (max-width: 479px) {
    .shoplist-address-search-wrap { margin-right: -20px; margin-left: -20px; }
    .shoplist-address-search { box-sizing: border-box; min-height: 40px; height: 40px; }
    .shoplist-address-search__input { height: 38px; font-size: 13px; line-height: 38px; }
    .shoplist-address-search__cta { padding-right: 12px; padding-left: 12px; font-size: 11px; }
    .shop-info-modal-overlay { padding: 10px; }
    .shop-info.fuchs-modal.shop-info--shoplist { width: calc(100vw - 20px); }
    .shop-info--shoplist .shop-info-title { min-height: 56px; padding: 11px 12px 11px 16px !important; font-size: 21px; }
    .shop-info--shoplist .shop-info__close { flex-basis: 32px; width: 32px; height: 32px; }
    .shop-info--shoplist .shop-info__logo { bottom: 9px; left: 9px; width: 64px; height: 64px; border-radius: 10px; }
    .shop-info--shoplist .shop-info__status { right: 9px; bottom: 9px; }
    .shop-info--shoplist .tab-container { margin: 10px 10px 0; }
    .shop-info--shoplist .tab { padding: 7px 2px; font-size: 10px; }
    .shop-info--shoplist .tab-content > *:not(.alert) { padding-right: 14px; padding-left: 14px; }
    .shop-info--shoplist .shop-info-area-row { gap: 8px; padding: 6px 9px; font-size: 11px; }
    .shop-info--shoplist .shop-info-area-facts { gap: 8px; }
}

@media (max-width: 1100px) {
    .shoplist-hero { grid-template-columns: minmax(0, 1fr) minmax(260px, .72fr); min-height: 540px; margin-top: 30px; padding: 48px; gap: 28px; }
    .shoplist-hero--address-known { min-height: 0; }
    .shoplist-hero--genre { grid-template-columns: minmax(0, 600px); }
    .shoplist-hero h1 { font-size: 36px; }
    .shoplist-hero__art { min-height: 300px; }
}

@media (max-width: 700px) {
    .shoplist-hero { grid-template-columns: 1fr; grid-template-areas: "copy" "art" "address" "notice"; min-height: 600px; padding: 32px 16px; gap: 24px; }
    .shoplist-hero--address-known:not(.shoplist-hero--genre) { grid-template-areas: "copy" "art" "notice"; min-height: 0; }
    .shoplist-hero--genre { grid-template-areas: "copy" "address" "notice"; min-height: 0; }
    .shoplist-hero--genre.shoplist-hero--address-known { grid-template-areas: "copy" "notice"; }
    .shoplist-hero--address-known.shoplist-hero--address-feedback { grid-template-areas: "copy" "art" "address" "notice"; }
    .shoplist-hero--genre.shoplist-hero--address-feedback { grid-template-areas: "copy" "address" "notice"; }
    .shoplist-hero h1 { max-width: 320px; font-size: 30px; }
    .shoplist-hero__intro { font-size: 13px; }
    .shoplist-hero__art { min-height: 270px; order: 2; }
    .shoplist-hero__plate { width: 260px; height: 260px; border-width: 34px; }
    .shoplist-hero__food { width: 305px; }
    .shoplist-hero .pros { flex-wrap: wrap; }
    .shoplist-results { padding-top: 18px; }
    .shoplist-section-heading { gap: 18px; margin: 34px 0 24px; font-size: 22px; }
    .shoplist-address-search { min-height: 48px; }
    .shoplist-address-search__placeholder { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
    .shoplist-address-search__cta { padding: 0 14px; font-size: 12px; }
    .shoplist-address-search__input { height: 46px; padding-right: 8px; padding-left: 8px; line-height: 46px; }
    .shoplist-address-search__icon { padding-left: 12px; }
    .shoplist-active-address { align-items: flex-start; }
    .shoplist-active-address > span { display: block; overflow: visible; white-space: normal; text-overflow: clip; }
    .shoplist-active-address small { display: block; margin-bottom: 2px; }
    .shoplist-address-house-number { flex-wrap: wrap; gap: 8px; }
    .shoplist-address-house-number__form { flex: 1 1 100%; }
    .shoplist-address-house-number input { flex: 1 1 auto; width: auto; }
    .shop-card__body { min-height: 0; padding: 14px; }
    .shop-card__info { right: 14px; }
    .shop-card__status { right: 45px; }
    .shop-card__title { font-size: 22px; }
    .shop-card__genres-wrap { margin-right: -14px; }
    .shop-card__genres { padding-right: 14px; }
    .shop-card__facts { gap: 6px; }
    .shop-card__fact { font-size: 10px; }
}

/* Card widths: 328–450 px. A new column count deliberately starts compact,
   then grows until the respective grid reaches its visual maximum. */
@media (min-width: 720px) {
    .shop-card.has-deal .shop-card__body { min-height: 160px; }
    .restaurant-container {
        max-width: 984px;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        padding-right: clamp(20px, calc(11.6667vw - 64px), 48px);
        padding-left: clamp(20px, calc(11.6667vw - 64px), 48px);
        padding-bottom: 56px;
    }
    .restaurant-container .restaurant-link.shop-card { max-width: none; }
    .shoplist-results > .headline-container { max-width: 984px; padding-right: 48px; padding-left: 48px; }
    .shoplist-controls { max-width: 984px; padding-right: 48px; padding-left: 48px; }
}

@media (max-width: 800px) {
    .shoplist-controls { grid-template-columns: 1fr; gap: 12px; width: 100vw; margin-top: 18px; margin-left: calc(50% - 50vw); padding: 0 16px 8px; }
    .shoplist-controls__label { margin-bottom: 6px; }
    .shoplist-controls__buttons { gap: 5px; }
    .shoplist-controls__buttons--sort { padding: 3px; border-radius: 8px; }
    .shoplist-control { min-height: 30px; padding: 6px 8px; border-radius: 7px; font-size: 11px; }
}

/* Keep deals and controls on the same visual grid as the two-column shop cards. */
@media (min-width: 801px) and (max-width: 1199px) {
    .deals,
    .shoplist-controls {
        box-sizing: border-box;
        width: min(100vw, 984px);
        max-width: none;
        margin-right: auto;
        margin-left: max(calc(50% - 50vw), calc(50% - 492px));
        padding-right: clamp(20px, calc(11.6667vw - 64px), 48px);
        padding-left: clamp(20px, calc(11.6667vw - 64px), 48px);
    }
    .shoplist-controls { column-gap: 24px; }
    .deals .inner { gap: 24px; justify-content: flex-start; }
    .deal { flex-basis: calc(50% - 12px); }
}

@media (min-width: 768px) and (max-width: 800px) {
    .shoplist-controls { padding-right: 28px; padding-left: 28px; }
}

@media (min-width: 1200px) {
    .restaurant-container {
        max-width: 1494px;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        padding-right: clamp(24px, calc(8.1633vw - 74px), 48px);
        padding-left: clamp(24px, calc(8.1633vw - 74px), 48px);
        padding-bottom: 72px;
    }
    .shoplist-results > .headline-container { max-width: 1494px; padding-right: 48px; padding-left: 48px; }
    .shoplist-controls { max-width: 1494px; padding-right: 0; padding-left: 0; }
}

@media (max-width: 767px) {
    .deals { box-sizing: border-box; width: 100vw; margin-left: calc(50% - 50vw); padding-right: 16px; padding-left: 16px; }
    .deals .inner { justify-content: flex-start; }
    .deal { flex-basis: 100%; margin-right: 0; margin-left: 0; }
}

@media (min-width: 720px) and (max-width: 767px) {
    .restaurant-container { padding-right: 16px; padding-left: 16px; }
}

/* A single grid owns each section heading and the cards below it. */
.shoplist-grid-container {
    box-sizing: border-box;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    padding-right: 16px;
    padding-left: 16px;
}
.shoplist-grid-container > .restaurant-container,
.shoplist-grid-container > .deals {
    width: 100%;
    max-width: none;
    margin: 0;
    padding-right: 0;
    padding-left: 0;
}
.shoplist-grid-container > .shoplist-controls {
    width: 100%;
    max-width: none;
    margin: 30px 0 0;
    padding: 0 0 10px;
}
.shoplist-grid-container--controls > .shoplist-controls { margin-top: 64px; }
.shoplist-grid-container--controls + .shoplist-results .shoplist-grid-container > .headline-container { margin-top: 16px; }
.shoplist-grid-container > .restaurant-container { padding-bottom: 40px; }
.shoplist-grid-container > .deals .inner { gap: 24px; justify-content: flex-start; }
.shoplist-grid-container > .deals .deal { flex-basis: calc(50% - 12px); }

@media (max-width: 767px) {
    .shoplist-grid-container > .deals .deal { flex-basis: 100%; margin-right: 0; margin-left: 0; }
}

@media (min-width: 720px) and (max-width: 1199px) {
    .shoplist-grid-container {
        width: min(100vw, 984px);
        margin-left: max(calc(50% - 50vw), calc(50% - 492px));
        padding-right: clamp(20px, calc(11.6667vw - 64px), 48px);
        padding-left: clamp(20px, calc(11.6667vw - 64px), 48px);
    }
    .shoplist-grid-container > .restaurant-container { padding-bottom: 56px; }
}

@media (min-width: 1200px) {
    .shoplist-grid-container {
        width: min(100vw, 1494px);
        margin-left: max(calc(50% - 50vw), calc(50% - 747px));
        padding-right: clamp(24px, calc(8.1633vw - 74px), 48px);
        padding-left: clamp(24px, calc(8.1633vw - 74px), 48px);
    }
    .shoplist-grid-container > .restaurant-container { padding-bottom: 72px; }
}

/* The address field follows the deal/card grid, not the hero copy inset. */
@media (min-width: 700px) and (max-width: 700px) {
    .shoplist-address-search-wrap { margin-right: -4px; margin-left: -4px; }
}

@media (min-width: 701px) and (max-width: 719px) {
    .shoplist-address-search-wrap { margin-right: -32px; margin-left: -32px; }
}

@media (min-width: 720px) and (max-width: 991px) {
    .shoplist-address-search-wrap {
        margin-right: calc(clamp(20px, calc(11.6667vw - 64px), 48px) - 48px);
        margin-left: calc(clamp(20px, calc(11.6667vw - 64px), 48px) - 48px);
    }
}

/* FAQ at the end of the shop list, based on the responsive Figma specification. */
.shoplist-faq { box-sizing: border-box; width: 100vw; margin: 48px 0 0 calc(50% - 50vw); padding: 48px; background: #f7f7f7; color: #1e0a32; font-family: "Roboto", sans-serif; text-align: left; }
.shoplist-faq__brand { display: flex; width: 100%; max-width: 1000px; align-items: center; gap: 7px; margin: 0 auto 32px; font-size: 12px; font-weight: 700; letter-spacing: .01em; line-height: normal; text-transform: uppercase; }
.shoplist-faq__brand > span { width: 6px; height: 6px; border-radius: 50%; background: #ec6922; }
.shoplist-abo-box__heading { font-family: "Roboto Condensed", sans-serif; }
.shoplist-faq__content { display: flex; width: 100%; max-width: 1000px; margin: 0 auto; flex-direction: column; gap: 24px; }
.shoplist-faq h2 { margin: 0; color: #1e0a32; font-family: "Roboto", sans-serif; font-size: 36px; font-weight: 800; letter-spacing: 0; line-height: 1.2; text-align: left; }
.shoplist-faq__items { display: flex; flex-direction: column; gap: 16px; }
.shoplist-faq__item { box-sizing: border-box; overflow: hidden; border: 1px solid #e8e7eb; border-radius: 20px; background: #fff; box-shadow: 0 4px 6px rgba(30, 30, 36, .02); }
.shoplist-faq__item[open] { border: 1.5px solid #ec6922; box-shadow: 0 4px 6px rgba(236, 105, 34, .03); }
.shoplist-faq__item summary { display: flex; box-sizing: border-box; min-height: 62px; align-items: center; gap: 12px; padding: 15px; cursor: pointer; list-style: none; }
.shoplist-faq__item[open] summary { padding: 14.5px; }
.shoplist-faq__item summary::-webkit-details-marker { display: none; }
.shoplist-faq__item summary::marker { display: none; content: ""; }
.shoplist-faq__indicator { flex: 0 0 4px; width: 4px; height: 24px; border-radius: 2px; background: #e8e7eb; }
.shoplist-faq__item[open] .shoplist-faq__indicator { background: #ec6922; }
.shoplist-faq__question { min-width: 0; flex: 1 1 auto; color: #1e0a32; font-size: 16px; font-weight: 700; line-height: 1.3; }
.shoplist-faq__toggle { display: grid; flex: 0 0 32px; width: 32px; height: 32px; place-items: center; border-radius: 50%; background: #f7f7f7; color: #1e0a32; }
.shoplist-faq__chevron { width: 16px; height: 16px; grid-area: 1 / 1; }
.shoplist-faq__chevron--up { display: none; }
.shoplist-faq__item[open] .shoplist-faq__toggle { background: #fbe1d3; }
.shoplist-faq__item[open] .shoplist-faq__chevron--down { display: none; }
.shoplist-faq__item[open] .shoplist-faq__chevron--up { display: block; }
.shoplist-faq__answer { height: 0; margin: -3px 32px 0; overflow: hidden; transition: height .35s linear; }
.shoplist-faq__answer p { margin: 0; padding: 18px 0 15px; border-top: 1px solid #e8e7eb; color: #4b5563; font-size: 13px; font-weight: 500; line-height: 1.2; }

@media (max-width: 1100px) {
    .shoplist-faq { padding: 48px; }
    .shoplist-faq__brand { margin-bottom: 24px; }
    .shoplist-faq__content { gap: 16px; }
    .shoplist-faq h2 { font-size: 28px; line-height: normal; }
    .shoplist-faq__items { gap: 12px; }
}

@media (max-width: 700px) {
    .shoplist-faq { margin-top: 32px; padding: 16px; }
    .shoplist-faq__brand { margin-bottom: 16px; }
    .shoplist-faq__content { gap: 16px; }
    .shoplist-faq h2 { font-size: 24px; font-weight: 600; line-height: normal; }
    .shoplist-faq__items { gap: 12px; }
    .shoplist-faq__item summary, .shoplist-faq__item[open] summary { min-height: 72px; padding: 15px; }
    .shoplist-faq__answer p { padding-bottom: 16px; line-height: 1.45; }
}

/* Keep brand marks consistent across deal and shop cards at every breakpoint. */
.deal .logo-container, .deal-card--double .logo-container { width: 96px; height: 96px; }
