
/* ============================================
   SINGLE PRODUCT IMAGE BADGES - KALICI FIX
   ============================================ */

/* Galeri pozisyonlama */
.woocommerce-product-gallery {
    position: relative !important;
}

/* BADGE CONTAINER - Galeri İÇİNDE */
.salome-single-badges,
.salome-product-badges {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    z-index: 100 !important;
    display: flex !important;
    flex-direction: column !important;
    flex-wrap: nowrap !important;
    gap: 8px !important;
    pointer-events: none !important;
    width: auto !important;
    max-width: 180px !important;
}

/* Her badge ayrı satırda */
.salome-product-badges .badge,
.salome-single-badges .salome-single-badge {
    display: flex !important;
    width: fit-content !important;
    white-space: nowrap !important;
}

/* Figure üzerine binmesi için */
.woocommerce-product-gallery__wrapper {
    position: relative !important;
}

/* Badge Genel Stil */
.salome-single-badge,
.salome-product-badges .badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 6px !important;
    padding: 8px 12px !important;
    border-radius: 6px !important;
    background: #fff !important;
    box-shadow: 0 4px 12px rgba(0,0,0,0.15) !important;
    font-size: 12px !important;
    font-weight: 700 !important;
    color: #333 !important;
    width: fit-content !important;
    text-transform: none !important;
    letter-spacing: 0.3px !important;
    opacity: 1 !important;
    visibility: visible !important;
}

/* Kargo Bedava Badge */
.salome-single-badge.badge-free-shipping {
    background: #4a4a4a !important;
    color: #fff !important;
}

/* Hızlı Teslimat Badge */
.salome-single-badge.badge-fast-shipping,
.salome-product-badges .badge-fast-shipping {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%) !important;
    color: #fff !important;
}

/* Güvenilir Satıcı Badge */
.salome-single-badge.badge-trusted,
.salome-product-badges .badge-trusted {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%) !important;
    color: #fff !important;
}

/* İndirim Badge */
.salome-single-badge.badge-discount,
.salome-product-badges .badge-discount {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%) !important;
    color: #fff !important;
}

/* Avantajlı Ürün Badge */
.salome-single-badge.badge-advantage {
    background: linear-gradient(135deg, #f27a1a 0%, #d4660f 100%) !important;
    color: #fff !important;
}

/* Yeni Sezon Badge */
.salome-single-badge.badge-new {
    background: var(--salome-secondary, #2c3e50) !important;
    color: #fff !important;
}

/* Yuvarlak İndirim Badge */
.salome-single-badge.badge-discount-rate {
    background: #d32f2f !important;
    color: #fff !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
    width: 55px !important;
    height: 55px !important;
    border-radius: 50% !important;
    padding: 0 !important;
    line-height: 1 !important;
    gap: 2px !important;
    box-shadow: 0 4px 10px rgba(211, 47, 47, 0.4) !important;
    animation: pulse-red 2s infinite !important;
}

.salome-single-badge.badge-discount-rate .rate {
    font-size: 18px !important;
    font-weight: 800 !important;
}
.salome-single-badge.badge-discount-rate .text {
    font-size: 8px !important;
    opacity: 0.9 !important;
}

@keyframes pulse-red {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(211, 47, 47, 0.7); }
    70% { transform: scale(1.05); box-shadow: 0 0 0 10px rgba(211, 47, 47, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(211, 47, 47, 0); }
}

/* ============================================
   GALERİ OKLARI (Thumbnail Navigation)
   ============================================ */

/* Flex Control Nav (Thumbnail slider) için oklar */
.woocommerce-product-gallery .flex-direction-nav {
    display: flex !important;
    position: absolute;
    bottom: 20px;
    left: 0;
    right: 0;
    justify-content: space-between;
    padding: 0 10px;
    z-index: 100;
    pointer-events: none;
}

.woocommerce-product-gallery .flex-direction-nav a {
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.95) !important;
    border-radius: 50%;
    box-shadow: 0 2px 10px rgba(0,0,0,0.15);
    color: #333 !important;
    font-size: 0;
    pointer-events: auto;
    transition: all 0.3s ease;
    opacity: 1 !important;
    visibility: visible !important;
}

.woocommerce-product-gallery .flex-direction-nav a:hover {
    background: var(--salome-primary, #eb731d) !important;
    color: #fff !important;
}

.woocommerce-product-gallery .flex-direction-nav a::before {
    font-size: 18px;
    font-weight: bold;
}

.woocommerce-product-gallery .flex-direction-nav .flex-prev::before {
    content: '‹';
}

.woocommerce-product-gallery .flex-direction-nav .flex-next::before {
    content: '›';
}

/* Küçük resimler için ok butonları */
.woocommerce-product-gallery .flex-control-thumbs {
    position: relative;
    margin-top: 15px !important;
    display: flex;
    gap: 10px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 5px 0;
}

/* Custom thumbnail navigation arrows */
.salome-thumb-wrapper {
    position: relative !important;
    display: flex;
    align-items: center;
}

.salome-thumb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    background: #eb731d;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 2px 8px rgba(235, 115, 29, 0.3);
    transition: all 0.3s ease;
    color: #fff;
    font-size: 16px;
    font-weight: bold;
}

.salome-thumb-nav:hover {
    background: #d4660f;
    transform: translateY(-50%) scale(1.1);
}

.salome-thumb-nav.prev {
    left: -5px;
}

.salome-thumb-nav.next {
    right: -5px;
}

/* ============================================
   ANA GALERİ OKLARI
   ============================================ */

.woocommerce-product-gallery .flex-viewport {
    position: relative !important;
}

.salome-gallery-nav {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 15px;
    pointer-events: none;
    z-index: 50;
}

.salome-gallery-arrow {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.95) !important;
    border: 2px solid #eb731d !important;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #eb731d !important;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    pointer-events: auto;
}

