/* shop category start */

.category-showcase {
    max-width: 1400px;
    margin: 0 auto;
}

/* showcase start */

.category-showcase__header {
    text-align: center;
    /* margin-bottom: 60px; */
    position: relative;
}

.category-showcase__title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
}

.category-showcase__title::before,
.category-showcase__title::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 200px;
    height: 2px;
    background: linear-gradient(to right, transparent, #d32f2f, transparent);
}

.category-showcase__title::before {
    right: calc(100% + 30px);
}

.category-showcase__title::after {
    left: calc(100% + 30px);
}

/* showcase end */

/* showcase start 2 */

.category-showcase__header2 {
    text-align: center;
    /* margin-bottom: 60px; */
    position: relative;
}

.category-showcase__title2 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #1a1a1a;
    position: relative;
    display: inline-block;
    margin-bottom: 45px !important;
}

.category-showcase__title2::before,
.category-showcase__title2::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 200px;
    height: 2px;
    background: linear-gradient(to right, transparent, #d32f2f, transparent);
}

.category-showcase__title2::before {
    right: calc(100% + 30px);
}

.category-showcase__title2::after {
    left: calc(100% + 30px);
}

/* showcase end 2 */



.category-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 0px;
    padding: 0 20px;
}

.category-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    transition: all 0.3s ease;
    cursor: pointer;
    /* box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); */
    position: relative;
    overflow: hidden;
    text-decoration: none;

}

/* .category-card::before {
          content: '';
          position: absolute;
          top: 0;
          left: 0;
          right: 0;
          height: 4px;
          background: linear-gradient(90deg, #d32f2f, #ff5252);
          transform: scaleX(0);
          transition: transform 0.3s ease;
      } */

.category-card:hover {
    transform: translateY(-8px);
    /* box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15); */
}

.category-card:hover::before {
    transform: scaleX(1);
}

.category-card__image-wrapper {
    /* height: 200px; */
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    position: relative;
}

.category-card__image-wrapper img {
    width: 250px;
    height: 200px;
    object-fit: contain;
}

.category-card__image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.category-card:hover .category-card__image {
    transform: scale(1.05);
}

.category-card__title {
    font-size: 1.25rem;
    font-weight: 400;
    color: #1a1a1a;
    margin: 0;
    transition: color 0.3s ease;
}

.category-card:hover .category-card__title {
    color: #d32f2f;
}



/* Responsive Design */
@media (max-width: 1200px) {
    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 25px;
    }

    .category-showcase__title::before,
    .category-showcase__title::after {
        width: 150px;
    }
}

@media (max-width: 768px) {
    .category-showcase__title {
        font-size: 2rem;
    }

    .category-showcase__title::before,
    .category-showcase__title::after {
        width: 80px;
    }

    .category-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 20px;
        padding: 0 10px;
    }

    .category-card {
        padding: 30px 15px;
    }

    .category-card__image-wrapper {
        height: 160px;
        margin-bottom: 20px;
    }

    .category-card__title {
        font-size: 1.1rem;
    }
}

@media (max-width: 480px) {
    body {
        padding: 20px 10px;
    }

    .category-showcase__header {
        margin-bottom: 40px;
    }

    .category-showcase__title {
        font-size: 1.5rem;
    }

    .category-showcase__title::before,
    .category-showcase__title::after {
        display: none;
    }

    .category-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }

    .category-card {
        padding: 25px 15px;
    }

    .category-card__image-wrapper {
        height: 140px;
    }

    .category-card__logo-text {
        font-size: 1.5rem;
    }
}

/* shop category end */


/* banner css start */

#predatorImageSlider {
    width: 100%;
    height: 420px;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

/* Slide */
.predator-img-slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition: opacity 0.8s ease;
}

.predator-img-slide.active {
    opacity: 1;
    z-index: 1;
}

/* Image full cover */
.predator-img-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Dots */
.predator-slider-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 14px;
}

.predator-dot {
    width: 18px;
    height: 18px;
    background: #333;
    border-radius: 50%;
    cursor: pointer;
}

.predator-dot.active {
    background: #e10600;
}

/* Mobile */
@media (max-width: 768px) {
    #predatorImageSlider {
        height: 260px;
    }
}


/* banner css end */



/* single banner css start */

#singleBannerImage {
    width: 100%;
    height: 420px;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
}

.single-banner-slide {
    width: 100%;
    height: 100%;
}

.single-banner-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Mobile view */
@media (max-width: 768px) {
    #singleBannerImage {
        height: 260px;
    }
}


/* single banner css end */

/* youtube video start */



.dx-video-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 30px;
}

/* ===== LAYOUT ===== */
.dx-video-wrapper {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 20px;
}

/* ===== MAIN VIDEO ===== */
.dx-video-main {
    position: relative;
}

.dx-video-cover {
    position: relative;
    cursor: pointer;
}

.dx-video-cover img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    /* border-radius: 6px; */
}

.dx-play-btn {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 64px;
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 6px;
}

.dx-video-main iframe {
    width: 100%;
    height: 420px;
    border: none;
    border-radius: 6px;
    display: none;
}

/* ===== VIDEO LIST ===== */
.dx-video-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.dx-video-item {
    display: flex;
    gap: 12px;
    cursor: pointer;
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 6px;
    transition: 0.3s;
    border-right: 8px solid #0f4b91;
}

.dx-video-item:hover {
    background: #f5f5f5;
}

.dx-video-thumb {
    width: 120px;
    position: relative;
    flex-shrink: 0;
}

.dx-video-thumb img {
    width: 100%;
    border-radius: 4px;
}

.dx-video-thumb::after {
    content: "▶";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    color: #fff;
    background: rgba(0, 0, 0, 0.35);
    border-radius: 4px;
}

.dx-video-text {
    font-size: 14px;
    font-weight: 500;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 992px) {
    .dx-video-wrapper {
        grid-template-columns: 1fr;
    }

    .dx-video-cover img,
    .dx-video-main iframe {
        height: 360px;
    }
}

@media (max-width: 576px) {

    .dx-video-cover img,
    .dx-video-main iframe {
        height: 220px;
    }

    .dx-video-item {
        flex-direction: column;
    }

    .dx-video-thumb {
        width: 100%;
    }
}