/**
 * Reklam Widget Plugin - Frontend Styles
 */

/* Grid Reklam Widget */
.grid-ad-widget-class {
    margin-bottom: 20px;
}

.grid-ad-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
}

.grid-ad-item {
    overflow: hidden;
    border-radius: 5px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-ad-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.grid-ad-item img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 5px;
}

.grid-ad-item a {
    display: block;
    text-decoration: none;
}

/* Slider Reklam Widget */
.slider-ad-widget-class {
    margin-bottom: 20px;
}

.slider-ad-widget-class .swiper {
    width: 100%;
    position: relative;
    overflow: hidden;
    border-radius: 5px;
}

.slider-ad-widget-class .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.slider-ad-widget-class .swiper-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slider-ad-widget-class .swiper-slide a {
    display: block;
    width: 100%;
    height: 100%;
}

/* Swiper özelleştirmeleri */
.slider-ad-widget-class .swiper-button-prev,
.slider-ad-widget-class .swiper-button-next {
    color: #fff;
    background: rgba(0, 0, 0, 0.5);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    transition: background 0.3s ease;
}

.slider-ad-widget-class .swiper-button-prev:hover,
.slider-ad-widget-class .swiper-button-next:hover {
    background: rgba(0, 0, 0, 0.7);
}

.slider-ad-widget-class .swiper-button-prev::after,
.slider-ad-widget-class .swiper-button-next::after {
    font-size: 18px;
}

.slider-ad-widget-class .swiper-pagination-bullet {
    background: #fff;
    opacity: 0.7;
}

.slider-ad-widget-class .swiper-pagination-bullet-active {
    opacity: 1;
    background: #0073aa;
}

/* Banner Rotator Widget */
.banner-rotator-widget-class {
    margin-bottom: 20px;
    width: 100%;
    box-sizing: border-box;
}

.banner-rotator-container {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
    box-sizing: border-box !important;
    overflow: hidden;
}

.banner-rotator-wrapper {
    position: relative;
    width: 100% !important;
    max-width: 100% !important;
    height: 0;
    padding-bottom: calc((var(--banner-height, 250) / var(--banner-width, 970)) * 100%);
    overflow: hidden;
    background: #f0f0f0;
    border-radius: 5px;
    margin: 0 !important;
    padding: 0;
    box-sizing: border-box !important;
}

/* Desktop için minimum yükseklik */
.banner-rotator-wrapper[data-width="1280"][data-height="90"] {
    padding-bottom: 7.03%; /* 1280x90 - Wide Leaderboard */
}

.banner-rotator-wrapper[data-height="250"]:not([data-width="300"]) {
    padding-bottom: 25.77%; /* 970x250 */
}

.banner-rotator-wrapper[data-height="120"] {
    padding-bottom: 12.24%; /* 980x120 */
}

.banner-rotator-wrapper[data-height="90"] {
    padding-bottom: 12.36%; /* 728x90 */
}

.banner-rotator-wrapper[data-height="180"] {
    padding-bottom: 24.73%; /* 728x180 */
}

/* Yeni Boyutlar - Medium Rectangle, Half Page, Mobile Banner, Large Rectangle */
.banner-rotator-wrapper[data-width="300"][data-height="250"] {
    padding-bottom: 83.33%; /* 300x250 - Medium Rectangle */
    max-width: 300px;
}

.banner-rotator-wrapper[data-width="300"][data-height="600"] {
    padding-bottom: 200%; /* 300x600 - Half Page */
    max-width: 300px;
}

.banner-rotator-wrapper[data-width="320"][data-height="100"] {
    padding-bottom: 31.25%; /* 320x100 - Large Mobile Banner */
    max-width: 320px;
}

.banner-rotator-wrapper[data-width="336"][data-height="280"] {
    padding-bottom: 83.33%; /* 336x280 - Large Rectangle */
    max-width: 336px;
}

/* Sidebar boyutları için container ayarları */
.banner-rotator-container[data-size="300x250"],
.banner-rotator-container[data-size="300x600"],
.banner-rotator-container[data-size="320x100"],
.banner-rotator-container[data-size="336x280"] {
    display: flex;
    justify-content: center;
}

