.header-image-container {
    margin-top: 5rem;
    width: 100%;
    height: 90vh;
    position: relative;
    overflow: hidden;
}

/* Global Container Styles */
.franchising-content {
    width: 100%;
    margin: 0 auto;
}

/* About Section Content */
.content.about-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding: 80px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .content.about-section {
        grid-template-columns: 1fr;
        gap: 40px;
        padding: 60px 20px;
    }
}

.inclusions {
    position: relative;
    overflow: hidden;
    width: 100%;
    min-height: 600px;
    padding: 80px 0;
}

/* Make the image act as a background */
.store-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 0;

}

.inclusion-details {
    padding: 5%;
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
}

/* Semi-transparent overlay */
.inclusion-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

/* Content above overlay */
.inclusion-details > * {
    position: relative;
    z-index: 2;
}

.section {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.inclusions ul {
    list-style: disc;
    padding-left: 1.5rem;
    margin: 0;
}

/* Two column layout for lists */
.two-column-list {
    display: grid;
    margin-left: 0;
    padding-left: 1.5rem;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    width: 100%;
}

/* Mobile responsive */
@media (max-width: 767px) {
    .inclusions {
        min-height: auto;
        padding: 60px 0;
    }
    
    .inclusion-details {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem 1rem;
    }
    
    .two-column-list {
        margin: 0;
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .title-text {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    .store-background{
        width: 100%;
        height: 100%;
    }
    .header-image-container {
    margin-top: 5rem;
    width: 100%;    
    height: clamp(30vh, 30vh, 100vh);
    position: relative;
    overflow: hidden;
}

    
}
.content-text {
    padding: 20px;
}

.content-text .title {
    font-size: 2.5rem;
    color: var(--calle-co-theme);
    margin-bottom: 30px;
    line-height: 1.2;
}

.content-text p {
    font-size: 1rem;
    line-height: 1.8;
    color: #333;
    margin-bottom: 20px;
    text-align: justify;
}

.content-text {
    color: var(--calle-co-theme);
    font-weight: 600;
}

.calleco-highlight {
    display: block;
    font-size: 1.2rem;
    color: var(--calle-co-theme);
    margin-top: 30px;
    text-align: center;
    font-style: italic;
}

.content-image {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.content-image img {
    width: 100%;
    max-width: 900px;
    max-height: 500px;
    height: auto;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
    object-fit: cover;
    transition: transform 0.3s ease;
}

.content-image img:hover {
    transform: scale(1.05);
}

/* Menu Section */
.menu-section {
    width: 100%;
    padding: 40px;
    background: #191919;
}

.menu-title {
    text-align: center;
    font-size: 3rem;
    color: var(--calle-co-theme);
    margin-bottom: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Menu Dropdown (Mobile) */
.menu-dropdown {
    display: block;
    width: 100%;
    max-width: 400px;
    margin: 0 auto 40px;
    padding: 15px 20px;
    font-size: 1.1rem;
    border: 2px solid var(--calle-co-theme);
    border-radius: 10px;
    background: transparent;
    color: #fff;
    cursor: pointer;
    font-weight: 500;
    transition: all 0.3s ease;
}

.menu-dropdown:focus {
    outline: none;
    border-color: var(--calle-co-theme);
    box-shadow: 0 0 0 3px rgba(36, 98, 61, 0.2);
}

/* Menu Content Wrapper */
.menu-content-wrapper {
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Menu Sidebar (Desktop - Horizontal) */
.menu-sidebar {
    display: none;
}

@media (min-width: 1024px) {
    .menu-dropdown {
        display: none;
    }

    .menu-content-wrapper {
        display: flex;
        flex-direction: column;
        gap: 40px;
    }

    .menu-sidebar {
        display: flex;
        color: var(--white);
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 15px;
        border-radius: 15px;
        padding: 25px 30px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
        margin-bottom: 20px;
    }

    .category-link {
        display: inline-block;
        color: var(--white);
        text-decoration: none;
        padding: 12px 24px;
        border-radius: 25px;
        transition: all 0.3s ease;
        font-weight: 500;
        font-size: 1.05rem;
        white-space: nowrap;
    }

    .category-link:hover {
        background: rgba(36, 98, 61, 0.1);
        color: var(--calle-co-theme);
        transform: translateY(-2px);
    }

    .category-link.active {
        background: var(--calle-co-theme);
        color: white;
        font-weight: 600;
        box-shadow: 0 4px 15px rgba(36, 98, 61, 0.3);
    }
}

/* Carousel Container */
.carousel-container {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 40px 0;
}

.carousel-track {
    display: flex;
    gap: 30px;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-left: calc(50% - 200px);
    padding-right: calc(50% - 200px);
    padding-top: 20px;
    padding-bottom: 20px;
    align-items: center;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    touch-action: pan-x;
}

/* Better iOS scrolling */
@media (max-width: 768px) {
    .carousel-track {
        -webkit-overflow-scrolling: touch;
        scroll-behavior: auto;
    }
}

.carousel-track::-webkit-scrollbar {
    display: none;
}

.carousel-track:active {
    cursor: grabbing;
}

.carousel-item {
    flex: 0 0 min(90vw, 400px);
    scroll-snap-align: center;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    transform: scale(0.85);
    opacity: 0.6;
    cursor: pointer;
    position: relative;
    will-change: transform, opacity;
}

/* Blur only on desktop for smooth experience */
@media (min-width: 769px) {
    .carousel-item {
        filter: blur(3px);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    filter 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                    opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    }

    .carousel-item.active {
        filter: blur(0);
    }
}

.carousel-item:hover:not(.active){
    transform: scale(0.90);
    opacity: 0.75;
}

.carousel-item.active {
    transform: scale(1);
    opacity: 1;
    z-index: 2;
    cursor: default;
}

/* Faster transitions when dragging */
.carousel-track.is-dragging .carousel-item {
    transition: transform 0.2s ease-out,
                opacity 0.2s ease-out,
                filter 0.2s ease-out;
}

.carousel-item.hidden {
    display: none;
}

.product-card {
    background: linear-gradient(
        135deg,
        #020202 0%,
        #0a3d2a 25%,
        var(--calle-co-theme) 50%,
        #3d8f5f 75%,
        #020202 100%
    );
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.25);
    text-align: center;
    height: 100%;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    pointer-events: none;
}

.carousel-item.active .product-card {
    box-shadow: 0 20px 60px rgba(36, 98, 61, 0.4);
}

.product-card span {
    display: block;
    overflow: hidden;
    border-radius: 15px;
    margin-bottom: 20px;
    height: 300px;
    background: transparent;
}

.product-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
    will-change: transform;
}

.carousel-item:hover:not(.active) .product-card img {
    transform: scale(1.05);
}

.carousel-item.active .product-card img {
    transform: scale(1.1);
}

.subtitle-text {
    font-size: 1.4rem;
    color: #ffffff;
    font-weight: 600;
    margin: 0;
    line-height: 1.4;
}

/* Navigation hint for users */
.carousel-container::before {
    content: 'Click or swipe to browse';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    z-index: 1;
    pointer-events: none;
    animation: fadeInOut 3s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% { opacity: 0; }
    50% { opacity: 1; }
}

/* Hide hint after first interaction */
.carousel-container.interacted::before {
    display: none;
}

/* Franchise Packages Section */
.franchise-packages-calle,
.franchise-packages-skoop,
.franchise-packages-wapol {
    background: var(--white);
    padding: 100px 40px;
}

.franchise-packages-calle h1,
.franchise-packages-skoop h1,
.franchise-packages-wapol h1 {
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin: 0 0 60px 0;
    text-align: center;
}

/* Main Grid Container */
.packages-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
}

/* Slider Items - Horizontal row at top */
.slider-item-1 {
    grid-area: 1 / 1 / 2 / 2;
}

.slider-item-2 {
    grid-area: 1 / 2 / 2 / 3;
}

.slider-item-3 {
    grid-area: 1 / 3 / 2 / 4;
}

/* Package Details - Full width at bottom */
.package-details {
    grid-area: 2 / 1 / 3 / 4;
    border-radius: 20px;
    padding: 50px;
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* Main heading */
.package-details h2 {
    font-size: 2.5rem;
    font-weight: 700;
    text-align: center;
    margin: 0 0 20px 0;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Container for the three package info items */
.package-details-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    width: 100%;
    align-items: start;
}

/* Individual package info cards */
.package-info {
    display: flex;
    flex-direction: column;
    gap: 15px;
    height: 100%;
}

.package-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0;
    line-height: 1.3;
    min-height: 2.6rem;
    display: flex;
    align-items: center;
}

.package-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.package-info ul li {
    padding-left: 25px;
    font-size: 1rem;
    color: var(--white);
    position: relative;
    line-height: 1.6;
}

.package-info ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #020202;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1;
}

/* Tablet screens (768px - 1024px) */
@media (max-width: 1024px) {
    .package-details {
        padding: 40px 30px;
    }

    .package-details h2 {
        font-size: 2rem;
        margin-bottom: 15px;
    }

    .package-details-row {
        gap: 30px;
    }

    .package-info h3 {
        font-size: 1.2rem;
        min-height: auto;
    }

    .package-info ul li {
        font-size: 0.95rem;
    }
}

/* Mobile screens (max 768px) */
@media (max-width: 768px) {
    .package-details {
        padding: 40px 25px;
        gap: 25px;
    }

    .package-details h2 {
        font-size: 1.8rem;
        margin-bottom: 10px;
        letter-spacing: 1px;
    }

    .package-details-row {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .package-info {
        gap: 12px;
    }

    .package-info h3 {
        font-size: 1.3rem;
        min-height: auto;
        padding-bottom: 5px;
        border-bottom: 2px solid rgba(255, 255, 255, 0.2);
    }

    .package-info ul {
        gap: 10px;
    }

    .package-info ul li {
        font-size: 0.95rem;
        padding-left: 28px;
    }

    .package-info ul li::before {
        font-size: 1.4rem;
    }
}

/* Small mobile screens (max 480px) */
@media (max-width: 480px) {
    .package-details {
        padding: 30px 20px;
        gap: 20px;
    }

    .package-details h2 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }

    .package-details-row {
        gap: 30px;
    }

    .package-info h3 {
        font-size: 1.15rem;
    }

    .package-info ul li {
        font-size: 0.9rem;
        padding-left: 25px;
    }

    .package-info ul li::before {
        font-size: 1.3rem;
    }
}

/* Slider Styling */
.slider-item {
    display: flex;
    flex-direction: column;
    gap: 10px;
    overflow: hidden;
}

.slider-item h2 {
    font-size: 1.1rem;
    font-weight: 700;
    text-align: center;
    margin: 0;
    text-transform: uppercase;
    flex-shrink: 0;
}

.swiper-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
    border-radius: 12px;
}

.swiper-wrapper {
    display: flex;
    transition: transform 0.4s ease-in-out;
    height: 100%;
}

.swiper-slide {
    min-width: 100%;
    width: 100%;
    height: 100%;
    flex-shrink: 0;
    object-fit: cover;
    display: block;
}

.swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
    background: white;
    transform: translateY(-50%) scale(1.1);
}

