/**
 * Theme Name: FoodbookTheme
 * Stylesheet: Home New Template Specific Styles
 *
 * Dedicated styling for the premium "Home-new-template" page template.
 * Designed with a consistent color palette, premium typography, custom oklch gold gradients, 
 * micro-interactions, and 100% responsiveness on mobile, tablet, and desktop viewports.
 */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Plus+Jakarta+Sans:wght@400;500;600;700&display=swap');

:root {
    --home-primary: #D49D2B;
    --home-primary-hover: #b88520;
    --home-dark-green: #0B4A2C;
    /* Core brand dark green */
    --home-bg-green: #062E19;
    /* Deeper hero green */
    --home-deep-dark: #052214;
    /* Deepest background */
    --home-text-dark: #1E293B;
    /* Slate 800 */
    --home-text-muted: #64748B;
    /* Slate 500 */
    --home-bg-light: #FAF9F6;
    /* Soft cream/off-white */
    --home-white: #FFFFFF;
    --home-border: #EAECEF;
    --home-font-heading: 'Playfair Display', serif;
    --home-font-body: 'Plus Jakarta Sans', sans-serif;
    --home-transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    --home-shadow-sm: 0 4px 20px rgba(0, 0, 0, 0.04);
    --home-shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --home-shadow-lg: 0 20px 40px rgba(5, 34, 20, 0.12);
}

/* =============================================================================
GLOBAL STYLES FOR THE TEMPLATE
============================================================================= */
.home-new-page-wrapper {
    font-family: var(--home-font-body);
    color: var(--home-text-dark);
    background-color: var(--home-white);
    overflow-x: hidden;
    line-height: 1.6;
}

.home-new-page-wrapper * {
    box-sizing: border-box;
}

.home-new-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    width: 100%;
}

.home-new-page-wrapper h1,
.home-new-page-wrapper h2,
.home-new-page-wrapper h3,
.home-new-page-wrapper h4 {
    font-family: var(--home-font-heading);
    margin: 0;
    font-weight: 700;
}

.home-new-page-wrapper p {
    margin: 0;
}

/* Reusable Components */
.home-section-badge {
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--home-primary);
    margin-bottom: 12px;
    background: linear-gradient(135deg, oklch(82% .16 80), oklch(70% .18 60));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-section-header {
    text-align: center;
    max-width: 650px;
    margin: 0 auto 50px auto;
}

.home-section-header h2 {
    font-size: 40px;
    color: black;
    margin-top: 8px;
    margin-bottom: 12px;
}

.home-section-header p {
    font-size: 16px;
    color: var(--home-text-muted);
}

/* Custom Highlight text */
.home-new-page-wrapper .highlight {
    background: linear-gradient(135deg, oklch(82% .16 80), oklch(70% .18 60));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    color: transparent;
}

/* Reusable Buttons */
.home-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none !important;
    text-align: center;
    cursor: pointer;
    transition: var(--home-transition);
}

.home-btn-primary {
    background: linear-gradient(135deg, oklch(82% .16 80), oklch(70% .18 60));
    color: #121212 !important;
    box-shadow: 0 4px 15px rgba(212, 157, 43, 0.2);
}

.home-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(212, 157, 43, 0.4);
}

.home-btn-secondary {
    background-color: transparent;
    border: 2px solid var(--home-white);
    color: var(--home-white) !important;
}

.home-btn-secondary:hover {
    background-color: var(--home-white);
    color: var(--home-dark-green) !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 255, 255, 0.15);
}

.home-btn-dark {
    background-color: var(--home-dark-green);
    color: var(--home-white) !important;
    box-shadow: 0 4px 15px rgba(11, 74, 44, 0.15);
}

.home-btn-dark:hover {
    background-color: var(--home-deep-dark);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(11, 74, 44, 0.3);
}

/* =============================================================================
1. HERO CAROUSEL / SLIDER
============================================================================= */
.home-hero-carousel-section {
    position: relative;
    width: 100%;
    height: 680px;
    overflow: hidden;
    background-color: var(--home-deep-dark);
}

