/* Wrapper section */
.gla-banner-section {
    position: relative;
    overflow: hidden;
    padding: 60px 0;
    background-color: #000000;
    background-image: url('https://georgelafriedchicken.com/wp-content/themes/fodis/assets/img/bannerBG1_1.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Slider structure */
.gla-product-slider {
    position: relative;
}

/* Slide layout */
.gla-slide-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 3rem;
    min-height: 420px;
}

/* Text area */
.gla-slide-text {
    flex: 1 1 50%;
    color: #ffffff;
    padding-left: 120px;
    padding-right: 40px;
}

.gla-subtitle {
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 10px;
    color: #ffc400;
}

.gla-title {
    font-size: 38px;
    line-height: 1.1;
    margin-bottom: 15px;
    font-weight: 800;
    color: #ffffff;
}

.gla-description {
    font-size: 16px;
    line-height: 1.5;
    margin-bottom: 24px;
    color: #ffffff;
}

.gla-theme-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 8px;
    padding: 12px 26px;
    background-color: #ffc400;
    color: #111111;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 999px;
    text-decoration: none;
    border: 2px solid #ffc400;
    transition: all 0.2s ease;
}

.gla-theme-btn:hover {
    background-color: transparent;
    color: #ffc400;
}

.gla-theme-btn .gla-btn-icon {
    display: inline-block;
}

/* Image area */
.gla-slide-image {
    flex: 1 1 50%;
    text-align: right;
    padding-right: 120px;
    padding-left: 40px;
}

.gla-slide-image img {
    max-width: 100%;
    height: auto;
    display: inline-block;
}

/* Navigation arrows */
.gla-slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 46px;
    height: 46px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.35);
    cursor: pointer;
    z-index: 5;
}

.gla-slider-prev {
    left: 20px;
}

.gla-slider-next {
    right: 20px;
}

/* Simple arrow indicators using pseudo-elements */
.gla-slider-prev::before,
.gla-slider-next::before {
    content: '';
    border-style: solid;
    border-width: 7px 9px 7px 0;
    border-color: transparent #ffffff transparent transparent;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
}

.gla-slider-next::before {
    border-width: 7px 0 7px 9px;
    border-color: transparent transparent transparent #ffffff;
    transform: translate(-60%, -50%);
}

/* Pagination bullets centered */
.gla-product-slider .swiper-pagination {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    text-align: center;
}

.gla-product-slider .swiper-pagination-bullet {
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
}

.gla-product-slider .swiper-pagination-bullet-active {
    background: #ffc400;
}

/* RESPONSIVE - VERY IMPORTANT PART FOR MOBILE IMAGES */
@media (max-width: 991.98px) {

    .gla-banner-section {
        padding: 40px 0 70px;
    }

    .gla-slide-inner {
        flex-direction: column; /* stack vertically */
        text-align: center;
        min-height: auto;
    }

    .gla-slide-text {
        order: 1;              /* text first */
        padding-left: 20px;
        padding-right: 20px;
    }

    .gla-slide-image {
        order: 2;              /* image ALWAYS under the text on mobile */
        text-align: center;
        margin-top: 20px;
        padding-right: 0;
        padding-left: 0;
    }

    .gla-slide-image img {
        max-width: 80%;
    }

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

    .gla-description {
        font-size: 15px;
    }

    .gla-slider-nav {
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 575.98px) {
    .gla-slide-image img {
        max-width: 90%;
    }
}
