/*
 Theme Name:   Bootscore Child
 Description:  Bootscore Child Theme
 Author:       Bootscore
 Author URI:   https://bootscore.me
 Template:     bootscore
 Version:      6.0.1
 Requires at least: 5.0
 Tested up to: 6.6
 Requires PHP: 7.4
 License: MIT License
 License URI: https://github.com/bootscore/bootscore-child/blob/main/LICENSE
 Text Domain:  bootscore
*/

/* 
All style editing is done via /assets/scss/_bootscore_custom.scss
*/

:root {
    --color-lightgray-bg: #f0f0f0;
    --color-white-text: #fff;
    --color-white-bg: #fff;
    --color-orange-text: #e34266;
    --color-orange-bg: #e34266;
    --color-pink-text: #F05765;
    --color-third-button: #FCBCAC;
    --light-grayish-blue-bg: #EDEFF3;
    --light-orange-bg: #e2617d;
    --light-orange-text: #e2617d;
    --hover-third-button-bg: #FFDBD3;
    --color-swiper-arrow: #DADADA;


    --font-weight-thin: 100;
    --font-weight-extra-light: 200;
    --font-weight-light: 300;
    --font-weight-normal: 400;
    --font-weight-medium: 500;
    --font-weight-semibold: 600;
    --font-weight-bold: 700;
    --font-weight-extra-bold: 800;
    --font-weight-black: 900;

    --font-size-xxs: 0.5rem;
    /* +- 8px */
    --font-size-xs: 0.6rem;
    /* +- 9.6px */
    --font-size-s: 0.7rem;
    /* +- 12px */
    --font-size-sm: 0.8rem;
    /* +- 12.8px */
    --font-size-md-sm: 0.9rem;
    /* +- 14px */
    --font-size-base: 1rem;
    /* +- 16px */
    --font-size-md: 1.1rem;
    /* +- 18px */
    --font-size-lg: 1.2rem;
    /* +- 20px */
    --font-size-xl-sm: 1.4rem;
    /* +- 22.4px */
    --font-size-xl: 1.5rem;
    /* +- 24px */
    --font-size-xl-lg: 1.6rem;
    /* +- 25.6px */
    --font-size-xxl: 1.75rem;
    /* +- 28px */
    --font-size-2xl: 1.9rem;
    /* +- 30.4px */
    --font-size-3xl: 2rem;
    /* +- 32px */
    --font-size-4xl: 2.3rem;
    /* +- 36px */
    --font-size-5xl: 2.5rem;
    /* +- 40px */
    --font-size-6xl: 3rem;
    /* +- 48px */
    --font-size-7xl: 3.5rem;
    /* +- 56px */
    --font-size-8xl: 4rem;
    /* +- 64px */
    --font-size-9xl: 4.5rem;
    /* +- 72px */

    --font-size-headline: 39px;
    --font-size-button-text: 17px;
}

/* Animation */

@keyframes scrolling {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-100%);
    }
}

.mobile-flex {
    display: none;
}

.desktop-flex {
    display: flex;
}

/* Default Classes */

.review_swiper .swiper-pagination span:focus,
.btn:focus-visible,
.btn-close:focus,
.collanta_default_focus:focus {
    outline: 1px solid #000000;
    border-radius: 0.2rem;
    border: 1px solid var(--color-third-button);
    box-shadow: none;
    outline-offset: 0;
}

.nav-link:focus-visible {
    outline: 1px solid #000000;
    border-radius: 0.2rem;
    border: 1px solid var(--color-third-button);
    outline-offset: 0;
    box-shadow: none;
}

.default-bg-color {
    background-color: var(--color-lightgray-bg);
}

.default_collanta_wrapper {
    padding-bottom: 4em;
}

.btn-primary {
    color: var(--color-white-text);

    &:hover {
        color: var(--color-orange-text);
        background-color: var(--color-white-bg);
    }
}

.navbar-brand {
    margin-right: 0;
}

.navbar>.container,
.navbar>.container-fluid,
.navbar>.container-sm,
.navbar>.container-md,
.navbar>.container-lg,
.navbar>.container-xl,
.navbar>.container-xxl {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    position: relative;
}