.salome-gallery-arrow svg {
    width: 24px;
    height: 24px;
    stroke: #eb731d;
}

.salome-gallery-arrow:hover {
    background: #eb731d !important;
    transform: scale(1.1);
}

.salome-gallery-arrow:hover svg {
    stroke: #fff;
}

/* Sol ok */
.salome-gallery-prev {
    margin-left: 5px;
}

/* Sağ ok */
.salome-gallery-next {
    margin-right: 5px;
}

/* ============================================
   GALERİ BOYUT AYARLARI
   ============================================ */

/* Ana galeri boyutunu büyüt */
.woocommerce-product-gallery,
.salome-trendyol-gallery {
    max-height: 650px !important;
}

.woocommerce-product-gallery .flex-viewport {
    max-height: 580px !important;
}

.woocommerce-product-gallery .woocommerce-product-gallery__image img {
    max-height: 580px !important;
    width: auto !important;
    object-fit: contain !important;
}

/* Küçük resimler daha da küçük */
.woocommerce-product-gallery .flex-control-thumbs li {
    width: 50px !important;
    height: 50px !important;
    flex-shrink: 0;
}

.woocommerce-product-gallery .flex-control-thumbs li img {
    width: 50px !important;
    height: 50px !important;
    object-fit: cover !important;
    border-radius: 4px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.woocommerce-product-gallery .flex-control-thumbs li img:hover,
.woocommerce-product-gallery .flex-control-thumbs li img.flex-active {
    border-color: #eb731d;
}

/* ============================================
   İNDİRİM ETİKETLERİ - ORANA GÖRE
   ============================================ */

/* Mega Fırsat (%50+) */
.salome-single-badge.badge-mega {
    background: linear-gradient(135deg, #e91e63 0%, #c2185b 100%) !important;
    color: #fff !important;
}

.salome-single-badge.badge-mega .stars {
    color: #ffd700;
    font-size: 12px;
    margin-right: 4px;
}

/* Süper Avantaj (%30-49) */
.salome-single-badge.badge-super {
    background: linear-gradient(135deg, #ff5722 0%, #e64a19 100%) !important;
    color: #fff !important;
}

.salome-single-badge.badge-super .stars {
    color: #ffd700;
    font-size: 12px;
    margin-right: 4px;
}

/* Avantajlı (%15-29) */
.salome-single-badge.badge-advantage .stars {
    color: #ffd700;
    font-size: 12px;
    margin-right: 4px;
}

/* Normal İndirim (%15 altı) */
.salome-single-badge.badge-discount {
    background: #607d8b !important;
    color: #fff !important;
}

/* İndirim yuvarlağı daha küçük */
.salome-single-badge.badge-discount-rate {
    width: 45px !important;
    height: 45px !important;
}

.salome-single-badge.badge-discount-rate .rate {
    font-size: 14px !important;
}

/* ============================================
   HOVER ZOOM - TRENDYOL TARZI
   ============================================ */

/* Galeri container - zoom için relative pozisyon */
.woocommerce-product-gallery,
.lakit-product-images {
    position: relative !important;
}

/* Zoom lens (görselin üzerindeki kare) */
.salome-zoom-lens {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(235, 115, 29, 0.2);
    border: 2px solid #eb731d;
    border-radius: 4px;
    cursor: crosshair;
    z-index: 90;
    display: none;
    pointer-events: none;
}

/* Zoom result (sağdaki büyütülmüş görüntü) */
.salome-zoom-result {
    position: absolute;
    top: 0;
    left: calc(100% + 15px);
    width: 450px;
    height: 450px;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    overflow: hidden;
    z-index: 1000;
    display: none;
}

.salome-zoom-result img {
    max-width: none !important;
    max-height: none !important;
    display: block;
}

/* Mobil cihazlarda zoom'u gizle */
@media (max-width: 1024px) {
    .salome-zoom-lens,
    .salome-zoom-result {
        display: none !important;
    }
}

/* ============================================
   RENK VARYASYON SWATCH - BÜYÜK GÖRSEL
   ============================================ */

/* data-full-image olan TÜM swatch'lar için büyük boyut */
[data-full-image] {
    width: 55px !important;
    height: 55px !important;
    min-width: 55px !important;
    min-height: 55px !important;
    border-radius: 8px !important;
    border: 2px solid #e0e0e0 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    margin: 4px !important;
    background-size: cover !important;
    background-position: center !important;
}

[data-full-image]:hover {
    border-color: #eb731d !important;
    transform: scale(1.1) !important;
    box-shadow: 0 6px 20px rgba(235, 115, 29, 0.4) !important;
    z-index: 10;
}

[data-full-image].selected,
[data-full-image].active {
    border-color: #eb731d !important;
    border-width: 3px !important;
    box-shadow: 0 0 0 3px rgba(235, 115, 29, 0.2) !important;
}

/* Renk swatch container'ına özel stil */
.salome-color-swatches .swatch-item-span,
.salome-color-swatches .swatch-item,
.salome-color-swatches [data-value] {
    width: 55px !important;
    height: 55px !important;
    min-width: 55px !important;
    min-height: 55px !important;
    border-radius: 8px !important;
    border: 2px solid #e0e0e0 !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1) !important;
    margin: 4px !important;
}

.salome-color-swatches .swatch-item-span:hover,
.salome-color-swatches .swatch-item:hover,
.salome-color-swatches [data-value]:hover {
    border-color: #eb731d !important;
    transform: scale(1.08) !important;
    box-shadow: 0 4px 15px rgba(235, 115, 29, 0.3) !important;
}

.salome-color-swatches .swatch-item-span.selected,
.salome-color-swatches .swatch-item.selected,
.salome-color-swatches [data-value].selected,
.salome-color-swatches .swatch-item-span.active,
.salome-color-swatches .swatch-item.active {
    border-color: #eb731d !important;
    border-width: 3px !important;
    box-shadow: 0 0 0 3px rgba(235, 115, 29, 0.2) !important;
}

/* ============================================
   VARYASYON SWATCH HOVER POPUP
   ============================================ */

.salome-swatch-popup {
    position: fixed;
    width: 280px;
    height: 280px;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
    z-index: 99999;
    padding: 10px;
    opacity: 0;
    visibility: hidden;
    transform: scale(0.9) translateY(10px);
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    pointer-events: none;
}

.salome-swatch-popup.active {
    opacity: 1;
    visibility: visible;
    transform: scale(1) translateY(0);
    pointer-events: auto;
}

.salome-swatch-popup img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

/* Popup ok işareti (aşağı doğru) */
.salome-swatch-popup::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-top: 14px solid #fff;
    filter: drop-shadow(0 4px 4px rgba(0,0,0,0.15));
}

/* Popup altında görünürse ok yukarı baksın */
.salome-swatch-popup.below::after {
    bottom: auto;
    top: -12px;
    border-top: none;
    border-bottom: 14px solid #fff;
}

/* Mobil cihazlarda popup'ı gizle */
@media (max-width: 768px) {
    .salome-swatch-popup {
        display: none !important;
    }
    
    /* Mobilde renk swatch biraz daha küçük */
    .salome-color-swatches .swatch-item-span,
    .salome-color-swatches .swatch-item,
    .salome-color-swatches [data-value] {
        width: 45px !important;
        height: 45px !important;
        min-width: 45px !important;
        min-height: 45px !important;
    }
}

/* ============================================
   LIGHTBOX MODAL
   ============================================ */

.salome-lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
}

.salome-lightbox.active {
    display: flex;
}

.salome-lightbox-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    cursor: pointer;
}

