/* Mobile Styles (Base) */
.swiper.custom-slider-container {
    width: 100%;
    height: 700px;
    overflow: hidden;
    position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
    transform: scale(1)!important;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
    transform: scale(1)!important;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
    transform: scale(1)!important;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
    transform: scale(1)!important;
}
span.swiper-pagination-bullet.swiper-pagination-bullet-active-prev-prev {
    background: transparent !important;
}

.swiper-pagination.swiper-pagination-clickable.swiper-pagination-bullets.swiper-pagination-horizontal.swiper-pagination-bullets-dynamic {
    width: 100px;
    transform: translate(-50%, -30px);
}
.swiper-pagination-bullet-active {
     width: 17px!important;
    height: 17px!important;
     color: #fff!important;
     border: 1px solid black;
}
.swiper-pagination-bullet {
    width: 17px!important;
    height: 17px!important;
    background: white !important;
    border: 1px solid gray;
}

.swiper-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
}

.swiper-slide.item {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

/* Overlay */
.slider-overlay {
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

/* Content Box */
.slider-content-box {
    position: absolute;
    text-align: center;
    color: black;
    z-index: 2;
    max-width: 90%;
    padding: 20px;
    background: white;
    border-radius: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
}

.brand-subtitle {
    display: block;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 10px;
    opacity: 0.9;
    color: var(--awb-custom_color_1);
    text-align: left;
}

.main-slider-title {
    font-size: 20px;
    font-weight: 800;
    line-height: 1.2!important;
    color: #1a1a1a;
    margin-bottom: 20px;
    text-align: left;
}
.swiper-pagination-bullet {
      width: 20px;
      height: 20px;
      text-align: center;
      line-height: 20px;
      font-size: 12px;
      color: #000;
      opacity: 1;
      background: rgba(0, 0, 0, 0.2);
    }

.swiper-pagination-bullet-active {
    color: #fff;
    background: #007aff;
}

.slider-description {
    font-size: 12px;
    line-height: 1.6;
    color: #4a4a4a;
    margin-bottom: 30px;
    margin: 10px 0;
    text-align: left;
}

/* Action Button */
.slider-action {
    margin-top: 15px;
}

.slider-action .cta-link {
    color: var(--button_accent_color);
    text-decoration: none;
    font-weight: 700;
    font-size: 11px;
    border-bottom: 2px solid transparent;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    background: var(--button_gradient_top_color);
    padding: 8px 16px;
    border-radius: 10px;
}

.slider-action .cta-link:hover {
    color: #007bb5;
    background: #f0f0f0;
    transform: translateY(-2px);
}

.arrow-icon {
    margin-left: 8px;
    display: inline-block;
    transition: transform 0.3s ease;
}

.slider-action .cta-link:hover .arrow-icon {
    transform: translateX(4px);
}

/* Swiper Navigation */
.swiper-pagination {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background 0.3s ease;
}

.swiper-pagination-bullet-active {
    background: #fff;
}

.swiper-button-next,
.swiper-button-prev {
    position: relative;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* .swiper-button-prev {
    left: 10px;
}

.swiper-button-next {
    right: 10px;
} */
 .swiper-pagination-bullet-active {
    background: black;
    width: 10px;
    height: 10px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    /* content: ''; */
    position: absolute;
    font-size: 20px !important; 
    font-weight: bold;
    color: white; /* Màu của mũi tên */
}

/* Tablet Styles */
@media (min-width: 481px) {
    .swiper.custom-slider-container {
        height: 400px;
    }

    .slider-overlay {
        background: rgba(0, 0, 0, 0.5);
    }

    .slider-content-box {
        max-width: 90%;
        height: 300px;
    }

    .main-slider-title {
        font-size: 28px;
    }

    .brand-subtitle {
        font-size: 12px;
    }

    .slider-description {
        font-size: 13px;
    }

    .slider-action {
        padding: 20px 24px;
        font-size: 12px;
    }

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

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

/* Medium Desktop Styles */
@media (min-width: 769px) {
    .swiper.custom-slider-container {
        height: 700px;
    }

    .slider-overlay {
        background: white;
    }

    .slider-content-box {
        width: 400px;
        height: auto;
    }

    .main-slider-title {
        font-size: 36px;
    }

    .brand-subtitle {
        font-size: 12px;
    }

    .slider-description {
        font-size: 14px;
    }

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

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

/* Large Desktop Styles */
@media (min-width: 1025px) {
    .swiper.custom-slider-container {
        height: 600px;
    }

    .slider-overlay {
        background: white;
    }

    .slider-content-box {
        max-width: 600px;
        height: auto;
        left: 100px;
        transform: none;
    }

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

    .main-slider-title {
        font-size: 14px;
    }

    .slider-description {
        font-size: 16px;
        margin-bottom: 30px;
    }

    .slider-action {
        margin-top: 30px;
    }

    .slider-action .cta-link {
        font-size: 15px;
        padding: 10px 24px;
    }

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

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