/* ============================================
   BEST-DZ Elementor Widget Styles
   ============================================ */

/* Icon Steps Widget */
.bdz-is__row {
    display: flex;
    align-items: center;
    justify-content: center;
}

.bdz-is__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    flex: 1;
    padding: 24px 16px;
    border-radius: 12px;
    transition: background-color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

/* Icon mode */
.bdz-is__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    margin-bottom: 12px;
}

.bdz-is__icon i {
    font-size: 36px;
    color: #003DA5;
    transition: color 0.3s ease;
}

.bdz-is__icon svg {
    width: 36px;
    height: 36px;
    fill: #003DA5;
    transition: fill 0.3s ease;
}

.bdz-is__item:hover .bdz-is__icon i {
    color: #fff;
}

.bdz-is__item:hover .bdz-is__icon svg {
    fill: #fff;
}

/* Image mode */
.bdz-is__img {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 12px;
}

.bdz-is__img img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    transition: opacity 0.3s ease;
}

.bdz-is__img-default {
    opacity: 1;
}

.bdz-is__img-hover {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    opacity: 0;
}

.bdz-is__item:hover .bdz-is__img-default {
    opacity: 0;
}

.bdz-is__item:hover .bdz-is__img-hover {
    opacity: 1;
}

/* Label */
.bdz-is__label {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.3;
    color: #333;
    transition: color 0.3s ease;
}

.bdz-is__item:hover .bdz-is__label {
    color: #fff;
}

/* Step Number */
.bdz-is__num {
    font-size: 12px;
    font-weight: 500;
    color: #999;
    margin-top: 4px;
    transition: color 0.3s ease;
}

.bdz-is__item:hover .bdz-is__num {
    color: rgba(255, 255, 255, 0.7);
}

/* Arrow between items */
.bdz-is__arrow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    padding: 0 4px;
}

.bdz-is__arrow svg {
    width: 16px;
    height: 16px;
    fill: #ccc;
    transition: fill 0.3s ease;
}

/* Responsive */
@media (max-width: 768px) {
    .bdz-is__row {
        flex-wrap: nowrap;
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        -ms-overflow-style: none;
    }

    .bdz-is__row::-webkit-scrollbar {
        display: none;
    }

    .bdz-is__item {
        flex: 0 0 auto;
        min-width: 100px;
        padding: 16px 8px;
    }

    .bdz-is__arrow {
        flex-shrink: 0;
    }
}

/* ============================================
   Product Carousel Widget
   ============================================ */
.bdz-pc {
    position: relative;
}

.bdz-pc .swiper {
    overflow: hidden;
    padding: 4px 0;
}

.bdz-pc .swiper-wrapper {
    align-items: stretch;
}

.bdz-pc .swiper-slide {
    height: auto;
}

/* Card */
.bdz-pc__card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    transition: box-shadow 0.3s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.bdz-pc__card:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

/* Image */
.bdz-pc__image-wrap {
    position: relative;
    overflow: hidden;
    aspect-ratio: 1 / 1;
}

.bdz-pc__image-wrap a {
    display: block;
    width: 100%;
    height: 100%;
}

.bdz-pc__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.4s ease;
}

.bdz-pc__img--hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.bdz-pc__card:hover .bdz-pc__img--primary {
    opacity: 0;
}

.bdz-pc__card:hover .bdz-pc__img--hover {
    opacity: 1;
}

/* Inquiry Button (bottom-right corner) */
.bdz-pc__inquiry-btn {
    position: absolute;
    bottom: 10px;
    right: 10px;
    padding: 8px 14px;
    background: rgba(0, 61, 165, 0.85);
    color: #fff;
    border: none;
    border-radius: 20px;
    cursor: pointer;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    transform: translateY(calc(100% + 10px));
    transition: transform 0.3s ease, background 0.2s ease;
    z-index: 2;
    white-space: nowrap;
}

.bdz-pc__inquiry-btn:hover {
    background: rgba(0, 45, 122, 0.95);
}

.bdz-pc__card:hover .bdz-pc__inquiry-btn {
    transform: translateY(0);
}

/* Info */
.bdz-pc__info {
    padding: 12px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.bdz-pc__title {
    margin: 0 0 6px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.bdz-pc__title a {
    color: inherit;
    text-decoration: none;
}

.bdz-pc__title a:hover {
    color: #003DA5;
}

.bdz-pc__price {
    font-size: 15px;
    font-weight: 700;
    color: #003DA5;
    margin-bottom: 6px;
}

.bdz-pc__price del {
    color: #999;
    font-weight: 400;
    font-size: 13px;
}

.bdz-pc__price ins {
    text-decoration: none;
}

/* Rating */
.bdz-pc__rating {
    display: flex;
    align-items: center;
    gap: 2px;
    margin-top: auto;
}

.bdz-pc__star {
    width: 14px;
    height: 14px;
}

.bdz-pc__star--full {
    fill: #f5a623;
}

.bdz-pc__star--empty {
    fill: #ddd;
}

/* Bottom Bar: scrollbar + navigation */
.bdz-pc__bottom {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 20px;
}

/* Progress Bar */
.bdz-pc__progress {
    flex: 1;
    height: 3px;
    background: #e0e0e0;
    border-radius: 2px;
    overflow: hidden;
}

.bdz-pc__progress-fill {
    height: 100%;
    width: 0;
    background: #003DA5;
    border-radius: 2px;
    transition: width 0.3s ease;
}

/* Navigation Arrows */
.bdz-pc__nav-wrap {
    display: flex;
    gap: 8px;
    flex-shrink: 0;
}

.bdz-pc__nav {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: #fff;
    border: 1px solid #e0e0e0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #003DA5;
    transition: all 0.2s ease;
}

.bdz-pc__nav:hover {
    background: #003DA5;
    color: #fff;
    border-color: #003DA5;
}

.bdz-pc__nav.swiper-button-disabled {
    opacity: 0.3;
    pointer-events: none;
}

/* ── Inquiry Modal ── */
.bdz-pc__modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bdz-pc__modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.bdz-pc__modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    width: 90%;
    max-width: 720px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
    animation: bdzModalIn 0.3s ease;
}

@keyframes bdzModalIn {
    from {
        opacity: 0;
        transform: translateY(20px) scale(0.96);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.bdz-pc__modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    background: #f5f5f5;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: background 0.2s;
}

.bdz-pc__modal-close:hover {
    background: #e0e0e0;
}

.bdz-pc__modal-body {
    display: flex;
    gap: 24px;
    padding: 32px;
}

/* Modal Product Info (left) */
.bdz-pc__modal-product {
    flex: 0 0 220px;
    text-align: center;
}

.bdz-pc__modal-product-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    background: #f9f9f9;
    margin-bottom: 12px;
}

.bdz-pc__modal-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bdz-pc__modal-product-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin: 0 0 6px;
    line-height: 1.4;
}

.bdz-pc__modal-product-price {
    font-size: 14px;
    font-weight: 700;
    color: #003DA5;
    margin: 0;
}

/* Modal Form (right) */
.bdz-pc__modal-form-wrap {
    flex: 1;
    min-width: 0;
}

.bdz-pc__modal-form-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin: 0 0 16px;
}

.bdz-pc__form-row {
    margin-bottom: 12px;
}

.bdz-pc__form-row input,
.bdz-pc__form-row textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.bdz-pc__form-row input:focus,
.bdz-pc__form-row textarea:focus {
    outline: none;
    border-color: #003DA5;
}

.bdz-pc__form-submit {
    width: 100%;
    padding: 12px;
    background: #003DA5;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.bdz-pc__form-submit:hover {
    background: #002d7a;
}

.bdz-pc__form-submit:disabled {
    background: #99b3d6;
    cursor: not-allowed;
}

.bdz-pc__form-msg {
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    margin-top: 8px;
}

.bdz-pc__form-msg--ok {
    background: #e8f5e9;
    color: #2e7d32;
}

.bdz-pc__form-msg--err {
    background: #fce4ec;
    color: #c62828;
}

/* Modal responsive */
@media (max-width: 640px) {
    .bdz-pc__modal-body {
        flex-direction: column;
        padding: 24px 16px;
    }

    .bdz-pc__modal-product {
        flex: none;
        display: flex;
        gap: 12px;
        text-align: left;
    }

    .bdz-pc__modal-product-img {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }

}

/* ============================================
   Category Grid Widget
   ============================================ */
.bdz-cg__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bdz-cg__card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    height: 280px;
    cursor: pointer;
    display: block;
    text-decoration: none;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.bdz-cg__card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.bdz-cg__card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
    transition: background-color 0.4s ease;
    pointer-events: none;
}

.bdz-cg__card:hover img {
    transform: scale(1.1);
}

.bdz-cg__card:hover::after {
    background-color: rgba(0, 0, 0, 0.5);
}

.bdz-cg__title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: #ffffff;
    font-size: 1.4rem;
    font-weight: 700;
    text-align: center;
    z-index: 10;
    width: 90%;
    pointer-events: none;
    margin: 0;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.6);
}

/* ============================================
   Culture Cards Widget
   ============================================ */