.banner-rotator-container[data-size="300x250"] .banner-rotator-wrapper,
.banner-rotator-container[data-size="336x280"] .banner-rotator-wrapper {
    max-width: 100%;
    width: 100%;
}

.banner-rotator-container[data-size="300x600"] .banner-rotator-wrapper {
    max-width: 300px;
    width: 100%;
}

.banner-rotator-container[data-size="320x100"] .banner-rotator-wrapper {
    max-width: 320px;
    width: 100%;
}

.banner-rotator-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transition: opacity 0.5s ease-in-out;
    opacity: 0;
    pointer-events: none;
}

.banner-rotator-item.active {
    opacity: 1;
    pointer-events: auto;
}

.banner-rotator-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
    margin: 0;
    padding: 0;
}

.banner-rotator-item a {
    display: block;
    width: 100%;
    height: 100%;
    text-decoration: none;
    margin: 0;
    padding: 0;
}

/* Responsive tasarım - Tam responsive için aspect-ratio korunur */
/* Tablet */
@media (max-width: 1024px) {
    .banner-rotator-wrapper[data-height="250"]:not([data-width="300"]) {
        padding-bottom: 26%; /* 970x250 - tablet */
    }
    
    .banner-rotator-wrapper[data-height="120"] {
        padding-bottom: 12.5%; /* 980x120 - tablet */
    }
    
    .banner-rotator-wrapper[data-height="90"] {
        padding-bottom: 12.5%; /* 728x90 - tablet */
    }
    
    .banner-rotator-wrapper[data-height="180"] {
        padding-bottom: 25%; /* 728x180 - tablet */
    }
    
    /* Sidebar boyutları tablet'te de sabit kalır */
    .banner-rotator-wrapper[data-width="300"][data-height="250"],
    .banner-rotator-wrapper[data-width="336"][data-height="280"] {
        padding-bottom: 83.33%;
    }
    
    .banner-rotator-wrapper[data-width="300"][data-height="600"] {
        padding-bottom: 200%;
    }
    
    .banner-rotator-wrapper[data-width="320"][data-height="100"] {
        padding-bottom: 31.25%;
    }
}

/* Mobil Tablet */
@media (max-width: 768px) {
    .grid-ad-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .banner-rotator-wrapper[data-height="250"] {
        padding-bottom: 28%; /* 970x250 - mobil tablet */
    }
    
    .banner-rotator-wrapper[data-height="120"] {
        padding-bottom: 14%; /* 980x120 - mobil tablet */
    }
    
    .banner-rotator-wrapper[data-height="90"] {
        padding-bottom: 14%; /* 728x90 - mobil tablet */
    }
    
    .banner-rotator-wrapper[data-height="180"] {
        padding-bottom: 28%; /* 728x180 - mobil tablet */
    }
    
    .banner-rotator-wrapper {
        border-radius: 4px;
    }
}

