.fdc-carousel {
    margin: 40px auto;
    position: relative;
}

/* Slide Container */
.fdc-slide {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 12px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    height: 100%;
    min-height: 420px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

/* Product Image */
.fdc-slide img {
    max-height: 150px;
    object-fit: contain;
    margin: 0 auto 15px;
}

/* Label: always takes space */
.fdc-label {
    height: 24px;
    min-height: 24px;
    margin-bottom: 10px;
    font-weight: bold;
    color: green;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Product Price */
.fdc-price {
    font-weight: bold;
    font-size: 15px;
    margin: 10px 0;
}

/* CTA Button */
.fdc-link {
    display: inline-block;
    margin-top: auto;
    color: #6db644;
    text-decoration: none;
}
.fdc-link:hover {
    text-decoration: underline;
}

/* Carousel Dots */
.slick-dots {
    text-align: center;
    margin-top: 30px;
}
.slick-dots li {
    display: inline-block;
    margin: 0 6px;
}
.slick-dots button {
    font-size: 0;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    border: none;
}
.slick-dots .slick-active button {
    background: #d4af00;
}

/* Carousel Arrows */
.fdc-carousel .slick-prev,
.fdc-carousel .slick-next {
    width: 40px;
    height: 60px;
    font-size: 30px;
    color: #bbb !important;
    background: none !important;
    border: none !important;
    padding: 0;
    margin: 0;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1 !important;
    outline: none !important;
    box-shadow: none !important;
}

.fdc-carousel .slick-prev:hover,
.fdc-carousel .slick-next:hover,
.fdc-carousel .slick-prev:focus,
.fdc-carousel .slick-next:focus,
.fdc-carousel .slick-prev:active,
.fdc-carousel .slick-next:active {
    color: #bbb !important;
    background: none !important;
    outline: none !important;
    box-shadow: none !important;
}

.fdc-carousel .slick-prev {
    left: -50px;
}

.fdc-carousel .slick-next {
    right: -50px;
}