.bdz-cc__section {
    position: relative;
    width: 100%;
    min-height: 400px;
    padding: 80px 20px 100px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bdz-cc__wrap {
    position: relative;
    z-index: 10;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 40px;
    width: 100%;
}

.bdz-cc__card {
    flex: 1;
    min-width: 260px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bdz-cc__img-box {
    width: 190px;
    height: 190px;
    border-radius: 50%;
    overflow: hidden;
    margin-bottom: 25px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border: 6px solid rgba(255, 255, 255, 0.9);
    background-color: #fff;
    flex-shrink: 0;
}

.bdz-cc__img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.bdz-cc__card:hover .bdz-cc__img-box img {
    transform: scale(1.08);
}

.bdz-cc__title {
    color: #003366;
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0 0 12px;
    letter-spacing: 0.5px;
}

.bdz-cc__desc {
    color: #334455;
    font-size: 1rem;
    line-height: 1.5;
    max-width: 290px;
    margin: 0;
}

@media (max-width: 850px) {
    .bdz-cc__section {
        padding: 50px 15px 70px;
    }

    .bdz-cc__wrap {
        flex-direction: column;
        align-items: center;
        gap: 25px;
    }

    .bdz-cc__img-box {
        width: 130px;
        height: 130px;
        margin-bottom: 15px;
        border-width: 4px;
    }

    .bdz-cc__title {
        font-size: 1.3rem;
        margin-bottom: 8px;
    }

    .bdz-cc__desc {
        font-size: 0.95rem;
    }
}

/* ============================================
   Why Choose Widget
   ============================================ */
.bdz-wc__section {
    position: relative;
    width: 100%;
    min-height: 500px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    justify-content: center;
    align-items: center;
}

.bdz-wc__overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.bdz-wc__inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 60px 0;
}

.bdz-wc__heading {
    width: 100%;
    text-align: center;
    color: #ffffff;
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 60px;
}

.bdz-wc__cols {
    position: relative;
    width: 100%;
    max-width: 1200px;
    display: flex;
    justify-content: center;
}

.bdz-wc__col {
    flex: 1;
    padding: 40px 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    color: #ffffff;
    transition: transform 0.3s ease;
}

.bdz-wc__icon {
    width: 45px;
    height: 45px;
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
}

.bdz-wc__icon svg {
    width: 100%;
    height: 100%;
    fill: #ffffff;
}

.bdz-wc__icon i {
    font-size: 45px;
    color: #ffffff;
}

.bdz-wc__col-title {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 15px;
    min-height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.bdz-wc__col-desc {
    font-size: 0.85rem;
    line-height: 1.6;
    color: #ffffff;
    opacity: 0.9;
}

.bdz-wc__col-desc p {
    margin: 0;
}

.bdz-wc__highlight {
    text-decoration: underline;
    font-weight: 600;
}

@media (max-width: 900px) {
    .bdz-wc__cols {
        flex-direction: column;
    }

    .bdz-wc__heading {
        font-size: 1.4rem;
        padding: 0 15px;
        margin-bottom: 40px;
    }

    .bdz-wc__col {
        padding: 30px 20px;
    }

    .bdz-wc__col-title {
        min-height: auto;
    }
}

/* ============================================
   News Tabs Widget
   ============================================ */
.bdz-nt__section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 80px 20px;
}

.bdz-nt__title {
    text-align: center;
    font-size: 2.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 40px;
    color: #000;
}

.bdz-nt__tab-nav {
    display: flex;
    justify-content: center;
    margin-bottom: 50px;
}

.bdz-nt__tab-group {
    display: inline-flex;
    border-radius: 30px;
    background-color: #fff;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.bdz-nt__tab-btn {
    padding: 14px 40px;
    font-size: 1.05rem;
    color: #444;
    background: transparent;
    border: 1px solid #dcdcdc;
    cursor: pointer;
    outline: none;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: inherit;
}

.bdz-nt__tab-btn:not(:first-child) {
    border-left: none;
}

.bdz-nt__tab-btn:hover {
    background-color: #f1f1f1;
}

.bdz-nt__tab-btn.active {
    background-color: #0c71c3;
    color: #fff;
    border-color: #0c71c3;
}

.bdz-nt__content {
    display: none;
    animation: bdzNtFadeIn 0.5s ease;
}

.bdz-nt__content.active {
    display: block;
}

@keyframes bdzNtFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: translateY(0); }
}

.bdz-nt__grid {
    display: grid;
    gap: 30px;
}

.bdz-nt__grid--1 { grid-template-columns: 1fr; }
.bdz-nt__grid--2 { grid-template-columns: repeat(2, 1fr); }
.bdz-nt__grid--3 { grid-template-columns: repeat(3, 1fr); }
.bdz-nt__grid--4 { grid-template-columns: repeat(4, 1fr); }

.bdz-nt__card {
    background-color: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.06);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
}

.bdz-nt__card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.bdz-nt__card-img {
    width: 100%;
    height: 240px;
    overflow: hidden;
    position: relative;
}

.bdz-nt__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bdz-nt__card:hover .bdz-nt__card-img img {
    transform: scale(1.08);
}

.bdz-nt__card-img-placeholder {
    width: 100%;
    height: 100%;
    background-color: #e0e0e0;
}

.bdz-nt__card-info {
    padding: 25px 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bdz-nt__card-title {
    font-size: 1.25rem;
    font-weight: 700;
    color: #222;
    margin: 0 0 15px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s;
}

.bdz-nt__card:hover .bdz-nt__card-title {
    color: #0c71c3;
}

.bdz-nt__card-desc {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin: 0;
}

@media (max-width: 992px) {
    .bdz-nt__grid--3 { grid-template-columns: repeat(2, 1fr); }
    .bdz-nt__grid--4 { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .bdz-nt__section {
        padding: 50px 15px;
    }

    .bdz-nt__title {
        font-size: 1.8rem;
    }

    .bdz-nt__tab-nav {
        justify-content: flex-start;
        overflow-x: auto;
        padding-bottom: 15px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .bdz-nt__tab-nav::-webkit-scrollbar {
        display: none;
    }

    .bdz-nt__tab-group {
        white-space: nowrap;
    }

    .bdz-nt__tab-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .bdz-nt__grid--2,
    .bdz-nt__grid--3,
    .bdz-nt__grid--4 {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .bdz-nt__card-img {
        height: 200px;
    }
}

/* ============================================
   Vision Cards Widget
   ============================================ */
@keyframes fadeInLeft {
    from { opacity: 0; transform: translate3d(-100%, 0, 0); }
    to   { opacity: 1; transform: none; }
}

.baijis-s-section-wrapper {
    position: relative;
    background: linear-gradient(90deg, #FFFFFF 25%, #7BC3EB 93%);
    padding: 40px 0;
    overflow: hidden;
}

.baijis-s-section-inner {
    display: flex;
    flex-direction: row;
    max-width: 1140px;
    margin: 0 auto;
    gap: 0;
    position: relative;
    z-index: 1;
}

.baijis-s-card {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 10px;
}

.baijis-s-card.baijis-s-card--animated {
    animation: fadeInLeft 1.25s both;
}

.baijis-s-card-img-wrap {
    width: 67%;
    margin: 0 auto;
}

.baijis-s-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    display: block;
    border-radius: 50%;
}

.baijis-s-card-title {
    font-size: 25px;
    font-weight: 600;
    color: #003658;
    line-height: 1;
    margin: 10px 0;
}

.baijis-s-card-text {
    font-weight: 400;
    color: #333;
    font-size: 16px;
}

.elementor-widget-bestdz_vision_cards .elementor-widget-container {
    overflow: visible !important;
}

.baijis-s-shape-top, .baijis-s-shape-bottom {
    position: absolute;
    left: 0;
    width: 100%;
    line-height: 0;
    overflow: hidden;
}

.baijis-s-shape-top { top: -1px; }

.baijis-s-shape-bottom { bottom: -1px; transform: rotate(180deg); }

.baijis-s-shape-top svg {
    display: block;
    width: calc(100% + 1.3px);
    position: relative;
    left: 50%;
    transform: translateX(-50%);
}

.baijis-s-shape-bottom svg {
    display: block;
    width: calc(215% + 1.3px);
    height: 18px;
    position: relative;
    left: 50%;
    transform: translateX(-50%) rotateY(180deg);
}

.baijis-s-shape-fill { fill: #fff; }

@media (max-width: 767px) {
    .baijis-s-section-inner { flex-direction: column; }
    .baijis-s-card { flex: none; width: 100%; }
}

/* ============================================
   FAQ Accordion Widget
   ============================================ */
.baijia_gr_faq_section {
    position: relative;
    width: 100%;
    min-height: 700px;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 80px 20px;
    overflow: hidden;
}

.baijia_gr_faq_section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 25%;
    height: 100%;
    background-color: #fff9e6;
    z-index: 1;
}

.baijia_gr_faq_container {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 50px;
}

.baijia_gr_faq_image_box {
    flex: 0 0 45%;
    max-width: 500px;
    position: relative;
}

.baijia_gr_faq_title {
    font-size: 2.2rem;
    font-weight: 700;
    color: rgba(0, 61, 165, 0.85);
    margin-bottom: 20px;
}

.baijia_gr_faq_image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    border: 6px solid #ffffff;
}

.baijia_gr_faq_image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 1 / 1;
}

.baijia_gr_faq_accordion {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 60px;
}

.baijia_gr_faq_item {
    border-radius: 6px;
    overflow: hidden;
    background-color: #f4f5f6;
    transition: all 0.3s ease;
}

.baijia_gr_faq_item.active {
    background-color: rgba(0, 61, 165, 0.85);
}

.baijia_gr_faq_header {
    padding: 16px 20px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1rem;
    font-weight: 700;
    color: #003da5;
    transition: all 0.3s ease;
}

.baijia_gr_faq_item.active .baijia_gr_faq_header {
    color: #ffffff;
}

.baijia_gr_faq_icon {
    font-size: 1.2rem;
    font-weight: 400;
    color: #8899aa;
    transition: transform 0.3s ease, color 0.3s ease;
}

.baijia_gr_faq_item.active .baijia_gr_faq_icon {
    color: #ffffff;
}

.baijia_gr_faq_content {
    max-height: 0;
    overflow: hidden;
    background-color: #ffffff;
    transition: max-height 0.4s ease-out;
}

.baijia_gr_faq_body {
    padding: 20px;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #555;
    border: 1px solid #f4f5f6;
    border-top: none;
    border-radius: 0 0 6px 6px;
}

@media (max-width: 992px) {
    .baijia_gr_faq_section::before {
        width: 100%;
        height: 300px;
    }
    .baijia_gr_faq_container {
        flex-direction: column;
        align-items: center;
        gap: 40px;
    }
    .baijia_gr_faq_image_box {
        width: 100%;
        max-width: 600px;
        text-align: center;
    }
    .baijia_gr_faq_accordion {
        width: 100%;
        max-width: 600px;
        margin-top: 0;
    }
}

@media (max-width: 576px) {
    .baijia_gr_faq_header {
        font-size: 0.95rem;
        padding: 14px 15px;
    }
}

/* ============================================
   Tech Materials Widget
   ============================================ */
.baijia_gr_tech_section {
    width: 100%;
    padding: 80px 20px;
    display: flex;
    justify-content: center;
    background-color: #000000;
    color: #ffffff;
}

.baijia_gr_tech_container {
    width: 100%;
    max-width: 1400px;
    display: flex;
    flex-direction: column;
}

.baijia_gr_tech_header {
    text-align: center;
    margin-bottom: 60px;
}

.baijia_gr_tech_title {
    font-size: 2.8rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.baijia_gr_tech_subtitle {
    font-size: 1.15rem;
    font-weight: 400;
    color: #e0e0e0;
}

.baijia_gr_tech_grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 30px;
}

.baijia_gr_tech_card {
    display: flex;
    flex-direction: column;
}

.baijia_gr_tech_img {
    width: 100%;
    aspect-ratio: 1 / 1;
    object-fit: cover;
    margin-bottom: 25px;
}

.baijia_gr_tech_icon {
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 15px;
}

.baijia_gr_tech_icon img {
    height: 100%;
    width: auto;
    max-width: 70px;
    object-fit: contain;
}

.baijia_gr_tech_card_title {
    text-align: center;
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    min-height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
}

.baijia_gr_tech_desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: #cccccc;
    text-align: left;
    margin-bottom: 20px;
    flex-grow: 1;
}

.baijia_gr_tech_footer {
    font-size: 0.8rem;
    line-height: 1.4;
    text-align: left;
}

.baijia_gr_tech_footer_label {
    color: #888888;
    margin-bottom: 2px;
}

.baijia_gr_tech_footer_list {
    color: #ffffff;
}

@media (max-width: 1200px) {
    .baijia_gr_tech_grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 40px 30px;
    }
}

