/* Movie Slider Premium Styles */
.movie-slider-section {
    background-color: #F7F4ED;
    /* Matching project background */
    padding: 80px 0 100px 0;
    overflow: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

/* Wrapper to safely contain arrows without overflow */
.movie-slider-wrapper {
    position: relative;
    overflow: hidden;
    padding: 0 54px;
}

.movie-slider-section .section-tittle h3 {
    font-size: 32px;
    font-weight: 700;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 40px;
    color: #0b1c39;
}

.movie-slider-section .section-tittle h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background: #374151;
    /* Project theme color */
}

.movie-poster-slider {
    margin: 0;
}

.single-movie-poster {
    padding: 0 15px;
    transition: all 0.4s ease;
    cursor: pointer;
    position: relative;
    margin-bottom: 30px;
}

.movie-img {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    aspect-ratio: 2/3;
    background: #e0e0e0;
}

.movie-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
}

.single-movie-poster:hover .movie-img img {
    transform: scale(1.08);
}

.movie-content {
    margin-top: 15px;
    text-align: center;
    transition: all 0.3s ease;
}

.movie-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #0b1c39;
    margin-bottom: 5px;
    display: block;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.movie-content span {
    font-size: 14px;
    color: #888;
    font-weight: 400;
}

/* === Books slider specific sizing (Home - Kitaplar) === */
.books-slider .single-movie-poster {
    width: 275px;
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.books-slider .movie-img {
    width: 275px;
    height: 412.5px;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #e0e0e0;
    flex-shrink: 0;
}

.books-slider .movie-img img {
    width: 275px;
    height: 412.5px;
    object-fit: cover;
    display: block;
    user-select: none;
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    border: none;
    box-sizing: border-box;
}

.books-slider .single-movie-poster:hover .movie-img img {
    transform: scale(1.06);
}

.books-slider .movie-content {
    margin-top: 12px;
    width: 275px;
    text-align: center;
    padding: 0 4px;
    box-sizing: border-box;
}

.books-slider .movie-content h4 {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    text-align: center;
    font-size: 15px;
}

.books-slider .movie-content span {
    display: block;
    text-align: center;
    font-size: 13px;
    color: #888;
}

/* Custom Navigation Arrows for Movie Slider */
.movie-poster-slider {
    position: relative;
    margin: 0;
}

.movie-slick-prev,
.movie-slick-next {
    position: absolute;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10;
    width: 44px;
    height: 44px;
    background: #fff;
    border: none;
    border-radius: 50%;
    box-shadow: 0 4px 18px rgba(0, 0, 0, 0.13);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
    outline: none;
}

.movie-slick-prev {
    left: 5px;
}

.movie-slick-next {
    right: 5px;
}

.movie-slick-prev:hover,
.movie-slick-next:hover {
    background: #374151;
    box-shadow: 0 6px 24px rgba(55, 65, 81, 0.25);
    transform: translateY(-50%) scale(1.08);
}

.movie-slick-prev i,
.movie-slick-next i {
    font-size: 14px;
    color: #0b1c39;
    transition: color 0.25s ease;
}

.movie-slick-prev:hover i,
.movie-slick-next:hover i {
    color: #fff;
}