.salome-lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    z-index: 2;
}

.salome-lightbox-image-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
}

.salome-lightbox-img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.5);
}

.salome-lightbox-close {
    position: absolute;
    top: -50px;
    right: 0;
    width: 44px;
    height: 44px;
    background: #eb731d;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.salome-lightbox-close:hover {
    background: #d4660f;
    transform: scale(1.1);
}

.salome-lightbox-prev,
.salome-lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    background: #eb731d;
    border: none;
    border-radius: 50%;
    color: #fff;
    font-size: 28px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.salome-lightbox-prev {
    left: -70px;
}

.salome-lightbox-next {
    right: -70px;
}

.salome-lightbox-prev:hover,
.salome-lightbox-next:hover {
    background: #d4660f;
    transform: translateY(-50%) scale(1.1);
}

.salome-lightbox-counter {
    text-align: center;
    color: #fff;
    margin-top: 15px;
    font-size: 14px;
    font-weight: 500;
}

/* Mobil için lightbox */
@media (max-width: 768px) {
    .salome-lightbox-prev {
        left: 10px;
    }
    
    .salome-lightbox-next {
        right: 10px;
    }
    
    .salome-lightbox-close {
        top: 10px;
        right: 10px;
    }
}

/* ============================================
   ÜRÜN ÖZELLİKLERİ TABLOSU - TRENDYOL TARZI
   ============================================ */