@media (max-width: 768px) {
    .baijia_gr_tech_section {
        padding: 50px 15px;
    }
    .baijia_gr_tech_title {
        font-size: 2.2rem;
    }
    .baijia_gr_tech_grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        gap: 16px;
        padding-bottom: 8px;
    }

    .baijia_gr_tech_grid::-webkit-scrollbar {
        display: none;
    }

    .baijia_gr_tech_card {
        flex: 0 0 60%;
        max-width: 60%;
        scroll-snap-align: start;
    }

    .baijia_gr_tech_card_title {
        min-height: auto;
    }
}

/* ============================================
   Product Gallery Widget
   ============================================ */
.baijia_gr_gallery_container {
    max-width: 640px;
    margin: 0 auto;
}

.baijia_gr_main_wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    background-color: #f0f0f0;
}

.baijia_gr_main_track {
    display: flex;
    height: 100%;
    transition: transform 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.baijia_gr_main_image {
    flex: 0 0 100%;
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

.baijia_gr_nav_btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    background-color: rgba(255, 255, 255, 0.8);
    color: #333;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    cursor: pointer;
    user-select: none;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    z-index: 10;
}

.baijia_gr_nav_btn:hover:not(.disabled) {
    background-color: #003da5;
    color: #fff;
}

.baijia_gr_nav_btn.prev { left: 15px; }
.baijia_gr_nav_btn.next { right: 15px; }

.baijia_gr_nav_btn.disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

.baijia_gr_thumb_wrapper {
    display: flex;
    align-items: center;
    gap: 10px;
}

.baijia_gr_thumb_nav {
    flex: 0 0 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    color: #666;
    font-size: 1.2rem;
    user-select: none;
    transition: color 0.3s;
}

.baijia_gr_thumb_nav:hover:not(.disabled) {
    color: #003da5;
}

.baijia_gr_thumb_nav.disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

.baijia_gr_thumb_track_container {
    flex: 1;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
    cursor: grab;
}

.baijia_gr_thumb_track_container::-webkit-scrollbar {
    display: none;
}

.baijia_gr_thumb_track_container:active {
    cursor: grabbing;
}

.baijia_gr_thumb_track {
    display: flex;
    gap: 8px;
    padding: 2px 0;
}

.baijia_gr_thumb_item {
    flex: 0 0 calc((100% - (7 * 8px)) / 8);
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid transparent;
    cursor: pointer;
    transition: border-color 0.2s ease;
    user-select: none;
}

.baijia_gr_thumb_item.active {
    border: 1px solid #003da5;
    box-shadow: 0 0 0 1px #003da5 inset;
}

.baijia_gr_thumb_item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
}

@media (max-width: 600px) {
    .baijia_gr_thumb_item {
        flex: 0 0 calc((100% - (4 * 8px)) / 5);
    }
    .baijia_gr_nav_btn {
        width: 32px;
        height: 32px;
        font-size: 1rem;
    }
}

/* ============================================
   Product Inquiry Buttons Widget
   ============================================ */
.bdz-piq__wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.bdz-piq__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.4;
    border-style: solid;
    border-width: 2px;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.bdz-piq__btn svg {
    flex-shrink: 0;
}

.bdz-piq__btn--inquiry {
    background-color: #003da5;
    color: #ffffff;
    border-color: #003da5;
}

.bdz-piq__btn--inquiry:hover {
    background-color: #002d7a;
    border-color: #002d7a;
    color: #ffffff;
}

.bdz-piq__btn--contact {
    background-color: transparent;
    color: #003da5;
    border-color: #003da5;
}

.bdz-piq__btn--contact:hover {
    background-color: #003da5;
    color: #ffffff;
    border-color: #003da5;
}

/* ── Inquiry Modal ── */
.bdz-piq__modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bdz-piq__modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
}

.bdz-piq__modal-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    max-width: 680px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    z-index: 1;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

@media (max-width: 480px) {
    .bdz-piq__modal-content {
        width: 95%;
        border-radius: 10px;
    }
}

.bdz-piq__modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border: none;
    background: #f0f0f0;
    border-radius: 50%;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
    z-index: 2;
    transition: background 0.2s;
}

.bdz-piq__modal-close:hover {
    background: #e0e0e0;
}

.bdz-piq__modal-body {
    display: flex;
    gap: 24px;
    padding: 32px;
}

.bdz-piq__modal-product {
    flex: 0 0 220px;
    text-align: center;
}

.bdz-piq__modal-product-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    background: #f5f5f5;
    margin-bottom: 12px;
}

.bdz-piq__modal-product-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bdz-piq__modal-product-title {
    font-size: 15px;
    font-weight: 600;
    color: #333;
    margin-bottom: 4px;
    line-height: 1.4;
}

.bdz-piq__modal-product-price {
    font-size: 14px;
    font-weight: 700;
    color: #003DA5;
}

.bdz-piq__modal-form-wrap {
    flex: 1;
    min-width: 0;
}

.bdz-piq__modal-form-title {
    font-size: 18px;
    font-weight: 700;
    color: #333;
    margin-bottom: 16px;
}

.bdz-piq__form-row {
    margin-bottom: 12px;
}

.bdz-piq__form-row input,
.bdz-piq__form-row textarea {
    width: 100%;
    padding: 10px 14px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-family: inherit;
    transition: border-color 0.2s;
    box-sizing: border-box;
}

.bdz-piq__form-row input:focus,
.bdz-piq__form-row textarea:focus {
    outline: none;
    border-color: #003DA5;
}

.bdz-piq__form-submit {
    width: 100%;
    padding: 12px;
    background: #003DA5;
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
}

.bdz-piq__form-submit:hover {
    background: #002d7a;
}

.bdz-piq__form-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

.bdz-piq__form-msg {
    margin-top: 10px;
    padding: 10px 14px;
    border-radius: 6px;
    font-size: 13px;
    text-align: center;
}

.bdz-piq__form-msg--ok {
    background: #e8f5e9;
    color: #2e7d32;
}

.bdz-piq__form-msg--err {
    background: #fce4ec;
    color: #c62828;
}

@media (max-width: 640px) {
    .bdz-piq__modal-body {
        flex-direction: column;
        padding: 24px 16px;
    }
    .bdz-piq__modal-product {
        flex: none;
        display: flex;
        gap: 12px;
        text-align: left;
    }
    .bdz-piq__modal-product-img {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
    }
}

@media (max-width: 480px) {
    .bdz-piq__wrap {
        flex-direction: column;
    }
    .bdz-piq__btn {
        width: 100%;
    }
}

/* ============================================
   Related Accessories Carousel Widget
   ============================================ */
.bdz-ra__heading {
    font-size: 24px;
    font-weight: 700;
    color: #333;
    margin: 0 0 24px;
    line-height: 1.3;
}

/* ============================================
   Where to Buy Widget
   ============================================ */
.bdz-wtb-title {
    font-size: 28px;
    font-weight: 700;
    color: #222;
    margin: 0 0 30px;
    text-align: center;
}

.bdz-wtb-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.bdz-wtb-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 6px;
    text-decoration: none;
    overflow: hidden;
    transition: box-shadow 0.3s ease, transform 0.2s ease;
}

.bdz-wtb-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

.bdz-wtb-logo {
    width: 100%;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.bdz-wtb-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.bdz-wtb-name {
    width: 100%;
    text-align: center;
    font-size: 14px;
    color: #555;
    padding: 10px 8px;
    border-top: 1px solid #f0f0f0;
}

@media (max-width: 767px) {
    .bdz-wtb-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ============================================
   Category Banner Widget
   ============================================ */
.bdz-catban {
    display: flex;
    overflow: hidden;
    border-radius: 8px;
    height: 240px;
}

.bdz-catban__text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px;
    background: #003DA5;
    flex-shrink: 0;
}

.bdz-catban__title {
    margin: 0 0 12px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
}

.bdz-catban__desc {
    margin: 0;
    font-size: 15px;
    font-weight: 400;
    line-height: 1.5;
    color: #fff;
    opacity: 0.9;
}

.bdz-catban__img {
    flex: 1;
    min-width: 0;
    position: relative;
}

.bdz-catban__img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ── Tablet ── */
@media (max-width: 1024px) {
    .bdz-catban__title {
        font-size: 22px;
    }
    .bdz-catban__desc {
        font-size: 14px;
    }
    .bdz-catban__text {
        padding: 28px;
    }
}

/* ── Mobile ── */
@media (max-width: 767px) {
    .bdz-catban {
        flex-direction: column;
        height: auto;
    }

    .bdz-catban__text {
        width: 100% !important;
        padding: 24px 20px;
    }

    .bdz-catban__title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .bdz-catban__desc {
        font-size: 13px;
    }

    .bdz-catban__img {
        width: 100%;
    }

    .bdz-catban__img img {
        height: auto;
        min-height: 160px;
    }
}

/* ============================================
   Product Grid Widget
   ============================================ */
.bdz-pg__grid {
    display: grid;
    grid-template-columns: repeat(var(--pg-cols-d, 4), 1fr);
    gap: 16px;
}

@media (max-width: 1024px) {
    .bdz-pg__grid {
        grid-template-columns: repeat(var(--pg-cols-t, 3), 1fr);
    }
}

@media (max-width: 767px) {
    .bdz-pg__grid {
        grid-template-columns: repeat(var(--pg-cols-m, 2), 1fr);
        gap: 10px;
    }
}

/* Pagination */
.bdz-pg__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 32px;
    flex-wrap: wrap;
}

.bdz-pg__pagination a,
.bdz-pg__pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    background: #fff;
    transition: all 0.2s;
}

.bdz-pg__pagination a:hover {
    border-color: #003DA5;
    color: #003DA5;
    background: #f0f4ff;
}

.bdz-pg__pagination .current {
    background: #003DA5;
    border-color: #003DA5;
    color: #fff;
    pointer-events: none;
}

.bdz-pg__pagination .dots {
    border: none;
    background: none;
    padding: 0 4px;
    color: #999;
}

.bdz-pg__pagination .prev,
.bdz-pg__pagination .next {
    border: 1px solid #ddd;
}

.bdz-pg__pagination .prev svg,
.bdz-pg__pagination .next svg {
    display: block;
}