/* Mobil */
@media (max-width: 480px) {
    .grid-ad-container {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .banner-rotator-wrapper[data-height="250"] {
        padding-bottom: 32%; /* 970x250 - mobil */
    }
    
    .banner-rotator-wrapper[data-height="120"] {
        padding-bottom: 16%; /* 980x120 - mobil */
    }
    
    .banner-rotator-wrapper[data-height="90"] {
        padding-bottom: 16%; /* 728x90 - mobil */
    }
    
    .banner-rotator-wrapper[data-height="180"] {
        padding-bottom: 32%; /* 728x180 - mobil */
    }
    
    .banner-rotator-wrapper {
        border-radius: 3px;
    }
    
    .slider-ad-widget-class .swiper-button-prev,
    .slider-ad-widget-class .swiper-button-next {
        width: 30px;
        height: 30px;
    }
    
    .slider-ad-widget-class .swiper-button-prev::after,
    .slider-ad-widget-class .swiper-button-next::after {
        font-size: 14px;
    }
}

/* Küçük Mobil */
@media (max-width: 360px) {
    .banner-rotator-wrapper[data-height="250"] {
        padding-bottom: 38%; /* 970x250 - küçük mobil */
    }
    
    .banner-rotator-wrapper[data-height="120"] {
        padding-bottom: 18%; /* 980x120 - küçük mobil */
    }
    
    .banner-rotator-wrapper[data-height="90"] {
        padding-bottom: 18%; /* 728x90 - küçük mobil */
    }
    
    .banner-rotator-wrapper[data-height="180"] {
        padding-bottom: 38%; /* 728x180 - küçük mobil */
    }
    
    .banner-rotator-wrapper {
        border-radius: 2px;
    }
}

/* Çok Küçük Ekranlar */
@media (max-width: 320px) {
    .banner-rotator-wrapper[data-height="250"] {
        padding-bottom: 42%; /* 970x250 - çok küçük */
    }
    
    .banner-rotator-wrapper[data-height="120"] {
        padding-bottom: 20%; /* 980x120 - çok küçük */
    }
    
    .banner-rotator-wrapper[data-height="90"] {
        padding-bottom: 20%; /* 728x90 - çok küçük */
    }
    
    .banner-rotator-wrapper[data-height="180"] {
        padding-bottom: 42%; /* 728x180 - çok küçük */
    }
}

/* Tüm ekranlarda görsel ayarları */
.banner-rotator-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.banner-rotator-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

/* Tüm banner boyutlarında mobilde görseller kırpılmadan tam görünür - Crop olmadan %100 görsel */
/* Tablet ve mobil cihazlar için */
@media (max-width: 1024px) {
    .banner-rotator-wrapper {
        background: #f0f0f0; /* Boşluklar için arka plan */
    }
    
    .banner-rotator-item img {
        object-fit: contain !important;
        object-position: center;
        width: 100% !important;
        height: 100% !important;
        max-width: 100%;
        max-height: 100%;
    }
}

/* Mobil tablet */
@media (max-width: 768px) {
    .banner-rotator-wrapper {
        background: #f0f0f0;
    }
    
    .banner-rotator-item img {
        object-fit: contain !important;
        object-position: center;
        width: 100% !important;
        height: 100% !important;
        max-width: 100%;
        max-height: 100%;
    }
}

/* Mobil */
@media (max-width: 480px) {
    .banner-rotator-wrapper {
        background: #f0f0f0;
    }
    
    .banner-rotator-item img {
        object-fit: contain !important;
        object-position: center;
        width: 100% !important;
        height: 100% !important;
        max-width: 100%;
        max-height: 100%;
    }
}

/* Küçük mobil */
@media (max-width: 360px) {
    .banner-rotator-wrapper {
        background: #f0f0f0;
    }
    
    .banner-rotator-item img {
        object-fit: contain !important;
        object-position: center;
        width: 100% !important;
        height: 100% !important;
        max-width: 100%;
        max-height: 100%;
    }
}

/* Çok küçük ekranlar */
@media (max-width: 320px) {
    .banner-rotator-wrapper {
        background: #f0f0f0;
    }
    
    .banner-rotator-item img {
        object-fit: contain !important;
        object-position: center;
        width: 100% !important;
        height: 100% !important;
        max-width: 100%;
        max-height: 100%;
    }
}


/* YouTube Feed Widget */
.youtube-feed-widget-class {
    margin-bottom: 20px;
}

.youtube-feed-container {
    width: 100%;
}

/* YouTube Kanal Header */
.youtube-channel-header {
    margin-bottom: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.youtube-channel-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    gap: 15px;
}

.youtube-channel-link:hover {
    text-decoration: none;
}

.youtube-channel-avatar {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid #ff0000;
    box-shadow: 0 2px 10px rgba(255, 0, 0, 0.3);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.youtube-channel-link:hover .youtube-channel-avatar {
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(255, 0, 0, 0.5);
}

.youtube-channel-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.youtube-channel-avatar-default {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #282828;
}

.youtube-channel-avatar-default svg {
    width: 40px;
    height: 40px;
}

.youtube-channel-info {
    flex: 1;
    min-width: 0;
}

.youtube-channel-name {
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.youtube-channel-link:hover .youtube-channel-name {
    color: #ff0000;
}

.youtube-channel-description {
    font-size: 13px;
    color: #aaa;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Tablet */
@media (max-width: 768px) {
    .youtube-channel-header {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .youtube-channel-link {
        gap: 12px;
    }
    
    .youtube-channel-avatar {
        width: 55px;
        height: 55px;
        border-width: 2px;
    }
    
    .youtube-channel-avatar-default svg {
        width: 30px;
        height: 30px;
    }
    
    .youtube-channel-name {
        font-size: 16px;
    }
    
    .youtube-channel-description {
        font-size: 12px;
        -webkit-line-clamp: 2;
    }
}

/* Mobil */
@media (max-width: 480px) {
    .youtube-channel-header {
        padding: 10px;
        margin-bottom: 12px;
        border-radius: 8px;
    }
    
    .youtube-channel-link {
        gap: 10px;
    }
    
    .youtube-channel-avatar {
        width: 50px;
        height: 50px;
    }
    
    .youtube-channel-avatar-default svg {
        width: 28px;
        height: 28px;
    }
    
    .youtube-channel-name {
        font-size: 15px;
    }
    
    .youtube-channel-description {
        font-size: 11px;
        -webkit-line-clamp: 1;
    }
}

/* Küçük Mobil */
@media (max-width: 360px) {
    .youtube-channel-avatar {
        width: 45px;
        height: 45px;
    }
    
    .youtube-channel-name {
        font-size: 14px;
    }
    
    .youtube-channel-description {
        display: none;
    }
}

.youtube-feed-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    width: 100%;
}

.youtube-feed-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    background: #000;
    border: none;
    outline: none;
}

.youtube-feed-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.youtube-feed-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.youtube-feed-thumbnail {
    position: relative;
    width: 100%;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    overflow: hidden;
    background: #000;
    line-height: 0;
}

.youtube-feed-thumbnail img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    border: none;
    outline: none;
    vertical-align: top;
    margin: 0;
    padding: 0;
}

.youtube-feed-play-icon {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 48px;
    opacity: 0.9;
    transition: opacity 0.3s ease, transform 0.3s ease;
    pointer-events: none;
}

.youtube-feed-item:hover .youtube-feed-play-icon {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.youtube-feed-play-icon svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.5));
}