/* Slider Track & Wrapper */
.home-hero-slider-track {
    position: relative;
    width: 100%;
    height: 100%;
}

.home-hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.8s;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    z-index: 1;
}

.home-hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

/* Gradient Overlay */
.home-hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right,
            rgba(4, 26, 15, 0.95) 0%,
            rgba(5, 34, 20, 0.75) 45%,
            rgba(5, 34, 20, 0.3) 100%);
    z-index: 1;
}

/* Slide Content Spacing & Entrance Animations */
.home-hero-slide-content {
    position: relative;
    z-index: 3;
    color: var(--home-white);
    max-width: 650px;
    padding-top: 40px;
}

.home-hero-slide-content .home-section-badge {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #D49D2B !important;
    background: rgba(212, 157, 43, 0.1) !important;
    border: 1px solid rgba(212, 157, 43, 0.3) !important;
    padding: 8px 20px;
    border-radius: 50px;
    display: inline-block;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1) 0.2s;
    -webkit-text-fill-color: initial !important;
    background-clip: border-box !important;
}

.home-hero-slide-content h1 {
    font-size: 60px;
    line-height: 1.15;
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.4s;
    color: var(--home-white);
    font-family: var(--home-font-heading);
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.home-hero-slide-content p {
    font-size: 19px;
    color: #FFFFFF;
    /* White color for perfect contrast and readability */
    margin-bottom: 40px;
    line-height: 1.8;
    max-width: 580px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.6s;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
}

.home-hero-slide-content .home-btn-group {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1) 0.8s;
}

.home-hero-slide-content .home-btn-primary {
    background: linear-gradient(135deg, oklch(82% .16 80), oklch(70% .18 60));
    color: #121212 !important;
    border: none;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    box-shadow: 0 6px 20px rgba(212, 157, 43, 0.3);
    transition: var(--home-transition);
}

.home-hero-slide-content .home-btn-primary:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(212, 157, 43, 0.5);
    filter: brightness(1.05);
}

.home-hero-slide-content .home-btn-secondary {
    background: rgba(255, 255, 255, 0.08);
    border: 2px solid rgba(255, 255, 255, 0.35);
    color: var(--home-white) !important;
    padding: 16px 36px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: var(--home-transition);
}

.home-hero-slide-content .home-btn-secondary:hover {
    background-color: var(--home-white);
    color: var(--home-dark-green) !important;
    border-color: var(--home-white);
    transform: translateY(-4px);
    box-shadow: 0 12px 25px rgba(255, 255, 255, 0.25);
}

/* Active Slide Entrance Animations Trigger */
.home-hero-slide.active .home-hero-slide-content .home-section-badge,
.home-hero-slide.active .home-hero-slide-content h1,
.home-hero-slide.active .home-hero-slide-content p,
.home-hero-slide.active .home-hero-slide-content .home-btn-group {
    opacity: 1;
    transform: translateY(0);
}

/* Slider Controls (Arrows) */
.home-slider-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: var(--home-white);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    transition: var(--home-transition);
}

.home-slider-arrow:hover {
    background: linear-gradient(135deg, oklch(82% .16 80), oklch(70% .18 60));
    color: var(--home-deep-dark);
    border-color: transparent;
    box-shadow: 0 8px 20px rgba(212, 157, 43, 0.3);
}

.home-slider-arrow.arrow-prev {
    left: 30px;
}

.home-slider-arrow.arrow-next {
    right: 30px;
}

.home-slider-arrow svg {
    width: 20px;
    height: 20px;
}

/* Slider Pagination (Dots) */
.home-slider-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 10;
}

.home-slider-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: var(--home-transition);
}

.home-slider-dot.active {
    background: linear-gradient(135deg, oklch(82% .16 80), oklch(70% .18 60));
    width: 28px;
    border-radius: 10px;
}

/* =============================================================================
2. FLOATING STATS BADGES STRIP
============================================================================= */
.home-floating-badges-strip {
    position: relative;
    z-index: 15;
    margin-top: -50px;
    padding-bottom: 80px;
}