@media (max-width: 767px) {
    .bdz-pg__pagination {
        margin-top: 20px;
        gap: 4px;
    }

    .bdz-pg__pagination a,
    .bdz-pg__pagination span {
        min-width: 34px;
        height: 34px;
        font-size: 13px;
        padding: 0 8px;
    }
}

/* ============================================
   Share Buttons Widget
   ============================================ */
.bdz-share {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.bdz-share__label {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    white-space: nowrap;
}

.bdz-share__icons {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
}

.bdz-share__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 4px;
    color: #fff;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.bdz-share__icon:hover {
    opacity: 0.85;
    transform: translateY(-2px);
}

.bdz-share__icon svg {
    width: 60%;
    height: 60%;
    display: block;
}

@media (max-width: 767px) {
    .bdz-share__icon {
        width: 32px;
        height: 32px;
    }

    .bdz-share__label {
        font-size: 14px;
    }
}

/* ============================================
   Article List Widget
   ============================================ */
.bdz-al__grid {
    display: grid;
    grid-template-columns: repeat(var(--al-cols-d, 3), 1fr);
    gap: 24px;
}

.bdz-al__card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    text-decoration: none;
    color: inherit;
    transition: transform 0.3s, box-shadow 0.3s;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.bdz-al__card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.1);
}

.bdz-al__card-img {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.bdz-al__card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bdz-al__card:hover .bdz-al__card-img img {
    transform: scale(1.06);
}

.bdz-al__card-placeholder {
    width: 100%;
    height: 100%;
    background: #e8e8e8;
}

.bdz-al__card-info {
    padding: 20px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.bdz-al__card-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 13px;
    color: #999;
}

.bdz-al__card-cat {
    display: inline-block;
    padding: 2px 8px;
    background: #f0f4ff;
    color: #003DA5;
    border-radius: 3px;
    font-size: 12px;
    font-weight: 500;
}

.bdz-al__card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #222;
    margin: 0 0 8px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.25s;
}

.bdz-al__card:hover .bdz-al__card-title {
    color: #003DA5;
}

.bdz-al__card-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.6;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Pagination */
.bdz-al__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    margin-top: 36px;
    flex-wrap: wrap;
}

.bdz-al__pagination a,
.bdz-al__pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 10px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 500;
    color: #333;
    text-decoration: none;
    background: #fff;
    transition: all 0.2s;
}

.bdz-al__pagination a:hover {
    border-color: #003DA5;
    color: #003DA5;
    background: #f0f4ff;
}

.bdz-al__pagination .current {
    background: #003DA5;
    border-color: #003DA5;
    color: #fff;
    pointer-events: none;
}

.bdz-al__pagination .dots {
    border: none;
    background: none;
    padding: 0 4px;
    color: #999;
}

.bdz-al__pagination .prev svg,
.bdz-al__pagination .next svg {
    display: block;
}

/* ── Tablet ── */
@media (max-width: 1024px) {
    .bdz-al__grid {
        grid-template-columns: repeat(var(--al-cols-t, 2), 1fr);
    }
}

/* ── Mobile ── */
@media (max-width: 767px) {
    .bdz-al__grid {
        grid-template-columns: repeat(var(--al-cols-m, 1), 1fr);
        gap: 16px;
    }

    .bdz-al__card-img {
        height: 180px;
    }

    .bdz-al__card-info {
        padding: 16px;
    }

    .bdz-al__card-title {
        font-size: 1rem;
    }

    .bdz-al__pagination {
        margin-top: 24px;
        gap: 4px;
    }

    .bdz-al__pagination a,
    .bdz-al__pagination span {
        min-width: 34px;
        height: 34px;
        font-size: 13px;
    }
}

/* ============================================
   Info Cards Widget
   ============================================ */
.bdz-ic__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, 276px);
    gap: 20px;
    max-width: 100%;
    justify-content: center;
}

.bdz-ic__card {
    background-color: var(--ic-bg, #eaeaea);
    color: var(--ic-color, #000);
    border-radius: 20px;
    padding: 50px 30px;
    width: 276px;
    height: 280px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    text-decoration: none;
    transition: transform 0.3s ease;
    box-sizing: border-box;
}

.bdz-ic__card:hover {
    transform: translateY(-4px);
}

.bdz-ic__card--no-link {
    cursor: default;
}

.bdz-ic__card--no-link:hover {
    transform: none;
}

.bdz-ic__icon {
    width: 60px;
    height: 60px;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.bdz-ic__icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.bdz-ic__content {
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.bdz-ic__headline {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 10px;
    color: var(--ic-color, #000);
}

.bdz-ic__desc {
    font-size: 14px;
    margin: 0;
    color: var(--ic-color, #000);
    opacity: 0.8;
    line-height: 1.5;
}

.bdz-ic__cta {
    margin-top: 15px;
    font-size: 14px;
    font-weight: 600;
    color: var(--ic-color, #000);
    text-decoration: underline;
    text-underline-offset: 3px;
}

@media (max-width: 767px) {
    .bdz-ic__grid {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        justify-content: flex-start;
        gap: 12px;
        padding-bottom: 8px;
    }

    .bdz-ic__grid::-webkit-scrollbar {
        display: none;
    }

    .bdz-ic__card {
        flex: 0 0 calc((100% - 12px) / 1.5);
        width: calc((100% - 12px) / 1.5);
        max-width: none;
        height: auto;
        min-height: 220px;
        padding: 30px 20px;
        scroll-snap-align: start;
    }
}

/* ============================================
   Brand Logos Widget
   ============================================ */
.bdz-bl {
    background-color: #003DA5;
    padding: 50px 30px;
    text-align: center;
}

.bdz-bl__title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 30px;
}

.bdz-bl__grid {
    display: grid;
    grid-template-columns: repeat(var(--bl-cols, 6), 1fr);
    gap: 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.bdz-bl__item {
    background: #fff;
    border-radius: 12px;
    padding: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: transform 0.25s, box-shadow 0.25s;
}

.bdz-bl__item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.bdz-bl__item img {
    max-width: 100%;
    height: 60px;
    object-fit: contain;
}

@media (max-width: 1024px) {
    .bdz-bl__grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 767px) {
    .bdz-bl {
        padding: 35px 16px;
    }

    .bdz-bl__grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 10px;
    }

    .bdz-bl__item {
        padding: 14px 10px;
        border-radius: 8px;
    }

    .bdz-bl__item img {
        height: 40px;
    }

    .bdz-bl__title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
}

/* ============================================
   Contact Bar Widget
   ============================================ */
.bdz-cb {
    padding: 24px 0;
}

.bdz-cb--bordered {
    border-bottom: 3px solid #003DA5;
}

.bdz-cb__row {
    display: flex;
    align-items: stretch;
}

.bdz-cb__item {
    flex: 1;
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 0 20px;
    position: relative;
}

/* Vertical dividers */
.bdz-cb--dividers .bdz-cb__item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 4px;
    bottom: 4px;
    width: 1px;
    background-color: #e0e0e0;
}

.bdz-cb__icon {
    flex-shrink: 0;
    color: #333;
    display: flex;
    align-items: center;
}

.bdz-cb__icon svg {
    width: 28px;
    height: 28px;
}

.bdz-cb__info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.bdz-cb__title {
    font-size: 15px;
    font-weight: 600;
    color: #000;
    margin: 0 0 2px;
    line-height: 1.3;
}

.bdz-cb__text {
    font-size: 14px;
    color: #666;
    line-height: 1.4;
    margin: 0;
}

.bdz-cb__link {
    color: #003DA5;
    text-decoration: underline;
    text-underline-offset: 2px;
    font-size: 14px;
}

.bdz-cb__link:hover {
    color: #0052cc;
}

/* ── Tablet ── */
@media (max-width: 1024px) {
    .bdz-cb__row {
        flex-wrap: wrap;
    }

    .bdz-cb__item {
        flex: 0 0 50%;
        padding: 10px 16px;
    }

    .bdz-cb--dividers .bdz-cb__item::after {
        display: none;
    }
}

/* ── Mobile ── */
@media (max-width: 767px) {
    .bdz-cb__row {
        flex-direction: column;
        gap: 12px;
    }

    .bdz-cb__item {
        flex: none;
        padding: 8px 0;
    }

    .bdz-cb__icon svg {
        width: 24px;
        height: 24px;
    }

    .bdz-cb__title {
        font-size: 14px;
    }

    .bdz-cb__text,
    .bdz-cb__link {
        font-size: 13px;
    }
}

/* ============================================
   FAQ Categories Widget
   ============================================ */
.bdz-fqc__header {
    text-align: center;
    margin-bottom: 40px;
}

.bdz-fqc__title {
    font-size: 2rem;
    font-weight: 700;
    color: #111;
    margin: 0 0 8px;
}

.bdz-fqc__subtitle {
    font-size: 15px;
    color: #666;
    margin: 0;
}

/* Views wrapper */
.bdz-fqc__views {
    position: relative;
    overflow: hidden;
}

/* Views */
.bdz-fqc__view {
    display: none;
}

.bdz-fqc__view.active {
    display: block;
}

/* Leaving view: absolute to overlap with incoming */
.bdz-fqc__view.fqc-leaving {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
}

/* Slide animations */
.bdz-fqc__view.slide-out-left {
    display: block;
    animation: fqcSlideOutLeft 0.4s ease forwards;
}

.bdz-fqc__view.slide-in-right {
    animation: fqcSlideInRight 0.4s ease forwards;
}

.bdz-fqc__view.slide-out-right {
    display: block;
    animation: fqcSlideOutRight 0.4s ease forwards;
}

.bdz-fqc__view.slide-in-left {
    animation: fqcSlideInLeft 0.4s ease forwards;
}

@keyframes fqcSlideOutLeft {
    from { transform: translateX(0); opacity: 1; }
    to   { transform: translateX(-100%); opacity: 0; }
}

@keyframes fqcSlideInRight {
    from { transform: translateX(60%); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}

@keyframes fqcSlideOutRight {
    from { transform: translateX(0); opacity: 1; }
    to   { transform: translateX(100%); opacity: 0; }
}

@keyframes fqcSlideInLeft {
    from { transform: translateX(-60%); opacity: 0; }
    to   { transform: translateX(0); opacity: 1; }
}

/* Sub header */
.bdz-fqc__sub-header {
    margin-bottom: 24px;
}

.bdz-fqc__sub-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #111;
    margin: 0;
}

/* Grid */
.bdz-fqc__grid {
    display: grid;
    grid-template-columns: repeat(var(--fqc-cols, 3), 1fr);
    gap: 20px;
    padding: 8px;
    margin: -8px;
    align-items: stretch;
}

/* Card */
.bdz-fqc__card {
    border: 1px solid #e8e8e8;
    border-radius: 12px;
    background: #fff;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition: box-shadow 0.25s, transform 0.25s;
}

.bdz-fqc__card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.08);
    transform: translateY(-2px);
}

.bdz-fqc__card-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 40px 24px;
    height: 100%;
    box-sizing: border-box;
}

.bdz-fqc__icon {
    margin-bottom: 16px;
}

.bdz-fqc__icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.bdz-fqc__name {
    font-size: 16px;
    font-weight: 600;
    color: #111;
    margin: 0 0 16px;
}

/* Button pill */
.bdz-fqc__btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #003DA5;
    color: #fff;
    border-radius: 20px;
    padding: 8px 18px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    transition: background 0.2s;
}

.bdz-fqc__btn svg {
    width: 16px;
    height: 16px;
}

.bdz-fqc__card:hover .bdz-fqc__btn {
    background: #002d7a;
}

/* Back card */
.bdz-fqc__card--back {
    background: #003DA5;
    border-color: #003DA5;
    color: #fff;
}

.bdz-fqc__card--back:hover {
    background: #002d7a;
    border-color: #002d7a;
    box-shadow: 0 6px 24px rgba(0, 61, 165, 0.3);
}

.bdz-fqc__card--back .bdz-fqc__name {
    color: #fff;
}

.bdz-fqc__card--back .bdz-fqc__icon {
    width: 80px;
    height: 80px;
}

.bdz-fqc__card--back .bdz-fqc__btn--back {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    padding: 10px;
    border: none;
    border-radius: 50%;
}

.bdz-fqc__card--back:hover .bdz-fqc__btn--back {
    background: rgba(255, 255, 255, 0.35);
}

.bdz-fqc__card--back .bdz-fqc__btn--back svg {
    width: 22px;
    height: 22px;
}


/* ── Tablet ── */
@media (max-width: 1024px) {
    .bdz-fqc__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* ── Mobile ── */
@media (max-width: 767px) {
    .bdz-fqc__title {
        font-size: 1.5rem;
    }

    .bdz-fqc__header {
        margin-bottom: 24px;
    }

    .bdz-fqc__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .bdz-fqc__card-inner {
        padding: 24px 12px;
    }

    .bdz-fqc__icon img {
        width: 56px;
        height: 56px;
    }

    .bdz-fqc__name {
        font-size: 14px;
    }

    .bdz-fqc__btn {
        font-size: 11px;
        padding: 6px 14px;
    }
}

/* ============================================
   Accordion Widget
   ============================================ */
.bdz-acc {
    background: #fff;
    border-radius: 12px;
    padding: 8px 32px;
}

/* Item divider */
.bdz-acc__item + .bdz-acc__item {
    border-top: 1px solid #e8e8e8;
}

/* Title button */
.bdz-acc__title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 20px 0;
    border: none;
    background: none;
    cursor: pointer;
    text-align: left;
    gap: 16px;
}

.bdz-acc__title span:first-child {
    font-size: 15px;
    font-weight: 700;
    color: #111;
    line-height: 1.4;
}

/* Chevron circle */
.bdz-acc__chevron {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #f0f0f0;
    color: #333;
    transition: background 0.25s, color 0.25s, transform 0.3s;
}

.bdz-acc__chevron svg {
    width: 10px;
    height: 10px;
    display: block;
}

.bdz-acc__item.is-open .bdz-acc__chevron {
    background: #111;
    color: #fff;
    transform: rotate(180deg);
}

/* Body */
.bdz-acc__body {
    overflow: hidden;
}

.bdz-acc__prose {
    padding-bottom: 20px;
    font-size: 14px;
    line-height: 1.7;
    color: #444;
}

.bdz-acc__prose p {
    margin: 0 0 12px;
}

.bdz-acc__prose p:last-child {
    margin-bottom: 0;
}

.bdz-acc__prose a {
    color: #111;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.bdz-acc__prose a:hover {
    color: #003DA5;
}

.bdz-acc__prose ul,
.bdz-acc__prose ol {
    margin: 12px 0;
    padding-left: 20px;
}

.bdz-acc__prose li {
    margin-bottom: 4px;
}

.bdz-acc__prose strong {
    font-weight: 700;
    color: #111;
}

/* ── Mobile ── */
@media (max-width: 767px) {
    .bdz-acc {
        padding: 4px 16px;
        border-radius: 8px;
    }

    .bdz-acc__title span:first-child {
        font-size: 14px;
    }

    .bdz-acc__prose {
        font-size: 13px;
    }
}

/* ============================================
   Tech Carousel Widget
   ============================================ */
.bdz-tc {
    position: relative;
    padding: 0 50px;
}

.bdz-tc__viewport {
    overflow: hidden;
}

.bdz-tc__track {
    display: flex;
    will-change: transform;
}

.bdz-tc__slide {
    flex-shrink: 0;
}

.bdz-tc__card {
    text-align: center;
}

/* Product image */
.bdz-tc__img {
    height: 260px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    margin-bottom: 24px;
}

.bdz-tc__img img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

/* Icon */
.bdz-tc__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 16px;
}

