/* Common styles for all cards */
.wsus__featured_single {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-radius: 12px;
    overflow: hidden;
}

.wsus__featured_single:hover {
    transform: translateY(-5px);
    /*box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);*/
}

/* Image enhancements */
.wsus__featured_single .list_images {
    position: relative;
    overflow: hidden;
}

.wsus__featured_single .list_images img {
    transition: transform 0.5s ease;
}

.wsus__featured_single:hover .list_images img {
    transform: scale(1.05);
}

/* Category label enhancements */
.small_text {
    font-weight: 600;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Card content enhancements */
.wsus__featured_single_text {
    padding: 15px !important;
}

.wsus__featured_single_text h6 {
    margin-bottom: 10px !important;
    font-weight: 700 !important;
    font-size: 18px !important;
}

.wsus__featured_single_text .address {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    color: #666;
}

.wsus__featured_single_text .address i {
    margin-right: 5px;
    color: #397EFF;
}

/* List view specific enhancements */
.list_view .wsus__featured_single {
    border: 1px solid #eee;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.list_view .wsus__featured_single:hover {
    border-color: #DDD;
}

.list_view .wsus__featured_single_text {
    padding: 20px !important;
}

.list_view .wsus__featured_single_text .list_details {
    line-height: 1.6;
    margin-bottom: 15px;
    color: #666;
}

/* Grid view specific enhancements */
.grid_view .wsus__featured_single {
    /*border: 1px solid #eee;*/
    height: 100%;
}

.grid_view .card-body {
    padding: 15px;
}

/* Accommodation list enhancements */
.wsus__featured_single_text ul {
    margin-top: 10px;
    padding-left: 0;
}

.wsus__featured_single_text ul li {
    display: flex;
    align-items: center;
    margin-bottom: 5px;
    font-size: 14px;
}

.wsus__featured_single_text ul li i {
    margin-right: 5px;
    color: #397EFF;
}

/* Official rating stars enhancement */
.official-rating {
    margin-bottom: 10px;
}

.official-rating .girasole-icon {
    width: 20px;
    height: 20px;
    margin-right: 3px;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.official-rating .girasole-icon.selected {
    opacity: 1;
}

/* Button enhancements */
.wsus__featured_single_text .btn {
    transition: all 0.3s ease;
}

.wsus__featured_single_text .btn-outline-primary:hover {
    background-color: #397EFF;
    border-color: #397EFF;
}

/* Slick dots modern style */
.slick-dots {
    position: relative;
    bottom: -15px;
    display: flex !important;
    justify-content: center;
    align-items: center;
    gap: 8px; /* leggermente meno spazio */
    padding: 0;
    margin: 14px 0 0 0;
    list-style: none;
}

.slick-dots li {
    margin: 0;
    padding: 0;
    display: inline-block;
}

.slick-dots button {
    font-size: 0;
    width: 9px;
    height: 9px;
    background: #05263e; /* colore base */
    border-radius: 50%;
    border: none;
    outline: none;
    transition: background 0.2s, transform 0.2s;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
    cursor: pointer;
    opacity: 0.7;
}

.slick-dots li.slick-active button {
    background: #05263e; /* colore attivo */
    width: 16px;
    border-radius: 8px;
    opacity: 1;
    transition: width 0.2s, background 0.2s;
    border: 2px solid #fff;
}

.slick-dots button:hover,
.slick-dots button:focus {
    background: #34455e;
}

.slick-dots li.slick-active button {
    background: {{ $setting->theme_one ?? '#006837' }};
    width: 25px;
    border-radius: 8px;
    transition: width 0.2s, background 0.2s;
}