.home-badges-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.home-floating-badge-card {
    background-color: var(--home-white);
    border: 1px solid var(--home-border);
    border-radius: 20px;
    padding: 30px 24px;
    box-shadow: var(--home-shadow-md);
    display: flex;
    align-items: center;
    gap: 20px;
    transition: var(--home-transition);
}

.home-floating-badge-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--home-shadow-lg);
    border-color: rgba(11, 74, 44, 0.15);
}

.home-badge-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-color: rgba(11, 74, 44, 0.05);
    color: var(--home-dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--home-transition);
}

.home-floating-badge-card:hover .home-badge-icon-box {
    background-color: var(--home-dark-green);
    color: var(--home-white);
}

.home-badge-icon-box svg {
    width: 28px;
    height: 28px;
}

.home-badge-content h3 {
    font-family: var(--home-font-body);
    font-size: 17px;
    font-weight: 700;
    color: var(--home-dark-green);
    margin-bottom: 4px;
}

.home-badge-content p {
    font-size: 13px;
    color: var(--home-text-muted);
}

/* =============================================================================
3. MOST POPULAR DISHES SECTION
============================================================================= */
.home-popular-section {
    padding: 20px 0 100px 0;
    background-color: var(--home-white);
}

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

.home-dish-card {
    background-color: var(--home-white);
    border: 1px solid var(--home-border);
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--home-shadow-sm);
    transition: var(--home-transition);
    display: flex;
    flex-direction: column;
}

.home-dish-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--home-shadow-md);
    border-color: rgba(11, 74, 44, 0.1);
}

/* Dish Image & Badges */
.home-dish-image-wrapper {
    position: relative;
    width: 100%;
    height: 240px;
    overflow: hidden;
}

.home-dish-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--home-transition);
}

.home-dish-card:hover .home-dish-image-wrapper img {
    transform: scale(1.08);
}

.home-dish-card-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: linear-gradient(135deg, oklch(82% .16 80), oklch(70% .18 60));
    color: #121212;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
    z-index: 2;
}

/* Dish Info details */
.home-dish-details {
    padding: 24px 20px 30px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.home-dish-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
}

.home-dish-header h3 {
    font-size: 20px;
    color: var(--home-dark-green);
    font-weight: 700;
    flex-grow: 1;
    line-height: 1.25;
    word-break: break-word;
    hyphens: auto;
}

.home-dish-price {
    font-size: 19px;
    font-weight: 700;
    color: var(--home-primary);
    flex-shrink: 0;
    background: linear-gradient(135deg, oklch(82% .16 80), oklch(70% .18 60));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.25;
}

.home-dish-desc {
    font-size: 14px;
    color: var(--home-text-muted);
    margin-bottom: 24px !important;
    line-height: 1.6;
}

/* Order now Card btn */
.home-dish-card .home-dish-order-btn.custom-quick-view-btn {
    margin-top: auto !important;
    width: 100% !important;
    padding: 14px 28px !important;
    background-color: var(--home-dark-green) !important;
    border: 2px solid var(--home-dark-green) !important;
    color: var(--home-white) !important;
    border-radius: 50px !important;
    text-align: center !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-decoration: none !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    transition: var(--home-transition) !important;
    cursor: pointer !important;
    backdrop-filter: none !important;
    -webkit-backdrop-filter: none !important;
    box-shadow: none !important;
}

.home-dish-card .home-dish-order-btn.custom-quick-view-btn:hover {
    background-color: var(--home-primary) !important;
    border-color: var(--home-primary) !important;
    color: var(--home-white) !important;
    transform: translateY(-3px) !important;
    box-shadow: 0 8px 20px rgba(212, 157, 43, 0.3) !important;
}

/* Popular Dishes CTA View All Products Button */
.home-popular-cta {
    text-align: center;
    margin-top: 55px;
    width: 100%;
}

.home-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 42px;
    background-color: var(--home-dark-green);
    color: var(--home-white) !important;
    border: 2px solid var(--home-dark-green);
    border-radius: 50px;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    text-decoration: none !important;
    transition: var(--home-transition);
    box-shadow: 0 10px 30px rgba(11, 74, 44, 0.15);
    cursor: pointer;
}

