/**
 * Aquarium Carousel - Styles
 * Basé sur le style "Nous on sème"
 */

/* ===== CONTENEUR CAROUSEL ===== */
.aquarium-carousel-wrapper {
    position: relative;
    margin: 0 -20px;
    padding: 0 60px 50px;
}

.aquarium-carousel {
    margin: 0;
}

.aquarium-carousel .slick-track {
    display: flex !important;
    align-items: stretch;
}

.aquarium-carousel .slick-slide {
    height: auto;
    display: flex !important;
    padding: 0 10px;
}

.aquarium-carousel .slick-slide > div {
    width: 100%;
    display: flex;
}

/* ===== CARTES PRODUIT ===== */
.aquarium-card-title-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.aquarium-card-title-container H5,
.aquarium-card-title-container H4 {
    font-family: "Alternate Gothic", Helvetica, Arial, Lucida, sans-serif;
    font-size: 30px;
}

.aquarium-card-title-container H5 {
    font-size: 30px;
    background: #1EC0CA;
    border-top-left-radius: 50px;
    border-bottom-right-radius: 50px;
    padding: 20px;
    color: #fff;
}

H4.aquarium-card-volume {
    font-weight: 700;
    padding: 0;
}

H4.aquarium-card-volume sup,
H6.aquarium-card-volume-wording sup {
    bottom: 0;
}

H6.aquarium-card-volume-wording {
    text-transform: uppercase;
    font-size: 9px;
    font-weight: 700;
}

.aquarium-card {
    background-color: white;
    border-radius: 15px;
    overflow: hidden;
    margin: 0;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    width: 100%;
}

.aquarium-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.aquarium-card-image {
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.aquarium-card-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.aquarium-card-content {
    padding: 20px;
    min-height: 150px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.aquarium-card-title {
    font-size: 20px;
    font-weight: bold;
    color: #113e35;
    margin: 0 0 15px 0;
    text-transform: uppercase;
}

.aquarium-card-avantage {
    margin-bottom: 15px;
}

.aquarium-card-avantage p {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: #00B4D8;
}

.aquarium-card-description {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
    margin: 0;
}

.aquarium-no-products {
    text-align: center;
    color: #666;
    font-size: 18px;
    padding: 40px;
}

.aquarium-card ul {
    list-style: none;
    padding-left: 0;
    padding-bottom: 10px;
    margin: 0;
}

.aquarium-card ul li {
    font-family: "Brandon Grotesque", sans-serif;
    font-size: 16px;
    position: relative;
    padding: 0 25px;
    margin-bottom: 8px;
    color: #000000;
}

.aquarium-card ul li::before {
    content: '\4e';
    font-family: 'ETmodules';
    position: absolute;
    left: 5px;
    color: #000000;
    font-size: 18px;
    font-weight: normal;
}

.aquarium-card-description {
    flex-direction: column;
}

.aquarium-card-description p {
    padding: 0 25px 20px;
    /*margin-bottom: 20px;*/
}

.aquarium-card {
    padding-bottom: 20px !important;
}

/* ===== SLICK ARROWS ===== */
.aquarium-carousel .slick-prev,
.aquarium-carousel .slick-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    width: auto;
    height: auto;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.aquarium-carousel .slick-prev {
    left: -40px;
}

.aquarium-carousel .slick-next {
    right: -40px;
}

.aquarium-carousel .slick-prev svg,
.aquarium-carousel .slick-next svg {
    width: 52px;
    height: 52px;
    stroke-width: 3;
    color: #00B4D8;
}

.aquarium-carousel .slick-prev:hover svg,
.aquarium-carousel .slick-next:hover svg {
    opacity: 0.7;
}

.aquarium-carousel .slick-prev:before,
.aquarium-carousel .slick-next:before {
    display: none;
}

/* ===== SLICK DOTS ===== */
.aquarium-carousel .slick-dots {
    display: flex !important;
    justify-content: center;
    gap: 8px;
    padding: 20px 0 0;
    margin: 0;
    list-style: none;
}

.aquarium-carousel .slick-dots li {
    width: 8px;
    height: 8px;
    margin: 0;
}

.aquarium-carousel .slick-dots li button {
    width: 8px;
    height: 8px;
    padding: 0;
    border: none;
    background: transparent;
    cursor: pointer;
}

.aquarium-carousel .slick-dots li button:before {
    content: '';
    display: block;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(0, 180, 216, 0.3);
    transition: all 0.3s ease;
    opacity: 1;
}

.aquarium-carousel .slick-dots li.slick-active button:before {
    width: 24px;
    border-radius: 4px;
    background-color: #00B4D8;
    opacity: 1;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
    .aquarium-carousel-wrapper {
        padding: 0 50px 50px;
    }

    .aquarium-carousel .slick-prev {
        left: -30px;
    }

    .aquarium-carousel .slick-next {
        right: -30px;
    }

    .aquarium-carousel .slick-prev svg,
    .aquarium-carousel .slick-next svg {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 768px) {
    .aquarium-carousel-wrapper {
        padding: 0 20px 50px;
        margin: 0;
    }

    .aquarium-card-image {
        height: 250px;
    }

    .aquarium-carousel .slick-prev,
    .aquarium-carousel .slick-next {
        display: none !important;
    }
}

@media (max-width: 480px) {
    .aquarium-card-image {
        height: 200px;
    }

    .aquarium-card-content {
        padding: 15px;
        min-height: auto;
    }

    .aquarium-card-title {
        font-size: 16px;
    }
}
