/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --nbc-primary: #1d4494;
    --nbc-secondary: #567dba;
    --nbc-accent: #4e3e30;
    --nbc-light-blue: #c7d6e7;
    --nbc-cream: #fff9e3;
    --nbc-dark: #363638;
    --nbc-light: #f5f5f5;
    --nbc-gray: #6c757d;
    --nbc-border: #e9ecef;
    --nbc-shadow: rgba(0, 0, 0, 0.1);
    --nbc-gold: #ffd700;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    line-height: 1.6;
    color: #363638;
    background-color: white;
}


/* Breadcrumbs Bar */
.breadcrumbs-bar {
    background: white;
    border-bottom: 1px solid #e9ecef;
}

.breadcrumbs-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.breadcrumbs {
    display: flex;
    align-items: center;
    position: relative;
    opacity: 0;
    transition: opacity 0.3s ease;
    margin-bottom: 0;
}

.breadcrumbs.loaded {
    opacity: 1;
}

.breadcrumb-scroll-container {
    flex: 1;
    overflow: hidden;
    position: relative;
}

.breadcrumb-list {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
    margin: 0;
    padding: 0;
    overflow-x: auto;
    scroll-behavior: smooth;
    scrollbar-width: none;
    -ms-overflow-style: none;
    white-space: nowrap;
}

.breadcrumb-list::-webkit-scrollbar {
    display: none;
}

.breadcrumb-item {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
    margin-bottom: 0;
}

.breadcrumb-item:not(:last-child)::after {
    content: '/';
    color: #6c757d;
    font-weight: 400;
    margin-left: 8px;
}

.breadcrumb-link {
    color: #1d4494 !important;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
    white-space: nowrap;
}

.breadcrumb-link:hover {
    color: #567dba;
    text-decoration: underline;
}

.breadcrumb-current {
    color: #6c757d;
    font-weight: 600;
    white-space: nowrap;
}

.breadcrumb-nav {
    background: #f5f5f5;
    border: 1px solid #e9ecef;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    color: #1d4494;
    z-index: 2;
}

.breadcrumb-nav:hover {
    background: #1d4494;
    color: white;
    transform: scale(1.05);
}

.breadcrumb-nav.hidden {
    opacity: 0;
    pointer-events: none;
    transform: scale(0.8);
}

.breadcrumb-nav-left {
    margin-right: 12px;
}

.breadcrumb-nav-right {
    margin-left: 12px;
}

.breadcrumb-nav i {
    font-size: 12px;
}

/* Full Width Header Section */
.hero-header {
    background: linear-gradient(rgba(0,0,0,0.3), rgba(0,0,0,0.3)), url('/images/banner.jpg');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 50px 0;
    position: relative;
    min-height: 350px;
    display: flex;
    align-items: center;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 2;
    width: 100%;
}

.hero-content {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 60px;
    min-height: 250px;
}

/* Left-Positioned White Card */
.location-card {
    background: white;
    color: #363638;
    padding: 40px 140px 40px 40px;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 800px;
    text-align: left;
    position: relative;
    flex-shrink: 0;
}

.brand-name {
    font-size: 16px;
    font-weight: 600;
    color: #6c757d;
    margin-bottom: 4px;
    letter-spacing: 1px;
    line-height: 1.2;
}

.location-title {
    font-size: 28px;
    font-weight: 700;
    color: #4e3e30;
    margin-bottom: 12px;
    line-height: 1.1;
}

.rating-section {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 16px;
    margin-bottom: 16px;
}

.rating-display {
    display: flex;
    align-items: center;
    gap: 8px;
}

.review-value {
    font-size: 20px;
    font-weight: 700;
}

.stars {
    display: flex;
    gap: 2px;
}

.stars i {
    color: #ffd700;
    font-size: 16px;
}

.review-count a {
    color: #6c757d;
    text-decoration: underline;
    font-size: 14px;
}

.review-count a:hover {
    color: #1d4494;
}

.hours-display {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 16px;
}

.hours-display i {
    color: #1d4494;
    font-size: 14px;
}

.hours-text {
    color: #75b85d;
    font-size: 14px;
    font-weight: 500;
}