.home-cta-btn svg {
    width: 18px;
    height: 18px;
    transition: transform 0.3s ease;
}

.home-cta-btn:hover {
    background-color: var(--home-primary);
    border-color: var(--home-primary);
    color: var(--home-white) !important;
    transform: translateY(-4px);
    box-shadow: 0 15px 35px rgba(212, 157, 43, 0.3);
}

.home-cta-btn:hover svg {
    transform: translateX(6px);
}

/* =============================================================================
4. BROWSE BY CATEGORY CAROUSEL
============================================================================= */
.home-category-section {
    padding: 90px 0 100px;
    background-color: var(--home-bg-light);
}

/* Carousel Wrapper */
.home-cat-carousel-wrapper {
    position: relative;
    overflow: hidden;
    user-select: none;
}

.home-cat-carousel-track {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
}

/* Individual Slide */
.home-cat-slide {
    flex: 0 0 calc(20% - 16px);
    min-width: 200px;
}

/* Card Container */
.home-cat-card {
    background: var(--home-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--home-shadow-sm);
    border: 1px solid var(--home-border);
    display: flex;
    flex-direction: column;
    transition: var(--home-transition);
    height: 100%;
}

.home-cat-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--home-shadow-md);
    border-color: rgba(11, 74, 44, 0.15);
}

/* Dark Green Label (top of image) */
.home-cat-card-label {
    background-color: var(--home-dark-green);
    padding: 12px 16px;
    position: relative;
    z-index: 2;
}

.home-cat-card-label span {
    font-size: 13px;
    font-weight: 700;
    text-align: center;
    color: var(--home-white);
    font-family: var(--home-font-body);
    letter-spacing: 0.02em;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Category Image */
.home-cat-card-img {
    width: 100%;
    aspect-ratio: 4 / 4;
    overflow: hidden;
    background: #F1F5F9;
}

.home-cat-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.home-cat-card:hover .home-cat-card-img img {
    transform: scale(1.07);
}

/* Card Footer: View Menu */
.home-cat-card-footer {
    padding: 16px 18px;
    background: var(--home-white);
    border-top: 1px solid var(--home-border);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-cat-view-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--home-dark-green);
    text-decoration: none !important;
    font-family: var(--home-font-body);
    transition: var(--home-transition);
}

.home-cat-view-btn svg {
    width: 15px;
    height: 15px;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.home-cat-view-btn:hover {
    color: var(--home-primary);
}

.home-cat-view-btn:hover svg {
    transform: translateX(5px);
}

/* Dot Navigation */
.home-cat-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.home-cat-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--home-border);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.home-cat-dot.active {
    background: var(--home-dark-green);
    width: 28px;
    border-radius: 5px;
}

.home-cat-dot:hover:not(.active) {
    background: #94A3B8;
}



/* =============================================================================
5. OUR JOURNEY SECTION (Legacy / Story)
============================================================================= */
.home-split-section {
    padding: 100px 0;
    background-color: var(--home-white);
}

.home-split-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

/* Image Wrappers */
.home-image-wrapper {
    position: relative;
    width: 100%;
}

.home-main-img {
    width: 100%;
    border-radius: 24px;
    box-shadow: var(--home-shadow-lg);
    display: block;
    transition: var(--home-transition);
}

.home-image-wrapper:hover .home-main-img {
    transform: scale(1.02);
}

/* Absolute Badges */
.home-floating-badge {
    position: absolute;
    bottom: -25px;
    right: -40px;
    background-color: var(--home-white);
    border: 1px solid var(--home-border);
    border-radius: 20px;
    padding: 20px 30px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    z-index: 10;
    transition: var(--home-transition);
    max-width: 260px;
}

.home-image-wrapper:hover .home-floating-badge {
    transform: translateY(-5px);
    border-color: rgba(11, 74, 44, 0.15);
}

