.cozyinn-carousel-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    width: 100%;
	overflow: hidden;
    padding: 0;
    margin: 0;
}

.cozyinn-reviews-carousel {
    display: flex;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    gap: 20px;
    padding: 10px;
    scrollbar-width: none; /* Firefox */
}

.cozyinn-reviews-carousel::-webkit-scrollbar {
    display: none; /* Chrome */
}

.cozyinn-review-item {
    min-width: 300px;
    max-width: 320px;
    background: #fff;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.6);
    scroll-snap-align: start;
    flex-shrink: 0;
}

.cozyinn-carousel-btn {
    background: #ffffff;
    border: none;
    font-size: 32px;
    width: 35px;
    height: 35px;
    min-width: 35px;
    min-height: 35px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0,0,0,0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;

    /* WICHTIG: Pfeile immer sichtbar */
    opacity: 1;
    color: #333;
    transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
	
	@media (max-width: 768px) {
    
        display: none !important;
    }

}

.cozyinn-carousel-btn:hover {
    transform: scale(1.12);
    background: #A7A7A7;
    opacity: 1; /* bleibt sichtbar */
}



.cozyinn-review-avatar img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
}

.cozyinn-review-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}

.cozyinn-review-rating {
    color: #f5b50a;
    font-size: 18px;
}

.cozyinn-review-time {
    margin-left: auto;
    opacity: 0.6;
    font-size: 12px;
}

.cozyinn-review-text {
    margin-top: 10px;
    font-size: 14px;
    line-height: 1.4;
}


/* MOBILE: Nur eine Karte anzeigen, vergrößern und zentrieren */
@media (max-width: 768px) {

    .cozyinn-carousel-wrapper {
        max-width: 100%;
        overflow: hidden;
        display: flex;
        justify-content: center;
    }

    .cozyinn-reviews-carousel {
        display: flex;
        overflow-x: auto;
        scroll-snap-type: x mandatory;
        justify-content: center;        
		padding: 20px 0; /* Platz oben/unten für Schatten */
    }



    .cozyinn-review-item {
        flex: 0 0 95%;      /* Karte groß machen */
        max-width: 95%;     /* Karte zentriert halten */
        margin: 0 auto;     /* Karte zentrieren */
        scroll-snap-align: center;
    }

    /* Buttons auf Mobile ausblenden */
    .cozyinn-carousel-btn {
        display: none !important;
    }
}
