:root {
    --font-heading: 'Playfair Display', serif;
    --color-primary-dark: #1a1006;
    --color-dark: #2b1c0f;
    --color-dark-soft: #3a2716;
    --color-accent: #e69b3c;
}

.takeout-page {
    background-color: #000000;
}

/* ===== Hero Section ===== */
.takeout-page .sd-hero {
    padding: 70px 0 40px;
}

.takeout-page .sd-hero .sd-hero-flex {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
}

.takeout-page .sd-hero .sd-hero-label {
    font-family: var(--font-heading);
    font-style: italic;
    font-size: 18px;
    color: var(--color-accent);
    border-left: 3px solid var(--color-accent);
    padding-left: 10px;
    display: inline-block;
    margin-bottom: 16px;
}

.takeout-page .sd-hero .sd-hero-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 40px;
    color: #fff;
    line-height: 1.25;
    margin-bottom: 18px;
}

.takeout-page .sd-hero .sd-hero-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.7);
    max-width: 460px;
    margin-bottom: 26px;
}

.takeout-page .sd-hero .sd-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.takeout-page .sd-hero .sd-btn {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.takeout-page .sd-hero .sd-btn-primary {
    background-color: var(--color-accent);
    color: var(--color-primary-dark);
}

.takeout-page .sd-hero .sd-btn-primary:hover {
    background-color: #d4872f;
}

.takeout-page .sd-hero .sd-btn-outline {
    background-color: transparent;
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.4);
}

.takeout-page .sd-hero .sd-btn-outline:hover {
    border-color: #fff;
}

.takeout-page .sd-hero .sd-hero-media img {
    width: 100%;
    height: 100%;
    max-height: 340px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

.takeout-page .sd-hero .sd-stats-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
}

.takeout-page .sd-hero .sd-stat-label {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 6px;
}

.takeout-page .sd-hero .sd-stats-row h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 20px;
    color: #fff;
    margin: 0;
}

/* ===== Highlight Band ===== */
.takeout-page .sd-band {
    background-color: var(--color-dark-soft);
    background-image: url('/storage/app/media/Services/takeout-bg.png');
    background-size: cover;
    background-position: center;
    background-blend-mode: multiply;
    padding: 60px 0;
}

.takeout-page .sd-band .sd-band-header {
    margin-bottom: 40px;
}

.takeout-page .sd-band .sd-band-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 30px;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 16px;
}

.takeout-page .sd-band .sd-band-text {
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.8);
    max-width: 480px;
}

.takeout-page .sd-band .sd-band-features {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.takeout-page .sd-band .sd-feature-item .sd-feature-icon {
    width: 36px;
    height: 36px;
    margin-bottom: 14px;
}

.takeout-page .sd-band .sd-feature-item .sd-feature-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.takeout-page .sd-band .sd-feature-tag {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 12px;
    font-weight: 600;
    color: var(--color-accent);
    margin-bottom: 8px;
}

.takeout-page .sd-band .sd-feature-item h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 17px;
    color: #fff;
    margin-bottom: 10px;
}

.takeout-page .sd-band .sd-feature-item p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}

/* ===== Gallery Section ===== */
.takeout-page .sd-gallery {
    padding: 70px 0;
}

.takeout-page .sd-gallery .sd-gallery-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 30px;
    color: #fff;
    margin-bottom: 40px;
}

.takeout-page .sd-gallery .sd-gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.takeout-page .sd-gallery .sd-gallery-item {
    border-radius: 12px;
    overflow: hidden;
}

.takeout-page .sd-gallery .sd-gallery-item img {
    width: 100%;
    height: 240px;
    object-fit: cover;
    display: block;
}

/* ===== What's Included Section ===== */
.takeout-page .sd-included {
    padding-bottom: 70px;
}

.takeout-page .sd-included .sd-included-flex {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.takeout-page .sd-included .sd-included-title {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 30px;
    color: #fff;
    margin-bottom: 30px;
    line-height: 1.3;
}

.takeout-page .sd-included .sd-included-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.takeout-page .sd-included .sd-included-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.takeout-page .sd-included .sd-included-num {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #161616;
    border-radius: 8px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 18px;
    color: var(--color-accent);
}

.takeout-page .sd-included .sd-included-info h4 {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: #fff;
    margin-bottom: 6px;
}

.takeout-page .sd-included .sd-included-info p {
    font-family: 'Inter', sans-serif;
    font-size: 13px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.65);
    margin: 0;
}

.takeout-page .sd-included .sd-included-media img {
    width: 100%;
    height: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}

/* ===== دسکتاپ (992px به بالا) ===== */
@media (min-width: 992px) {

    .takeout-page .sd-hero {
        padding: 100px 0 60px;
    }

    .takeout-page .sd-hero .sd-hero-flex {
        flex-direction: row;
        align-items: center;
        gap: 60px;
        margin-bottom: 60px;
    }

    .takeout-page .sd-hero .sd-hero-content {
        flex: 0 0 46%;
        max-width: 46%;
    }

    .takeout-page .sd-hero .sd-hero-title {
        font-size: 52px;
    }

    .takeout-page .sd-hero .sd-hero-media {
        flex: 0 0 48%;
        max-width: 48%;
    }

    .takeout-page .sd-hero .sd-hero-media img {
        max-height: 360px;
    }

    .takeout-page .sd-band {
        padding: 100px 0;
    }

    .takeout-page .sd-band .sd-band-features {
        grid-template-columns: repeat(3, 1fr);
        gap: 50px;
    }

    .takeout-page .sd-gallery {
        padding: 100px 0;
    }

    .takeout-page .sd-gallery .sd-gallery-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }

    .takeout-page .sd-gallery .sd-gallery-item img {
        height: 280px;
    }

    .takeout-page .sd-included {
        padding-bottom: 100px;
    }

    .takeout-page .sd-included .sd-included-flex {
        flex-direction: row;
        align-items: flex-start;
        gap: 60px;
    }

    .takeout-page .sd-included .sd-included-content {
        flex: 0 0 48%;
        max-width: 48%;
    }

    .takeout-page .sd-included .sd-included-media {
        flex: 0 0 46%;
        max-width: 46%;
    }
}
