/**
 * Product Display Settings CSS
 * Admin panelden ayarlanabilir ürün gösterim stilleri
 */

/* ==============================================
   GALERI LAYOUT - TWO COLUMNS (2 Resim Yan Yana)
   ============================================== */
.gallery-layout-two_columns .gallery-two-columns-wrapper {
    max-height: 800px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: thin;
    scrollbar-color: #ccc #f5f5f5;
}

.gallery-layout-two_columns .gallery-two-columns-wrapper::-webkit-scrollbar {
    width: 8px;
}

.gallery-layout-two_columns .gallery-two-columns-wrapper::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-radius: 4px;
}

.gallery-layout-two_columns .gallery-two-columns-wrapper::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.gallery-layout-two_columns .gallery-two-columns-wrapper::-webkit-scrollbar-thumb:hover {
    background: #999;
}

.gallery-layout-two_columns .gallery-two-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    width: 100%;
    padding-right: 5px;
}

.gallery-layout-two_columns .gallery-column-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-layout-two_columns .gallery-column-item:hover {
    transform: scale(1.02);
}

.gallery-layout-two_columns .gallery-column-image {
    width: 100%;
    height: 100%;
    min-height: 400px;
    display: block;
    object-fit: contain;
}

/* İlk 2 resim yan yana büyük */
.gallery-layout-two_columns .gallery-column-item:nth-child(1),
.gallery-layout-two_columns .gallery-column-item:nth-child(2) {
    grid-row: span 2;
    min-height: 400px;
}

.gallery-layout-two_columns .gallery-column-item:nth-child(n+3) {
    min-height: 200px;
}

/* ==============================================
   GALERI LAYOUT - THUMBNAILS LEFT (Sol)
   ============================================== */
.gallery-layout-thumbnails_left .gallery-main-wrapper {
    display: flex !important;
    flex-direction: row !important;
    gap: 15px;
    align-items: flex-start;
}

.gallery-layout-thumbnails_left .thumbnail-left-container {
    order: -1 !important;
    width: 110px !important;
    flex-shrink: 0;
    position: relative;
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    padding: 5px;
}

/* Thumbnail içeriği scrollable yap */
.gallery-layout-thumbnails_left .thumbnail-left-container > * {
    flex-shrink: 0;
}

.gallery-layout-thumbnails_left .thumbnail-left-container::-webkit-scrollbar {
    -webkit-appearance: none !important;
    display: block !important;
    width: 12px !important;
    height: 100% !important;
}

.gallery-layout-thumbnails_left .thumbnail-left-container::-webkit-scrollbar-track {
    background: #f0f0f0 !important;
    border-radius: 6px !important;
    border: 2px solid #ddd !important;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.1) !important;
}

.gallery-layout-thumbnails_left .thumbnail-left-container::-webkit-scrollbar-thumb {
    background: #ff6b35 !important;
    border-radius: 6px !important;
    border: 3px solid #fff !important;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.5), inset 0 1px 0 rgba(255,255,255,0.3) !important;
    min-height: 40px !important;
}

.gallery-layout-thumbnails_left .thumbnail-left-container::-webkit-scrollbar-thumb:hover {
    background: #ff5722 !important;
    box-shadow: 0 3px 8px rgba(255, 87, 34, 0.4) !important;
}

