
/* Section */
.chick-fil-a-section {
    padding: 6px 0;
}

/* Banner Image */
.chick-fil-a-banner {
    width: 100%;
    display: flex;
    justify-content: center;
    margin-bottom: 25px;
}

.chick-fil-a-banner img {
    width: 100%;
    max-width: 900px;     /* centered desktop width */
    border-radius: 18px;  /* round corners desktop */
    display: block;
}

@media (max-width: 768px) {

    /* Remove container padding */
    .chick-fil-a-section .container {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
    }

    /* Remove all banner wrapper spacing */
    .chick-fil-a-banner {
        padding: 0 !important;
        margin: 0 !important;
        width: 100% !important;
        max-width: 100% !important;
        border-radius: 0 !important;
        overflow: hidden !important;
    }

    /* Remove border radius from image and force edge-to-edge */
    .chick-fil-a-banner img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        border-radius: 0 !important;        /* IMPORTANT */
        margin: 0 !important;
        padding: 0 !important;
    }
}


/* Section spacing */
.chick-fil-a-menu-section {
    padding: 40px 0;
}

/* Grid layout */
.chick-fil-a-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

/* Card styling */
.chick-fil-a-menu-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 14px 14px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Image wrapper */
.menu-img-wrap {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.menu-img-wrap img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    display: block;
}

/* Text inside card */
.chick-fil-a-menu-item h3 {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 700;
    color: #333;
}

.menu-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

/* Calories + Price row */
.menu-info-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    margin-top: 2px;
}

.menu-cal {
    background-color: #000;        /* Black background */
    color: #fff;                   /* White text */
    border: 1px solid #00ff00;     /* Green outline */
    padding: 4px 8px;              /* Optional spacing */
    border-radius: 12px;           /* Rounded corners */
}



.menu-price {
    font-weight: 700;
    background-color: #000;
    color: #ff7b1a;                /* Brand orange */
    border: 1px solid #00ff00;     /* Green outline */
    padding: 4px 8px;
    border-radius: 12px;
}



/* Show/Hide Logic */
.hide-desktop {
    display: none;
}

.hide-mobile {
    display: block;
}

/* Tablet & Mobile Grid: 2 per row */
@media (max-width: 991px) {
    .chick-fil-a-menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile: show only 8 items */
@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
    .hide-desktop {
        display: none; /* stays hidden here too */
    }
}

/* Footer button */
.chick-fil-a-menu-footer {
    text-align: center;
    margin-top: 24px;
}

.chick-fil-a-menu-btn {
    display: inline-block;
    padding: 11px 24px;
    background: #ff7b1a;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.25s;
}

.chick-fil-a-menu-btn:hover {
    background: #e46a10;
    transform: translateY(-2px);
}



.chick-fil-a-content {
    max-width: 850px;
    margin: 0 auto;
    text-align: left;   /* CHANGED from center to left */
}


.chick-fil-a-content h2 {
    font-size: 28px;
    margin-bottom: 12px;
    font-weight: 700;
    color: #333;
}

.chick-fil-a-content p {
    font-size: 15px;
    line-height: 1.7;
    color: #444;
    margin-bottom: 14px;
}

/* CTA Button */
.chick-fil-a-btn {
    display: inline-block;
    margin-top: 18px;
    background: #ff7b1a;
    padding: 12px 26px;
    color: #fff;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: 0.25s;
}

.chick-fil-a-btn:hover {
    background: #e46a10;
    transform: translateY(-2px);
}



/* Hero Section */
.hero {
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), url('https://images.unsplash.com/photo-1414235077428-338989a2e8c0?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=1470&q=80');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
}

.hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto 30px;
}

.hero-buttons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.btn {
    padding: 12px 25px;
    border-radius: 4px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    display: inline-block;
}

.btn-primary {
    background-color: var(--secondary);
    color: var(--dark);
}

.btn-primary:hover {
    background-color: #c19b27;
    transform: translateY(-2px);
}

.btn-secondary {
    background-color: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background-color: white;
    color: var(--dark);
    transform: translateY(-2px);
}




/* Menu Categories */
.menu-categories {
    padding: 1px 0;
    background-color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 10px;
}

