/* Container */
.chs-slider {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

/* Container */
.chs-slider {
    position: relative;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
}

/* Slide style */
.chs-slide {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex !important;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    overflow: hidden;
}

/* Overlay */
.chs-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    border-radius: 20px;
    z-index: 1;
}

/* Content */
.chs-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #fff;
    max-width: 800px;
    padding: 0 20px;
    font-family: 'Roboto', sans-serif;
}

/* Subtitle + tag */
.chs-subtitle {
    font-size: 16px;
    font-weight: 500;
    display: inline-block;
    margin-bottom: 20px;
}

.chs-tag {
    background: #DC3545;
    padding: 2px 8px;
    border-radius: 2px;
    font-size: 14px;
    margin-left: 6px;
}

/* Title & text */
.chs-title {
    font-size: clamp(28px, 5vw, 48px);
    /* ✅ responsive font size: scales smoothly */
    font-weight: 500;
    margin-bottom: 20px;
    color: #FFFFFF;
    white-space: nowrap;
    /* ✅ stays on one line */
    overflow: visible;
    /* ✅ no cutting */
    text-overflow: unset;
    line-height: 1.2;
}

.chs-text {
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 20px;
    line-height: 1.6;
}

/* Button */
.chs-btn {
    background: #061D49;
    color: #fff;
    padding: 15px 24px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 16px;
    transition: all 0.3s ease;
}

.chs-btn:hover {
    background: #0b2e7b;
}

/* Arrows */
.slick-prev,
.slick-next {
    background: rgba(0, 0, 0, 0.5);
    width: 65px;
    height: 65px;
    border-radius: 50%;
    z-index: 10;
    display: flex !important;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.slick-prev:hover,
.slick-next:hover {
    background: rgba(0, 0, 0, 0.7);
}

.slick-prev {
    left: 25px;
}

.slick-next {
    right: 25px;
}

/* Arrow icons */
.slick-prev .material-icons,
.slick-next .material-icons {
    color: #FFFFFF;
    font-size: 48px;
    line-height: 1;
}

/* Custom dots */
/* Custom dots */
.slick-dots {
    bottom: 20px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 14px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.slick-dots li {
    width: 14px;
    height: 14px;
    transition: all 0.3s ease;
    position: relative;
}

.slick-dots li button {
    width: 100%;
    height: 100%;
    padding: 0;
    border: none;
    background: transparent;
    outline: none;
    cursor: pointer;
}

/* Default dots */
.slick-dots li button:before {
    content: '';
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    opacity: 1;
    transition: all 0.3s ease;
}

/* Active dot — absolute so it doesn’t affect spacing */
.slick-dots li.slick-active button:before {
    background: #FFD700;
    width: 50px;
    height: 14px;
    border-radius: 10px;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    opacity: 1;
}

.slick-prev:before,
.slick-next:before {
    display: none;
}

/* Responsive */
@media (max-width: 768px) {
    .chs-slide {
        height: 400px;
    }

    .chs-title {
        font-size: 30px;
    }

    .chs-text {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .chs-slide {
        height: 400px;
    }

    .chs-title {
        font-size: clamp(20px, 6vw, 28px);
        /* ✅ scales nicely on mobile too */
    }

    .chs-text {
        font-size: 14px;
    }

    .chs-btn {
        font-size: 14px;
        padding: 12px 18px;
    }

    .slick-prev,
    .slick-next {
        width: 45px;
        height: 45px;
    }

    .slick-prev .material-icons,
    .slick-next .material-icons {
        font-size: 32px;
    }

    .slick-dots {
        bottom: 10px;
    }
}

.wc-product-downloads {
    margin-top: 30px;
}

.wc-product-downloads h3 {
    font-family: 'Roboto', sans-serif;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 10px;
    color: #333333;
}

.wc-download-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border: 1px solid #e2e2e2;
    padding: 14px 18px;
    border-radius: 6px;
    background: #fff;
}

.wc-download-label {
    font-size: 16px;
    font-weight: 600;
    color: #333333;
    font-family: 'Roboto', sans-serif;
}

.wc-download-subtitle {
    font-size: 14px;
    color: #333333;
    margin-top: 3px;
}

.wc-download-btn {
    background: #fff;
    border: 1px solid #061D49;
    color: #061D49;
    padding: 8px 14px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
    display: flex;
    align-items: center;
}

.wc-download-btn:hover {
    background: #002d63;
    color: #fff;
}