.justify-self-start {
    justify-self: start;
}

.justify-self-center {
    justify-self: center;
}

.justify-self-end {
    justify-self: end;
}

.btn-primary-light {
    background-color: var(--color-white-bg);
    color: var(--color-pink-text);
    transition: all 0.5s ease;
}
.btn-primary-light:hover {
    background-color: var(--color-pink-text);
    color: var(--color-white-bg);
    transition: all 0.5s ease;
}

.btn-width {
    padding: 0.2em 3em;
    width: fit-content;
}

.default_bg_collanta {
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
}

.collanta_image {
    height: auto;
    width: 100%;
    object-fit: cover;
}
a.navbar-brand img {
    max-width: 14rem;
}

/* Default Blocks */

/* Running Image */
.running_image_section {
    padding: 4rem 0 4.5em;
    overflow: hidden;

    .running_image_title {
        font-size: var(--font-size-headline);
        margin-bottom: 2rem;
    }

    .carousel_collanta {
        gap: 20;
        
        > * {
            flex: 0 0 auto;
        }
    }

    .carousel_group-card {
    min-height: 420px;
    padding-right: 20px;
    will-change: transform;
    animation: scrolling 20s linear infinite;
    gap: 20px;
    display: flex;
    align-items: center;
}

    .carousel_card-image {
        min-height: 380px;
        max-height: 380px;
        border-radius: 25px;
        width: 300px;
        min-width: 300px;
        max-width: 300px;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        flex-shrink: 0;
        transition: transform 0.3s ease;
        display: block;
        text-decoration: none;
    }

    .carousel_card-image:hover {
        transform: scale(1.02);
    }
}