.salome-product-attributes {
    background: #fff;
    border: 1px solid #e8e8e8;
    border-radius: 8px;
    margin: 20px 0;
    overflow: hidden;
}

.salome-product-attributes .attributes-title {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 15px 20px;
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    color: #333;
    background: #f8f8f8;
    border-bottom: 1px solid #e8e8e8;
}

.salome-product-attributes .attributes-title .icon {
    font-size: 18px;
}

.salome-product-attributes .attributes-table {
    padding: 0;
}

.salome-product-attributes .attribute-row {
    display: flex;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.salome-product-attributes .attribute-row:last-child {
    border-bottom: none;
}

.salome-product-attributes .attribute-row.hidden-attr {
    display: none;
}

.salome-product-attributes .attribute-row:hover {
    background: #fafafa;
}

.salome-product-attributes .attribute-label {
    flex: 0 0 40%;
    padding: 12px 20px;
    font-size: 13px;
    color: #666;
    background: #fafafa;
    font-weight: 500;
}

.salome-product-attributes .attribute-value {
    flex: 0 0 60%;
    padding: 12px 20px;
    font-size: 13px;
    color: #333;
    font-weight: 500;
}

.salome-product-attributes .show-all-attributes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 12px 20px;
    background: #fff;
    border: none;
    border-top: 1px solid #e8e8e8;
    color: #eb731d;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.salome-product-attributes .show-all-attributes:hover {
    background: #fff5ee;
}

.salome-product-attributes .show-all-attributes .arrow {
    font-size: 10px;
    transition: transform 0.3s ease;
}

.salome-product-attributes .show-all-attributes.expanded .arrow {
    transform: rotate(180deg);
}

/* ============================================
   VARYASYON GÖRSELLERİ - RESİM OLARAK GÖSTER
   ============================================ */

/* Renk swatchları resim olarak göster */
.variations_form .la-swatch-control {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 8px !important;
}

/* Varsayılan renk kutularını gizle */
.variations_form .la-swatch-control .swatch-item-span.swatch--is_color {
    width: 50px !important;
    height: 50px !important;
    border-radius: 6px !important;
    border: 2px solid #e0e0e0 !important;
    overflow: hidden !important;
    position: relative !important;
    background-size: cover !important;
    background-position: center !important;
    transition: all 0.3s ease !important;
}

.variations_form .la-swatch-control .swatch-item-span.swatch--is_color:hover {
    border-color: #eb731d !important;
    transform: scale(1.05);
}

