.restaurant-page {
    --restaurant-primary: #ff4495;
    --restaurant-primary-dark: #ea287d;
    --restaurant-light: #fff6fa;
    --restaurant-text: #27272a;
    --restaurant-muted: #707070;
    --restaurant-border: #eeeeee;

    font-family: inherit;
    color: var(--restaurant-text);
    background: #fff;
    line-height: 2;
    overflow: hidden;
}

.restaurant-page * {
    box-sizing: border-box;
}

.restaurant-page img {
    max-width: 100%;
    height: auto;
}

.restaurant-container {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}


/* Hero */

.restaurant-hero {
    padding: 70px 0 55px;
    background:
        radial-gradient(circle at 85% 30%, rgba(255, 68, 149, .09), transparent 26%),
        #fff;
}

.restaurant-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 65px;
    align-items: center;
}

.restaurant-label {
    display: inline-flex;
    color: var(--restaurant-primary);
    background: var(--restaurant-light);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 13px;
}

.restaurant-hero h1 {
    font-size: clamp(36px, 5vw, 64px);
    line-height: 1.3;
    margin: 0 0 8px;
    color: #18181b;
}

.restaurant-hero h1 span,
.restaurant-page h2 span,
.restaurant-page h3 span {
    color: var(--restaurant-primary);
}

.restaurant-hero h2 {
    font-size: 22px;
    margin: 0 0 17px;
    font-weight: 800;
}

.restaurant-hero p {
    color: var(--restaurant-muted);
    margin-bottom: 27px;
}

.restaurant-hero-image {
    position: relative;
}

.restaurant-hero-image::after {
    content: "";
    width: 170px;
    height: 170px;
    background: var(--restaurant-primary);
    opacity: .12;
    border-radius: 50%;
    position: absolute;
    left: -20px;
    bottom: -25px;
    z-index: 0;
}

.restaurant-hero-image img {
    border-radius: 20px;
    position: relative;
    z-index: 1;
    box-shadow: 0 25px 70px rgba(0,0,0,.10);
}


.restaurant-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none !important;
    background: var(--restaurant-primary);
    color: #fff !important;
    padding: 12px 27px;
    border-radius: 40px;
    font-weight: 700;
    transition: .25s;
    box-shadow: 0 10px 30px rgba(255, 68, 149, .22);
}

.restaurant-btn:hover {
    background: var(--restaurant-primary-dark);
    color: #fff;
    transform: translateY(-2px);
}


/* Sections */

.restaurant-section {
    padding: 70px 0;
}

.restaurant-light {
    background: #fffafb;
}

.restaurant-breadcrumb {
    text-align: center;
    font-size: 13px;
    color: #999;
    margin-bottom: 30px;
}

.restaurant-breadcrumb span {
    margin: 0 8px;
    color: var(--restaurant-primary);
}

.restaurant-intro {
    font-size: 17px;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto 38px;
}

.restaurant-intro strong {
    color: var(--restaurant-primary);
}


/* TOC */

.restaurant-toc {
    border: 1px solid var(--restaurant-border);
    padding: 25px 30px;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0,0,0,.035);
}

.restaurant-toc h3 {
    margin: 0 0 18px;
}

.restaurant-toc-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px 30px;
}

.restaurant-toc-grid a {
    color: #444 !important;
    text-decoration: none !important;
    position: relative;
    padding-right: 16px;
}

.restaurant-toc-grid a::before {
    content: "";
    position: absolute;
    width: 6px;
    height: 6px;
    background: var(--restaurant-primary);
    border-radius: 50%;
    right: 0;
    top: 15px;
}

.restaurant-toc-grid a:hover {
    color: var(--restaurant-primary) !important;
}


/* Titles */

.restaurant-title {
    text-align: center;
    max-width: 750px;
    margin: 0 auto 38px;
}

.restaurant-title-right {
    text-align: right;
    margin-right: 0;
    margin-left: 0;
}

.restaurant-title h2,
.restaurant-content h2,
.restaurant-price h2 {
    font-size: clamp(25px, 3vw, 34px);
    line-height: 1.5;
    margin-top: 0;
    margin-bottom: 10px;
}

.restaurant-title p {
    text-align: center;
    color: var(--restaurant-muted);
    margin: 0;
}


/* Benefits */

.restaurant-benefits {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

.restaurant-card {
    border: 1px solid var(--restaurant-border);
    background: #fff;
    border-radius: 16px;
    padding: 24px 14px;
    text-align: center;
    transition: .3s;
}

.restaurant-card:hover {
    transform: translateY(-7px);
    border-color: rgba(255,68,149,.35);
    box-shadow: 0 15px 40px rgba(255,68,149,.10);
}

.restaurant-icon {
    font-size: 32px;
    margin-bottom: 12px;
    color: var(--restaurant-primary);
}

.restaurant-card h3 {
    font-size: 16px;
    margin: 0 0 9px;
}

.restaurant-card p {
    font-size: 13px;
    color: var(--restaurant-muted);
    line-height: 1.9;
    margin: 0;
}


/* Two column */

.restaurant-two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 70px;
    align-items: center;
}