/* Seamless scrolling animation */
@keyframes scrolling {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

/* Mobile optimization */
@media (max-width: 768px) {
    .running_image_section {
        padding: 2rem 0 3rem;
        
        .running_image_title {
            margin-bottom: 1.5rem;
            font-size: 1.5rem;
        }

        .carousel_group-card {
            min-height: 280px;
            gap: 15px;
            animation: scrolling 15s linear infinite;
        }

        .carousel_card-image {
            min-height: 250px;
            max-height: 250px;
            width: 200px;
            min-width: 200px;
            max-width: 200px;
            border-radius: 15px;
        }
    }
}

/* Performance optimizations */
.carousel_group-card {
    transform: translateZ(0);
    backface-visibility: hidden;
}

.carousel_card-image {
    transform: translateZ(0);
}



/* Delivery Section */

.delivery-container {
    padding: 2.5rem 0;
    flex-wrap: wrap;
    row-gap: 35px;
    column-gap: 17px;

    .delivery-icon {
        width: 120px;
        height: 127px;
    }

    p {
        margin: 0;
        padding: 0;
    }
}

/* Banner Image */
.banner-image {
    height: 376px;
    background-position: 30%;
}

@media(max-width: 768px) {
    .banner-image {
        height: 437px;
    }
}

/* Swipers */

.swiper {

    &.swiper_triple,
    &.swiper_quad {
        display: flex;
        flex-direction: column;
        align-items: center;

        .swiper-slide a:focus {
            padding: 1px;
            outline: none;
            border: 2px solid #000000;
            border-radius: 0.2rem;
        }
    }
}

.swiper_triple,
.swiper_quad,
.review_swiper {

    .swiper-pagination,
    .swiper-scrollbar.swiper-scrollbar-horizontal {
        position: unset;
        margin-top: 3em;
        width: 50%;
    }
}

.default_offers_section {
    .offers_title {
        font-size: var(--font-size-headline);
        font-weight: var(--font-weight-bold);
        margin-bottom: 10px;
    }

    .offers_subtitle {
        opacity: 0.9;
        margin-bottom: 2.5rem;
    }

    .swiper_triple {
        width: 795px;
    }

    .swiper_quad {
        width: 1058px;
    }

    .swiper_small_image_box {
        width: 245px;
        height: 245px;
    }

    .swiper_big_image_box {
        width: 242px;
        height: 359px;
    }

    .slide_title {
        margin-top: 1.25rem;
        color: #333;
    }
}

@media(max-width: 1440px) {
    .default_offers_section {
        .swiper_quad {
            width: 768px;
        }
    }
}

@media(max-width: 1024px) {
    .default_offers_section {
        .swiper_quad {
            width: 514px;
        }

        .swiper_triple {
            width: 520px;
        }
    }
}

@media(max-width: 767px) {
    .default_offers_section {

        .swiper_triple,
        .swiper_quad,
        .review_swiper {

            .swiper-pagination,
            .swiper-scrollbar.swiper-scrollbar-horizontal {
                width: 100%;
            }
        }

        .default_collanta_wrapper {
            width: 100%;
            padding: 0 2em 4em;
        }

        .swiper_quad {
            width: 325px;
        }

        .swiper_triple {
            width: 325px;

        }

        .swiper_small_image_box {
            width: auto;
            height: 210px;
        }

        .swiper_big_image_box {
            width: 325px;
        }
    }

    .homepage-container .hub_offers_section {
        &.triple-hub {
            padding-top: 1rem;
            padding-bottom: 3rem;
        }
    }
}

@media(max-width: 425px) {

    .default_offers_section {
        .swiper_triple {
            width: 100%;
        }

        .swiper_small_image_box {
            width: 100%;
        }

        .swiper_quad {
            width: 100%;
        }

        .swiper_big_image_box {
            width: 100%;
        }
    }
}

/* Shop Style */

.shop-style {
    padding-bottom: 7rem;

    .default_bg_collanta {
        background-position: bottom;
    }

    .shop-style-item {
        width: 654px;
        height: 621px;
        padding: 3rem;

        .shop-style_title {
            font-size: var(--font-size-headline);
        }
    }
}

@media(max-width: 768px) {
    .shop-style {
        width: 100%;
        flex-wrap: wrap;
        padding-bottom: 2.75rem;

        .shop-style-item {
            height: 53vh;
        }
    }
}

/* Hub Offers Section */

.hub_offers_section {
    padding: 7em 0;
    gap: 0.5rem;

    .hub_section_wrapper {
        max-width: 1355px;
        gap: 0.5rem;
    }
}

.hub_item_image {
    height: 422px;
    padding: 0 3em 3em 3rem;
    border-radius: 12px;
    position: relative;
    transition: all 1s ease;
    width: 441px;

    &::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        z-index: 1;
        border-radius: 12px;
        transition: background-color 0.5s ease;
    }

    &:hover::before {
        background-color: rgba(0, 0, 0, 0.2);
    }

    .hub_item_title {
        font-size: var(--font-size-lg);
        z-index: 2;
        display: none;
        /* Hide the excerpt */
    }

    .btn-primary-light,
    .text-white {
        z-index: 2;
    }

    /* Make the title bigger */
    .text-white:first-child {
        font-size: 1.5rem;
        font-weight: 600;
    }
}

@media(max-width: 1024px) {
    .hub_item_image {
        padding: 1em;
    }
}

@media(max-width: 768px) {
    .hub_offers_section {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 1rem;

        .hub_item_image {
            padding: 1.5em;
            width: 45%;
            height: 250px;

            /* Make text 20% smaller on mobile */
            .text-white:first-child {
                font-size: 1.2rem;
                /* 20% smaller than 1.5rem */
            }

            /* Make button text smaller on mobile */
            .btn-primary-light {
                font-size: 0.9rem;
                padding: 8px 16px;
            }

            /* Hide third item */
            &:nth-child(3) {
                display: none !important;
            }
        }
    }
}

/* Tips Section – desktop & tablet stay the same */

.tips-section-banner {
    min-height: 700px;
    /* Desktop min-height */

    .info-block {
        max-width: 20vw;
        margin-left: auto;
        margin-right: 13vw;
    }

    /* Title styling for all screens */
    .info-title {
        font-size: 2.2rem !important;
        font-weight: 700 !important;
        margin-top: -20px !important;
        margin-bottom: 25px !important;
    }
}

/* Desktop only - black description */
@media (min-width: 769px) {
    .tips-section-banner.desktop-flex {
        .info-description {
            color: #000 !important;
        }
    }
}