.variations_form .la-swatch-control .swatch-item-span.swatch--is_color.selected,
.variations_form .la-swatch-control .swatch-item-span.swatch--is_color.is_selected {
    border-color: #eb731d !important;
    box-shadow: 0 0 0 2px rgba(235, 115, 29, 0.3) !important;
}

/* Renk dairesini gizle, resmi göster */
.variations_form .la-swatch-control .swatch-item-span.swatch--is_color .swatch__color {
    display: none !important;
}

/* Tüm varyasyon yazılarını ve tooltipleri gizle - sadece görsel göster */
.variations_form .la-swatch-control .swatch-item-span .swatch__tooltip,
.variations_form .la-swatch-control .swatch-item-span .swatch-tooltip,
.variations_form .la-swatch-control .swatch-label-text,
.variations_form .swatch-item-span[data-tooltip],
.variations_form .swatch-item-span::before {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Swatch item font-size sıfırla - yazı gizle */
.variations_form .la-swatch-control .swatch-item-span {
    font-size: 0 !important;
    color: transparent !important;
}

/* Tooltip arka plan/hover gizle */
.variations_form .swatch-item-span:hover::after,
.variations_form .swatch-item-span:hover::before {
    display: none !important;
}

/* Varyasyon görseli için wrapper */
.salome-variation-image-swatch {
    width: 50px !important;
    height: 50px !important;
    border-radius: 6px !important;
    border: 2px solid #e0e0e0 !important;
    overflow: hidden !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    background: #fff !important;
}

.salome-variation-image-swatch:hover {
    border-color: #eb731d !important;
    transform: scale(1.05);
}

.salome-variation-image-swatch.selected {
    border-color: #eb731d !important;
    box-shadow: 0 0 0 2px rgba(235, 115, 29, 0.3) !important;
}

.salome-variation-image-swatch img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Varyasyon satırı düzeni */
.variations_form .variations tr {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 15px;
}

.variations_form .variations .label {
    width: 100%;
    margin-bottom: 8px;
    font-weight: 600;
    font-size: 13px;
    color: #333;
}

.variations_form .variations .value {
    width: 100%;
}

/* Seçili varyasyon etiketi */
.variations_form .swatch-label {
    font-size: 12px;
    color: #666;
    margin-top: 5px;
}

/* ============================================
   LASTUDIOKIT / ELEMENTOR GALERİ İÇİN BADGE
   ============================================ */

/* LaStudioKit galeri içinde badge pozisyonu */
.lakit-product-images {
    position: relative !important;
}

.lakit-product-images .salome-single-badges,
.lakit-product-images .salome-product-badges {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    z-index: 100 !important;
}

/* Galeri wrapper pozisyonu */
.lakit-product-images .woocommerce-product-gallery__wrapper {
    position: relative !important;
}

/* ============================================
   ÜRÜN BAŞLIĞI STİLİ - TRENDYOL TARZI
   ============================================ */

/* Ürün başlığı container */
.single-product .product_title,
.single-product .entry-title {
    font-size: 20px !important;
    font-weight: 600 !important;
    color: #333 !important;
    line-height: 1.4 !important;
    margin-bottom: 10px !important;
    padding: 0 !important;
}

/* Summary bölümü düzeni */
.single-product .summary.entry-summary {
    padding: 0 20px !important;
}

/* Varsayılan başlığı gizle */
.single-product .product_title.entry-title {
    display: none !important;
}

/* Yeni Salome Ürün Başlığı - Turuncu ve Bold */
.salome-product-title {
    font-size: 22px !important;
    font-weight: 700 !important;
    color: #eb731d !important;
    line-height: 1.4 !important;
    margin: 0 0 10px 0 !important;
    padding: 0 !important;
    order: -1 !important;
}

/* Favori sayacı - başlık altında */
.salome-favorites-count {
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    font-size: 13px !important;
    color: #e91e63 !important;
    margin-bottom: 15px !important;
    padding: 8px 12px !important;
    background: #fce4ec !important;
    border-radius: 6px !important;
    width: fit-content !important;
}

.salome-favorites-count .heart-icon {
    color: #e91e63 !important;
    animation: heartbeat 1.5s ease-in-out infinite !important;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.15); }
}

.salome-favorites-count strong {
    font-weight: 700 !important;
}