.restaurant-feature-image img,
.restaurant-wide-image img {
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

.restaurant-check-list {
    padding: 0;
    margin: 0 0 25px;
    list-style: none;
}

.restaurant-check-list li {
    position: relative;
    padding-right: 29px;
    margin-bottom: 9px;
}

.restaurant-check-list li::before {
    content: "✓";
    width: 18px;
    height: 18px;
    background: var(--restaurant-primary);
    color: #fff;
    border-radius: 50%;
    position: absolute;
    right: 0;
    top: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    line-height: 1;
}


/* Main text */

.restaurant-content {
    max-width: 960px;
}

.restaurant-content p {
    color: #555;
    margin-bottom: 19px;
    text-align: justify;
}

.restaurant-content h2 {
    margin-top: 40px;
}

.restaurant-content h2:first-child {
    margin-top: 0;
}

.restaurant-flow {
    margin-top: 35px;
    padding: 24px;
    border-radius: 14px;
    background: var(--restaurant-light);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.restaurant-flow span {
    background: #fff;
    border: 1px solid rgba(255,68,149,.25);
    border-radius: 40px;
    padding: 6px 15px;
}

.restaurant-flow b {
    color: var(--restaurant-primary);
}


/* Steps */

.restaurant-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.restaurant-step {
    text-align: center;
    padding: 10px;
    position: relative;
}

.restaurant-step span {
    margin: auto;
    width: 60px;
    height: 60px;
    border: 2px solid rgba(255,68,149,.25);
    border-radius: 50%;
    color: var(--restaurant-primary);
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    margin-bottom: 15px;
}

.restaurant-step h3 {
    font-size: 17px;
    margin: 0 0 8px;
}

.restaurant-step p {
    color: var(--restaurant-muted);
    font-size: 13px;
    margin: 0;
}


/* Price */

.restaurant-price {
    max-width: 950px;
    margin: auto;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 35px;
    align-items: center;
}

.restaurant-price-icon {
    background: #fff;
    border-radius: 20px;
    height: 150px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 58px;
    box-shadow: 0 12px 40px rgba(0,0,0,.06);
}

.restaurant-price p {
    color: var(--restaurant-muted);
}


/* SEO */

.restaurant-seo-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.restaurant-seo-item {
    text-align: center;
}

.restaurant-seo-item > div {
    font-size: 34px;
    margin-bottom: 10px;
}

.restaurant-seo-item h3 {
    font-size: 17px;
    margin: 0 0 6px;
}

.restaurant-seo-item p {
    color: var(--restaurant-muted);
    font-size: 13px;
    line-height: 1.8;
}


/* CTA */

.restaurant-cta {
    min-height: 190px;
    background:
        linear-gradient(135deg, var(--restaurant-primary), #f52c83);
    border-radius: 22px;
    padding: 32px 42px;
    color: #fff;
    display: grid;
    grid-template-columns: 110px 1fr auto;
    align-items: center;
    gap: 30px;
    position: relative;
    overflow: hidden;
}

.restaurant-cta::before {
    content: "";
    position: absolute;
    width: 230px;
    height: 230px;
    border: 45px solid rgba(255,255,255,.07);
    border-radius: 50%;
    left: -80px;
    top: -80px;
}

.restaurant-cta-icon {
    font-size: 65px;
    position: relative;
}

.restaurant-cta-content {
    position: relative;
}

.restaurant-cta h2 {
    color: #fff;
    margin: 0 0 5px;
    font-size: 27px;
}

.restaurant-cta p {
    margin: 0;
    opacity: .9;
}

.restaurant-cta-btn {
    position: relative;
    text-decoration: none !important;
    background: #fff;
    color: var(--restaurant-primary) !important;
    padding: 11px 22px;
    border-radius: 40px;
    font-weight: 800;
    white-space: nowrap;
}


/* FAQ */

.restaurant-faq {
    max-width: 900px;
    margin: auto;
}

.restaurant-faq details {
    background: #fff;
    margin-bottom: 12px;
    padding: 15px 20px;
    border-radius: 13px;
    border: 1px solid var(--restaurant-border);
}

.restaurant-faq summary {
    cursor: pointer;
    font-weight: 700;
}

.restaurant-faq details p {
    margin: 12px 0 0;
    color: var(--restaurant-muted);
}


/* Responsive */

@media (max-width: 1100px) {

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

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

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

}


@media (max-width: 850px) {

    .restaurant-hero {
        padding-top: 40px;
    }

    .restaurant-hero-grid,
    .restaurant-two-column {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .restaurant-hero-content {
        order: 1;
    }

    .restaurant-hero-image {
        order: 2;
    }

    .restaurant-toc-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .restaurant-price {
        grid-template-columns: 1fr;
    }

    .restaurant-price-icon {
        max-width: 180px;
    }

    .restaurant-cta {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .restaurant-cta-icon {
        display: none;
    }

    .restaurant-cta-btn {
        justify-self: center;
    }

}


@media (max-width: 600px) {

    .restaurant-container {
        width: min(100% - 26px, 1180px);
    }

    .restaurant-section {
        padding: 48px 10px;
    }

    .restaurant-hero {
        padding-top: 30px;
    }

    .restaurant-hero h1 {
        font-size: 38px;
    }

    .restaurant-hero h2 {
        font-size: 18px;
    }

    .restaurant-benefits,
    .restaurant-steps,
    .restaurant-seo-grid,
    .restaurant-toc-grid {
        grid-template-columns: 1fr;
    }

    .restaurant-card {
        text-align: right;
    }

    .restaurant-card .restaurant-icon {
        text-align: right;
    }

    .restaurant-title {
        text-align: right;
    }

    .restaurant-flow {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }

    .restaurant-flow b {
        transform: rotate(-90deg);
    }

    .restaurant-cta {
        padding: 28px 20px;
    }

    .restaurant-cta h2 {
        font-size: 22px;
    }

}