/* Container */
.kerne-avis-client-container {
    position: relative;
    width: 100%;
}

/* Swiper */
.kerne-avis-swiper {
    overflow: visible;
    padding: 2rem 0;
    max-width: var(--wp--style--global--wide-size);
}

.kerne-avis-swiper .swiper-slide {
    height: auto;
}

.kerne-avis-swiper .swiper-nav {
    position: relative;
    height:40px;

    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap:1rem;
    margin-bottom: 3rem;
}

.kerne-avis-swiper .swiper-nav h2 {
margin-right: auto;
font-size: var(--wp--preset--font-size--5-xl) !important;
}

.kerne-avis-swiper .swiper-nav .swiper-button-next,
.kerne-avis-swiper .swiper-nav .swiper-button-prev {
    position: relative;
    top:auto;
    left: auto;
    right: auto;
    bottom: auto;
    margin: 0;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: color-mix(in srgb, var(--wp--preset--color--text-default) 5%, transparent);
    transition: all ease-in 250ms;
}

.kerne-avis-swiper .swiper-nav .swiper-button-next:hover,
.kerne-avis-swiper .swiper-nav .swiper-button-prev:hover {
background-color: var(--wp--preset--color--accent);
}

.kerne-avis-swiper .swiper-nav .swiper-button-next:hover::after,
.kerne-avis-swiper .swiper-nav .swiper-button-prev:hover::after {
background-color: var(--wp--preset--color--white);
}





.kerne-avis-swiper .swiper-button-prev::after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 14px;
    background-color: var(--wp--preset--color--text-default);
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='18' height='14' viewBox='0 0 18 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 7H17M17 7L11 1M17 7L11 13' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask: url("data:image/svg+xml,%3Csvg width='18' height='14' viewBox='0 0 18 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 7H17M17 7L11 1M17 7L11 13' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    transform: rotate(180deg);
  }
  
  .kerne-avis-swiper .swiper-button-next::after {
    content: "";
    display: inline-block;
    width: 18px;
    height: 14px;
    background-color: var(--wp--preset--color--text-default);
    -webkit-mask: url("data:image/svg+xml,%3Csvg width='18' height='14' viewBox='0 0 18 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 7H17M17 7L11 1M17 7L11 13' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    mask: url("data:image/svg+xml,%3Csvg width='18' height='14' viewBox='0 0 18 14' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 7H17M17 7L11 1M17 7L11 13' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-size: contain;
    background-repeat: no-repeat;
  }



/* Card */
.kerne-avis-swiper .card {
    display: flex;
    flex-direction: column;
    gap: .5rem;
    padding: 0;
    
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: var(--wp--preset--color--text-default);

}



/* Avis Header */
.avis-header {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: start;
    gap: .25rem;
    flex-wrap: wrap;
}

.avis-title {
    font-family: var(--wp--preset--font-family--poppins);
    font-weight: 900;
    line-height: 1.2;
}


/* Rating Stars */
.avis-rating {
    display: flex;
    gap: 0.25rem;
    align-items: center;
}

.star {
    font-size: 1.25rem;
    line-height: 1;
}

.star-filled {
    color: #F59E0B;
}

.star-empty {
    color: #D1D5DB;
}

.rating-text {
    margin-left: 0.5rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #6B7280;
}

/* Date */
.avis-date {
    font-size: 0.875rem;
    color: #6B7280;
}

/* Comment */
.avis-comment {
    flex: 1;
    margin: 0.5rem 0;

}

.avis-comment p {
    font-size: .85rem;
    margin: 0;
    line-height: 1.6;
    color: var(--wp--preset--color--text-default);
}

/* Footer */
.avis-footer {
    margin-top: auto;
    padding-top: 1rem;
    border-top: 1px solid #E5E7EB;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.avis-author-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.avis-author-name {
    color: #111827;
}

.avis-link {
    margin-top: 0.5rem;
}

.avis-link a {
    color: #7EA58C;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s ease;
}

.avis-link a:hover {
    color: #486753;
    text-decoration: underline;
}

/* Badge */
.badge.greenkerne {
    background: #D8E4DC;
    color: #486753;
}

.badge {
    text-transform: uppercase;
    font-size: 11px;
    line-height: 12px;
    padding: 2px 8px;
    border-radius: 16px;
    display: inline-flex;
    white-space: nowrap;
}

/* Navigation */
.kerne-avis-swiper .swiper-button-prev,
.kerne-avis-swiper .swiper-button-next {
    color: var(--wp--preset--color--primary, #000);
}

.kerne-avis-swiper .swiper-pagination-bullet-active {
    background: var(--wp--preset--color--primary, #000);
}

@media (max-width: 768px) {
    .kerne-avis-swiper .swiper-button-prev,
    .kerne-avis-swiper .swiper-button-next {
        display: none;
    }
    
    .avis-header {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* Éditeur */
.kerne-avis-client-editor {
    min-height: 200px;
}

/* Notice pour les administrateurs */
.kerne-avis-client-container .notice {
    margin: 1rem;
    padding: 1rem;
    border-left: 4px solid #dc3232;
    background: #fff;
}

.kerne-avis-client-container .notice p {
    margin: 0;
}