@media (max-width: 1024px) {
    .tips-section-banner {
        .info-block {
            max-width: 40%;
        }
    }
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .tips-section-banner {
        min-height: 420px !important;
        /* Mobile min-height */
        justify-content: flex-start !important;
        padding-left: 1rem;
        padding-right: 5%;

        .info-block {
            max-width: 50%;
            margin: 0;
            text-align: left;

            .info-title {
                font-size: 1.4rem !important;
            }

            .btn {
                width: auto;
                padding: 6px 16px;
                white-space: nowrap;
                font-size: 0.95rem;
            }
        }
    }
}

/* Best Sellers Swiper */
.best-sellers-section {
    .offers_title {
        text-align: center;
    }
}

@media(max-width: 768px) {
    .best-sellers-section {
        .offers_title {
            text-align: start;
            width: 75%;
        }
    }
}


/*Membership invite section */
@media (max-width: 768px) {
    .invite-section.mobile-flex {
        min-height: 400px;
        justify-content: flex-end !important;
        align-items: flex-start !important;
        padding-left: 5%;
        padding-right: 1rem;
        padding-top: 10px;

        .invite-info {
            max-width: 45%;
            margin: 0;
            text-align: center;
            height: 100%;
            justify-content: flex-start !important;
        }

        .invite-title {
            margin-top: 40px !important;
            /* More padding from top */
            margin-bottom: 30px !important;
            /* More padding to description */
        }

        .invite-description {
            font-size: 1.3rem !important;
            margin-bottom: 40px !important;
            /* More padding to button */
        }

        .btn {
            width: auto;
            padding: 6px 16px;
            white-space: nowrap;
            font-size: 0.95rem;
            margin-top: auto;
        }
    }
}

/* Popup/Modal Accessories */
.modal-acsses {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    display: none;
}

.modal-acsses-wrapper {
    width: 75%;
    height: 70vh;
    position: relative;
    margin: auto;

    .close-icon {
        position: absolute;
        top: 16px;
        right: 16px;
        cursor: pointer;
        transition: all 0.2s;
    }

    .modal-image-box {
        max-width: 260px;
        width: 100%;
    }

    .modal-text {
        width: 50%;
        align-content: center;
    }

    .btn-primary {
        &:hover {
            border: 1px solid var(--color-orange-bg);
        }
    }
}

@media(max-width: 768px) {
    .modal-acsses-wrapper {
        flex-direction: column-reverse;
        width: 100%;
        height: 90vh;

        .modal-text {
            width: auto;
            height: 50%;
            padding: 1rem;
            overflow-y: scroll;
        }

        .modal-image-box {
            height: 50%;
            width: 100%;
        }
    }
}


/* Footer */
.collanta-footer-wrap {
    background-color: var(--color-orange-text);
}

.collanta-footer {
    padding: 2em 0em 3em;
    font-size: var(--font-size-button-text);
    transition: all 0.3s;
}

.footer__container {
    #footer-menu {
        margin-bottom: 2rem;
        padding-right: 0;
        justify-content: space-between;

        .nav-link {
            padding-left: 1rem;
            color: var(--color-white-text);
            text-align: center;

            &:hover {
                color: var(--color-third-button);
            }
        }
    }

    nf-fields-wrap {
        display: flex;

        .email-container {
            padding-left: 1rem;
        }
    }

    .label-left .nf-field-element {
        width: auto;
    }
}

.footer__subscription {

    #ninja_forms_required_items,
    .nf-field-container {
        margin-bottom: unset;
    }

    .label-left .nf-field-label {
        padding-right: unset;
    }

    .ninja-forms-req-symbol {
        display: none;
    }

    .label-left .field-wrap {
        flex-wrap: unset;
    }

    .email-wrap {
        gap: 1rem;
    }

    .label-left .nf-field-element input[type=email] {
        min-width: 340px;
        height: 31px;
        background: inherit;
        border: 1px solid #fff;
    }

    .label-left .nf-field-element input[type=email]:focus {
        background-color: white;
        outline: 1px solid #000000;
        border-radius: 0.2rem;
        border: 1px solid var(--color-third-button);
    }

    .label-left .nf-field-element input[type=submit] {
        padding: 0 0.75em;
        color: var(--color-orange-text);
        background-color: var(--color-white-bg);
        border: unset;
        cursor: pointer;
        transition: all 0.3s;
        min-height: 31px;

        &:hover {
            background-color: var(--color-third-button);
            color: var(--color-white-text);
        }
    }

    .label-left .nf-field-element input[type=submit]:focus {
        outline: 1px solid #000000;
        border-radius: 0.2rem;
        border: 1px solid var(--color-third-button);
    }
}