.gallery-layout-thumbnails_left .thumbnail-left-container .thumbnail-slide {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-layout-thumbnails_left .thumbnail-left-container .thumbnail-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-layout-thumbnails_left .uomo-main-swiper {
    flex: 1 !important;
    width: calc(100% - 125px) !important;
}

.gallery-layout-thumbnails_left .uomo-main-swiper .swiper-wrapper {
    align-items: stretch;
}

.gallery-layout-thumbnails_left .uomo-main-swiper .swiper-slide {
    display: block !important;
    height: auto !important;
    line-height: 0;
}

.gallery-layout-thumbnails_left .uomo-main-swiper .uomo-gallery-image-container {
    width: 100%;
    display: block;
    line-height: 0;
    padding: 0;
    margin: 0;
}

.gallery-layout-thumbnails_left .uomo-main-swiper img {
    object-fit: contain !important;
    width: 100% !important;
    max-width: 100%;
    height: auto !important;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

/* ==============================================
   GALERI LAYOUT - THUMBNAILS RIGHT (Sağ)
   ============================================== */
.gallery-layout-thumbnails_right .gallery-main-wrapper {
    display: flex !important;
    flex-direction: row !important;
    gap: 15px;
    align-items: flex-start;
}

.gallery-layout-thumbnails_right .thumbnail-right-container {
    order: 1 !important;
    width: 110px !important;
    flex-shrink: 0;
    position: relative;
    display: flex !important;
    flex-direction: column;
    gap: 10px;
    padding: 5px;
}

/* Thumbnail içeriği scrollable yap */
.gallery-layout-thumbnails_right .thumbnail-right-container > * {
    flex-shrink: 0;
}

.gallery-layout-thumbnails_right .thumbnail-right-container::-webkit-scrollbar {
    -webkit-appearance: none !important;
    display: block !important;
    width: 12px !important;
    height: 100% !important;
}

.gallery-layout-thumbnails_right .thumbnail-right-container::-webkit-scrollbar-track {
    background: #f0f0f0 !important;
    border-radius: 6px !important;
    border: 2px solid #ddd !important;
    box-shadow: inset 0 0 6px rgba(0,0,0,0.1) !important;
}

.gallery-layout-thumbnails_right .thumbnail-right-container::-webkit-scrollbar-thumb {
    background: #ff6b35 !important;
    border-radius: 6px !important;
    border: 3px solid #fff !important;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.5), inset 0 1px 0 rgba(255,255,255,0.3) !important;
    min-height: 40px !important;
}

.gallery-layout-thumbnails_right .thumbnail-right-container::-webkit-scrollbar-thumb:hover {
    background: #ff5722 !important;
    box-shadow: 0 3px 8px rgba(255, 87, 34, 0.4) !important;
}

.gallery-layout-thumbnails_right .thumbnail-right-container .thumbnail-slide {
    width: 100px;
    height: 100px;
    flex-shrink: 0;
    border-radius: 6px;
    overflow: hidden;
    border: 2px solid #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-layout-thumbnails_right .thumbnail-right-container .thumbnail-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.gallery-layout-thumbnails_right .uomo-main-swiper {
    flex: 1 !important;
    width: calc(100% - 125px) !important;
}

.gallery-layout-thumbnails_right .uomo-main-swiper .swiper-wrapper {
    align-items: stretch;
}

.gallery-layout-thumbnails_right .uomo-main-swiper .swiper-slide {
    display: block !important;
    height: auto !important;
    line-height: 0;
}

.gallery-layout-thumbnails_right .uomo-main-swiper .uomo-gallery-image-container {
    width: 100%;
    display: block;
    line-height: 0;
    padding: 0;
    margin: 0;
}

.gallery-layout-thumbnails_right .uomo-main-swiper img {
    object-fit: contain !important;
    width: 100% !important;
    max-width: 100%;
    height: auto !important;
    display: block;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

/* ==============================================
   GALERI LAYOUT - THUMBNAILS BOTTOM (Alt)
   ============================================== */
.gallery-layout-thumbnails_bottom .gallery-main-wrapper {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.gallery-layout-thumbnails_bottom .uomo-thumbs-swiper {
    order: 1;
    width: 100%;
}

/* ==============================================
   GALERI LAYOUT - NO THUMBNAILS (Thumbnail Yok)
   ============================================== */
.gallery-layout-no_thumbnails .gallery-main-wrapper {
    width: 100%;
}

.gallery-layout-no_thumbnails .uomo-main-swiper {
    width: 100%;
}

/* ==============================================
   GENEL THUMBNAIL STİLLERİ
   ============================================== */
.thumbnail-slide {
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    border-radius: 6px;
    overflow: hidden;
    background: white;
}

.thumbnail-slide:hover {
    opacity: 1;
    border-color: #999;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.thumbnail-slide.active {
    opacity: 1;
    border-color: #222;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.thumbnail-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    padding: 0;
    margin: 0;
}

/* Ana Swiper ve Thumbnail Container Hizalama */
.gallery-main-wrapper {
    width: 100%;
}

.uomo-main-swiper.product-page-main-swiper {
    width: 100%;
    height: auto;
    line-height: 0;
}

.uomo-main-swiper.product-page-main-swiper .swiper-slide {
    display: block;
    line-height: 0;
}

.uomo-main-swiper.product-page-main-swiper .swiper-wrapper {
    line-height: 0;
}

.uomo-gallery-image-container.product-page-gallery-main {
    width: 100%;
    position: relative;
    display: block;
    line-height: 0;
    padding: 0;
    margin: 0;
}

.uomo-gallery-main-image.product-page-gallery-main-image {
    width: 100%;
    height: auto;
    display: block;
    object-fit: contain !important;
    max-width: 100%;
    max-height: none;
    margin: 0;
    padding: 0;
    vertical-align: middle;
}

/* ==============================================
   ÜRÜN LİSTELEME - ORIENTATION
   ============================================== */

/* Vertical (Dikey) - En-boy oranı korunduğunda */
.product-list-vertical.maintain-aspect-ratio .product-card-image img {
    aspect-ratio: 3/4;
    object-fit: contain;
}

/* Horizontal (Yatay) - En-boy oranı korunduğunda */
.product-list-horizontal.maintain-aspect-ratio .product-card-image img {
    aspect-ratio: 4/3;
    object-fit: contain;
}

/* Square (Kare) - En-boy oranı korunduğunda */
.product-list-square.maintain-aspect-ratio .product-card-image img {
    aspect-ratio: 1/1;
    object-fit: contain;
}

.product-card-image {
    overflow: hidden;
    border-radius: 8px;
}

.product-card-image img {
    width: 100%;
    transition: transform 0.3s ease;
}

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

/* ==============================================
   ÜRÜN LİSTELEME - GRID COLUMNS (DESKTOP)
   ============================================== */
.products-grid.product-list-grid-desktop-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.products-grid.product-list-grid-desktop-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.products-grid.product-list-grid-desktop-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.products-grid.product-list-grid-desktop-5 {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 18px;
}

.products-grid.product-list-grid-desktop-6 {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
}

/* Product Card Stil */
.product-card {
    background: #fff;
    border-radius: 10px;
    padding: 10px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.product-card:hover {
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    transform: translateY(-5px);
}

.product-card-content {
    padding: 15px 5px 5px 5px;
}

.product-title {
    font-size: 16px;
    margin-bottom: 8px;
    font-weight: 500;
}

.product-title a {
    color: #222;
    text-decoration: none;
}

.product-title a:hover {
    color: #007bff;
}

.product-price {
    font-size: 18px;
    font-weight: 600;
    color: #007bff;
    margin-bottom: 8px;
}

/* Product item image wrapper - Override user-account.css */
.new-pc__img-wrapper {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
    border-radius: 8px;
    padding-top: 0 !important; /* user-account.css'deki padding-top'u iptal et */
    height: auto !important;
}

.product-image-container {
    position: relative !important;
    width: 100% !important;
    overflow: hidden !important;
    padding-top: 0 !important; /* user-account.css'deki 55% padding'i iptal et */
    height: auto !important;
}

/* Default product image - Normal liste görünümü için */
.new-pc__img.product-main-image {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    position: relative !important; /* absolute değil, relative olmalı */
    top: auto !important;
    left: auto !important;
}

/* Ürün Slider (produc_slider) - Benzersiz class - user-account.css'i override etmek için daha spesifik */
.product-card-wrapper .new-pc__img.product-slider-img,
.produc_slider .product-card-wrapper .new-pc__img.product-slider-img,
.new-pc__img.product-slider-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    object-fit: contain !important;
}

/* Tablı Ürün Slider (produc_tab_slider) - Benzersiz class - user-account.css'i override etmek için daha spesifik */
.product-card-wrapper .new-pc__img.product-tab-slider-img,
.produc_tab_slider .product-card-wrapper .new-pc__img.product-tab-slider-img,
.produc_tab_slider__slide .product-card-wrapper .new-pc__img.product-tab-slider-img,
.produc_tab_slider .produc_tab_slider__slide .product-card-wrapper .new-pc__img.product-tab-slider-img,
.new-pc__img.product-tab-slider-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    object-fit: contain !important;
}

/* Kategori Slider (homepagecategory) - Benzersiz class - user-account.css'i override etmek için daha spesifik */
.product-card-wrapper .new-pc__img.product-category-slider-img,
.homepagecategory .product-card-wrapper .new-pc__img.product-category-slider-img,
.homepagecategory-card__product .product-card-wrapper .new-pc__img.product-category-slider-img,
.homepagecategory .homepagecategory-card__product .product-card-wrapper .new-pc__img.product-category-slider-img,
[data-homepagecategory-slider] .homepagecategory-card__product .product-card-wrapper .new-pc__img.product-category-slider-img,
.new-pc__img.product-category-slider-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    object-fit: contain !important;
}

/* Benzer Ürünler Slider (similar_products_slider) - Benzersiz class - user-account.css'i override etmek için daha spesifik */
.product-card-wrapper .new-pc__img.product-similar-slider-img,
.similar_products_slider .product-card-wrapper .new-pc__img.product-similar-slider-img,
.new-pc__img.product-similar-slider-img {
    width: 100% !important;
    height: auto !important;
    display: block !important;
    position: relative !important;
    top: auto !important;
    left: auto !important;
    object-fit: contain !important;
}

/* ===========================================
   MOBİL GÖRSEL DÜZENLEMELERİ - TÜM SLİDER'LAR İÇİN
   =========================================== */
@media (max-width: 767.98px) {
    /* Ürün Slider (produc_slider) - Mobil görsel düzenlemeleri - user-account.css'i override etmek için daha spesifik */
    .product-card-wrapper .new-pc__img.product-slider-img,
    .produc_slider .product-card-wrapper .new-pc__img.product-slider-img,
    .produc_slider .new-pc__img.product-slider-img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        object-fit: contain !important;
        max-width: 100% !important;
        min-height: auto !important;
    }
    
    /* Tablı Ürün Slider (produc_tab_slider) - Mobil görsel düzenlemeleri - user-account.css'i override etmek için daha spesifik */
    .product-card-wrapper .new-pc__img.product-tab-slider-img,
    .produc_tab_slider .product-card-wrapper .new-pc__img.product-tab-slider-img,
    .produc_tab_slider__slide .product-card-wrapper .new-pc__img.product-tab-slider-img,
    .produc_tab_slider .produc_tab_slider__slide .product-card-wrapper .new-pc__img.product-tab-slider-img,
    .produc_tab_slider .new-pc__img.product-tab-slider-img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        object-fit: contain !important;
        max-width: 100% !important;
        min-height: auto !important;
    }
    
    /* Kategori Slider (homepagecategory) - Mobil görsel düzenlemeleri - user-account.css'i override etmek için daha spesifik */
    .product-card-wrapper .new-pc__img.product-category-slider-img,
    .homepagecategory .product-card-wrapper .new-pc__img.product-category-slider-img,
    .homepagecategory-card__product .product-card-wrapper .new-pc__img.product-category-slider-img,
    .homepagecategory .homepagecategory-card__product .product-card-wrapper .new-pc__img.product-category-slider-img,
    [data-homepagecategory-slider] .homepagecategory-card__product .product-card-wrapper .new-pc__img.product-category-slider-img,
    .homepagecategory .new-pc__img.product-category-slider-img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        object-fit: contain !important;
        max-width: 100% !important;
        min-height: auto !important;
    }
    
    /* Benzer Ürünler Slider (similar_products_slider) - Mobil görsel düzenlemeleri - user-account.css'i override etmek için daha spesifik */
    .product-card-wrapper .new-pc__img.product-similar-slider-img,
    .similar_products_slider .product-card-wrapper .new-pc__img.product-similar-slider-img,
    .similar_products_slider .new-pc__img.product-similar-slider-img {
        width: 100% !important;
        height: auto !important;
        display: block !important;
        position: relative !important;
        top: auto !important;
        left: auto !important;
        object-fit: contain !important;
        max-width: 100% !important;
        min-height: auto !important;
    }
    
    /* Görsel container'ları için mobil düzenlemeleri */
    .produc_slider .product-image-container,
    .produc_tab_slider .product-image-container,
    .homepagecategory .product-image-container,
    .similar_products_slider .product-image-container {
        width: 100% !important;
        height: auto !important;
        padding-top: 0 !important;
        position: relative !important;
    }
    
    .produc_slider .new-pc__img-wrapper,
    .produc_tab_slider .new-pc__img-wrapper,
    .homepagecategory .new-pc__img-wrapper,
    .similar_products_slider .new-pc__img-wrapper {
        width: 100% !important;
        height: auto !important;
        padding-top: 0 !important;
        position: relative !important;
    }
}