.bdz-tc__icon img {
    height: 60px;
    width: auto;
    object-fit: contain;
}

/* Name */
.bdz-tc__name {
    font-size: 14px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.3;
    color: #111;
    margin: 0 0 12px;
}

/* Description */
.bdz-tc__desc {
    font-size: 13px;
    line-height: 1.65;
    color: #555;
    margin: 0;
    max-width: 340px;
    margin-left: auto;
    margin-right: auto;
}

/* Navigation arrows */
.bdz-tc__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #333;
    padding: 8px;
    transition: color 0.2s;
    z-index: 2;
}

.bdz-tc__nav:hover {
    color: #003DA5;
}

.bdz-tc__nav--prev {
    left: 0;
}

.bdz-tc__nav--next {
    right: 0;
}

.bdz-tc__nav svg {
    width: 28px;
    height: 28px;
    display: block;
}

/* Dots */
.bdz-tc__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 32px;
}

.bdz-tc__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.25s;
}

.bdz-tc__dot.is-active {
    background: #003DA5;
}

/* ── Tech Carousel Mobile ── */
@media (max-width: 767px) {
    .bdz-tc {
        padding: 0;
    }

    .bdz-tc__nav {
        display: none;
    }

    .bdz-tc__img {
        height: 180px;
    }

    .bdz-tc__name {
        font-size: 12px;
    }

    .bdz-tc__desc {
        font-size: 12px;
    }

    .bdz-tc__dots {
        margin-top: 20px;
    }
}

/* ============================================
   Brand Series Widget
   ============================================ */
.bdz-bs__list {
    display: flex;
    gap: 20px;
}

.bdz-bs__card {
    flex: 1 1 0;
    min-width: 170px;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #003DA5;
}

.bdz-bs__card:hover .bdz-bs__bg img {
    transform: scale(1.05);
}

/* Logo */
.bdz-bs__logo {
    text-align: center;
    margin-bottom: 16px;
    padding: 0 12px;
}

.bdz-bs__logo img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

/* Description */
.bdz-bs__desc {
    font-size: 13px;
    line-height: 1.6;
    color: #333;
    padding: 0 14px;
    margin-bottom: 16px;
    flex-grow: 1;
}

/* Background image */
.bdz-bs__bg {
    position: relative;
    height: 400px;
    overflow: hidden;
    margin-top: auto;
}

.bdz-bs__bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to bottom, #fff 0%, rgba(255,255,255,0) 100%);
    z-index: 1;
    pointer-events: none;
}

.bdz-bs__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* ── Mobile ── */
@media (max-width: 767px) {
    .bdz-bs__list {
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
    }

    .bdz-bs__list::-webkit-scrollbar {
        display: none;
    }

    .bdz-bs__card {
        flex: 0 0 65%;
        max-width: 65%;
        scroll-snap-align: start;
    }

    .bdz-bs__bg {
        height: 280px;
    }

    .bdz-bs__desc {
        font-size: 12px;
    }
}

/* ============================================
   Pool Features Tab Widget
   ============================================ */
.bdz-pf {
    background: #0b5394;
    border-radius: 12px;
    overflow: hidden;
    padding: 60px 40px;
    color: #fff;
}

.bdz-pf__wrap {
    display: flex;
    align-items: center;
    gap: 40px;
}

/* Left – product image */
.bdz-pf__left {
    width: 42%;
    flex-shrink: 0;
    position: relative;
    min-height: 300px;
}

.bdz-pf__product {
    display: none;
    width: 100%;
    height: auto;
    object-fit: contain;
    animation: bdzPfFadeIn 0.4s ease;
}

.bdz-pf__product.is-active {
    display: block;
}

@keyframes bdzPfFadeIn {
    from { opacity: 0; transform: scale(0.96); }
    to   { opacity: 1; transform: scale(1); }
}

/* Right */
.bdz-pf__right {
    flex: 1;
    min-width: 0;
}

/* Title */
.bdz-pf__title {
    font-size: 32px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #fff;
    margin: 0 0 24px;
}

/* Tab nav */
.bdz-pf__tabs {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 4px;
    margin-bottom: 30px;
    border-left: 3px solid rgba(255,255,255,0.3);
    padding-left: 20px;
}

.bdz-pf__sep {
    color: rgba(255,255,255,0.35);
    font-size: 13px;
    user-select: none;
}

.bdz-pf__tab {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    color: rgba(255,255,255,0.55);
    padding: 6px 8px;
    position: relative;
    transition: color 0.25s;
    white-space: nowrap;
}

.bdz-pf__tab:hover {
    color: rgba(255,255,255,0.85);
}

.bdz-pf__tab.is-active {
    color: #fff;
}

.bdz-pf__tab.is-active::after {
    content: '';
    position: absolute;
    left: 8px;
    right: 8px;
    bottom: 0;
    height: 2px;
    background: #fff;
    border-radius: 1px;
}

/* Panels */
.bdz-pf__panel {
    display: none;
    animation: bdzPfFadeIn 0.35s ease;
}

.bdz-pf__panel.is-active {
    display: block;
}

/* Feature grid */
.bdz-pf__feats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px 20px;
}

/* ============================================
   Discover Carousel Widget
   ============================================ */
.bdz-dcc {
    position: relative;
}

.bdz-dcc__viewport {
    overflow: hidden;
}

.bdz-dcc__track {
    display: flex;
    will-change: transform;
}

.bdz-dcc__slide {
    flex-shrink: 0;
}

/* Card */
.bdz-dcc__card {
    position: relative;
    display: block;
    width: 100%;
    height: 200px;
    border-radius: 12px;
    overflow: hidden;
    text-decoration: none;
    color: #fff;
    cursor: pointer;
    isolation: isolate;
}

.bdz-dcc__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: none;
    object-fit: cover;
    transition: transform 0.5s ease;
    display: block;
}