/* Marka/Satıcı etiketi */
.salome-brand-label {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #eb731d;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Ürün değerlendirme yıldızları */
.single-product .star-rating {
    margin: 10px 0 !important;
}

/* Fiyat bölümü */
.single-product .price {
    margin: 15px 0 !important;
}

/* ============================================
   VARYASYON GÖRSELLERİ - RESİM SWATCH
   ============================================ */

/* Varyasyon swatch container */
.salome-variation-swatches {
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
    margin: 10px 0 !important;
}

/* Her bir varyasyon görsel kutusu */
.salome-var-image-swatch {
    width: 60px !important;
    height: 60px !important;
    border: 2px solid #e0e0e0 !important;
    border-radius: 8px !important;
    overflow: hidden !important;
    cursor: pointer !important;
    transition: all 0.3s ease !important;
    position: relative !important;
    background: #fff !important;
}

.salome-var-image-swatch:hover {
    border-color: #eb731d !important;
    transform: scale(1.05) !important;
    box-shadow: 0 4px 12px rgba(235, 115, 29, 0.2) !important;
}

.salome-var-image-swatch.active,
.salome-var-image-swatch.selected {
    border-color: #eb731d !important;
    box-shadow: 0 0 0 3px rgba(235, 115, 29, 0.3) !important;
}

.salome-var-image-swatch img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
}

/* Varsayılan renk swatchlarını gizle ve görsel göster */
.variations_form .swatch-item-span[data-swatch-type="color"],
.variations_form .swatch-item-span.swatch--is_color {
    width: 55px !important;
    height: 55px !important;
    border-radius: 8px !important;
    border: 2px solid #e0e0e0 !important;
    overflow: hidden !important;
    background-size: cover !important;
    background-position: center !important;
    background-repeat: no-repeat !important;
}

/* Renk dairesi ve yazıları gizle - sadece görsel göster */
.variations_form .swatch-item-span[data-swatch-type="color"] .swatch__color,
.variations_form .swatch-item-span.swatch--is_color .swatch__color,
.variations_form .swatch-item-span .swatch__tooltip,
.variations_form .swatch-item-span .swatch-tooltip,
.variations_form .la-swatch-control .swatch-label-text {
    opacity: 0 !important;
    visibility: hidden !important;
    display: none !important;
}

/* Tüm swatch'larda yazıyı gizle - sadece görsel */
.variations_form .la-swatch-control .swatch-item-span {
    font-size: 0 !important;
}

.variations_form .la-swatch-control .swatch-item-span::after,
.variations_form .la-swatch-control .swatch-item-span::before {
    display: none !important;
}

/* Varyasyon seçimi label */
.variations_form .variations tr .label label {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin-bottom: 10px !important;
    display: block !important;
}

/* Seçilen varyasyon adı */
.variations_form .swatch-label {
    display: block !important;
    font-size: 13px !important;
    color: #666 !important;
    margin-top: 8px !important;
    font-weight: 500 !important;
}

/* ============================================
   ÜRÜN ÖZELLİKLERİ & GÜVENCE KARTI POZİSYONU
   ============================================ */

/* Kartlar Wrapper - Galerinin altında, kesinlikle normal akışta */
#salome-cards-wrapper,
.salome-cards-wrapper {
    display: block !important;
    position: static !important;
    clear: both !important;
    width: 100% !important;
    margin: 30px 0 0 0 !important;
    padding: 0 !important;
    float: none !important;
    z-index: 1 !important;
}

/* Tüm kartlar için ortak stil - NORMAL AKIŞ */
#salome-cards-wrapper .salome-variations-card,
#salome-cards-wrapper .salome-product-attributes,
#salome-cards-wrapper .salome-trust-section {
    display: block !important;
    position: static !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 0 20px 0 !important;
    padding: 0 !important;
    float: none !important;
    clear: both !important;
    z-index: 1 !important;
}

#salome-cards-wrapper .salome-trust-section {
    margin-bottom: 0 !important;
}

/* LaKit galeri sonrası bölümler */
.lakit-product-images + .salome-product-attributes,
.lakit-product-images + .salome-trust-section,
.summary + .salome-product-attributes,
.summary + .salome-trust-section {
    margin-top: 25px !important;
}

/* Summary içinde olmadığında düzgün görünsün */
.woocommerce-product-gallery-outer .salome-product-attributes,
.woocommerce-product-gallery-outer .salome-trust-section {
    margin-top: 20px !important;
}

/* Güvence kartı düzeni */
.salome-trust-section {
    background: #fff !important;
    border: 1px solid #e8e8e8 !important;
    border-radius: 8px !important;
    margin: 15px 0 !important;
    padding: 0 !important;
}