.section-title p {
    color: var(--gray);
    max-width: 600px;
    margin: 0 auto;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.category-card {
    background-color: var(--light);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.category-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.category-content {
    padding: 20px;
    text-align: center;
}

.category-content h3 {
    margin-bottom: 10px;
    color: var(--primary);
}

.category-content p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.category-link {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
}

.category-link i {
    margin-left: 5px;
    transition: var(--transition);
}

.category-link:hover i {
    transform: translateX(5px);
}

/* Featured Items */
.featured-items {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.items-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.item-card {
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
}

.item-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.item-img {
    height: 200px;
    background-size: cover;
    background-position: center;
}

.item-content {
    padding: 20px;
}

.item-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 10px;
}

.item-header h3 {
    color: var(--primary);
}

.price {
    color: var(--accent);
    font-weight: 700;
    font-size: 1.2rem;
}

.item-content p {
    color: var(--gray);
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.item-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.tag {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #2ea74e;
    color: #666;
    padding: 10px 16px;
    border-radius: 25px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
}

.tag.spicy {
    background-color: #ffe6e6;
    color: var(--accent);
}

.order-btn {
    background-color: var(--primary);
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    width: 100%;
}

.order-btn:hover {
    background-color: #153a22;
}

/* About Section */
.about {
    padding: 80px 0;
    background-color: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-text h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.about-text p {
    margin-bottom: 20px;
    color: var(--gray);
}

.about-image {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Responsive Design for Index */
@media (max-width: 768px) {
    .hero h2 {
        font-size: 2.2rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn {
        width: 100%;
        max-width: 250px;
        margin-bottom: 10px;
    }
}

@media (max-width: 992px) {
    .about-content {
        grid-template-columns: 1fr;
    }
    
    .about-image {
        order: -1;
    }
}

@media (max-width: 576px) {
    .categories-grid,
    .items-grid {
        grid-template-columns: 1fr;
    }
}









.chick-fil-a-chicken-section {
    padding: 40px 0;
}

/* Grid */
.chick-fil-a-chicken-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

/* Card */
.chicken-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 14px 14px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

/* Image */
.chicken-img-wrap {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.chicken-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text */
.chicken-item h3 {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 700;
    color: #333;
}

.chicken-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

/* Meta row */
.chicken-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.chicken-cal {
    font-weight: 700;
    background-color: #000;        /* Black background */
    color: #fff;                   /* White text */
    border: 1px solid #00ff00;     /* Green outline */
    padding: 4px 8px;
    border-radius: 12px;  
}
.chicken-price {
    font-weight: 700;
    background-color: #000;
    color: #ff7b1a;                /* Brand orange */
    border: 1px solid #00ff00;     /* Green outline */
    padding: 4px 8px;
    border-radius: 12px;
}

/* Show/Hide rules */
.hide-desktop {
    display: none;
}

.hide-mobile {
    display: block;
}

/* Tablet + Mobile: 2 per row */
@media (max-width: 991px) {
    .chick-fil-a-chicken-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Mobile: hide extra cards (show 8) */
@media (max-width: 768px) {
    .hide-mobile {
        display: none;
    }
    .hide-desktop {
        display: none; /* stays hidden in teaser */
    }
}

/* Button */
.chick-fil-a-chicken-footer {
    text-align: center;
    margin-top: 24px;
}

.chick-fil-a-chicken-btn {
    display: inline-block;
    padding: 11px 24px;
    background: #ff7b1a;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.25s;
}

.chick-fil-a-chicken-btn:hover {
    background: #e46a10;
    transform: translateY(-2px);
}



/* Section spacing */
.chick-fil-a-prices-section {
    padding: 40px 0;
}

/* ===== Banner Styling (Both Banners) ===== */
.chick-fil-a-price-banner {
    width: 100%;
    display: flex;
    justify-content: center;
    margin: 25px 0;
}

.chick-fil-a-price-banner img {
    width: 100%;
    max-width: 900px;
    border-radius: 18px;
    display: block;
}

/* Mobile = full width edge-to-edge */
@media (max-width: 768px) {
    .chick-fil-a-price-banner {
        margin: 15px 0;
        padding: 0;
    }

    .chick-fil-a-price-banner img {
        width: 100%;
        max-width: 100%;
        border-radius: 0 !important;
        margin: 0 !important;
    }
}

/* Price Cards Grid */
.chick-fil-a-price-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

.price-card {
    background: #fff;
    border-radius: 12px;
    padding: 14px 16px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: 0 8px 20px rgba(0,0,0,0.04);
}

.price-card h3 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
    color: #333;
}

.price-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

.price-range {
    font-size: 14px;
    color: #444;
}

.price-range span {
    font-weight: 700;
    color: #ff7b1a;
}

/* Grid Responsive: 2 per row on tablet + mobile */
@media (max-width: 991px) {
    .chick-fil-a-price-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .chick-fil-a-price-grid {
        grid-template-columns: 1fr;
    }
}

/* CTA */
.chick-fil-a-prices-footer {
    text-align: center;
    margin-top: 30px;
}

.chick-fil-a-prices-btn {
    display: inline-block;
    padding: 11px 24px;
    background: #ff7b1a;
    color: #fff;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    font-size: 14px;
    transition: 0.25s;
}

.chick-fil-a-prices-btn:hover {
    background: #e46a10;
    transform: translateY(-2px);
}



/* === Specials Strip Outer Box === */
.chick-fil-a-specials {
    margin-top: 32px;
    padding: 22px 20px 25px;
    border-radius: 14px;
    background: #fff7f0;
    border: 1px solid #ffe1c4;
}

/* Title */
.specials-title {
    font-size: 18px;
    margin-bottom: 16px;
    font-weight: 700;
    color: #333;
}

/* === Grid Layout === */
.specials-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

/* === Special Card === */
.special-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 14px 16px;
    border: 1px solid #ffd7b0;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

/* Tag */
.special-tag {
    display: inline-block;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 999px;
    background: #ffe9d4;
    color: #c05a18;
    font-weight: 600;
    margin-bottom: 8px;
}

/* Name */
.special-name {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 5px;
    color: #333;
}

/* Description */
.special-detail {
    font-size: 13px;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.5;
}

/* Price */
.special-price {
    font-size: 13px;
    color: #444;
}

/* === Responsive Layout === */
@media (max-width: 991px) {
    .specials-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .specials-grid {
        grid-template-columns: 1fr;
    }
}


.chick-fil-a-breakfast-section {
    padding: 40px 0;
}

/* Grid */
.chick-fil-a-breakfast-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

/* Card */
.breakfast-item {
    background: #ffffff;
    border-radius: 12px;
    padding: 12px 14px 14px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

/* Image */
.breakfast-img-wrap {
    width: 100%;
    height: 150px;
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 10px;
}

.breakfast-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Text */
.breakfast-item h3 {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 700;
    color: #333;
}

.breakfast-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
}

/* Meta */
.breakfast-meta-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
}

.breakfast-cal {
    color: #888;
}

.breakfast-price {
    color: #ff7b1a;
    font-weight: 700;
}

/* Button */
.chick-fil-a-breakfast-footer {
    text-align: center;
    margin-top: 24px;
}

.chick-fil-a-breakfast-btn {
    display: inline-block;
    padding: 11px 24px;
    background: #ff7b1a;
    color: #fff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.25s;
}

.chick-fil-a-breakfast-btn:hover {
    background: #e46a10;
    transform: translateY(-2px);
}

/* Responsive: 2 per row on tablet, 1 per row on mobile */
@media (max-width: 991px) {
    .chick-fil-a-breakfast-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .chick-fil-a-breakfast-grid {
        grid-template-columns: 1fr;
    }
}



.chick-fil-a-order-section {
    padding: 40px 0;
}

/* Ordering options grid */
.order-options-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 22px;
}

.order-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.order-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 700;
    color: #333;
}

.order-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
}

.order-note {
    font-size: 13px;
    color: #888;
}

/* Steps box */
.order-steps-box {
    margin-top: 28px;
    padding: 18px 18px 20px;
    border-radius: 14px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.order-steps-title {
    font-size: 17px;
    margin-bottom: 14px;
    font-weight: 700;
    color: #333;
}

/* Steps row */
.order-steps {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

.order-step {
    flex: 1 1 0;
    min-width: 200px;
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.order-step-number {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    background: #ff7b1a;
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.order-step-text {
    font-size: 14px;
    color: #444;
    line-height: 1.5;
}

/* CTA */
.chick-fil-a-order-footer {
    text-align: center;
    margin-top: 26px;
}

.chick-fil-a-order-btn {
    display: inline-block;
    padding: 11px 24px;
    background: #ff7b1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.25s;
}

.chick-fil-a-order-btn:hover {
    background: #e46a10;
    transform: translateY(-2px);
}

/* Responsive layout */
@media (max-width: 991px) {
    .order-options-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .order-options-grid {
        grid-template-columns: 1fr;
    }

    .order-steps {
        flex-direction: column;
    }
}

.chick-fil-a-uk-india-section {
    padding: 40px 0;
}

/* Grid for UK & India cards */
.uk-india-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
    margin-top: 22px;
}

/* Region card styling */
.region-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 16px 18px 18px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
}

/* Header inside card */
.region-header {
    margin-bottom: 8px;
}

.region-label {
    display: inline-block;
    font-size: 11px;
    padding: 3px 9px;
    border-radius: 999px;
    background: #f0f4ff;
    color: #284b99;
    font-weight: 600;
    margin-bottom: 4px;
}

.region-card h3 {
    font-size: 17px;
    font-weight: 700;
    color: #333;
    margin: 0;
}

/* Text + list */
.region-text {
    font-size: 14px;
    color: #555;
    margin: 10px 0;
    line-height: 1.6;
}

.region-list {
    list-style: disc;
    padding-left: 18px;
    margin: 8px 0 12px;
}

.region-list li {
    font-size: 13px;
    color: #555;
    margin-bottom: 4px;
}

/* Button */
.region-btn {
    display: inline-block;
    padding: 9px 20px;
    background: #ff7b1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    transition: 0.25s;
}

.region-btn:hover {
    background: #e46a10;
    transform: translateY(-1px);
}

/* Helper note */
.region-note-box {
    margin-top: 22px;
    padding: 12px 14px;
    border-radius: 10px;
    background: #f9fafb;
    border: 1px solid #e5e7eb;
}

.region-note-text {
    font-size: 13px;
    color: #555;
    margin: 0;
}

/* Responsive: stack cards on mobile */
@media (max-width: 768px) {
    .uk-india-grid {
        grid-template-columns: 1fr;
    }
}


.chick-fil-a-spanish-section {
    padding: 40px 0;
}

/* Grid */
.spanish-menu-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    margin-top: 24px;
}

/* Cards */
.spanish-menu-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 14px 16px;
    box-shadow: 0 8px 18px rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.spanish-menu-card h3 {
    font-size: 16px;
    margin-bottom: 6px;
    font-weight: 700;
    color: #333;
}

.spanish-menu-desc {
    font-size: 14px;
    color: #555;
    margin-bottom: 6px;
    line-height: 1.6;
}

.spanish-menu-note {
    font-size: 13px;
    color: #888;
}

/* CTA */
.spanish-menu-footer {
    text-align: center;
    margin-top: 24px;
}

.spanish-menu-btn {
    display: inline-block;
    padding: 11px 24px;
    background: #ff7b1a;
    color: #ffffff;
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    font-size: 14px;
    transition: 0.25s;
}

.spanish-menu-btn:hover {
    background: #e46a10;
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .spanish-menu-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .spanish-menu-grid {
        grid-template-columns: 1fr;
    }
}

.chick-fil-a-full-menu {
    padding: 40px 0;
    background: #ffffff !important; /* full white */
    color: #333;
}

/* Section title */
.chick-fil-a-full-menu .section-title h2 {
    color: #222;
}

.chick-fil-a-full-menu .section-title p {
    color: #666;
    font-size: 14px;
}

/* Download button */
.chick-fil-a-menu-download-wrapper {
    margin-top: 14px;
}

.chick-fil-a-menu-download-btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    background: #ff7b1a; /* brand orange */
    color: #fff;
    border: none;
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
}

.chick-fil-a-menu-download-btn:hover {
    background: #ff9444;
}

/* Accordion wrapper */
.chick-fil-a-accordion {
    margin-top: 24px;
}

/* Accordion item */
.accordion-item-chick-fil-a {
    border-radius: 12px;
    border: 1px solid #e7e7e7;
    background: #ffffff;
    margin-bottom: 12px;
    overflow: hidden;
}

.accordion-item-chick-fil-a[open] {
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
}

/* Summary header */
.accordion-summary-chick-fil-a {
    cursor: pointer;
    padding: 12px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    color: #222;
    background: #f7f7f7; /* light grey */
    border-bottom: 1px solid #e7e7e7;
}

.accordion-summary-chick-fil-a::-webkit-details-marker {
    display: none;
}

.accordion-title-link-chick-fil-a {
    color: #ff7b1a;              /* chick-fil-a orange highlight */
    font-weight: 700;
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
}

.accordion-title-link-chick-fil-a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 100%;
    height: 2px;
    background: #ff7b1a;         /* underline highlight */
    border-radius: 2px;
    opacity: 0.6;
    transition: 0.25s ease;
}

.accordion-title-link-chick-fil-a:hover {
    color: #ff5500;              /* brighter highlight on hover */
}

.accordion-title-link-chick-fil-a:hover::after {
    opacity: 1;
    height: 3px;                 /* thicker hover underline */
}


/* arrow */
.accordion-arrow-chick-fil-a {
    font-size: 16px;
    transition: 0.2s ease;
}

.accordion-item-chick-fil-a[open] .accordion-arrow-chick-fil-a {
    transform: rotate(45deg);
}

/* Body */
.accordion-body-chick-fil-a {
    padding: 14px 16px;
    background: #ffffff;
    border-top: 1px solid #ececec;
}

.accordion-intro-chick-fil-a {
    font-size: 13px;
    color: #555;
    margin-bottom: 10px;
}

/* subtitles */
.menu-subtitle-chick-fil-a {
    font-size: 13px;
    font-weight: 700;
    margin: 12px 0 6px;
    color: #444;
}

/* grid rows */
.menu-header-row-chick-fil-a,
.menu-row-chick-fil-a {
    display: grid;
    grid-template-columns: 2fr 0.8fr 1fr;
    gap: 8px;
    font-size: 13px;
}

.menu-header-row-chick-fil-a {
    font-weight: 700;
    color: #333;
    padding: 6px 0;
    border-bottom: 1px solid #e0e0e0;
    margin-bottom: 4px;
}

.menu-row-chick-fil-a {
    padding: 6px 0;
    border-bottom: 1px dashed #e9e9e9;
}

.menu-row-chick-fil-a:last-of-type {
    border-bottom: none;
}

.menu-name-chick-fil-a {
    color: #222;
}

/* brand orange */
.menu-price-chick-fil-a {
    font-weight: 700;
    color: #ff7b1a;
}

/* Calorie pill — white bg, green border */
.menu-cal-chick-fil-a {
    text-align: center;
    font-size: 12px;
    padding: 3px 10px;     /* compact width */
    border-radius: 999px;
    background: #f5f5f5;   /* light grey pill (adjust if needed) */
    color: #333;
    border: none;          /* ← removed outline */
    display: inline-block;
}


/* Responsive */
@media (max-width: 768px) {
    .menu-header-row-chick-fil-a,
    .menu-row-chick-fil-a {
        grid-template-columns: 1.4fr 0.8fr 1fr;
    }

    .accordion-summary-chick-fil-a {
        font-size: 14px;
    }

    .chick-fil-a-menu-download-btn {
        width: 100%;
        text-align: center;
    }
}

.chick-fil-a-faq-section {
    padding: 40px 0;
}

.chick-fil-a-faq-list {
    margin-top: 22px;
}

/* FAQ item */
.faq-item-chick-fil-a {
    border-radius: 12px;
    border: 1px solid rgba(0,0,0,0.06);
    background: #ffffff;
    margin-bottom: 10px;
    overflow: hidden;
}

.faq-item-chick-fil-a[open] {
    box-shadow: 0 8px 22px rgba(0,0,0,0.05);
}

/* Question row */
.faq-question-chick-fil-a {
    list-style: none;
    cursor: pointer;
    padding: 11px 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    font-size: 14px;
    color: #333;
}

.faq-question-chick-fil-a::-webkit-details-marker {
    display: none;
}

.faq-arrow-chick-fil-a {
    font-size: 16px;
    transition: transform 0.2s ease;
}

/* Rotate arrow when open */
.faq-item-chick-fil-a[open] .faq-arrow-chick-fil-a {
    transform: rotate(45deg);
}

/* Answer */
.faq-answer-chick-fil-a {
    padding: 10px 16px 14px;
    border-top: 1px solid rgba(0,0,0,0.05);
    background: #fafafa;
}

.faq-answer-chick-fil-a p {
    font-size: 13px;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .faq-question-chick-fil-a {
        padding: 10px 14px;
        font-size: 13px;
    }

    .faq-answer-chick-fil-a {
        padding: 8px 12px 12px;
    }
}

/*.about-content {*/
/*    display: flex;*/
    align-items: stretch;   /* force both sides equal height */
/*}*/

/*.about-image {*/
/*    display: flex;*/
/*}*/

/*.about-image img {*/
    height: 100%;           /* fill vertical space */
/*    width: 100%;*/
    object-fit: cover;      /* avoid distortion */
/*}*/


.menu-page-link-wrap{margin:0 0 14px}
.menu-page-link{
  display:flex;align-items:center;justify-content:space-between;gap:12px;
  padding:14px 16px;border-radius:12px;text-decoration:none;
  background:linear-gradient(135deg,#8B0000,#B22222);
  color:#fff;font-weight:800;
  box-shadow:0 8px 22px rgba(0,0,0,.14);
  transition:all .25s ease;
}
.menu-page-link i{color:#FFD700;font-size:18px}
.menu-page-link .arrow{font-weight:900;opacity:.95}
.menu-page-link:hover{transform:translateY(-2px);box-shadow:0 12px 28px rgba(0,0,0,.18)}
@media (max-width:768px){
  .menu-page-link{font-size:14px}
}

