ul.storeone-product-brand-list{
    list-style: none;
    margin:0;
}
/* ===== Wrapper spacing ===== */
.storeone-product-brand-wrapper {
    margin: 20px 0;
}

/* ===== Main Card ===== */


/* ===== Title ===== */
.storeone-product-brand-title {
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.4;
}

/* ===== List ===== */
.storeone-product-brand-list {
    list-style: none;
    padding: 0;
    margin: 0;

    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

/* ===== Item ===== */
.storeone-product-brand-item {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    padding: 0.3rem;
    border-radius: 4px;
    justify-content: center;
}

/* ===== Image ===== */
.storeone-product-brand-item img {
    max-width: 100px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
    transition: all 0.3s ease;
}

/* ===== Hover Effect ===== */
.storeone-product-brand-item img:hover {
    transform: scale(1.05);
}

/* ===== Link Reset ===== */
.storeone-product-brand-item a {
    display: inline-block;
}


/* ================= WRAPPER SCOPE ================= */
.storeone-product-brand-wrapper .swiper {
    --swiper-navigation-color: #000; /* icon color */
}

/* ================= BUTTON STYLE ================= */
.storeone-product-brand-wrapper .swiper-button-prev,
.storeone-product-brand-wrapper .swiper-button-next {

    top: 50% !important;
    transform: translateY(-50%) !important;
    margin-top: 0 !important;

    display: flex;
    align-items: center;
    justify-content: center;

    width: auto !important;
    height: auto !important;

    /* 🔥 same as preview */
    background: rgba(255, 255, 255, 0.9);
    padding: 6px;
    border-radius: 6px;

    box-shadow: 0 2px 6px rgba(0,0,0,0.08);

    border: none;
}

/* ================= ICON ================= */
.storeone-product-brand-wrapper .swiper-button-prev::after,
.storeone-product-brand-wrapper .swiper-button-next::after {
    font-size: 12px !important;
    line-height: 1;
}

/* ================= POSITION ================= */
.storeone-product-brand-wrapper .swiper-button-prev {
    left: 5px;
}

.storeone-product-brand-wrapper .swiper-button-next {
    right: 5px;
}

/* ================= HOVER ================= */
.storeone-product-brand-wrapper .swiper-button-prev:hover,
.storeone-product-brand-wrapper .swiper-button-next:hover {
    background: #fff;
    box-shadow: 0 4px 10px rgba(0,0,0,0.12);
}

/* ================= DISABLED ================= */
.storeone-product-brand-wrapper .swiper-button-disabled {
    opacity: 0.4;
    pointer-events: none;
}
 /* Black & White Mode */
.s1-bw-mode img {
    filter: grayscale(100%);
    transition: filter 0.3s ease;
}

/* optional hover color back */
.s1-bw-mode img:hover {
    filter: grayscale(0%);
}