.home-floating-badge .badge-num {
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    font-family: var(--home-font-heading);
    background: linear-gradient(135deg, oklch(82% .16 80), oklch(70% .18 60));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.home-floating-badge .badge-txt {
    font-size: 13px;
    font-weight: 600;
    color: #64748B;
    text-transform: none;
    line-height: 1.4;
    margin-top: 6px;
}

/* Content Columns */
.home-content-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.home-content-col h2 {
    font-size: 42px;
    color: black;
    line-height: 1.25;
    margin-bottom: 20px;
}

.home-content-col p {
    font-size: 16px;
    color: var(--home-text-muted);
    margin-bottom: 20px;
    line-height: 1.7;
}

/* Custom Checklist Bullets */
.home-checklist {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 10px;
    width: 100%;
}

.home-check-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.home-check-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(11, 74, 44, 0.06);
    color: var(--home-dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.home-check-icon svg {
    width: 13px;
    height: 13px;
}

.home-check-text {
    font-size: 15px;
    font-weight: 500;
    color: var(--home-text-dark);
}

/* =============================================================================
6. PICKUP & DELIVERY SECTION
============================================================================= */
.home-delivery-section {
    padding: 100px 0px 50px 0px;
    background-color: var(--home-bg-light);
    text-align: center;
}

.home-delivery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 50px auto;
}

.home-delivery-card {
    background-color: var(--home-white);
    border: 1px solid var(--home-border);
    border-radius: 24px;
    padding: 36px 30px;
    box-shadow: var(--home-shadow-sm);
    text-align: left;
    transition: var(--home-transition);
}

.home-delivery-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--home-shadow-md);
    border-color: rgba(11, 74, 44, 0.15);
}

.home-delivery-card h3 {
    font-size: 22px;
    color: var(--home-dark-green);
    margin-bottom: 20px;
    font-weight: 700;
}

.home-delivery-checklist {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.home-delivery-check {
    display: flex;
    align-items: center;
    gap: 12px;
}

.home-delivery-check svg {
    width: 18px;
    height: 18px;
    color: var(--home-primary);
}

.home-delivery-check span {
    font-size: 15px;
    color: var(--home-text-dark);
    font-weight: 500;
}

/* Delivery Team Illustration */
.home-delivery-illustrations {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 50px;
    padding: 0 20px;
}

.home-delivery-team-img {
    max-width: 100%;
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    /* PNG transparent so no border/shadow needed */
}

/* =============================================================================
   DECORATIVE SECTION SEPARATOR
============================================================================= */
.home-section-separator {
    background-color: var(--home-bg-light);
    padding: 30px 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.home-separator-line {
    width: 100%;
    max-width: 1200px;
    height: 1px;
    background: linear-gradient(to right, transparent 0%, var(--home-primary) 20%, var(--home-primary) 80%, transparent 100%);
    opacity: 0.55;
}

/* =============================================================================
7. TESTIMONIALS SECTION
============================================================================= */
.home-testimonials-section {
    padding: 80px 0 100px;
    background-color: var(--home-bg-light);
}

/* Testimonials Carousel Wrapper */
.home-testimonials-carousel-wrapper {
    position: relative;
    overflow: hidden;
    user-select: none;
    margin-top: 20px;
}

.home-testimonials-carousel-track {
    display: flex;
    gap: 24px;
    transition: transform 0.5s cubic-bezier(0.25, 1, 0.5, 1);
    will-change: transform;
    align-items: stretch;
}

/* Individual testimonial slide */
.home-testimonial-slide {
    flex: 0 0 calc(33.333% - 16px);
    min-width: 280px;
    display: flex;
    align-items: stretch;
}

/* Dots Navigation */
.home-testimonials-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.home-testimonials-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #CBD5E1;
    border: none;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}

.home-testimonials-dot.active {
    background: var(--home-dark-green);
    width: 28px;
    border-radius: 5px;
}

.home-testimonials-dot:hover:not(.active) {
    background: #94A3B8;
}

.home-testimonial-card {
    background-color: var(--home-white);
    border: none;
    border-radius: 36px;
    padding: 44px 40px;
    box-shadow: 0 15px 45px rgba(0, 0, 0, 0.04);
    transition: var(--home-transition);
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    width: 100%;
}

.home-testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.07);
}