.footer__social-link {
    opacity: 0.5;
    transition: all 0.4s;

    &:hover {
        opacity: 0.75;
    }
}

/* Media Footer */

@media(max-width: 1024px) {
    .collanta-footer {
        flex-direction: column;
        align-items: center;
        gap: 1em;
        padding: 2em 0 5em;
    }
}

@media(max-width: 768px) {

    .mobile-flex {
        display: flex;
    }

    .desktop-flex {
        display: none;
    }

    .collanta-footer {
        #footer-menu {
            flex-direction: column;
        }

        .footer__subscription {
            display: none;
        }
    }
}

@media(max-width: 531px) {
    .delivery-container {
        padding: 2.4rem 5rem;
    }
}

@media(max-width: 425px) {
    .delivery-container {
        padding: 2.4rem 1rem;
    }
}

@media (min-width: 576px) {

    .container,
    .container-sm,
    .container-md,
    .container-lg,
    .container-xl {
        max-width: 94%;
    }

    .narrow-container {
        max-width: 1140px;
    }

}

@media (min-width: 992px) {
    .navbar-expand-lg .offcanvas {
        flex-grow: initial;
    }

    .navbar-expand-lg .offcanvas ul {
        padding-right: 0;
    }
}

/* Import Hebrew font */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700&display=swap');

/* Import Hebrew font */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700&display=swap');

/* Import Hebrew font */
@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700&display=swap');

/* Collanta Page Styles */
.collanta-page {
    direction: rtl;
    text-align: right;
}

/* Page title */
.page-header {
    background: #fff;
    padding: 40px 0;
    text-align: center;
    border-bottom: 1px solid #eee;
}

.page-title {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    margin: 0;
    text-align: center !important;
}

/* Simple 50/50 Split Layout */
.text-image-section {
    display: flex;
    min-height: 70vh;
    width: 100%;
    margin: 0;
    padding: 0;
}

.text-image-section:nth-child(even) {
    background-color: #f8f9fa;
}

.text-image-section:nth-child(odd) {
    background-color: #ffffff;
}

/* Text goes right, image goes left */
.text-image-section.right {
    flex-direction: row-reverse;
}

/* Text goes left, image goes right */
.text-image-section.left {
    flex-direction: row;
}

/* Each half takes exactly 50% */
.text-image-section .text-content,
.text-image-section .image-content {
    flex: 0 0 50%;
    width: 50%;
}

/* Text Content */
.text-content {
    padding: 60px 60px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.text-content h2 {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.2;
}

.text-content .content {
    font-size: 1.3rem;
    line-height: 1.6;
    color: #555;
}

.text-content .content p {
    margin-bottom: 15px;
}

/* Image Content */
.image-content {
    padding: 0;
    margin: 0;
    overflow: hidden;
}

.image-content img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
}

/* Full Width Text Section */
.full-width-text {
    padding: 60px 0;
    text-align: center;
    background: #f8f9fa;
}

.full-width-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
}

.full-width-text .content {
    font-size: 1.3rem;
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Logo Section */
.logo-only-section {
    padding: 40px 0;
    background: #fff;
    text-align: center;
}

.brand-logo {
    max-width: 120px;
    height: auto;
    opacity: 0.8;
}

/* Container for regular sections */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
}

/* Mobile */
@media (max-width: 768px) {
    .text-image-section {
        flex-direction: column !important;
        min-height: auto;
    }

    .text-image-section .text-content,
    .text-image-section .image-content {
        flex: 0 0 100%;
        width: 100%;
    }

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

    .text-content h2 {
        font-size: 2rem;
    }

    .image-content {
        height: 50vh;
    }
}






