.kreabel-slider-wrapper {
    border-radius: 20px;
    padding: 40px 60px;
    position: relative;
    overflow: hidden;
}

.kreabel-slide {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.kreabel-content {
    flex: 1;
    min-width: 300px;
    padding-right: 20px;
}

.kreabel-badge {
    display: inline-block;
    background-color: #000;
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: 30px;
    margin-bottom: 30px;
}

.kreabel-title {
    font-size: 42px;
    font-weight: 800;
    color: #000;
    line-height: 1.1;
    margin: 0 0 20px 0;
    text-transform: none;
}

.kreabel-pricing {
    display: flex;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 30px;
}

.kreabel-price {
    font-size: 32px;
    font-weight: 800;
    color: #000;
}

.kreabel-old-price {
    font-size: 20px;
    color: #666;
    text-decoration: line-through;
}

.kreabel-btn {
    display: inline-flex;
    align-items: center;
    background-color: #1877F2; /* Bleu type PrestaShop/Maquette */
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 12px 25px;
    border-radius: 30px;
    text-decoration: none;
    transition: background 0.3s ease;
}

.kreabel-btn:hover {
    background-color: #105bbd;
    color: #fff;
}

.kreabel-image-container {
    flex: 1.5;
    text-align: right;
}

.kreabel-img {
    max-width: 100%;
    height: auto;
    object-fit: contain;
}

/* --- Contrôles (Pagination & Flèche) --- */
.kreabel-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
    position: relative;
}

/* Customisation des petits points Swiper */
.kreabel-pagination.swiper-pagination-bullets {
    position: relative;
    bottom: 0;
}

.kreabel-pagination .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: #d1d1d1;
    opacity: 1;
    margin: 0 5px;
}

.kreabel-pagination .swiper-pagination-bullet-active {
    width: 35px;
    border-radius: 5px;
    background: #1877F2; /* Bleu actif */
}

/* Bouton carré noir en bas à droite */
.kreabel-next-arrow {
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50px;
    height: 50px;
    background-color: #000;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease;
}

.kreabel-next-arrow:hover {
    transform: scale(1.05);
}

/* Responsive basique */
@media (max-width: 768px) {
    .kreabel-slide { flex-direction: column-reverse; text-align: center; }
    .kreabel-content { padding-right: 0; }
    .kreabel-pricing { justify-content: center; }
    .kreabel-next-arrow { display: none; }
}