.salome-trust-box {
    padding: 15px 20px !important;
}

.salome-trust-box h4 {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333 !important;
    margin: 0 0 15px 0 !important;
    padding-bottom: 10px !important;
    border-bottom: 1px solid #f0f0f0 !important;
}

.salome-trust-badges {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 12px !important;
}

.salome-trust-item {
    display: flex !important;
    align-items: center !important;
    gap: 10px !important;
}

.salome-trust-item .trust-icon {
    font-size: 20px !important;
    flex-shrink: 0 !important;
}

.salome-trust-item .trust-text {
    display: flex !important;
    flex-direction: column !important;
}

.salome-trust-item .trust-text strong {
    font-size: 12px !important;
    font-weight: 600 !important;
    color: #333 !important;
}

.salome-trust-item .trust-text span {
    font-size: 11px !important;
    color: #666 !important;
}

/* Mobil uyum */
@media (max-width: 768px) {
    .salome-trust-badges {
        grid-template-columns: 1fr !important;
    }
    
    .salome-var-image-swatch {
        width: 50px !important;
        height: 50px !important;
    }
}

/* ============================================
   VARYASYON KARTI STİLİ
   ============================================ */

.salome-variations-card {
    background: #fff !important;
    border: 1px solid #e8e8e8 !important;
    border-radius: 8px !important;
    margin: 25px 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
}

.salome-variations-card .card-title {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 15px 20px !important;
    margin: 0 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #fff !important;
    background: linear-gradient(135deg, #eb731d 0%, #d4660f 100%) !important;
    border-bottom: none !important;
}

.salome-variations-card .card-title .icon {
    font-size: 18px !important;
}

.salome-variations-card .card-content {
    padding: 20px !important;
}

.salome-variations-card .variations {
    margin: 0 !important;
    border: none !important;
    width: 100% !important;
}

.salome-variations-card .variations tr {
    display: flex !important;
    flex-direction: column !important;
    margin-bottom: 15px !important;
}

.salome-variations-card .variations tr:last-child {
    margin-bottom: 0 !important;
}

.salome-variations-card .variations .label {
    margin-bottom: 10px !important;
    padding: 0 !important;
}

.salome-variations-card .variations .label label {
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333 !important;
}

.salome-variations-card .variations .value {
    width: 100% !important;
    padding: 0 !important;
}

/* Ürün Özellikleri Kart Başlığı - Turuncu */
.salome-product-attributes {
    margin: 25px 0 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
}

.salome-product-attributes .attributes-title {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 15px 20px !important;
    margin: 0 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #fff !important;
    background: linear-gradient(135deg, #eb731d 0%, #d4660f 100%) !important;
    border-bottom: none !important;
}

.salome-product-attributes .attributes-title .icon {
    font-size: 18px !important;
}

/* Salome Butik Güvencesi Kart Başlığı - Turuncu */
.salome-trust-section {
    margin: 25px 0 !important;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06) !important;
}

.salome-trust-box h4 {
    display: flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 15px 20px !important;
    margin: 0 !important;
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #fff !important;
    background: linear-gradient(135deg, #eb731d 0%, #d4660f 100%) !important;
    border-bottom: none !important;
    border-radius: 8px 8px 0 0 !important;
}

.salome-trust-box {
    padding: 0 !important;
}

.salome-trust-badges {
    padding: 20px !important;
}

/* ============================================
   ÜRÜN SAYFASI LAYOUT
   ============================================ */

/* Sol taraf - Galeri - NORMAL BOY */
.single-product .woocommerce-product-gallery,
.single-product .lakit-product-images {
    max-width: 100% !important;
}

/* Sağ taraf - Summary daha geniş */
.single-product .summary.entry-summary,
.single-product .product-summary {
    padding-left: 20px !important;
}

/* Kartları full width yap */
.salome-product-attributes,
.salome-trust-section {
    clear: both !important;
    width: 100% !important;
    max-width: 100% !important;
    margin: 20px 0 !important;
}

/* Kategoriler sağa hizala */
.single-product .posted_in,
.single-product .product_meta .posted_in {
    margin-left: 15px !important;
    padding-left: 15px !important;
}

/* Breadcrumb/kategori alanı */
.woocommerce-breadcrumb {
    padding-left: 20px !important;
}