/* Liste görünümü */
.product-list-layout-list .products-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.product-list-layout-list .product-card {
    display: flex;
    flex-direction: row;
    gap: 20px;
}

.product-list-layout-list .product-card-image {
    width: 250px;
    flex-shrink: 0;
}

.product-list-layout-list .product-card-content {
    flex: 1;
}

/* ==============================================
   LIGHTBOX MODAL - Gelişmiş Modern Tasarım
   ============================================== */
.uomo-simple-gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.95);
    animation: modalFadeIn 0.3s ease;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.uomo-modal-overlay {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.uomo-modal-content {
    position: relative;
    width: 100%;
    max-width: 1720px;
    height: 100%;
    max-height: 95vh;
    display: flex;
    flex-direction: column;
    animation: modalSlideUp 0.4s ease;
}

@keyframes modalSlideUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.uomo-modal-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 12px 12px 0 0;
}

.uomo-modal-counter {
    font-weight: 600;
    color: #ffffff;
    font-size: 16px;
}

.uomo-modal-actions {
    display: flex;
    gap: 10px;
}

.uomo-modal-actions button {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 40px;
    height: 40px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.uomo-modal-actions button:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.uomo-modal-close:hover {
    background: rgba(220, 38, 38, 0.9);
}

.uomo-modal-image-container {
    position: relative;
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.uomo-modal-image {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    cursor: zoom-in;
    transition: transform 0.3s ease;
}

.uomo-modal-zoom-hint {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.8);
    color: #ffffff;
    padding: 10px 20px;
    border-radius: 25px;
    font-size: 14px;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.uomo-modal-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 255, 255, 0.2);
    color: #ffffff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
}