.bdz-dcc__card:hover .bdz-dcc__img {
    transform: scale(1.06);
}

.bdz-dcc__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, rgba(0, 0, 0, 0.2) 55%, rgba(0, 0, 0, 0) 100%);
    pointer-events: none;
}

.bdz-dcc__content {
    position: absolute;
    inset: 0;
    padding: 12px 14px 14px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
    gap: 8px;
}

.bdz-dcc__title {
    margin: 0;
    color: #fff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.25;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

.bdz-dcc__btn {
    display: inline-block;
    padding: 6px 20px;
    background: #fff;
    color: #003DA5;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.3;
    border-radius: 30px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.18);
    white-space: nowrap;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.bdz-dcc__card:hover .bdz-dcc__btn {
    background: #003DA5;
    color: #fff;
}

/* Navigation arrows */
.bdz-dcc__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: 0;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: background-color 0.25s ease, transform 0.25s ease;
    padding: 0;
}

.bdz-dcc__nav:hover {
    background: #003DA5;
}

.bdz-dcc__nav--prev {
    left: -18px;
}

.bdz-dcc__nav--next {
    right: -18px;
}

.bdz-dcc__nav svg {
    display: block;
}

/* Dots */
.bdz-dcc__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
}

.bdz-dcc__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.25s, transform 0.25s;
}

.bdz-dcc__dot.is-active {
    background: #003DA5;
    transform: scale(1.15);
}

/* Mobile */
@media (max-width: 767px) {
    .bdz-dcc__nav {
        width: 36px;
        height: 36px;
    }

    .bdz-dcc__title {
        font-size: 16px;
    }

    .bdz-dcc__btn {
        padding: 7px 14px;
        font-size: 12px;
    }
}

.bdz-pf__feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.bdz-pf__feat-icon {
    margin-bottom: 10px;
}

.bdz-pf__feat-icon img {
    width: 80px;
    height: 80px;
    object-fit: contain;
}

.bdz-pf__feat-label {
    font-size: 12px;
    font-weight: 600;
    line-height: 1.35;
    color: #fff;
}

/* ── Pool Features Tablet ── */
@media (max-width: 991px) {
    .bdz-pf {
        padding: 40px 24px;
    }

    .bdz-pf__wrap {
        flex-direction: column;
        gap: 30px;
    }

    .bdz-pf__left {
        width: 100% !important;
        max-width: none !important;
        margin: 0 auto;
        min-height: auto;
        order: 1;
    }

    .bdz-pf__right {
        width: 100% !important;
        order: 2;
    }

    .bdz-pf__title {
        font-size: 24px;
        text-align: center;
    }

    .bdz-pf__tabs {
        justify-content: center;
        border-left: none;
        padding-left: 0;
    }

    .bdz-pf__feats {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px 16px;
    }
}

/* ── Pool Features Mobile ── */
@media (max-width: 767px) {
    .bdz-pf {
        padding: 30px 16px;
    }

    .bdz-pf__wrap {
        gap: 20px;
    }

    .bdz-pf__left {
        width: 100% !important;
        max-width: none !important;
    }

    .bdz-pf__title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .bdz-pf__tabs {
        overflow-x: auto;
        flex-wrap: nowrap;
        justify-content: flex-start;
        gap: 2px;
        padding-bottom: 8px;
        margin-bottom: 20px;
        -webkit-overflow-scrolling: touch;
    }

    .bdz-pf__tabs::-webkit-scrollbar {
        display: none;
    }

    .bdz-pf__tab {
        font-size: 11px;
        padding: 4px 6px;
        flex-shrink: 0;
    }

    .bdz-pf__sep {
        font-size: 11px;
        flex-shrink: 0;
    }

    .bdz-pf__feats {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px 12px;
    }

    .bdz-pf__feat-icon img {
        width: 56px;
        height: 56px;
    }

    .bdz-pf__feat-label {
        font-size: 11px;
    }
}

/* ============================================
   Help Videos & FAQ Widget (bestdz_hvf_)
   ============================================ */
.bestdz_hvf_section {
    font-family: inherit;
    color: #333;
    box-sizing: border-box;
}
.bestdz_hvf_section *,
.bestdz_hvf_section *::before,
.bestdz_hvf_section *::after { box-sizing: border-box; }

.bestdz_hvf_container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.bestdz_hvf_col { min-width: 0; }

.bestdz_hvf_section_title {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: .5px;
    margin: 0 0 16px;
    color: #4d4d4d;
    text-transform: uppercase;
}

/* ---- Video thumbs ---- */
.bestdz_hvf_video {
    display: block;
    text-decoration: none;
    color: inherit;
}
.bestdz_hvf_thumb {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    overflow: hidden;
    background: #000;
}
.bestdz_hvf_thumb img {
    position: absolute; inset: 0;
    width: 100%; height: 100%;
    object-fit: cover;
    display: block;
}
.bestdz_hvf_play_icon {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    transition: transform .25s ease;
}
.bestdz_hvf_video:hover .bestdz_hvf_play_icon {
    transform: translate(-50%, -50%) scale(1.1);
}
.bestdz_hvf_duration {
    position: absolute;
    bottom: 6px; right: 8px;
    background: rgba(0,0,0,.7);
    color: #fff;
    font-size: 11px;
    padding: 2px 6px;
    border-radius: 2px;
    line-height: 1.4;
}
.bestdz_hvf_featured_caption {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    padding: 14px 18px;
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    background: linear-gradient(to top, rgba(0,0,0,.75), rgba(0,0,0,0));
    text-transform: uppercase;
    letter-spacing: .3px;
}

.bestdz_hvf_video_featured { margin-bottom: 20px; }

/* list */
.bestdz_hvf_video_list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.bestdz_hvf_video_item + .bestdz_hvf_video_item { margin-top: 18px; }

.bestdz_hvf_video_item .bestdz_hvf_video {
    display: grid;
    grid-template-columns: 40% 1fr;
    gap: 16px;
    align-items: center;
}
.bestdz_hvf_thumb_sm { padding-top: 56.25%; }

.bestdz_hvf_video_meta { min-width: 0; }
.bestdz_hvf_video_sub {
    display: block;
    font-size: 11px;
    color: #888;
    text-transform: uppercase;
    letter-spacing: .4px;
    margin-bottom: 4px;
}
.bestdz_hvf_video_name {
    margin: 0;
    font-size: 14px;
    font-weight: 700;
    color: #4d4d4d;
    line-height: 1.35;
    text-transform: uppercase;
}

/* ---- Button ---- */
.bestdz_hvf_btn {
    display: block;
    width: 100%;
    text-align: center;
    padding: 14px 20px;
    background: #111;
    color: #fff;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 1px;
    text-decoration: none;
    margin-top: 24px;
    border-radius: 2px;
    transition: background .2s ease, transform .2s ease;
    text-transform: uppercase;
}
.bestdz_hvf_btn:hover {
    background: #000;
    color: #fff;
    transform: translateY(-1px);
}

/* ---- FAQ panel ---- */
.bestdz_hvf_faq_panel {
    background: #f4f5f7;
    padding-bottom: 20px;
}
.bestdz_hvf_faq_header {
    background: #55A4B6;
    padding: 14px 20px;
}
.bestdz_hvf_faq_header h3 {
    margin: 0;
    color: #fff;
    font-size: 17px;
    letter-spacing: .5px;
    text-transform: uppercase;
}
.bestdz_hvf_faq_desc {
    padding: 14px 20px 6px;
    margin: 0;
    font-size: 13px;
    color: #444;
    line-height: 1.55;
}

.bestdz_hvf_cats { padding: 6px 20px 0; }
.bestdz_hvf_cat { padding: 12px 0; }
.bestdz_hvf_cat + .bestdz_hvf_cat { border-top: 1px solid transparent; }

.bestdz_hvf_cat_head {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 6px;
}
.bestdz_hvf_cat_title {
    margin: 0;
    font-size: 15px;
    font-weight: 700;
    color: #55A4B6;
    letter-spacing: .3px;
    text-transform: uppercase;
}
.bestdz_hvf_see_all {
    font-size: 11px;
    color: #55A4B6;
    text-decoration: none;
    font-weight: 600;
    letter-spacing: .5px;
    white-space: nowrap;
    text-transform: uppercase;
}
.bestdz_hvf_see_all:hover { text-decoration: underline; }

.bestdz_hvf_questions {
    list-style: disc;
    margin: 4px 0 0;
    padding-left: 20px;
}
.bestdz_hvf_questions li {
    margin-bottom: 4px;
    color: #55A4B6;
}
.bestdz_hvf_questions a {
    color: #55A4B6;
    font-size: 13px;
    text-decoration: none;
    line-height: 1.45;
}
.bestdz_hvf_questions a:hover { text-decoration: underline; }

/* ---- More topics ---- */
.bestdz_hvf_more_topics { padding: 18px 20px 0; }
.bestdz_hvf_more_topics_title {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #4d4d4d;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 16px;
    text-transform: uppercase;
}
.bestdz_hvf_more_topics_title::before,
.bestdz_hvf_more_topics_title::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #d9d9d9;
    margin: 0 14px;
}

.bestdz_hvf_topics_grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px 20px;
}
.bestdz_hvf_topic a {
    display: block;
    color: #55A4B6;
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .3px;
    text-transform: uppercase;
}
.bestdz_hvf_topic a:hover { text-decoration: underline; }

/* ---- Video Modal ---- */
.bestdz_hvf_modal {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: none;
}
.bestdz_hvf_modal.is-open { display: block; }
.bestdz_hvf_modal_overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.82);
}
.bestdz_hvf_modal_dialog {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: min(92vw, 960px);
    aspect-ratio: 16 / 9;
    background: #000;
    box-shadow: 0 20px 60px rgba(0,0,0,.5);
}
.bestdz_hvf_modal_close {
    position: absolute;
    top: -40px; right: 0;
    width: 36px; height: 36px;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    line-height: 1;
}
.bestdz_hvf_modal_frame,
.bestdz_hvf_modal_frame iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

/* ---- Responsive ---- */
@media (max-width: 900px) {
    .bestdz_hvf_container {
        grid-template-columns: 1fr;
        gap: 28px;
    }
}

@media (max-width: 600px) {
    .bestdz_hvf_container { padding: 14px; }
    .bestdz_hvf_section_title { font-size: 16px; }
    .bestdz_hvf_featured_caption { font-size: 14px; padding: 10px 14px; }

    .bestdz_hvf_video_item .bestdz_hvf_video {
        grid-template-columns: 45% 1fr;
        gap: 12px;
    }
    .bestdz_hvf_video_name { font-size: 12px; }
    .bestdz_hvf_video_sub { font-size: 10px; }

    .bestdz_hvf_faq_header h3 { font-size: 15px; }
    .bestdz_hvf_cat_title { font-size: 13px; }
    .bestdz_hvf_questions a { font-size: 12px; }

    .bestdz_hvf_topics_grid { grid-template-columns: 1fr; }

    .bestdz_hvf_btn { font-size: 12px; padding: 12px 16px; }
}