/* 4-Column Footer Layout - Final Alignment */

/* Desktop Styles */
.collanta-footer-columns {
    padding-left: 120px;
    padding-right: 120px;
    direction: rtl;
    padding-top: 40px;
    padding-bottom: 40px;
}

.collanta-footer-columns .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.collanta-footer-columns .row {
    margin-left: -5px;
    margin-right: -5px;
}

.footer-column {
    padding-left: 5px;
    padding-right: 5px;
}

.footer-column-title {
    margin-bottom: 15px;
    text-align: right;
    color: inherit;
}

.footer-menu-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: right;
}

.footer-menu-list li {
    margin-bottom: 5px;
}

.footer-menu-list a {
    color: inherit;
    text-decoration: none;
}

.footer-menu-list a:hover {
    font-weight: 600;
    color: inherit;
    text-decoration: none;
}

.contact-item a:hover {
    font-weight: 600;
    color: inherit;
    text-decoration: none;
}

/* Contact Info RTL */
.contact-info {
    text-align: right;
}

.contact-item {
    margin-bottom: 8px;
    text-align: right;
    direction: rtl;
}

.contact-item a {
    color: inherit;
    text-decoration: underline;
    display: inline;
}

/* Contact Icons */
.contact-icon {
    margin-left: 8px;
    font-size: 16px;
    color: inherit;
    vertical-align: middle;
}

.contact-hours {
    margin-top: 15px;
    text-align: right;
    color: inherit;
}

/* Collapsible Menu - Hidden on Desktop */
.collapsible-toggle {
    display: none;
}

/* Separator Line */
.footer-separator {
    padding: 0;
    padding-left: 120px;
    padding-right: 120px;
}

.footer-separator .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.footer-line {
    border: none;
    border-top: 1px solid #ddd;
    margin: 20px 0;
    opacity: 0.5;
}

/* Footer Bottom */
.footer-bottom {
    padding: 15px 0;
    padding-left: 120px;
    padding-right: 120px;
}

.footer-bottom .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

.footer__social-media {
    direction: ltr;
}

.footer__social-link {
    color: inherit;
    font-size: 24px;
    transition: opacity 0.3s ease;
}

.footer__social-link:hover {
    opacity: 0.7;
}