.uomo-modal-nav-btn:hover {
    background: rgba(0, 88, 80, 0.9);
    transform: translateY(-50%) scale(1.1);
}

.uomo-modal-prev {
    left: 20px;
}

.uomo-modal-next {
    right: 20px;
}

.uomo-modal-thumbnails-container {
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(10px);
    padding: 15px;
    border-radius: 0 0 12px 12px;
}

.uomo-modal-thumbnails {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding: 5px 0;
}

.uomo-modal-thumbnail {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.uomo-modal-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.uomo-modal-thumbnail:hover img {
    transform: scale(1.1);
}

.uomo-modal-thumbnail.active {
    border-color: #005850;
    box-shadow: 0 0 0 2px rgba(0, 88, 80, 0.3);
}

/* ==============================================
   ZOOM HINT - Modern Tasarım (Üst Sağ)
   ============================================== */
.uomo-zoom-hint,
.product-page-zoom-hint {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(255, 255, 255, 0.95);
    color: white;
    padding: 0;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    font-size: 18px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    border: none;
}

.uomo-gallery-image-container:hover .uomo-zoom-hint,
.product-page-gallery-main:hover .product-page-zoom-hint {
    opacity: 1;
    transform: scale(1.1);
}

.uomo-zoom-hint i,
.product-page-zoom-hint i {
    font-size: 18px;
    color: white;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
}

/* Alternatif: Badge stil */
.zoom-hint-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(0, 0, 0, 0.85);
    color: white;
    padding: 10px 16px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.5px;
    opacity: 0;
    transition: all 0.3s ease;
    pointer-events: none;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    text-transform: uppercase;
}