/* Testimonial Stars Rating */
.home-stars-rating {
    display: flex;
    gap: 4px;
    margin-bottom: 24px;
    color: var(--home-primary);
}

.home-stars-rating svg {
    width: 18px;
    height: 18px;
}

.home-testimonial-quote {
    font-size: 17px;
    color: var(--home-text-dark);
    line-height: 1.75;
    margin-bottom: 0;
    font-style: normal;
    flex-grow: 1;
    font-family: var(--home-font-body);
}

/* Home Testimonial Divider Line */
.home-testimonial-divider {
    width: 100%;
    height: 1px;
    background-color: #E2E8F0;
    margin: 28px 0;
}

/* Testimonial Author profile */
.home-testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 0;
}

.home-author-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--home-dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--home-white);
    font-weight: 700;
    font-size: 20px;
    flex-shrink: 0;
}

.home-author-avatar span {
    font-family: var(--home-font-heading);
    line-height: 1;
}

.home-author-info h4 {
    font-family: var(--home-font-body);
    font-size: 17px;
    color: var(--home-text-dark);
    font-weight: 700;
    margin: 0 0 4px 0;
}

.home-author-info span {
    font-size: 13px;
    color: var(--home-text-muted);
    font-weight: 500;
    display: block;
}

/* =============================================================================
8. FAQ ACCORDION SECTION
============================================================================= */
.home-faq-section {
    padding: 100px 0;
    background-color: white;
}

.home-faq-wrapper {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* FAQ Item block */
.home-faq-item {
    background-color: var(--home-white);
    border: 1px solid var(--home-border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--home-shadow-sm);
    transition: var(--home-transition);
}

.home-faq-item:hover {
    border-color: rgba(11, 74, 44, 0.15);
}

.home-faq-header {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    outline: none;
}

.home-faq-header h3 {
    font-family: var(--home-font-body);
    font-size: 17px;
    font-weight: 700;
    color: var(--home-dark-green);
}

/* Toggle Icon */
.home-faq-icon {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background-color: rgba(11, 74, 44, 0.05);
    color: var(--home-dark-green);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--home-transition);
}

.home-faq-item.active .home-faq-icon {
    background-color: var(--home-dark-green);
    color: var(--home-white);
    transform: rotate(180deg);
}

.home-faq-item.active .home-faq-icon svg {
    display: none;
}

.home-faq-item.active .home-faq-icon::before {
    content: '-';
    font-size: 20px;
    font-weight: 700;
    line-height: 1;
    margin-top: -4px;
}

.home-faq-icon svg {
    width: 12px;
    height: 12px;
}

/* FAQ Content Body */
.home-faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease-out;
}

.home-faq-item.active .home-faq-content {
    max-height: 200px;
    /* Big enough for paragraph */
}

.home-faq-content-inner {
    padding: 0 30px 24px 30px;
    font-size: 15px;
    color: var(--home-text-muted);
    line-height: 1.6;
}

/* =============================================================================
9. HUNGRY CTA BANNER
============================================================================= */
.home-cta-section {
    padding: 100px 0;
    background-color: var(--home-white);
}

.home-cta-banner {
    background: linear-gradient(135deg, rgba(11, 74, 44, 0.96) 0%, rgba(5, 34, 20, 0.98) 100%),
        url('https://images.unsplash.com/photo-1504674900247-0877df9cc836?auto=format&fit=crop&w=1200&q=80');
    background-size: cover;
    background-position: center;
    border-radius: 32px;
    padding: 80px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--home-white);
    box-shadow: var(--home-shadow-lg);
}

.home-cta-left {
    max-width: 600px;
}

.home-cta-banner h2 {
    font-size: 46px;
    line-height: 1.2;
    margin-bottom: 16px;
    color: white;
}

.home-cta-banner p {
    font-size: 17px;
    color: #E2E8F0;
    line-height: 1.6;
}


/* =============================================================================
📱 MOBILE & TABLET MEDIA QUERIES (RESPONSIVENESS)
============================================================================= */