.my-bakery-badge {
    background: #fff;
    color: #e75480;
    border: 1px solid #e75480;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    position: absolute;
    top: 32px;
    right: 24px;
    box-shadow: 0 2px 8px rgba(231, 84, 128, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.my-bakery-badge.js-select-bakery:hover {
    color: #e75480;
    text-decoration: none;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(231, 84, 128, 0.4);
}

.my-bakery-badge.my-bakery:hover {
    cursor: initial;
}

.my-bakery-badge:visited {
    color: #e75480;
}

.my-bakery-badge i {
    color: #e75480;
}

.my-bakery-badge.my-bakery {
    display: none;
}

.my-bakery-badge.not-active {
    display: none;
}

.my-bakery-badge.my-bakery.active {
    display: block;
    background-color: #e75480;
    color: #fff;
}

.my-bakery-badge.my-bakery.active i {
    color: #fff;
}

/* .my-bakery-badge.toggled {
    background: white;
    color: #e75480;
    border: 1px solid #e75480;
}

.my-bakery-badge.toggled i {
    color: #e75480;
} */

/* Primary CTA inside card */
.location-card .cta-primary {
    margin-top: 8px;
    width: auto;
    max-width: 250px;
    justify-content: center;
}

/* Quick Links */
.quick-links {
    display: flex;
    justify-content: flex-start;
    gap: 24px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.quick-link {
    color: #1d4494;
    text-decoration: none !important;
    font-size: 16px;
    font-weight: 500;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 6px;
}

.quick-link i {
    font-size: 16px;
    width: 16px;
    text-align: center;
}

.quick-link:hover {
    color: #567dba;
    transform: translateY(-1px);
}

.quick-links .quick-link:visited {
    color: #1d4494;
}

.quick-link-btn {
    background: #1d4494;
    color: white;
    border: none;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    text-transform: none;
}

.quick-link-btn:hover {
    background: #567dba;
    transform: translateY(-1px);
}

/* SEO Heading */
.seo-heading {
    background: linear-gradient(
        135deg,
        #f5f5f5 0%,
        #e9ecef 100%
    );
    padding: 20px 40px;
    text-align: center;
    border-bottom: 1px solid #e9ecef;
}

.seo-heading h1 {
    font-size: 18px;
    font-weight: 600;
    color: #4e3e30;
    line-height: 1.3;
    margin: 0;
    max-width: 100%;
    white-space: nowrap;
}

/* Location Services Background */
.location-services-bg {
    background: white;
    border-bottom: 1px solid #e9ecef;
    width: 100%;
}

/* Location Services Wrapper */
.location-services-wrapper {
    padding: 30px 40px;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

/* Location Section */
.location-section {
    text-align: left;
}

/* Contact and Hours Combined Section */
.contact-hours-section {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Hours Section */
.hours-section {
    text-align: left;
}

.hours-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: #4e3e30;
    margin: 0;
}

.hours-container {
    background: white;
    border-radius: 8px;
    padding: 0 15px;
}

.hours-tabs {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.hours-tab {
    background: white;
    border: 1px solid #e9ecef;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #363638;
    cursor: pointer;
    transition: all 0.3s ease;
}

.hours-tab.active {
    background: #1d4494;
    color: white;
    border-color: #1d4494;
}

.hours-tab:hover {
    background: #c7d6e7;
    border-color: #1d4494;
}

.hours-schedule {
    display: block;
}

.day-hour-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e9ecef;
    font-size: 14px;
    color: #4e3e30;
}

.day-hour-row:last-child {
    border-bottom: none;
}

.day-hour-row.active {
    font-weight: 600;
    color: #1d4494;
}

/* Expandable Hours Categories */
.hours-category {
    border-bottom: 1px solid #6c757d;
    margin-bottom: 0;
    overflow: hidden;
    background: white;
}

.hours-category:last-child {
    border-bottom: none;
}

.hours-toggle {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 16px;
    font-weight: 500;
    color: #363638;
    transition: all 0.3s ease;
    text-align: left;
}

.hours-toggle:hover {
    color: #1d4494 !important;
    background-color: #fff;
}

.hours-toggle:active {
    background-color: #fff;
}

.hours-toggle:focus {
    color: #363638;
    background-color: #fff;
}

.hours-category.expanded .hours-toggle {
    color: #1d4494;
    padding-bottom: 16px;
}

.hours-toggle .chevron {
    color: #6c757d;
    font-size: 14px;
    transition: transform 0.3s ease;
}

.hours-category.expanded .chevron {
    transform: rotate(180deg);
}

.hours-category .hours-content {
    padding: 0 0 20px 0;
    display: none;
    background: white;
}

.hours-category.expanded .hours-content {
    display: block !important;
}


.location-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: #4e3e30;
    margin: 0 0 16px 0;
}

.location-section .address {
    font-size: 15px;
    color: #363638;
    margin: 0 0 0 15px;
    font-weight: 500;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.address-text {
    display: flex;
    flex-direction: column;
    line-height: 1.4;
}

.location-section .address:hover {
    color: #1d4494;
}

.location-section .address i {
    color: #1d4494;
    font-size: 18px;
}

.location-section .phone {
    font-size: 15px;
    color: #363638;
    margin: 8px 0 0 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.location-section .phone:hover {
    color: #1d4494;
}

.location-section .phone i {
    color: #1d4494;
    font-size: 18px;
}

.location-section .email {
    font-size: 15px;
    color: #363638;
    margin: 8px 0 0 15px;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    transition: color 0.2s ease;
}

.location-section .email:hover {
    color: #1d4494;
}

.location-section .email i {
    color: #1d4494;
    font-size: 18px;
}

/* Services Section */
.services-section {
    text-align: left;
}

.services-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: #4e3e30;
    margin: 0 0 20px 0;
}

.services-section h4 {
    color: #4e3e30;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 24px;
}

.service-item {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #f5f5f5;
    border-radius: 8px;
}

.service-item-no-link {
    padding: 12px;
}

.service-item a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.service-item a:hover {
    background: #c7d6e7;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 68, 148, 0.15);
}

.service-icon {
    width: 30px;
    height: 30px;
    object-fit: contain;
    flex-shrink: 0;
}

.service-item span {
    font-size: 14px;
    font-weight: 600;
    color: #363638;
}


/* Secondary CTA Buttons Below Card */
.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-top: 20px;
}

.cta-btn {
    border: none;
    padding: 14px 28px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
    text-transform: none;
    letter-spacing: 0.5px;
}

.cta-btn.cta-primary {
    background: #1e4494;
    color: white;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(78, 62, 48, 0.3);
}

.cta-btn.cta-primary:hover {
    background: rgba(29, 68, 148, .8);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(78, 62, 48, 0.4);
}

.cta-btn.cta-secondary {
    background: linear-gradient(135deg, #1d4494, #567dba);
    color: white;
    box-shadow: 0 6px 20px rgba(29, 68, 148, 0.4);
}

.cta-btn.cta-secondary:hover {
    background: linear-gradient(135deg, #567dba, #c7d6e7);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 68, 148, 0.5);
}

.cta-btn.cta-tertiary {
    background: linear-gradient(135deg, white, #fff9e3);
    color: #1d4494;
    border: 2px solid #1d4494;
    box-shadow: 0 6px 20px rgba(29, 68, 148, 0.2);
}

.cta-btn.cta-tertiary:hover {
    background: linear-gradient(135deg, #1d4494, #567dba);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(29, 68, 148, 0.4);
}

/* Right Side - Quick Info Card */
.info-sidebar {
    background: rgba(255, 255, 255, 0.95);
    color: #363638;
    padding: 32px;
    border-radius: 16px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.15);
    backdrop-filter: blur(10px);
}

.info-sidebar h3 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 20px;
    color: #1d4494;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #e9ecef;
}

.info-item:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: none;
}

.info-item i {
    color: #1d4494;
    font-size: 18px;
    margin-top: 2px;
    min-width: 20px;
}

.info-content .label {
    font-size: 14px;
    color: #6c757d;
    font-weight: 500;
    display: block;
}

.info-content .value {
    font-size: 16px;
    color: #363638;
    font-weight: 600;
}

.hours-today {
    color: #1d4494;
    font-weight: 700;
}

.services-preview {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.service-tag {
    background: #c7d6e7;
    color: #1d4494;
    padding: 6px 12px;
    border-radius: 16px;
    font-size: 12px;
    font-weight: 600;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-content {
        flex-direction: column;
        align-items: center;
        gap: 40px;
        text-align: center;
    }

    .location-card {
        text-align: center;
        max-width: 90%;
    }

    .rating-section {
        justify-content: center;
    }

    .cta-buttons {
        justify-content: center;
    }

    .location-title {
        font-size: 36px;
    }

    .hero-container {
        padding: 0 20px;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .location-services-wrapper {
        gap: 40px;
        padding: 25px 30px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
}

@media (max-width: 768px) {
    .breadcrumbs-container {
        padding: 0 20px;
    }

    .breadcrumbs {
        font-size: 12px;
        padding: 12px;
    }

    .seo-heading {
        padding: 15px 20px;
    }

    .seo-heading h1 {
        font-size: 16px;
        line-height: 1.2;
    }

    .hero-header {
        padding: 40px 0;
    }

    .hero-container {
        padding: 0 15px;
    }

    .location-title {
        font-size: 28px;
    }

    .location-card {
        padding: 25px 25px;
        margin: 0;
        text-align: left;
        max-width: none;
        position: relative;
        width: 100%;
    }

    .location-card .my-bakery-badge {
        position: absolute;
        top: -12px;
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

    .my-bakery-badge.js-select-bakery:hover {
        transform: translateX(-50%);
    }

    .rating-section {
        justify-content: flex-start;
    }

    .quick-links {
        justify-content: center;
        flex-direction: column;
        gap: 12px;
    }
    
    .quick-links .quick-link {
        background: #1d4494;
        color: white;
        border: none;
        padding: 8px 16px;
        border-radius: 15px;
        font-size: 13px;
        font-weight: 500;
        cursor: pointer;
        transition: all 0.3s ease;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        text-transform: none;
        text-decoration: none;
        flex: 1;
        max-width: none;
    }
    
    .quick-links .quick-link:hover {
        background: #567dba;
        transform: translateY(-1px);
    }

    .quick-links .quick-link:visited {
        color: #fff;
    }

    .brand-name {
        font-size: 14px;
    }

    .cta-btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .location-card .cta-primary {
        width: 100%;
        max-width: none;
    }

    /* Mobile Layout for Location Services */
    .location-services-wrapper {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 20px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
}


/* Flavors Section */
.flavors-section {
    background: white;
    padding: 40px 0;
}

.flavors-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.flavors-heading {
    text-align: center;
    margin-bottom: 30px;
}

.flavors-heading img {
    max-width: 100%;
    height: auto;
    max-height: 80px;
}

.flavors-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 50px;
    margin-bottom: 30px;
}

.flavor-card {
    display: block;
    text-decoration: none;
    transition: all 0.3s ease;
    text-align: center;
}

.flavor-card:hover {
    transform: translateY(-4px);
    text-decoration: none;
}

.flavor-card img {
    width: 150px;
    height: 150px;
    object-fit: cover;
    border-radius: 25%;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 5px;
}

.flavor-card:hover img {
    box-shadow: 0 8px 24px rgba(29, 68, 148, 0.15);
}

.flavor-info h3 {
    font-size: 12px;
    font-weight: 600;
    color: #4e3e30;
    margin: 0;
    line-height: 1.3;
}

.flavor-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: #f5f5f5;
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
    color: #6c757d;
    font-style: italic;
}

.flavor-note i {
    color: #1d4494;
    font-size: 16px;
}

/* Products Section */
.products-section {
    background: #f5f5f5;
    padding: 40px 0;
}

.products-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.products-section h2 {
    font-size: 20px;
    font-weight: 600;
    color: #4e3e30;
    margin: 0 0 30px 0;
    text-align: center;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
}

.product-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 1px solid #e9ecef;
    aspect-ratio: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.product-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(29, 68, 148, 0.15);
    border-color: #1d4494;
}

.product-card img {
    width: 100%;
    max-width: 160px;
    height: auto;
    aspect-ratio: 1;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 auto 15px auto;
    flex-shrink: 0;
}

.product-card h3 {
    font-size: 13px;
    font-weight: 600;
    color: #4e3e30;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.product-card .price {
    font-size: 20px;
    font-weight: 700;
    color: #1d4494;
    margin: 0 0 20px 0;
}

.product-card a {
    text-decoration: none;
}

.add-to-cart {
    background: #1e4494;
    color: white;
    border: none;
    padding: 12px 24px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.add-to-cart:hover {
    background: rgba(29, 68, 148, .8);
    transform: translateY(-2px);
}

.view-all-products {
    background: #1e4494;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0 auto;
    text-decoration: none;
}

.view-all-products:hover {
    background: rgba(29, 68, 148, .8);
    transform: translateY(-2px);
    color: #fff;
    text-decoration: none;
}

.view-all-products:visited {
    color: #fff;
}

/* View More Flavors Text */
.view-more-flavors {
    background: none;
    color: #1d4494;
    border: none;
    padding: 0 0 15px 0;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: none;
    margin: 20px auto 0 auto;
    text-align: center;
    text-decoration: underline;
}

.view-more-flavors:hover {
    color: #567dba;
    text-decoration: none;
    background: none;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .flavors-container,
    .products-container {
        padding: 0 20px;
    }
    
    .flavors-heading img {
        max-height: 60px;
    }
    
    .flavors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }
    
    .flavor-card img {
        width: 120px;
        height: 120px;
    }
    
    /* Hide flavors beyond the first 6 on mobile */
    .flavor-card:nth-child(n+7) {
        display: none;
    }
    
    .flavors-grid.show-all .flavor-card:nth-child(n+7) {
        display: block;
    }
    
    .view-more-flavors {
        display: block;
    }
    
    .flavors-grid.show-all ~ .view-more-flavors {
        display: none;
    }
    
    .products-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .product-card {
        padding: 16px;
        aspect-ratio: unset;
        display: flex;
        flex-direction: row;
        align-items: center;
        gap: 16px;
        text-align: left;
    }

    .product-card a {
        display: flex;
        flex-direction: row;
        align-items: center;
        width: 100%;
    }
    
    .product-card img {
        width: 120px;
        height: 120px;
        margin: 0;
        flex-shrink: 0;
    }
    
    .product-card-content {
        flex: 1;
        display: flex;
        flex-direction: column;
        gap: 8px;
        padding-left: 20px;
    }
    
    .product-card h3 {
        font-size: 13px;
        margin: 0;
    }
    
    .product-card .price {
        font-size: 18px;
        margin: 0;
    }
    
    .add-to-cart {
        width: auto;
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero-header {
        background: url("https://cdn.bfldr.com/Q7QPUAD8/at/phkz33w33zt8k932zqhfq6x/NbC_Strawberries_Cream_Product_Variety_31440.jpg?format=png&crop=8225%2C4305%2Cx31%2Cy743&width=1920&height=1005");
        background-size: contain;
        background-position: center top;
        background-repeat: no-repeat;
        padding: 40px 0;
        min-height: 600px;
        position: relative;
    }

    .hero-container {
        padding: 0 15px;
        position: relative;
        height: 100%;
    }

    .hero-content {
        position: absolute;
        bottom: -290px;
        left: 15px;
        right: 15px;
        width: calc(100% - 30px);
    }
}

/* Bundtastic Rewards Section */
.rewards-section {
    background: #f5f5f5;
    padding: 50px 0;
}

.rewards-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.rewards-content-wide {
    background: linear-gradient(135deg, #1d4494, #2b5aa0);
    color: white;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 400px;
}

.rewards-image-section {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.rewards-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.rewards-text-section {
    flex: 1;
    padding: 32px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}


.rewards-content {
    position: relative;
    z-index: 1;
}

.rewards-logo {
    max-width: 160px;
    height: auto;
    margin-bottom: 16px;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.2));
}

.rewards-tagline {
    font-size: 16px;
    margin-bottom: 20px;
    opacity: 0.95;
    font-weight: 500;
}

.rewards-benefits {
    margin-bottom: 24px;
    display: grid;
    gap: 12px;
}

.benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 500;
    text-align: center;
}

.benefit-icon {
    font-size: 14px;
    min-width: 18px;
    color: rgba(255, 255, 255, 0.9);
}

.app-download {
    display: flex;
    justify-content: space-between;
    width: 315px;
    margin: 20px auto 0px;
}

.app-download .app-text {
    font-size: 14px;
    margin-bottom: 12px;
    opacity: 0.9;
}

@media (max-width: 490px) {
    .app-download {
        width: 100%;
    }
}

.app-download img {
    width: calc(100% - 15px)
}

.download-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid white;
    color: white;
    padding: 14px 28px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.download-btn:hover {
    background: white;
    color: #6c757d;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Desktop responsive for 3-column layout */
@media (min-width: 1024px) {
    .rewards-section {
        padding: 50px 40px;
    }
    
    .rewards-section .rewards-content {
        max-width: calc(33.333% - 20px);
        margin: 0 0 0 0;
    }
}

/* Mobile Responsive for Rewards */
@media (max-width: 768px) {
    .rewards-content-wide {
        flex-direction: column;
        min-height: auto;
    }
    
    .rewards-container {
        padding: 0 20px;
    }
    
    .rewards-image-section {
        display: none;
    }
    
    .rewards-text-section {
        padding: 32px 24px;
    }
    
    .rewards-logo {
        max-width: 140px;
    }
    
    .rewards-tagline {
        font-size: 14px;
    }
    
    .benefit-item {
        font-size: 12px;
    }
    
    .download-btn {
        font-size: 14px;
        padding: 14px 28px;
    }
}

/* Catering Section */
.catering-section {
    background: #f5f5f5;
    padding: 50px 0;
}

.catering-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.catering-content-wide {
    background: #fff9e3;
    color: #4e3e30;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    min-height: 400px;
}

.catering-image-section {
    flex: 0 0 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}

.catering-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.catering-text-section {
    flex: 1;
    padding: 32px 40px;
    text-align: center;
    position: relative;
    z-index: 1;
}

.catering-title {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #4e3e30;
}

.catering-tagline {
    font-size: 16px;
    margin-bottom: 24px;
    opacity: 0.95;
    font-weight: 500;
}

.catering-benefits {
    margin-bottom: 28px;
    display: grid;
    gap: 14px;
}

.catering-benefit-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
}

.catering-benefit-icon {
    font-size: 16px;
    min-width: 20px;
    color: #4e3e30;
}

.catering-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.catering-btn {
    padding: 12px 26px;
    border-radius: 15px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    flex: 1;
    max-width: 270px;
    white-space: nowrap;
    text-decoration: none;
}

.catering-btn-primary {
    background: #1e4494;
    color: white;
}

.catering-btn-primary:hover {
    background: rgba(29, 68, 148, .8);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(78, 62, 48, 0.4);
    color: #fff;
    text-decoration: none;
}

.catering-btn-secondary {
    background: #1e4494;
    color: white;
}

.catering-btn-secondary:hover {
    background: rgba(29, 68, 148, .8);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(78, 62, 48, 0.4);
    color: #fff;
    text-decoration: none;
}

.catering-btn-primary:visited, .catering-btn-secondary:visited {
    color: #fff;
}

/* Mobile Responsive for Catering */
@media (max-width: 768px) {
    .catering-section {
        padding: 20px 0 50px 0;
    }
    
    .catering-content-wide {
        flex-direction: column;
        min-height: auto;
    }
    
    .catering-container {
        padding: 0 20px;
    }
    
    .catering-image-section {
        display: none;
    }
    
    .catering-text-section {
        padding: 32px 24px;
    }
    
    .catering-title {
        font-size: 20px;
    }
    
    .catering-tagline {
        font-size: 14px;
    }
    
    .catering-benefit-item {
        font-size: 13px;
    }
    
    .catering-cta {
        flex-direction: column;
        gap: 12px;
    }
    
    .catering-btn {
        font-size: 14px;
        padding: 12px 26px;
        max-width: none;
    }
}

/* What Are You Celebrating Section */
.occasions-section {
    background: white;
    padding: 50px 0;
}

.occasions-section .section-heading {
    max-width: 1400px;
    margin: 0 auto 40px auto;
    padding: 0 40px;
    font-size: 20px;
    font-weight: 600;
    color: #4e3e30;
    text-align: center;
}

.occasions-grid {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 24px;
    margin-bottom: 40px;
    justify-content: center;
}

.occasion-card {
    background: white;
    border: 1px solid #e9ecef;
    border-radius: 12px;
    padding: 32px 24px;
    text-align: center;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.occasion-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(29, 68, 148, 0.15);
    border-color: #1d4494;
    text-decoration: none;
}

.occasion-card i {
    font-size: 48px;
    color: #1d4494;
    margin-bottom: 16px;
}

.occasion-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: #4e3e30;
    margin: 0 0 8px 0;
}

.occasion-card p {
    font-size: 14px;
    color: #6c757d;
    margin: 0;
    line-height: 1.4;
}

.shop-all-cta-wrapper {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    text-align: center;
}

.shop-all-cta-simple {
    background: #1d4494;
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 15px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}

.shop-all-cta-simple:hover {
    background: #567dba;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(29, 68, 148, 0.3);
    color: #fff;
    text-decoration: none;
}

.shop-all-cta-simple:visited {
    color: #fff;
}

/* Mobile Responsive for Occasions */
@media (max-width: 768px) {
    .occasions-section .section-heading {
        padding: 0 20px;
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .occasions-grid {
        padding: 0 20px;
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 30px;
    }
    
    /* Center the last item when odd number of items */
    .occasions-grid .occasion-card:nth-child(odd):last-child {
        grid-column: 1 / -1;
        width: calc(50% - 8px);
        margin: 0 auto;
    }
    
    .occasion-card {
        padding: 24px 16px;
    }
    
    .occasion-card i {
        font-size: 36px;
        margin-bottom: 12px;
    }
    
    .occasion-card h3 {
        font-size: 16px;
    }
    
    .occasion-card p {
        font-size: 13px;
    }
    
    .shop-all-cta-wrapper {
        padding: 0 20px;
    }
    
    .shop-all-cta-simple {
        font-size: 14px;
        padding: 14px 28px;
    }
    
    .view-all-products {
        font-size: 14px;
        padding: 14px 28px;
    }
}

/* FAQ Section */
.faq-section {
    background: #f5f5f5;
    padding: 50px 0;
}

.faq-section .section-heading {
    max-width: 900px;
    margin: 0 auto 40px auto;
    padding: 0 40px;
    font-size: 20px;
    font-weight: 600;
    color: #4e3e30;
    text-align: center;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 10px 40px 0 40px;
    background: white;
    border-radius: 8px;
}

.faq-category-title {
    font-size: 18px;
    font-weight: 600;
    color: #4e3e30;
    margin: 25px 0 10px 0;
    padding: 0;
    text-decoration: underline;
}

.faq-category-title:first-child {
    margin-top: 20px;
}

.faq-item {
    border-bottom: 1px solid #e9ecef;
    margin-bottom: 0;
    overflow: hidden;
    background: white;
}

.faq-item:last-child {
    border-bottom: none;
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    font-size: 15px;
    font-weight: 600;
    color: #4e3e30;
    text-align: left;
    transition: all 0.3s ease;
}

.faq-question:hover {
    color: #1d4494 !important;
    background: none;
}

.faq-question:active, .faq-question:focus {
    color: initial;
    background: none;
}

.faq-item.active .faq-question {
    color: #4e3e30;
    padding-bottom: 16px;
}

.faq-question span {
    flex: 1;
    padding-right: 16px;
}

.faq-icon {
    color: #6c757d;
    font-size: 14px;
    transition: transform 0.3s ease;
    min-width: 14px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    padding: 0 0 20px 0;
    display: none;
    background: white;
}

.faq-item.active .faq-answer {
    display: block !important;
}

.faq-answer p {
    font-size: 14px;
    color: #4e3e30;
    line-height: 1.6;
    margin: 0;
}

/* About Our Bakery Section - Inline in Services Column */
.about-bakery-inline {
    margin-top: 30px;
    text-align: left;
}

.about-bakery-inline h2 {
    font-size: 20px;
    font-weight: 600;
    color: #4e3e30;
    margin: 0 0 16px 0;
}

.about-bakery-inline p {
    font-size: 14px;
    color: #363638;
    line-height: 1.6;
    margin: 0 0 20px 0;
}

.local-highlights-inline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
    margin-top: 16px;
}

.highlight-item-inline {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f5f5f5;
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    font-size: 12px;
    font-weight: 500;
    color: #363638;
}

.highlight-item-inline i {
    color: #1d4494;
    font-size: 14px;
    min-width: 16px;
    text-align: center;
    flex-shrink: 0;
}

/* Mobile Responsive for About Section Inline */
@media (max-width: 768px) {
    .about-bakery-inline {
        margin-top: 24px;
    }
    
    .about-bakery-inline h2 {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .about-bakery-inline p {
        font-size: 13px;
        margin-bottom: 16px;
    }
    
    .local-highlights-inline {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 8px;
        margin-top: 16px;
    }
    
    .highlight-item-inline {
        padding: 8px 12px;
        font-size: 12px;
        gap: 8px;
        border-radius: 8px;
    }
    
    .highlight-item-inline i {
        font-size: 14px;
        min-width: 16px;
    }
}

/* Mobile Responsive for FAQ */
@media (max-width: 768px) {
    .faq-section .section-heading {
        padding: 0 20px;
        font-size: 20px;
        margin-bottom: 30px;
    }
    
    .faq-container {
        padding: 0 20px;
    }
    
    .faq-question {
        padding: 16px 0;
        font-size: 14px;
    }
    
    .faq-item.active .faq-question {
        padding-bottom: 12px;
    }
    
    .faq-answer {
        padding: 0 0 16px 0;
    }
    
    .faq-answer p {
        font-size: 13px;
    }
}