.uomo-gallery-image-container:hover .zoom-hint-badge {
    opacity: 1;
    transform: translateY(-3px);
}

.zoom-hint-badge i {
    font-size: 14px;
}

/* ==============================================
   HOVER ZOOM EFFECT (Mouse Pozisyonuna Göre)
   ============================================== */
/* Hover Zoom Pasif olduğunda - lens'leri gizle */
.simple-swiper-gallery:not(.hover-zoom-enabled) .hover-zoom-lens {
    display: none !important;
    opacity: 0 !important;
}

/* Hover Zoom Aktif olduğunda */
.hover-zoom-enabled .uomo-gallery-image-container,
.hover-zoom-enabled .gallery-column-item {
    position: relative;
    cursor: crosshair;
}

.hover-zoom-enabled .uomo-gallery-main-image,
.hover-zoom-enabled .gallery-column-image {
    pointer-events: none;
}

/* Zoom Lens (Büyüteç) */
.hover-zoom-lens {
    position: absolute;
    width: 250px;
    height: 250px;
    border: 4px solid #fff;
    border-radius: 50%;
    background: #fff;
    background-size: cover;
    background-repeat: no-repeat;
    pointer-events: none;
    z-index: 1000;
    display: none;
    box-shadow: 0 0 30px rgba(0, 0, 0, 0.6), inset 0 0 20px rgba(0, 0, 0, 0.1);
    cursor: crosshair;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.hover-zoom-enabled .uomo-gallery-image-container:hover .hover-zoom-lens,
.hover-zoom-enabled .gallery-column-item:hover .hover-zoom-lens {
    opacity: 1;
}

/* Lens için overlay (resmin üstünde transparan) */
.hover-zoom-enabled .uomo-gallery-image-container::before,
.hover-zoom-enabled .gallery-column-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0);
    pointer-events: none;
    z-index: 999;
    transition: background 0.3s ease;
}