.youtube-feed-title {
    padding: 10px 8px;
    font-size: 14px;
    line-height: 1.4;
    color: #333;
    background: #fff;
    min-height: 40px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    border: none;
    border-top: none;
}

.youtube-feed-item:hover .youtube-feed-title {
    color: #d32f2f;
}

/* Tablet */
@media (max-width: 1024px) {
    .youtube-feed-grid {
        gap: 12px;
    }
    
    .youtube-feed-title {
        font-size: 13px;
        padding: 8px 6px;
    }
}

/* Mobil Tablet */
@media (max-width: 768px) {
    .youtube-feed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    
    .youtube-feed-play-icon {
        width: 50px;
        height: 35px;
    }
    
    .youtube-feed-title {
        font-size: 12px;
        padding: 8px 6px;
        min-height: 36px;
    }
}

/* Mobil - 2 Grid olarak kalacak */
@media (max-width: 480px) {
    .youtube-feed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .youtube-feed-play-icon {
        width: 45px;
        height: 32px;
    }
    
    .youtube-feed-title {
        font-size: 11px;
        padding: 6px 4px;
        min-height: 32px;
        -webkit-line-clamp: 2;
        line-height: 1.3;
    }
    
    .youtube-feed-thumbnail {
        padding-bottom: 56.25%; /* 16:9 aspect ratio korunuyor */
    }
}

/* Çok Küçük Mobil Ekranlar - Yine 2 Grid */
@media (max-width: 360px) {
    .youtube-feed-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
    }
    
    .youtube-feed-play-icon {
        width: 40px;
        height: 28px;
    }
    
    .youtube-feed-title {
        font-size: 10px;
        padding: 5px 3px;
        min-height: 28px;
    }
}