/* ============================================
   Retailer Logos Widget (bestdz_rl_)
   ============================================ */
.bestdz_rl_section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    box-sizing: border-box;
}
.bestdz_rl_section *,
.bestdz_rl_section *::before,
.bestdz_rl_section *::after { box-sizing: border-box; }

.bestdz_rl_heading {
    text-align: center;
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 24px;
    color: #333;
}

.bestdz_rl_grid {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.bestdz_rl_item { margin: 0; }

.bestdz_rl_card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #333;
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
    padding: 0 0 12px;
    overflow: hidden;
    transition: box-shadow .25s ease, transform .25s ease, border-color .25s ease;
    height: 100%;
}
.bestdz_rl_card:hover {
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    transform: translateY(-2px);
    border-color: #cfcfcf;
    color: #333;
}

.bestdz_rl_thumb {
    width: 100%;
    height: 110px;
    padding: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
}
.bestdz_rl_thumb img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.bestdz_rl_name {
    display: block;
    padding: 0 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    line-height: 1.35;
    word-break: break-word;
}

/* Tablet */
@media (max-width: 900px) {
    .bestdz_rl_grid { grid-template-columns: repeat(3, 1fr); gap: 16px; }
    .bestdz_rl_thumb { height: 96px; padding: 12px; }
}

/* Mobile: 2 per row */
@media (max-width: 600px) {
    .bestdz_rl_section { padding: 14px; }
    .bestdz_rl_grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
    .bestdz_rl_thumb { height: 80px; padding: 10px; }
    .bestdz_rl_name { font-size: 12px; }
    .bestdz_rl_heading { font-size: 18px; margin-bottom: 16px; }
}

/* ============================================
   Product Highlights Widget (bdz-ph)
   ============================================ */
.bdz-ph {
    position: relative;
    box-sizing: border-box;
    width: 100%;
}

.bdz-ph *,
.bdz-ph *::before,
.bdz-ph *::after {
    box-sizing: border-box;
}

.bdz-ph__header {
    margin-bottom: 24px;
}

.bdz-ph__heading {
    margin: 0;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.25;
    color: #1c1c1c;
}

.bdz-ph__wrap {
    position: relative;
}

.bdz-ph__swiper {
    overflow: hidden;
}

.bdz-ph__card {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    background: #fff;
    transition: transform 0.25s ease;
}

.bdz-ph__card:hover .bdz-ph__img {
    transform: scale(1.04);
}

/* Wishlist heart button */
.bdz-ph__wishlist {
    position: absolute;
    top: 10px;
    right: 10px;
    width: 32px;
    height: 32px;
    padding: 0;
    border: 1px solid #d9d9d9;
    border-radius: 50%;
    background: #fff;
    color: #888;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    transition: color 0.2s ease, border-color 0.2s ease, transform 0.2s ease, background-color 0.2s ease;
}

.bdz-ph__wishlist:hover {
    transform: scale(1.08);
    border-color: #999;
}

.bdz-ph__wishlist-outline,
.bdz-ph__wishlist-solid {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    line-height: 0;
}

.bdz-ph__wishlist svg {
    width: 56%;
    height: 56%;
    display: block;
}

.bdz-ph__wishlist-solid {
    display: none;
}

.bdz-ph__wishlist.is-active {
    color: #e53e3e;
    border-color: #e53e3e;
}

.bdz-ph__wishlist.is-active .bdz-ph__wishlist-outline {
    display: none;
}

.bdz-ph__wishlist.is-active .bdz-ph__wishlist-solid {
    display: flex;
}

/* Link wrapping content (clickable card) */
.bdz-ph__link {
    display: flex;
    flex-direction: column;
    height: 100%;
    text-decoration: none;
    color: inherit;
}

.bdz-ph__link:hover,
.bdz-ph__link:focus {
    color: inherit;
    text-decoration: none;
}

/* Image area */
.bdz-ph__image-wrap {
    position: relative;
    width: 100%;
    height: 220px;
    padding: 12px;
    overflow: hidden;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
}

.bdz-ph__img {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 0.4s ease;
    display: block;
}

/* Title */
.bdz-ph__title {
    margin: 16px 0 0;
    font-size: 13px;
    font-weight: 400;
    line-height: 1.45;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    word-break: break-word;
}

/* Price */
.bdz-ph__price {
    margin-top: 8px;
    font-size: 16px;
    font-weight: 700;
    line-height: 1.2;
    color: #1c1c1c;
}

/* Side navigation arrows */
.bdz-ph__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    padding: 0;
    border: 1px solid #e5e5e5;
    border-radius: 50%;
    background: #fff;
    color: #666;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.06);
    transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.bdz-ph__nav:hover {
    background: #003DA5;
    color: #fff;
    border-color: #003DA5;
}

.bdz-ph__nav svg {
    width: 50%;
    height: 50%;
    display: block;
}

.bdz-ph__nav--prev {
    left: -20px;
}

.bdz-ph__nav--next {
    right: -20px;
}

.bdz-ph__nav.swiper-button-disabled {
    opacity: 0.35;
    cursor: not-allowed;
    pointer-events: none;
}

/* Pagination dots */
.bdz-ph__dots {
    position: relative;
    margin-top: 24px;
    text-align: center;
    line-height: 0;
}

.bdz-ph__dots .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    margin: 0 4px;
    background: #d6d6d6;
    opacity: 1;
    transition: width 0.25s ease, background-color 0.25s ease;
    border-radius: 5px;
}

.bdz-ph__dots .swiper-pagination-bullet-active {
    width: 28px;
    background: #003DA5;
}

/* Tablet */
@media (max-width: 1023px) {
    .bdz-ph__heading {
        font-size: 24px;
    }

    .bdz-ph__nav--prev {
        left: 4px;
    }

    .bdz-ph__nav--next {
        right: 4px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .bdz-ph__header {
        margin-bottom: 16px;
    }

    .bdz-ph__heading {
        font-size: 20px;
    }

    .bdz-ph__nav {
        width: 34px;
        height: 34px;
    }

    .bdz-ph__image-wrap {
        height: 200px;
    }

    .bdz-ph__title {
        font-size: 12px;
    }

    .bdz-ph__price {
        font-size: 14px;
    }
}

/* ============================================
   Feature Slider Widget (bdz-fs)
   ============================================ */
.bdz-fs {
    position: relative;
    width: 100%;
    box-sizing: border-box;
}

.bdz-fs *,
.bdz-fs *::before,
.bdz-fs *::after {
    box-sizing: border-box;
}

/* Pagination dots positions */
.bdz-fs__dots {
    position: relative;
    text-align: center;
    line-height: 0;
    z-index: 4;
}

.bdz-fs__dots--top {
    margin-bottom: 16px;
}

.bdz-fs__dots--bottom {
    margin-top: 24px;
}

.bdz-fs__dots .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    margin: 0 5px;
    background: #dcdcdc;
    opacity: 1;
    border-radius: 50%;
    transition: width 0.25s ease, background-color 0.25s ease;
}

.bdz-fs__dots .swiper-pagination-bullet-active {
    width: 24px;
    background: #003DA5;
    border-radius: 4px;
}

/* Wrapper that hosts swiper + side arrows */
.bdz-fs__wrap {
    position: relative;
}

.bdz-fs__swiper {
    overflow: hidden;
}

/* Slide layout: 2 columns */
.bdz-fs__slide {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.bdz-fs__slide--media-right {
    flex-direction: row-reverse;
}

/* Media (image) */
.bdz-fs__media {
    position: relative;
    flex: 0 0 50%;
    max-width: 50%;
    height: 380px;
    overflow: hidden;
    border-radius: 8px;
    background: #f5f5f5;
}

.bdz-fs__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Content (right side) */
.bdz-fs__content {
    flex: 1 1 auto;
    min-width: 0;
}

.bdz-fs__title {
    margin: 0 0 24px;
    font-size: 28px;
    font-weight: 700;
    line-height: 1.3;
    color: #1c1c1c;
    word-break: break-word;
}

.bdz-fs__desc {
    margin: 0 0 28px;
    font-size: 14px;
    line-height: 1.65;
    color: #666;
}

.bdz-fs__desc p {
    margin: 0 0 12px;
}

.bdz-fs__desc p:last-child {
    margin-bottom: 0;
}

.bdz-fs__desc strong {
    color: #1c1c1c;
    font-weight: 700;
}

/* Button — rendered as <span> wrapped in <a> */
.bdz-fs__btn-link {
    display: inline-block;
    text-decoration: none;
    line-height: 1;
}

.bdz-fs__btn-link:hover,
.bdz-fs__btn-link:focus {
    text-decoration: none;
}

.bdz-fs__btn {
    display: inline-block;
    padding: 14px 36px;
    background-color: #A9DC14;
    color: #ffffff;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.2;
    border-radius: 30px;
    cursor: pointer;
    transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
    user-select: none;
}

.bdz-fs__btn-link:hover .bdz-fs__btn {
    background-color: #92C100;
    transform: translateY(-1px);
}

.bdz-fs__btn-link:active .bdz-fs__btn {
    transform: translateY(0);
}

/* Side navigation arrows */
.bdz-fs__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: transparent;
    color: #999;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 5;
    transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
}

.bdz-fs__nav:hover {
    color: #1c1c1c;
    transform: translateY(-50%) scale(1.08);
}

.bdz-fs__nav svg {
    width: 60%;
    height: 60%;
    display: block;
}

.bdz-fs__nav--prev {
    left: 0;
}

.bdz-fs__nav--next {
    right: 0;
}

.bdz-fs__nav.swiper-button-disabled {
    opacity: 0.3;
    cursor: not-allowed;
    pointer-events: none;
}

/* Tablet */
@media (max-width: 1023px) {
    .bdz-fs__slide {
        gap: 30px;
    }

    .bdz-fs__title {
        font-size: 24px;
    }

    .bdz-fs__media {
        height: 320px;
    }
}

/* Mobile: stack vertically */
@media (max-width: 767px) {
    .bdz-fs__slide,
    .bdz-fs__slide--media-right {
        flex-direction: column;
        gap: 20px;
    }

    .bdz-fs__media {
        flex: 0 0 100%;
        max-width: 100%;
        width: 100%;
        height: 240px;
    }

    .bdz-fs__title {
        font-size: 20px;
        margin-bottom: 16px;
    }

    .bdz-fs__desc {
        font-size: 13px;
        margin-bottom: 20px;
    }

    .bdz-fs__btn {
        padding: 12px 28px;
        font-size: 14px;
    }

    .bdz-fs__nav {
        width: 36px;
        height: 36px;
    }
}

