/* ==========================================
   ACMS Frontend Styles
   ========================================== */

.acms-featured-stores ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.acms-store-item {
    margin: 0;
    padding: 0;
}

.acms-store-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    text-decoration: none;
}

.acms-store-image {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.acms-store-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
    display: block;
}

.acms-store-name {
    font-size: 15px;
    font-weight: 500;
    line-height: 1.3;
}


/* =====================================================
   ACMS Single Store
=====================================================*/

.acms-store-single {
    max-width: 1200px;
    margin: 0 auto;
}

/*=====================================================
Banner Slider
=====================================================*/

.acms-store-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 18px;
    margin-bottom: 35px;
}

.acms-store-banner .swiper {
    width: 100%;
}

.acms-store-banner .swiper-wrapper {
    align-items: center;
}

.acms-store-banner .swiper-slide {
    overflow: hidden;
}

.acms-store-banner img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
    border-radius: 18px;
}

/* Desktop / Mobile Visibility */

.acms-desktop-banner {
    display: block;
}

.acms-mobile-banner {
    display: none;
}

/*=====================================================
Visit Store Button
=====================================================*/

.acms-banner-button {
    position: absolute;
    right: 25px;
    bottom: 25px;
    z-index: 999;
}

.acms-banner-button a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 30px;
    border-radius: 50px;
    background: linear-gradient(135deg, #741FA2 0%, #5E1885 100%);
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    text-decoration: none;
    transition: .3s;
    box-shadow: 0 10px 25px rgba(116, 31, 162, .35);
}

.acms-banner-button a:hover {
    background: linear-gradient(135deg, #8A32BA 0%, #741FA2 100%);
    color: #fff;
    transform: translateY(-2px);
}

/*=====================================================
Swiper
=====================================================*/

.acms-store-banner .swiper-button-prev,
.acms-store-banner .swiper-button-next {

    width: 48px;
    height: 48px;

    background: rgba(0, 0, 0, .35);

    backdrop-filter: blur(8px);

    border-radius: 50%;

    color: #fff;
}

.acms-store-banner .swiper-button-prev:after,
.acms-store-banner .swiper-button-next:after {

    font-size: 18px;

    font-weight: 700;

}

.acms-store-banner .swiper-pagination {

    bottom: 18px !important;

}

.acms-store-banner .swiper-pagination-bullet {

    width: 10px;

    height: 10px;

    background: #fff;

    opacity: .5;

}

.acms-store-banner .swiper-pagination-bullet-active {

    opacity: 1;

    transform: scale(1.2);

}

/*=====================================================
Store Header
=====================================================*/

.acms-store-header {

    display: flex;

    align-items: center;

    gap: 30px;

    margin: 40px 0;

}

.acms-store-logo {

    flex-shrink: 0;

}

.acms-store-logo img {

    width: 120px;

    height: 120px;

    object-fit: contain;

    background: #fff;

    padding: 12px;

    border-radius: 15px;

    box-shadow: 0 10px 30px rgba(0, 0, 0, .08);

}

.acms-store-info {

    flex: 1;

}

.acms-store-info h1 {

    margin: 0 0 15px;

    font-size: 34px;

    line-height: 1.2;

}

.acms-store-description {

    color: #666;

    font-size: 16px;

    line-height: 1.8;

}

/* Remove old button */

.acms-visit-store {

    display: none;

}

/*=====================================================
Coupons
=====================================================*/

.acms-store-coupons {

    margin-top: 50px;

}

/*=====================================================
Tablet
=====================================================*/

@media (max-width:991px) {

    .acms-store-banner img {

        height: 320px;

    }

}

/*=====================================================
Mobile
=====================================================*/

@media only screen and (max-width:767px) {

    .acms-desktop-banner {

        display: none !important;

        visibility: hidden;

        opacity: 0;

        height: 0;

        overflow: hidden;

    }

    .acms-mobile-banner {

        display: block !important;

        visibility: visible;

        opacity: 1;

        height: auto;

    }

    .acms-store-banner {

        border-radius: 12px;

    }

    .acms-store-banner img {

        height: 220px;

        border-radius: 12px;

    }

    .acms-banner-button {

        right: 15px;

        bottom: 15px;

    }

    .acms-banner-button a {

        padding: 10px 18px;

        font-size: 13px;

    }

    .acms-store-banner .swiper-button-prev,
    .acms-store-banner .swiper-button-next {

        width: 34px;

        height: 34px;

    }

    .acms-store-banner .swiper-button-prev:after,
    .acms-store-banner .swiper-button-next:after {

        font-size: 13px;

    }

    .acms-store-header {

        flex-direction: column;

        text-align: center;

        gap: 20px;

    }

    .acms-store-logo img {

        width: 90px;

        height: 90px;

    }

    .acms-store-info h1 {

        font-size: 26px;

    }

    .acms-store-description {

        font-size: 15px;

    }

}