.hover-zoom-enabled .uomo-gallery-image-container:hover::before,
.hover-zoom-enabled .gallery-column-item:hover::before {
    background: rgba(0, 0, 0, 0.05);
}

/* ==============================================
   VIDEO PLAY BUTTON
   ============================================== */
.uomo-video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.3s ease;
}

.uomo-video-play-button:hover {
    background: rgba(0, 0, 0, 0.8);
}

.uomo-video-play-button-small {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(0, 0, 0, 0.6);
    color: white;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
}

/* ==============================================
   YENİ GALERI STİLLERİ
   ============================================== */

/* Grid Style - 3 sütun galeri */
.gallery-layout-grid_three .gallery-grid-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    width: 100%;
}

.gallery-layout-grid_three .gallery-grid-item {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
    aspect-ratio: 1/1;
}

.gallery-layout-grid_three .gallery-grid-item:hover {
    transform: scale(1.05);
}

.gallery-layout-grid_three .gallery-grid-item img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* Masonry Style - Farklı yükseklikler */
.gallery-layout-masonry .gallery-masonry-container {
    column-count: 2;
    column-gap: 15px;
    width: 100%;
}

.gallery-layout-masonry .gallery-masonry-item {
    break-inside: avoid;
    margin-bottom: 15px;
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.gallery-layout-masonry .gallery-masonry-item:hover {
    transform: scale(1.02);
}

.gallery-layout-masonry .gallery-masonry-item img {
    width: 100%;
    height: auto;
    display: block;
}

/* Carousel Style - Büyük carousel */
.gallery-layout-carousel .gallery-carousel-wrapper {
    position: relative;
    width: 100%;
}

.gallery-layout-carousel .swiper-slide {
    display: flex;
    align-items: center;
    justify-content: center;
}

.gallery-layout-carousel .gallery-carousel-image {
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
}

/* Slider with Dots - Alt noktalı slider */
.gallery-layout-slider_dots .gallery-slider-wrapper {
    position: relative;
    width: 100%;
}

.gallery-layout-slider_dots .gallery-slider-swiper {
    width: 100%;
    padding-bottom: 50px;
}

.gallery-layout-slider_dots .gallery-slider-slide {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.gallery-layout-slider_dots .gallery-slider-slide img {
    max-width: 100%;
    max-height: 600px;
    object-fit: contain;
}

.gallery-layout-slider_dots .swiper-button-next,
.gallery-layout-slider_dots .swiper-button-prev {
    color: #222;
    background: rgba(255, 255, 255, 0.9);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.gallery-layout-slider_dots .swiper-button-next:after,
.gallery-layout-slider_dots .swiper-button-prev:after {
    font-size: 20px;
}

.gallery-layout-slider_dots .swiper-pagination {
    position: absolute;
    bottom: 10px;
}

.gallery-layout-slider_dots .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background: #ccc;
    opacity: 1;
    margin: 0 6px;
    transition: all 0.3s ease;
}

.gallery-layout-slider_dots .swiper-pagination-bullet-active {
    background: #222;
    width: 30px;
    border-radius: 6px;
}

/* Full Width - Tam genişlik slider */
.gallery-layout-full_width .gallery-full-wrapper {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    position: relative;
}

.gallery-layout-full_width .gallery-full-image {
    width: 100%;
    height: 600px;
    object-fit: cover;
}

/* ==============================================
   RESPONSIVE
   ============================================== */
/* Responsive kodlar responsive.css dosyasına taşındı */

@media (min-width: 992px) and (max-width: 1199px) {
    .products-grid.product-list-grid-desktop-4 {
        grid-template-columns: repeat(3, 1fr) !important;
    }
    
    .products-grid.product-list-grid-desktop-5 {
        grid-template-columns: repeat(4, 1fr) !important;
    }
    
    .products-grid.product-list-grid-desktop-6 {
        grid-template-columns: repeat(4, 1fr) !important;
    }
}

