.watchface-slider-wrapper {
    padding: 40px 0;
}

.watchface-carousel {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    touch-action: pan-y; /* Swipe hareketlerini optimize eder */
}

.watchface-card {
    border: none;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    margin: 15px;
    height: 350px;
    position: relative; /* Ribbons için */
}

.watchface-card:hover {
    transform: translateY(-5px);
}

.watchface-image {
    position: relative;
    overflow: hidden;
    height: 250px;
}

.watchface-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.watchface-image:hover img {
    transform: scale(1.05);
}

.watchface-link {
    text-decoration: none;
    cursor: pointer;
}

.watchface-link:hover {
    opacity: 0.9;
}

.carousel-control-prev, .carousel-control-next {
    width: 5%;
    opacity: 0.5;
    transition: opacity 0.3s ease;
}

.carousel-control-prev:hover, .carousel-control-next:hover {
    opacity: 1;
}

.carousel-inner {
    touch-action: pan-y; /* Mobil cihazlarda kaydırma için */
}

.watchface-content {
    padding: 15px;
    text-align: center;
    height: 100px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.watchface-content h4 {
    font-size: 18px;
    margin: 0 0 10px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/* Ribbons */
.ribbon {
    position: absolute;
    z-index: 1;
    padding: 5px 10px;
    font-size: 12px;
    color: #fff;
    text-transform: uppercase;
}

/* Stats (Likes and Views) */
.watchface-stats {
    position: absolute;
    bottom: 10px;
    left: 10px;
    color: #fff;
    background: rgba(0, 0, 0, 0.7);
    padding: 5px;
    border-radius: 3px;
}

.watchface-stats p {
    margin: 0;
    font-size: 12px;
}

.daily-likes, .daily-views {
    display: inline-block;
  /*  margin-right: 10px;*/
}

@media (max-width: 767px) {
    .watchface-card {
        margin: 10px auto;
        /*max-width: 300px;*/
    }
    .watchface-content h4 {
        font-size: 16px;
    }
    .carousel-control-prev, .carousel-control-next {
        width: 10%; /* Mobil cihazlarda kontroller daha geniş */
    }
}