.banner-grid-two.dmct-banner-slider {
    position: relative;
    display: block;
    gap: 0;
    overflow: visible;
    scroll-snap-type: none;
}

.dmct-banner-viewport {
    width: 100%;
    overflow: hidden;
}

.dmct-banner-track {
    display: flex;
    gap: 10px;
    transition: transform 0.32s ease;
    will-change: transform;
}

.dmct-banner-item {
    flex: 0 0 calc((100% - 10px) / 2);
    min-width: calc((100% - 10px) / 2);
    max-width: calc((100% - 10px) / 2);
}

.dmct-banner-link {
    display: block;
    width: 100%;
    text-decoration: none;
}

.dmct-banner-image {
    display: block;
    width: 100%;
    height: auto;
    aspect-ratio: 590 / 200;
    object-fit: cover;
    border-radius: 8px;
}

.dmct-banner-nav {
    width: 42px;
    height: 42px;
    border: 1px solid #d8dee6;
    border-radius: 999px;
    background: #fff;
    color: #2f3a45;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 3;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    opacity: 0.62;
    box-shadow: 0 6px 20px rgba(15, 23, 42, 0.16);
    transition: all 0.2s ease;
}

.dmct-banner-nav i {
    font-size: 24px;
    line-height: 1;
}

.dmct-banner-nav-prev {
    left: -21px;
}

.dmct-banner-nav-next {
    right: -21px;
}

.dmct-banner-nav:hover {
    background: #f35b04;
    border-color: #f35b04;
    color: #fff;
    opacity: 1;
}

.dmct-banner-nav:disabled {
    opacity: 0.45;
    cursor: not-allowed;
}

.hero-slider .hero-slider-nav {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.hero-slider:hover .hero-slider-nav,
.hero-slider:focus-within .hero-slider-nav {
    opacity: 0.62;
    visibility: visible;
    pointer-events: auto;
}

.featured-product-thumb-image-wrap {
    padding: 0;
    border: none;
    background: #fff;
    overflow: hidden;
}

.featured-product-image {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-list-related-industries {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    min-width: 0;
    overflow: visible;
    padding: 0 0 2px;
}

.product-list-related-industry {
    min-height: 48px;
    min-width: 132px;
    border: 1px solid #e1e6ee;
    border-radius: 8px;
    background: #fff;
    color: #1D2939;
    text-decoration: none;
    padding: 6px 12px 6px 9px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    flex: 0 1 auto;
    transition: border-color 0.2s ease, background-color 0.2s ease;
}

.product-list-related-industry:hover,
.product-list-related-industry:focus-visible,
.product-list-related-industry.is-active {
    border-color: #f35b04;
    color: #1D2939;
}

.product-list-related-industry:focus-visible {
    outline: none;
}

.product-list-related-industry-thumb {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: #f4f6f8;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.product-list-related-industry-thumb img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-list-related-industry-thumb i {
    color: #8a94a3;
    font-size: 18px;
}

.product-list-related-industry-name {
    display: flex;
    flex-direction: column;
    font-size: 14px;
    line-height: 1.2;
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 768px) {
    .dmct-banner-viewport {
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x proximity;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        touch-action: pan-x;
    }

    .dmct-banner-viewport::-webkit-scrollbar {
        display: none;
    }

    .dmct-banner-track {
        transition: none;
        will-change: auto;
    }

    .dmct-banner-item {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
        scroll-snap-align: start;
    }

    .dmct-banner-nav {
        display: none;
        width: 36px;
        height: 36px;
    }

    .dmct-banner-nav-prev {
        left: 8px;
    }

    .dmct-banner-nav-next {
        right: 8px;
    }

    .product-list-related-industries {
        gap: 8px;
    }

    .product-list-related-industry {
        min-height: 44px;
        min-width: 118px;
        padding: 5px 10px 5px 7px;
        gap: 7px;
    }

    .product-list-related-industry-thumb {
        width: 30px;
        height: 30px;
    }

    .product-list-related-industry-name {
        font-size: 13px;
    }
}