/* 1. Large Screen Adjustments (Max Width: 1200px) */
@media (max-width: 1200px) {
    .home-hero-slide-content h1 {
        font-size: 52px;
    }

    .home-popular-grid {
        gap: 20px;
    }

    .home-cat-slide {
        flex: 0 0 calc(25% - 15px);
    }
}

/* 2. Tablets (Max Width: 991px) */
@media (max-width: 991px) {
    .home-hero-carousel-section {
        height: 600px;
    }

    .home-hero-slide-content h1 {
        font-size: 44px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .home-hero-slide-content p {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .home-badges-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .home-floating-badges-strip {
        padding-bottom: 60px;
    }

    .home-popular-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .home-cat-slide {
        flex: 0 0 calc(33.333% - 14px);
    }

    .home-split-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .home-content-col {
        text-align: center;
        align-items: center;
        max-width: 700px;
        margin: 0 auto;
    }

    .home-image-col {
        order: 2;
    }

    .home-image-wrapper {
        max-width: 600px;
        margin: 0 auto;
    }

    .home-delivery-grid {
        grid-template-columns: repeat(2, 1fr);
        max-width: 100%;
    }

    .home-testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }

    .home-cta-banner {
        flex-direction: column;
        text-align: center;
        padding: 60px 40px;
        gap: 30px;
    }

    .home-cta-left {
        max-width: 100%;
    }
}

/* 3. Mobile Devices (Max Width: 767px) */
@media (max-width: 767px) {
    .home-hero-carousel-section {
        height: 560px;
    }

    .home-slider-dots {
        bottom: 45px;
    }

    .home-hero-slide::before {
        background: radial-gradient(circle, rgba(5, 34, 20, 0.8) 0%, rgba(4, 26, 15, 0.95) 80%);
    }

    .home-hero-slide-content {
        text-align: center;
        padding-top: 20px;
    }

    .home-hero-slide-content .home-section-badge {
        margin-bottom: 16px;
        padding: 6px 16px;
        font-size: 11px;
    }

    .home-hero-slide-content h1 {
        font-size: 34px;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .home-hero-slide-content p {
        font-size: 15px;
        margin: 0 auto 28px auto;
        line-height: 1.6;
    }

    .home-hero-slide-content .home-btn-group {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 280px;
        margin: 0 auto;
    }

    .home-hero-slide-content .home-btn {
        width: 100%;
        padding: 14px 28px;
    }

    .home-slider-arrow {
        display: none;
        /* Hide arrows on touch screens */
    }

    .home-badges-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .home-floating-badges-strip {
        margin-top: -30px;
        padding-bottom: 50px;
    }

    .home-section-header h2 {
        font-size: 30px;
    }

    .home-popular-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .home-cat-slide {
        flex: 0 0 calc(50% - 10px);
        min-width: 140px;
    }

    .home-floating-badge {
        padding: 12px 30px;
        right: 0px;
        bottom: -50px;
    }

    .home-floating-badge .badge-num {
        font-size: 28px;
    }

    .home-content-col h2 {
        font-size: 30px;
    }

    .home-delivery-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
        margin-bottom: 50px !important;
    }

    .home-delivery-illustrations {
        padding: 0 10px;
    }

    .home-delivery-team-img {
        max-width: 100%;
    }

    .home-testimonial-slide {
        flex: 0 0 calc(100% - 16px);
        min-width: 260px;
        display: flex;
        align-items: stretch;
    }

    .home-testimonial-card {
        padding: 36px 28px;
        border-radius: 28px;
    }

    .home-testimonial-quote {
        font-size: 16px;
    }

    .home-testimonial-divider {
        margin: 20px 0;
    }

    .home-faq-header {
        padding: 20px;
    }

    .home-faq-header h3 {
        font-size: 15px;
    }

    .home-faq-content-inner {
        padding: 0 20px 20px 20px;
    }

    .home-cta-banner {
        border-radius: 24px;
        padding: 50px 20px;
    }

    .home-cta-banner h2 {
        font-size: 32px;
    }
}