.swiper-button-prev::after,
.swiper-button-next::after {
    font-size: 18px;
    font-weight: bold;
    color: #333;
}

.swiper-button-prev {
    left: 8px;
}

.swiper-button-prev::after {
    content: '‹';
}

.swiper-button-next {
    right: 8px;
}

.swiper-button-next::after {
    content: '›';
}

.swiper-pagination {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    display: flex;
    justify-content: center;
    gap: 6px;
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.swiper-pagination-bullet:hover {
    background: rgba(255, 255, 255, 0.9);
}

.swiper-pagination-bullet.active {
    background: white;
    width: 24px;
    border-radius: 4px;
}

/* Package Info */
.package-info {
    margin-bottom: 0;
    flex: 1;
}

.package-info h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin: 0 0 12px 0;
}

.package-info ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.package-info ul li {
    padding: 6px 0 6px 25px;
    font-size: 1rem;
    color: var(--white);
    position: relative;
    line-height: 1.6;
}

.package-info ul li::before {
    position: absolute;
    left: 0;
    color: #f39c12;
    font-size: 1.5rem;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .packages-grid {
        grid-template-columns: repeat(3, 1fr);
        grid-template-rows: auto auto;
        gap: 20px;
    }

    .slider-item-1 {
        grid-area: 1 / 1 / 2 / 2;
    }

    .slider-item-2 {
        grid-area: 1 / 2 / 2 / 3;
    }

    .slider-item-3 {
        grid-area: 1 / 3 / 2 / 4;
    }

    .package-details {
        grid-area: 2 / 1 / 3 / 4;
        grid-template-columns: 1fr 1fr 1fr;
        padding: 40px;
    }

    .swiper-slider {
        height: 350px;
    }
}