/* YouTube Feed Widget - Load More & Subscribe Buttons */
.youtube-feed-actions {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 15px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.youtube-feed-load-more {
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 160px;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
}

.youtube-feed-load-more:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
}

.youtube-feed-load-more:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.youtube-feed-load-more-spinner {
    display: inline-block;
}

.youtube-feed-subscribe {
    background: #ff0000;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(255, 0, 0, 0.3);
}

.youtube-feed-subscribe:hover {
    background: #cc0000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 0, 0, 0.4);
    color: #fff;
    text-decoration: none;
}

.youtube-feed-subscribe svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

/* Mobil */
@media (max-width: 768px) {
    .youtube-feed-actions {
        flex-direction: column;
        gap: 12px;
    }
    
    .youtube-feed-load-more,
    .youtube-feed-subscribe {
        width: 100%;
        max-width: 280px;
    }
}

/* ================================================
   Çoklu Slider Reklam Widget (Multi Slider)
   3'er görsel yan yana gösteren tek slider
   ================================================ */
.multi-slider-ad-widget-class {
    margin-bottom: 20px;
}

.multi-slider-wrapper {
    position: relative;
    width: 100%;
}

.multi-slider-wrapper .swiper {
    width: 100%;
    padding-bottom: 50px; /* Pagination için alan */
}

.multi-slider-wrapper .swiper-slide {
    height: auto;
    display: flex;
    align-items: stretch;
}

.multi-slider-wrapper .swiper-slide img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.multi-slider-wrapper .swiper-slide img:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

.multi-slider-wrapper .swiper-slide a {
    display: block;
    width: 100%;
}

/* Multi Slider Pagination */
.multi-slider-wrapper .swiper-pagination {
    bottom: 10px !important;
}

.multi-slider-wrapper .swiper-pagination-bullet {
    background: #ccc;
    opacity: 1;
    width: 10px;
    height: 10px;
    margin: 0 5px !important;
    transition: all 0.3s ease;
}

.multi-slider-wrapper .swiper-pagination-bullet-active {
    background: #e74c3c;
    transform: scale(1.2);
}

/* Multi Slider Navigation */
.multi-slider-wrapper .swiper-button-prev,
.multi-slider-wrapper .swiper-button-next {
    color: #333;
    background: rgba(255, 255, 255, 0.9);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
}

.multi-slider-wrapper .swiper-button-prev:hover,
.multi-slider-wrapper .swiper-button-next:hover {
    background: #fff;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.multi-slider-wrapper .swiper-button-prev:after,
.multi-slider-wrapper .swiper-button-next:after {
    font-size: 18px;
    font-weight: bold;
}

/* Tablet */
@media (max-width: 1024px) {
    .multi-slider-wrapper .swiper-slide img {
        border-radius: 6px;
    }
    
    .multi-slider-wrapper .swiper-pagination-bullet {
        width: 9px;
        height: 9px;
    }
}

/* Mobil Tablet */
@media (max-width: 768px) {
    .multi-slider-wrapper .swiper {
        padding-bottom: 40px;
    }
    
    .multi-slider-wrapper .swiper-slide img {
        border-radius: 5px;
    }
    
    .multi-slider-wrapper .swiper-pagination-bullet {
        width: 8px;
        height: 8px;
        margin: 0 4px !important;
    }
    
    .multi-slider-wrapper .swiper-button-prev,
    .multi-slider-wrapper .swiper-button-next {
        width: 35px;
        height: 35px;
    }
    
    .multi-slider-wrapper .swiper-button-prev:after,
    .multi-slider-wrapper .swiper-button-next:after {
        font-size: 14px;
    }
}

/* Mobil */
@media (max-width: 480px) {
    .multi-slider-wrapper .swiper {
        padding-bottom: 35px;
    }
    
    .multi-slider-wrapper .swiper-slide img {
        border-radius: 4px;
    }
    
    .multi-slider-wrapper .swiper-pagination-bullet {
        width: 7px;
        height: 7px;
        margin: 0 3px !important;
    }
    
    .multi-slider-wrapper .swiper-button-prev,
    .multi-slider-wrapper .swiper-button-next {
        display: none;
    }
}