.copyright-text {
    color: inherit;
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {

    /* Mobile Footer Columns */
    .collanta-footer-columns {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }

    .collanta-footer-columns .row {
        margin-left: 0;
        margin-right: 0;
        flex-direction: column;
    }

    .footer-column {
        padding: 0;
        margin-bottom: 0;
        width: 100%;
        border-bottom: 1px solid rgba(255, 255, 255, 0.2);
        padding-bottom: 20px;
        margin-bottom: 20px;
    }

    .footer-column:last-child {
        border-bottom: none;
        margin-bottom: 30px;
    }

    .footer-column-title {
        text-align: center;
        margin-bottom: 15px;
        font-size: 18px;
        font-weight: bold;
        position: relative;
        cursor: pointer;
        color: inherit;
    }

    .footer-menu-list {
        text-align: center;
    }

    .footer-menu-list li {
        margin-bottom: 8px;
    }

    /* Collapsible Toggle - Show on Mobile */
    .collapsible-toggle {
        display: inline-block;
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 24px;
        height: 24px;
        background: transparent;
        border: 1px solid rgba(255, 255, 255, 0.3);
        border-radius: 50%;
        color: inherit;
        font-size: 18px;
        font-weight: bold;
        cursor: pointer;
        transition: transform 0.3s ease;
        line-height: 1;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .collapsible-toggle.expanded {
        transform: translateY(-50%) rotate(45deg);
    }

    /* Collapsible Menu Functionality */
    .footer-column:not(.contact-column) .footer-menu-list {
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }

    .footer-column:not(.contact-column) .footer-menu-list.expanded {
        max-height: 300px;
    }

    /* Contact Info Mobile */
    .contact-info {
        text-align: center;
    }

    .contact-item {
        text-align: center;
        margin-bottom: 10px;
    }

    .contact-hours {
        text-align: center;
        margin-top: 10px;
    }

    /* Mobile Separator */
    .footer-separator {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Mobile Footer Bottom - Icons ABOVE Copyright */
    .footer-bottom {
        padding-left: 20px;
        padding-right: 20px;
        text-align: center;
    }

    .footer-bottom .container {
        text-align: center;
        display: flex;
        flex-direction: column;
    }

    .footer__social-media {
        justify-content: center;
        margin-bottom: 15px;
        order: 1;
        /* Icons first */
    }

    .copyright-text {
        text-align: center;
        line-height: 1.4;
        order: 2;
        /* Copyright second */
    }
}


/* Fix contact column alignment */
.footer-column.contact-column .contact-info {
    text-align: right;
    padding-right: 0;
}

.footer-column.contact-column .contact-item {
    text-align: right;
    justify-content: flex-end;
}

.footer-column.contact-column .contact-hours {
    text-align: right;
}

/* For mobile - keep centered */
@media (max-width: 768px) {

    .footer-column.contact-column .contact-info,
    .footer-column.contact-column .contact-item,
    .footer-column.contact-column .contact-hours {
        text-align: center;
        justify-content: center;
    }
}

/* Footer Background - Gray like icons */
.collanta-footer-columns,
.footer-separator,
.footer-bottom {
    background-color: #f5f5f5;
    /* Light gray background */
}

/* Delivery icons - Off white */
.delivery-container {
    background-color: #fafafa !important;
    /* Off white background */
}

/* Desktop - Ensure columns match separator width exactly */
@media (min-width: 769px) {
    .footer-separator {
        padding-left: 80px !important;
        padding-right: 80px !important;
    }

    .footer-bottom {
        padding-left: 80px !important;
        padding-right: 80px !important;
    }

    .collanta-footer-columns {
        padding-left: 80px !important;
        padding-right: 80px !important;
    }
}

/* Add separator between delivery banner and newsletter */
.delivery-banner {
    border-bottom: 2px solid #ddd;
    margin-bottom: 0;
}

.newsletter-section {
    padding-top: 30px;
    padding-bottom: 30px;
}

/* Make main separator darker and thicker */
.footer-line {
    border: none;
    border-top: 2px solid #ccc;
    /* Thicker and darker */
    margin: 20px 0;
    opacity: 0.8;
    /* More visible */
}

/**** header adjustments *****/

.navbar .btn.search-mobile-only {
    display: none;
}

@media(max-width: 425px) {

    a.navbar-brand img {
        max-width: 96%;
    }

}

@media(max-width: 991px) {

    .navbar .btn.search-mobile-only {
        display: flex;
    }

    .navbar .btn.search-desktop-only {
        display: none;
    }
}

/*Remove points and rewards default info messages*/

.woocommerce-info:empty,
.woocommerce-info:not(:has(*)):not(:empty) {
    display: none !important;
}

#spinner_price{
    display: none !important;
}


/* product page */

  .product-short-description {
    margin-top: 1.5em;
  }


/* Hide original tabs */
.woocommerce-tabs .wc-tabs {
  display: none;
}

/* Accordion header */
.accordion-tab-title {
  cursor: pointer;
  width: 100%;
  text-align: right;
  font-weight: bold;
  font-size: 1.25rem;
  padding: 1.5rem 3rem 1.5rem 2rem;
  background: #fff;
  border: 1px solid #eee;
  border-bottom: none;
  position: relative;
  transition: background 0.2s;
}
.accordion-tab-title:last-of-type {
  border-bottom: 1px solid #eee;
}
.accordion-tab-title::before {
  content: '+';
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.5rem;
  color: #aaa;
  transition: color 0.2s, content 0.2s;
}
.accordion-tab-title.active::before {
  content: '−';
  color: #222;
}

/* Tab content */
.woocommerce-tabs .panel {
  display: none;
  border: 1px solid #eee;
  border-top: none;
  padding: 1.5rem 2rem;
  background: #fff;
  font-size: 1.15rem;
  color: #222;
}
.woocommerce-tabs .panel.active {
  display: block;
}