@media (max-width: 768px) {
    .franchise-packages-calle,
    .franchise-packages-skoop,
    .franchise-packages-wapol {
        padding: 60px 20px;
    }

    .franchise-packages-calle h1,
    .franchise-packages-skoop h1,
    .franchise-packages-wapol h1 {
        font-size: 2rem;
        margin-bottom: 40px;
        letter-spacing: 2px;
    }

    .packages-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 30px;
    }

    .slider-item-1,
    .slider-item-2,
    .slider-item-3,
    .package-details {
        grid-area: auto;
    }

    .slider-item h2 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .swiper-slider {
        height: 300px;
    }

    .package-details {
        grid-template-columns: 1fr;
        padding: 40px 25px;
        gap: 30px;
    }
    
    .package-details h2 {
        grid-column: 1;
        font-size: 2rem;
        margin-bottom: 0;
    }

    .package-info {
        margin-bottom: 20px;
    }

    .package-info h3 {
        font-size: 1.2rem;
        margin-bottom: 10px;
    }

    .package-info ul li {
        font-size: 0.95rem;
        padding: 5px 0 5px 25px;
    }
}

@media (max-width: 480px) {
    .franchise-packages-calle,
    .franchise-packages-skoop,
    .franchise-packages-wapol {
        padding: 40px 15px;
    }

    .franchise-packages-calle h1,
    .franchise-packages-skoop h1,
    .franchise-packages-wapol h1 {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .packages-grid {
        gap: 25px;
    }

    .slider-item h2 {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .swiper-slider {
        height: 250px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        width: 30px;
        height: 30px;
    }

    .swiper-button-prev::after,
    .swiper-button-next::after {
        font-size: 16px;
    }

    .package-details {
        padding: 30px 20px;
    }

    .package-details h2 {
        font-size: 1.8rem;
        margin-bottom: 0;
    }

    .package-info {
        margin-bottom: 18px;
    }

    .package-info h3 {
        font-size: 1.1rem;
    }

    .package-info ul li {
        font-size: 0.9rem;
        padding: 4px 0 4px 22px;
    }

    .package-info ul li::before {
        font-size: 1.3rem;
    }
}

/* Franchise Benefits Section - Compact */
.inclusion-details-compact {
    padding: 60px 5%;
    position: relative;
    display: flex;
    gap: 60px;
    z-index: 1;
    max-width: 1400px;
    margin: 0 auto;
    align-items: flex-start;
}

.franchise-image-container {
    flex-shrink: 0;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.franchise-kiosk-image {
    width: 280px;
    height: auto;
    object-fit: contain;
}

.franchise-benefits-grid {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px 40px;
}

.benefit-item {
    text-align: center;
}

.benefit-item h3 {
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 8px;
    line-height: 1.3;
}

.benefit-item p {
    font-size: 0.85rem;
    line-height: 1.5;
}

/* Responsive */
@media (max-width: 1024px) {
    .inclusion-details-compact {
        gap: 40px;
    }
    
    .franchise-kiosk-image {
        width: 220px;
    }
    
    .franchise-benefits-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px 30px;
    }
}

@media (max-width: 767px) {
    .inclusion-details-compact {
        flex-direction: column;
        padding: 40px 5%;
        gap: 30px;
        align-items: center;
    }
    
    .franchise-kiosk-image {
        width: 200px;
    }
    
    .franchise-benefits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}