/* ============================================
   Image Story Card Widget (bdz-is)
   Multi-card repeater. Each card: round image + text flowing
   along the circle using shape-outside.
   ============================================ */
.bdz-is {
    position: relative;
    box-sizing: border-box;
    width: 100%;
    margin: 0 auto;
}

.bdz-is *,
.bdz-is *::before,
.bdz-is *::after {
    box-sizing: border-box;
}

.bdz-is__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 60px;
    align-items: start;
}

/* Single card */
.bdz-is__card {
    --bdz-is-color: #fdb913;
    position: relative;
    display: block;
    text-decoration: none;
    color: inherit;
}

/* Clear floating image so card height is correct */
.bdz-is__card::after {
    content: "";
    display: block;
    clear: both;
}

.bdz-is__card.bdz-is__card--link:hover .bdz-is__title {
    color: var(--bdz-is-color);
}

/* Image wrap — floats so text flows along its circular edge */
.bdz-is__image-wrap {
    position: relative;
    width: 320px;
    max-width: 60%;
    aspect-ratio: 1 / 1;
    overflow: visible;
    z-index: 1;
}

.bdz-is__card--image-right .bdz-is__image-wrap {
    float: right;
    shape-outside: circle();
    shape-margin: 24px;
    margin: 0 0 16px 24px;
}

.bdz-is__card--image-left .bdz-is__image-wrap {
    float: left;
    shape-outside: circle();
    shape-margin: 24px;
    margin: 0 24px 16px 0;
}

/* Round main image */
.bdz-is__image {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background-color: #eef5fb;
    z-index: 1;
}

.bdz-is__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Decorative outline bubbles around the image, escaping the wrap.
   Positioned absolutely against .bdz-is__image-wrap. */
.bdz-is__bubble {
    position: absolute;
    border: 2px solid var(--bdz-is-color);
    border-radius: 50%;
    pointer-events: none;
    background: transparent;
    z-index: 3;
}

/* image-right: bubbles cluster around the right circle */
.bdz-is__card--image-right .bdz-is__bubble--1 {
    width: 38px;
    height: 38px;
    top: 14%;
    right: -10px;
}

.bdz-is__card--image-right .bdz-is__bubble--2 {
    width: 70px;
    height: 70px;
    bottom: -10px;
    left: -28px;
}

.bdz-is__card--image-right .bdz-is__bubble--3 {
    width: 30px;
    height: 30px;
    bottom: 22%;
    left: -16px;
}

.bdz-is__card--image-right .bdz-is__bubble--4 {
    width: 22px;
    height: 22px;
    top: 60%;
    right: -8px;
}

/* image-left: mirror */
.bdz-is__card--image-left .bdz-is__bubble--1 {
    width: 38px;
    height: 38px;
    top: 14%;
    left: -10px;
}

.bdz-is__card--image-left .bdz-is__bubble--2 {
    width: 70px;
    height: 70px;
    bottom: -10px;
    right: -28px;
}

.bdz-is__card--image-left .bdz-is__bubble--3 {
    width: 30px;
    height: 30px;
    bottom: 22%;
    right: -16px;
}

.bdz-is__card--image-left .bdz-is__bubble--4 {
    width: 22px;
    height: 22px;
    top: 60%;
    left: -8px;
}

/* Title and description — flow next to / under the floating circle */
.bdz-is__title {
    margin: 0 0 10px;
    font-size: 18px;
    font-weight: 700;
    color: #222;
    line-height: 1.3;
    transition: color 0.25s ease;
}

.bdz-is__desc {
    font-size: 14px;
    line-height: 1.7;
    color: #555;
}

.bdz-is__desc p {
    margin: 0 0 10px;
}

.bdz-is__desc p:last-child {
    margin-bottom: 0;
}

.bdz-is__desc strong {
    color: #222;
    font-weight: 700;
}

/* Tablet */
@media (max-width: 1023px) {
    .bdz-is__grid {
        gap: 40px;
    }

    .bdz-is__image-wrap {
        width: 260px;
    }

    .bdz-is__card--image-right .bdz-is__image-wrap {
        margin-left: 18px;
        shape-margin: 18px;
    }

    .bdz-is__card--image-left .bdz-is__image-wrap {
        margin-right: 18px;
        shape-margin: 18px;
    }

    .bdz-is__card--image-right .bdz-is__bubble--2,
    .bdz-is__card--image-left .bdz-is__bubble--2 {
        width: 50px;
        height: 50px;
    }
}

/* Mobile: drop the float — image on top, text below */
@media (max-width: 767px) {
    .bdz-is__grid {
        grid-template-columns: 1fr !important;
        gap: 48px;
    }

    .bdz-is__card--image-right .bdz-is__image-wrap,
    .bdz-is__card--image-left .bdz-is__image-wrap {
        float: none;
        shape-outside: none;
        shape-margin: 0;
        margin: 0 auto 20px;
        width: 80%;
        max-width: 280px;
    }

    .bdz-is__title,
    .bdz-is__desc {
        text-align: center;
    }

    .bdz-is__card--image-right .bdz-is__bubble--1,
    .bdz-is__card--image-left .bdz-is__bubble--1 {
        width: 26px;
        height: 26px;
    }

    .bdz-is__card--image-right .bdz-is__bubble--2,
    .bdz-is__card--image-left .bdz-is__bubble--2 {
        width: 40px;
        height: 40px;
    }

    .bdz-is__card--image-right .bdz-is__bubble--3,
    .bdz-is__card--image-left .bdz-is__bubble--3 {
        width: 22px;
        height: 22px;
    }

    .bdz-is__card--image-right .bdz-is__bubble--4,
    .bdz-is__card--image-left .bdz-is__bubble--4 {
        width: 18px;
        height: 18px;
    }
}

/* ============================================
   Feature Circles Carousel Widget
   ============================================ */
.bdz-fc {
    position: relative;
    padding: 0 60px;
}

.bdz-fc__viewport {
    overflow: hidden;
    padding: 24px 0 16px;
}

.bdz-fc__track {
    display: flex;
    will-change: transform;
}

.bdz-fc__slide {
    flex-shrink: 0;
}

.bdz-fc__card {
    display: block;
    text-align: center;
    text-decoration: none;
    color: inherit;
    padding: 0 6px;
}

a.bdz-fc__card:hover {
    color: inherit;
    text-decoration: none;
}

/* ── Circular image with decorations ── */
.bdz-fc__circle {
    position: relative;
    width: 220px;
    height: 220px;
    margin: 0 auto 30px;
    border-radius: 50%;
}

.bdz-fc__img-wrap {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    background: #f5f5f5;
    z-index: 1;
}

.bdz-fc__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.45s ease;
}

a.bdz-fc__card:hover .bdz-fc__img {
    transform: scale(1.04);
}

/* Decorative bubbles around the circle */
.bdz-fc__deco {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

/* Large outline ring – top-right (outside the circle) */
.bdz-fc__deco--1 {
    width: 64px;
    height: 64px;
    top: -10px;
    right: -14px;
    border: 3px solid var(--bdz-fc-c1, #FF4D9D);
    background: transparent;
    z-index: 3;
}

/* Small filled dot – top-left */
.bdz-fc__deco--2 {
    width: 18px;
    height: 18px;
    top: 18px;
    left: -6px;
    background: var(--bdz-fc-c1, #FF4D9D);
    z-index: 3;
}

/* Medium filled circle – bottom-right (overlaps the circle edge) */
.bdz-fc__deco--3 {
    width: 38px;
    height: 38px;
    bottom: -6px;
    right: 22px;
    background: var(--bdz-fc-c2, #FFC93C);
    z-index: 3;
}

/* Small outline ring – bottom-left (outside) */
.bdz-fc__deco--4 {
    width: 26px;
    height: 26px;
    bottom: 24px;
    left: -12px;
    border: 3px solid var(--bdz-fc-c2, #FFC93C);
    background: transparent;
    z-index: 3;
}

/* ── Icon below the circle ── */
.bdz-fc__icon {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 14px;
}

.bdz-fc__icon img {
    height: 56px;
    width: auto;
    object-fit: contain;
}

/* ── Title ── */
.bdz-fc__title {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.45;
    color: #333;
    margin: 0 auto;
    max-width: 240px;
}

/* ── Navigation arrows ── */
.bdz-fc__nav {
    position: absolute;
    top: calc(24px + (220px / 2));
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #2BA0E4;
    padding: 8px;
    transition: color 0.2s, transform 0.2s;
    z-index: 5;
    line-height: 0;
}

.bdz-fc__nav:hover {
    color: #003DA5;
}

.bdz-fc__nav--prev {
    left: 0;
}

.bdz-fc__nav--next {
    right: 0;
}

.bdz-fc__nav svg {
    display: block;
}

/* ── Dots ── */
.bdz-fc__dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 24px;
}

.bdz-fc__dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.25s;
}

.bdz-fc__dot.is-active {
    background: #2BA0E4;
}

/* ── CTA button below carousel ── */
.bdz-fc__cta {
    text-align: center;
    margin-top: 36px;
}

.bdz-fc__btn {
    display: inline-block;
    background: #2BA0E4;
    color: #fff;
    padding: 11px 36px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    line-height: 1.2;
    transition: background 0.25s ease, color 0.25s ease, transform 0.25s ease;
}

.bdz-fc__btn:hover {
    background: #1a7fbd;
    color: #fff;
    text-decoration: none;
    transform: translateY(-1px);
}

/* ── Tablet ── */
@media (max-width: 1024px) {
    .bdz-fc {
        padding: 0 40px;
    }

    .bdz-fc__circle {
        width: 180px;
        height: 180px;
    }

    .bdz-fc__nav {
        top: calc(24px + (180px / 2));
    }

    .bdz-fc__deco--1 {
        width: 50px;
        height: 50px;
    }

    .bdz-fc__deco--3 {
        width: 30px;
        height: 30px;
    }

    .bdz-fc__icon img {
        height: 48px;
    }
}

/* ── Mobile ── */
@media (max-width: 767px) {
    .bdz-fc {
        padding: 0 16px;
    }

    .bdz-fc__circle {
        width: 200px;
        height: 200px;
        margin-bottom: 24px;
    }

    .bdz-fc__nav {
        display: none;
    }

    .bdz-fc__title {
        font-size: 13px;
    }

    .bdz-fc__icon img {
        height: 50px;
    }

    .bdz-fc__cta {
        margin-top: 28px;
    }

    .bdz-fc__btn {
        padding: 10px 28px;
        font-size: 13px;
    }
}
