/**
 * Salome Butik - Trendyol Style Product Page
 * Premium Boutique E-Commerce Design
 */

/* ============================================
   CSS DEĞİŞKENLERİ - GLOBAL
   ============================================ */
:root {
    --salome-primary: #eb731d;
    --salome-primary-dark: #d4660f;
    --salome-primary-light: #f8a050;
    --salome-secondary: #2c3e50;
    --salome-success: #27ae60;
    --salome-danger: #e74c3c;
    --salome-warning: #f39c12;
    --salome-light: #f8f6f4;
    --salome-gold: #ffd700;
    --salome-rose: #e91e63;
    --salome-border: #e8e0d8;
}

/* ============================================
   ESKİ SIDEBAR WIDGET'LARINI GİZLE
   ============================================ */

.single-product .sidebar-container .widget_product_categories,
.single-product .sidebar-container .widget_product_tag_cloud,
.single-product .sidebar-container .widget_tag_cloud,
.single-product .sidebar-container .woocommerce-widget-layered-nav,
.single-product .sidebar-container .widget_text:has(.textwidget:empty),
.single-product .sidebar-container .widget {
    display: none !important;
}

/* ============================================
   SALOME CUSTOM SIDEBAR - SIDEBAR ALANI
   ============================================ */

.salome-product-sidebar-wrapper {
    width: 100%;
    margin-bottom: 20px;
    padding-top: 0;
    border-top: none;
}

@media (max-width: 991px) {
    .salome-product-sidebar-wrapper {
        margin: 20px 0;
    }
}

.salome-product-sidebar-wrapper .salome-sidebar-categories,
.salome-product-sidebar-wrapper .salome-sidebar-related {
    margin-bottom: 20px;
}

/* ============================================
   SIDEBAR WIDGET HEADER GLOBAL STİL
   ============================================ */
   
.sidebar-widget-header {
    background: linear-gradient(135deg, #eb731d 0%, #d4660f 100%) !important;
    padding: 14px 18px;
}

.sidebar-widget-header h3 {
    margin: 0;
    font-size: 13px;
    font-weight: 600;
    color: #fff;
}

/* ============================================
   SALOME SIDEBAR KATEGORİ MENÜSÜ - ŞIK TASARIM
   ============================================ */

.salome-sidebar-categories {
    background: #fff;
    border: 2px solid var(--salome-primary);
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(235, 115, 29, 0.15);
}

.salome-sidebar-categories .sidebar-widget-header {
    background: linear-gradient(135deg, var(--salome-primary) 0%, var(--salome-primary-dark) 100%);
    padding: 15px 18px;
    border-bottom: none;
}

.salome-sidebar-categories .sidebar-widget-header h3 {
    color: #fff;
    font-size: 15px;
    font-weight: 700;
    margin: 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.salome-sidebar-categories .category-list {
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    max-height: 400px;
    overflow-y: auto;
}

.salome-sidebar-categories .category-list::-webkit-scrollbar {
    width: 4px;
}

.salome-sidebar-categories .category-list::-webkit-scrollbar-track {
    background: #f5f5f5;
}

.salome-sidebar-categories .category-list::-webkit-scrollbar-thumb {
    background: var(--salome-primary);
    border-radius: 4px;
}

.salome-sidebar-categories .category-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 12px 14px;
    border-radius: 8px;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid #f0f0f0;
    color: var(--salome-secondary);
    background: #fafafa;
}

.salome-sidebar-categories .category-item:hover {
    background: linear-gradient(135deg, #fff5ed 0%, #fff9f5 100%);
    border-color: var(--salome-primary);
    color: var(--salome-primary);
    transform: translateX(5px);
    box-shadow: 0 2px 10px rgba(235, 115, 29, 0.15);
}

.salome-sidebar-categories .category-item.active {
    background: linear-gradient(135deg, var(--salome-primary) 0%, var(--salome-primary-dark) 100%);
    color: #fff;
    border-color: var(--salome-primary-dark);
    box-shadow: 0 4px 15px rgba(235, 115, 29, 0.3);
}

.salome-sidebar-categories .category-item.sub-category {
    padding-left: 30px;
    font-size: 12px;
    background: #fff;
    border-left: 3px solid var(--salome-primary-light);
    margin-left: 10px;
}

.salome-sidebar-categories .cat-name {
    flex: 1;
    font-size: 13px;
    font-weight: 600;
}

.salome-sidebar-categories .cat-count {
    background: #fff;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 11px;
    color: var(--salome-primary);
    font-weight: 700;
    min-width: 35px;
    text-align: center;
    border: 1px solid var(--salome-primary-light);
}

.salome-sidebar-categories .category-item:hover .cat-count {
    background: var(--salome-primary);
    color: #fff;
    border-color: var(--salome-primary);
}

.salome-sidebar-categories .category-item.active .cat-count {
    background: rgba(255,255,255,0.95);
    color: var(--salome-primary);
}

/* ============================================
   SALOME SIDEBAR PROMO BANNER
   ============================================ */

.salome-sidebar-promo {
    background: linear-gradient(135deg, #ff9a9e 0%, #fecfef 50%, #fecfef 100%);
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
}

.salome-sidebar-promo::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
}

.salome-sidebar-promo .promo-content {
    position: relative;
    display: flex;
    align-items: center;
    gap: 12px;
}

.salome-sidebar-promo .promo-icon {
    font-size: 32px;
}

.salome-sidebar-promo .promo-text strong {
    display: block;
    font-size: 14px;
    color: #5a2a4a;
    margin-bottom: 4px;
}

.salome-sidebar-promo .promo-text p {
    margin: 0;
    font-size: 12px;
    color: #7a4a6a;
}

.salome-sidebar-promo .promo-text b {
    background: #fff;
    padding: 2px 8px;
    border-radius: 4px;
    font-size: 11px;
    color: #e91e63;
}

/* ============================================
   SALOME SIDEBAR İLETİŞİM
   ============================================ */

.salome-sidebar-contact {
    background: #fff;
    border: 1px solid #f0e8e0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.salome-sidebar-contact .contact-header {
    background: var(--salome-light);
    padding: 12px 18px;
    border-bottom: 1px solid #f0e8e0;
}

.salome-sidebar-contact .contact-header h4 {
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--salome-secondary);
}

.salome-sidebar-contact .contact-items {
    padding: 10px;
}

.salome-sidebar-contact .contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 12px;
    border-radius: 8px;
    transition: all 0.2s;
    text-decoration: none;
}

.salome-sidebar-contact .contact-item:hover {
    background: var(--salome-light);
}

.salome-sidebar-contact .contact-item.whatsapp-btn {
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #fff;
    margin-bottom: 8px;
}

.salome-sidebar-contact .contact-item.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
}

.salome-sidebar-contact .contact-item.whatsapp-btn strong,
.salome-sidebar-contact .contact-item.whatsapp-btn span {
    color: #fff;
}

.salome-sidebar-contact .contact-item .icon {
    font-size: 24px;
}

.salome-sidebar-contact .contact-item strong {
    display: block;
    font-size: 12px;
    color: var(--salome-secondary);
}

.salome-sidebar-contact .contact-item span {
    font-size: 12px;
    color: #888;
}

/* ============================================
   SALOME SIDEBAR TAKSİT TABLOSU
   ============================================ */

.salome-sidebar-installment {
    background: #fff;
    border: 1px solid #f0e8e0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
    box-shadow: 0 2px 15px rgba(212, 165, 116, 0.08);
}

.salome-sidebar-installment .installment-content {
    padding: 15px;
}

.salome-sidebar-installment .product-price-summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    background: linear-gradient(135deg, #fff9f5 0%, #fff5ed 100%);
    border-radius: 8px;
    margin-bottom: 15px;
}

.salome-sidebar-installment .product-price-summary .label {
    font-size: 13px;
    color: #666;
}

.salome-sidebar-installment .product-price-summary .price {
    font-size: 18px;
    font-weight: 700;
    color: var(--salome-primary);
}

.salome-sidebar-installment .installment-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 12px;
}

.salome-sidebar-installment .installment-table th {
    background: #fafafa;
    padding: 10px 8px;
    text-align: center;
    font-weight: 600;
    color: #666;
    border-bottom: 1px solid #eee;
}

.salome-sidebar-installment .installment-table td {
    padding: 10px 8px;
    text-align: center;
    border-bottom: 1px solid #f5f5f5;
    color: var(--salome-secondary);
}

.salome-sidebar-installment .installment-table tr.highlighted {
    background: linear-gradient(135deg, #fff9f5 0%, #fff5ed 100%);
}

.salome-sidebar-installment .installment-table tr.highlighted td {
    font-weight: 600;
}

.salome-sidebar-installment .installment-badge {
    display: inline-block;
    padding: 3px 8px;
    background: #f0f0f0;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 500;
}

.salome-sidebar-installment .installment-badge.popular {
    background: linear-gradient(135deg, var(--salome-primary) 0%, #c49660 100%);
    color: #fff;
}

.salome-sidebar-installment .installment-note {
    margin-top: 12px;
    padding-top: 12px;
    border-top: 1px dashed #eee;
}

.salome-sidebar-installment .installment-note small {
    font-size: 11px;
    color: #999;
}

/* ============================================
   SALOME SIDEBAR SATICI BİLGİLERİ
   ============================================ */

.salome-sidebar-seller {
    background: #fff;
    border: 1px solid #f0e8e0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.salome-sidebar-seller .seller-header {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.salome-sidebar-seller .seller-header h3 {
    color: #fff;
}

.salome-sidebar-seller .seller-content {
    padding: 15px;
}

.salome-sidebar-seller .seller-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-bottom: 15px;
    border-bottom: 1px solid #f0f0f0;
}

.salome-sidebar-seller .seller-logo {
    width: 50px;
    height: 50px;
    border-radius: 10px;
    overflow: hidden;
    background: var(--salome-light);
    display: flex;
    align-items: center;
    justify-content: center;
}

.salome-sidebar-seller .seller-logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.salome-sidebar-seller .seller-logo-fallback {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--salome-primary) 0%, #c49660 100%);
    color: #fff;
    font-weight: 700;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.salome-sidebar-seller .seller-details strong {
    display: block;
    font-size: 14px;
    color: var(--salome-secondary);
    margin-bottom: 4px;
}

.salome-sidebar-seller .seller-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
}

.salome-sidebar-seller .seller-rating .stars {
    color: #ffc107;
}

.salome-sidebar-seller .seller-rating .score {
    font-weight: 600;
    color: var(--salome-secondary);
}

.salome-sidebar-seller .seller-rating .count {
    color: #888;
}

.salome-sidebar-seller .seller-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 15px;
}

.salome-sidebar-seller .stat {
    text-align: center;
    padding: 10px 5px;
    background: var(--salome-light);
    border-radius: 8px;
}

.salome-sidebar-seller .stat-value {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--salome-primary);
}

.salome-sidebar-seller .stat-label {
    display: block;
    font-size: 10px;
    color: #888;
    margin-top: 2px;
}

/* ============================================
   SALOME SIDEBAR AVANTAJLAR
   ============================================ */

.salome-sidebar-benefits {
    background: #fff;
    border: 1px solid #f0e8e0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.salome-sidebar-benefits .benefits-list {
    padding: 10px;
}

.salome-sidebar-benefits .benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    border-radius: 8px;
    transition: background 0.2s;
}

.salome-sidebar-benefits .benefit-item:hover {
    background: var(--salome-light);
}

.salome-sidebar-benefits .benefit-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.salome-sidebar-benefits .benefit-text strong {
    display: block;
    font-size: 13px;
    color: var(--salome-secondary);
}

.salome-sidebar-benefits .benefit-text span {
    font-size: 11px;
    color: #888;
}

/* ============================================
   SALOME SIDEBAR BENZER ÜRÜNLER
   ============================================ */

.salome-sidebar-related {
    background: #fff;
    border: 1px solid #f0e8e0;
    border-radius: 12px;
    overflow: hidden;
    margin-bottom: 20px;
}

.salome-sidebar-related .related-products-grid {
    padding: 10px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.salome-sidebar-related .related-product-item {
    text-decoration: none;
    border: 1px solid #f0f0f0;
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.salome-sidebar-related .related-product-item:hover {
    border-color: var(--salome-primary);
    box-shadow: 0 4px 15px rgba(212, 165, 116, 0.15);
    transform: translateY(-2px);
}

.salome-sidebar-related .related-image {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
}

.salome-sidebar-related .related-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.salome-sidebar-related .sale-badge {
    position: absolute;
    top: 5px;
    left: 5px;
    background: #e74c3c;
    color: #fff;
    padding: 2px 6px;
    border-radius: 3px;
    font-size: 9px;
    font-weight: 600;
}

.salome-sidebar-related .related-info {
    padding: 8px;
}

.salome-sidebar-related .related-name {
    display: block;
    font-size: 11px;
    color: var(--salome-secondary);
    line-height: 1.3;
    margin-bottom: 4px;
}

.salome-sidebar-related .related-price {
    font-size: 12px;
    font-weight: 600;
    color: var(--salome-primary);
}

.salome-sidebar-related .related-price del {
    color: #999;
    font-weight: 400;
    font-size: 10px;
}

.salome-sidebar-related .related-price ins {
    text-decoration: none;
}

/* ============================================
   ÜRÜN SAYFA GENEL DÜZEN
   ============================================ */

/* Eski renk tanımları kaldırıldı - :root'taki #eb731d kullanılıyor */

/* ============================================
   ÜRÜN GALERİSİ - BADGES (KALICI)
   ============================================ */

.salome-trendyol-gallery {
    position: relative !important;
    overflow: visible !important;
}

.salome-product-badges {
    position: absolute !important;
    top: 15px !important;
    left: 15px !important;
    z-index: 9999 !important;
    display: flex !important;
    flex-direction: column;
    gap: 8px;
    max-width: 200px;
    pointer-events: none;
    opacity: 1 !important;
    visibility: visible !important;
}

.salome-badge {
    display: inline-flex !important;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 3px 12px rgba(0,0,0,0.25);
    pointer-events: auto;
    opacity: 1 !important;
    visibility: visible !important;
}

@keyframes badgeFadeIn {
    from {
        opacity: 0;
        transform: translateX(-20px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* İndirim Badge */
.salome-badge-discount {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
}

.salome-badge-discount .badge-icon {
    background: rgba(255,255,255,0.2);
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 700;
}

/* Avantajlı Ürün Badge - Yıldızlı */
.salome-badge-advantage {
    background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
    color: #fff;
}

.salome-badge-advantage .badge-stars {
    color: #fff;
    text-shadow: 0 0 5px rgba(255,215,0,0.5);
}

.salome-badge-star-3 {
    background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.salome-badge-star-3 .badge-stars {
    color: #ffd700;
}

.salome-badge-star-2 {
    background: linear-gradient(135deg, #3498db 0%, #2980b9 100%);
}

.salome-badge-star-1 {
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
}

/* Hızlı Teslimat Badge */
.salome-badge-shipping {
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    color: #fff;
}

.salome-badge-shipping .badge-icon-svg {
    flex-shrink: 0;
}

/* Yeni Ürün Badge */
.salome-badge-new {
    background: linear-gradient(135deg, var(--salome-primary) 0%, var(--salome-primary-dark) 100%);
    color: #fff;
}

/* Son Stok Badge */
.salome-badge-limited {
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: #fff;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 2px 8px rgba(231, 76, 60, 0.4);
    }
    50% {
        box-shadow: 0 2px 20px rgba(231, 76, 60, 0.8);
    }
}

/* ============================================
   FİYAT BÖLÜMÜ - TRENDYOL STYLE
   ============================================ */

.salome-price-wrapper {
    padding: 20px 0;
    border-bottom: 1px solid #eee;
    margin-bottom: 20px;
}

.salome-price-discount-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    padding: 8px 15px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a5a 100%);
    border-radius: 25px;
    color: #fff;
}

.salome-price-discount-label .discount-badge {
    background: #fff;
    color: #e74c3c;
    padding: 3px 10px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 14px;
}

.salome-price-discount-label .discount-text {
    font-weight: 600;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.salome-price-main {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.salome-price-old {
    display: flex;
    align-items: center;
    gap: 10px;
}

.salome-price-old .price-label {
    color: #999;
    font-size: 13px;
}

.salome-price-old .price-amount,
.salome-price-old .price-amount .woocommerce-Price-amount {
    color: #999;
    font-size: 16px;
    text-decoration: line-through;
}

.salome-price-current {
    display: flex;
    align-items: center;
    gap: 10px;
}

.salome-price-current .price-label {
    color: var(--salome-secondary);
    font-size: 14px;
    font-weight: 500;
}

.salome-price-current .price-amount,
.salome-price-current .price-amount .woocommerce-Price-amount {
    color: var(--salome-rose);
    font-size: 32px;
    font-weight: 700;
    line-height: 1;
}

.salome-price-regular .price-amount,
.salome-price-regular .price-amount .woocommerce-Price-amount {
    color: var(--salome-secondary);
}

.salome-price-savings {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 5px;
    padding: 6px 12px;
    background: #e8f5e9;
    border-radius: 20px;
    color: #27ae60;
    font-size: 13px;
    font-weight: 600;
}

.salome-price-savings .savings-icon {
    flex-shrink: 0;
}

/* Taksit Bilgisi */
.salome-installment-info {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 20px;
    padding: 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #fff 100%);
    border: 1px solid #e9ecef;
    border-radius: 10px;
}

.salome-installment-info .installment-icon {
    color: var(--salome-primary);
    flex-shrink: 0;
}

.salome-installment-info .installment-text {
    flex: 1;
    font-size: 14px;
    color: var(--salome-secondary);
}

.salome-installment-info .installment-text strong {
    color: var(--salome-rose);
}

.salome-installment-info .installment-link {
    color: var(--salome-primary);
    font-size: 13px;
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px dashed var(--salome-primary);
    transition: all 0.3s ease;
}

.salome-installment-info .installment-link:hover {
    color: var(--salome-primary-dark);
    border-color: var(--salome-primary-dark);
}

/* Taksit İmkanı Badge - Basit versiyon */
.salome-installment-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 16px;
    background: linear-gradient(135deg, var(--salome-primary) 0%, var(--salome-primary-dark) 100%);
    border-radius: 25px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(235, 115, 29, 0.3);
}

.salome-installment-badge .installment-icon {
    font-size: 16px;
}

.salome-installment-badge .installment-text {
    font-weight: 600;
}

/* Kargo Bedava Badge */
.salome-free-shipping-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 15px;
    padding: 10px 16px;
    background: linear-gradient(135deg, #27ae60 0%, #2ecc71 100%);
    border-radius: 25px;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(39, 174, 96, 0.3);
}

.salome-free-shipping-badge svg {
    flex-shrink: 0;
}

/* Kargoya X TL kaldı bildirimi */
/* ============================================
   SHOP CARD BADGES & RAINBOW STRIP
   ============================================ */

/* Container for all shop card variations */
.salome-shop-variations {
    position: absolute;
    bottom: 10px;
    left: 10px;
    right: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    z-index: 9;
    pointer-events: none;
    flex-wrap: wrap;
}

/* Shop Card Badges - Pozisyonlama Düzeltmesi (Sağ Üst) */
.salome-shop-badges {
    position: absolute;
    top: 10px;
    right: 10px;
    left: auto;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 5px;
    pointer-events: none;
}

.shop-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 10px;
    font-weight: 700;
    color: #fff;
    box-shadow: 0 3px 6px rgba(0,0,0,0.15);
    width: fit-content;
    text-shadow: 0 1px 1px rgba(0,0,0,0.1);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* GRUPLAMA (İndirim + Yıldızlar) */
.shop-badge-discount-group {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 2px;
}

/* İNDİRİM BADGE - TURUNCU VE YANIP SÖNEN */
.shop-badge-discount {
    background: #ff9800; /* Turuncu */
    color: #fff;
    border: 1px solid rgba(255,255,255,0.2);
}

.blink-effect {
    animation: salome-pulse-orange 1.5s infinite;
}

/* YILDIZLAR */
.shop-badge-stars {
    font-size: 10px;
    color: #ffca28; /* Altın */
    text-shadow: 0 1px 2px rgba(0,0,0,0.6);
    margin-right: 2px;
    letter-spacing: 1px;
}

.blink-effect-stars {
    animation: salome-blink-stars 2s infinite ease-in-out;
}

/* KARGO BEDAVA */
.shop-badge-free {
    background: #2c3e50; /* Koyu Lacivert/Gri */
    display: flex;
    gap: 6px;
    align-items: center;
}

.shop-badge-free i {
    font-size: 11px;
    color: #ffd700; /* İkonu altın yapalım dikkat çeksin */
}

/* HIZLI GÖNDERİ */
.shop-badge-fast {
    background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
    display: flex;
    gap: 6px;
    align-items: center;
}

/* YENİ ÜRÜN ŞERİDİ (TAPE STRIP) */
.salome-new-product-strip {
    position: absolute;
    bottom: 50px; /* Varyasyon ikonlarının üstüne konumlandırıldı */
    left: 0;
    width: 100%;
    /* Turuncu ve Şeffaf Bant */
    background: rgba(230, 126, 34, 0.85); /* Pumpkin Orange / Şeffaf */
    background-image: linear-gradient(45deg, rgba(255,255,255,0.1) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.1) 50%, rgba(255,255,255,0.1) 75%, transparent 75%, transparent);
    background-size: 20px 20px;
    color: #fff; /* Yazı beyaz olsun okunsun */
    font-size: 11px;
    font-weight: 800;
    text-transform: uppercase;
    text-align: center;
    padding: 4px 0;
    z-index: 20; /* İkinci resim geldiğinde altta kalmaması için yükseltildi */
    letter-spacing: 2px;
    box-shadow: 0 4px 10px rgba(230, 126, 34, 0.3);
    border-top: 1px solid rgba(255,255,255,0.3);
    border-bottom: 1px solid rgba(255,255,255,0.3);
    transform: rotate(-2deg) scale(1.02);
    pointer-events: none;
    transition: all 0.3s ease;
    text-shadow: 0 1px 2px rgba(0,0,0,0.2);
}

/* Hover durumunda kaybolmasın, hatta biraz parlasın */
.product-grid-item:hover .salome-new-product-strip,
.product-item:hover .salome-new-product-strip,
li.product:hover .salome-new-product-strip {
    opacity: 1 !important;
    display: block !important;
    transform: rotate(-2deg) scale(1.05) translateY(-5px); /* Hoverda hafif yukarı çıksın, varyasyonlara yer açsın */
    box-shadow: 0 6px 15px rgba(230, 126, 34, 0.5);
}

/* YILDIZLARI DAHA BELİRGİN YAP */
.shop-badge-stars {
    font-size: 11px;
    color: #ffd700;
    text-shadow: 0 0 3px rgba(255, 215, 0, 0.8), 0 1px 2px rgba(0,0,0,0.5);
    margin-right: 2px;
    letter-spacing: 1px;
    background: rgba(0,0,0,0.6); /* Arka plan koyuluğu */
    padding: 2px 6px;
    border-radius: 10px;
    backdrop-filter: blur(2px);
    border: 1px solid rgba(255, 215, 0, 0.3);
    box-shadow: 0 2px 5px rgba(0,0,0,0.3);
}

/* ============================================
   ANA SAYFA BAŞLIKLARI GÖRSELLEŞTİRME
   ============================================ */
/* Elementor Başlıkları & H2 vb */
.home .elementor-widget-heading .elementor-heading-title,
.home h2.elementor-heading-title,
body.home h3.elementor-heading-title {
    position: relative;
    display: inline-block;
    background: linear-gradient(to right, #333 0%, #000 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 800;
    letter-spacing: 1px;
    padding-bottom: 15px; /* Alt çizgi için yer */
    text-transform: uppercase;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.1);
}

/* Altındaki Dekoratif Çizgi */
.home .elementor-widget-heading .elementor-heading-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 4px;
    background: linear-gradient(90deg, #ff9966, #ff5e62); /* Moda renkleri */
    border-radius: 2px;
    box-shadow: 0 2px 4px rgba(255, 94, 98, 0.4);
    transition: width 0.3s ease;
}

/* Hover'da çizgi uzasın */
.home .elementor-widget-heading:hover .elementor-heading-title::after {
    width: 120px;
}

/* İkonlu Başlıklar (Before ile ikon ekleyelim - Opsiyonel) */
/* Sadece belirli başlıklar için, mesela "Yeni Sezon" geçenler */

/* KEYFRAMES */
@keyframes salome-pulse-orange {
    0% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 152, 0, 0.7); }
    70% { transform: scale(1.02); box-shadow: 0 0 0 6px rgba(255, 152, 0, 0); }
    100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(255, 152, 0, 0); }
}

@keyframes salome-blink-stars {
    0%, 100% { opacity: 1; transform: scale(1); filter: brightness(1); }
    50% { opacity: 0.7; transform: scale(0.9); filter: brightness(1.2); }
}

/* Gökkuşağı Şeridi - Gerçek Rainbow Görünümü */
.salome-rainbow-strip {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.salome-rainbow-strip .rainbow-bar {
    width: 24px;
    height: 12px;
    border-radius: 6px;
    background: linear-gradient(90deg, #ff0000, #ff7f00, #ffff00, #00ff00, #0000ff, #4b0082, #9400d3);
    box-shadow: inset 0 1px 3px rgba(0,0,0,0.2);
}

.salome-rainbow-strip .count {
    font-size: 10px;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
}

/* Beden İndicator */
.salome-size-indicator {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    transition-delay: 0.05s;
}

.salome-size-indicator .size-icon {
    font-size: 12px;
}

.salome-size-indicator .size-text {
    font-size: 10px;
    font-weight: 700;
    color: #333;
    white-space: nowrap;
}

/* Kart üzerine gelince elementler belirsin */
.product-grid-item:hover .salome-rainbow-strip,
.product-grid-item:hover .salome-size-indicator,
.product-item:hover .salome-rainbow-strip,
.product-item:hover .salome-size-indicator,
.product-inner:hover .salome-rainbow-strip,
.product-inner:hover .salome-size-indicator,
li.product:hover .salome-rainbow-strip,
li.product:hover .salome-size-indicator {
    opacity: 1;
    transform: translateY(0);
}

/* Mobilde her zaman göster ama daha küçük olsun */
@media (max-width: 768px) {
    .salome-shop-variations {
        bottom: 5px;
        opacity: 1 !important;
    }
    
    .salome-rainbow-strip,
    .salome-size-indicator {
        opacity: 0.9;
        transform: translateY(0);
        padding: 3px 6px;
    }
    
    .shop-badge {
        font-size: 10px;
        padding: 3px 6px;
    }
}

/* ============================================
   SINGLE PRODUCT BADGE & BUTTON FIX
   ============================================ */

/* Kargo ve Taksit Butonlarını Eşitle */
.salome-free-shipping-badge,
.salome-installment-badge {
    /* Mevcut stiller korunuyor, eklemeler: */
    min-width: 160px; /* Sabit minimum genişlik */
    justify-content: center; /* Ortala */
    height: 44px; /* Sabit yükseklik */
    box-sizing: border-box;
    font-size: 13px;
}

.salome-free-shipping-badge svg,
.salome-installment-badge .installment-icon {
    font-size: 18px; /* İkon boyutları eşit */
    width: 18px;
    height: 18px;
}

    font-size: 12px;
    color: #856404;
}

/* ============================================
   ÜRÜN BİLGİ BÖLÜMÜ
   ============================================ */

.salome-product-info-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 20px;
}

.salome-product-info-box h3 {
    font-size: 14px;
    font-weight: 600;
    color: var(--salome-secondary);
    margin-bottom: 15px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--salome-primary);
    display: inline-block;
}

/* Favori Sayısı */
.salome-favorites-count {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    background: #fff5f5;
    border-radius: 8px;
    margin-bottom: 15px;
}

.salome-favorites-count .heart-icon {
    color: #e74c3c;
    animation: heartbeat 1.5s infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

.salome-favorites-count span {
    font-size: 13px;
    color: var(--salome-secondary);
}

.salome-favorites-count strong {
    color: #e74c3c;
}

/* ============================================
   BEDEN SEÇİMİ - TRENDYOL STYLE
   ============================================ */

.salome-size-selector {
    margin: 20px 0;
}

.salome-size-selector .size-label {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 12px;
}

.salome-size-selector .size-label span {
    font-weight: 600;
    color: var(--salome-secondary);
}

.salome-size-selector .size-guide-link {
    display: flex;
    align-items: center;
    gap: 5px;
    color: var(--salome-primary);
    font-size: 13px;
    text-decoration: none;
}

.salome-size-selector .size-guide-link:hover {
    text-decoration: underline;
}

.salome-size-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.salome-size-btn {
    min-width: 50px;
    padding: 12px 18px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    color: var(--salome-secondary);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.salome-size-btn:hover {
    border-color: var(--salome-primary);
    background: #fff9f5;
}

.salome-size-btn.selected {
    border-color: var(--salome-primary);
    background: var(--salome-primary);
    color: #fff;
}

.salome-size-btn.out-of-stock {
    opacity: 0.4;
    text-decoration: line-through;
    cursor: not-allowed;
}

/* ============================================
   SEPETE EKLE BUTONU (KOMPAKT & ŞIK)
   ============================================ */

.single_add_to_cart_button,
.woocommerce .single_add_to_cart_button,
button.single_add_to_cart_button {
    width: auto !important;
    min-width: 160px !important;
    max-width: 220px !important;
    padding: 12px 24px !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    background: #eb731d !important;
    background: linear-gradient(135deg, #eb731d 0%, #d4660f 100%) !important;
    border: none !important;
    border-radius: 8px !important;
    color: #fff !important;
    cursor: pointer;
    transition: all 0.25s ease !important;
    box-shadow: 0 4px 15px rgba(235, 115, 29, 0.4) !important;
    line-height: 1.4 !important;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.single_add_to_cart_button::before,
.woocommerce .single_add_to_cart_button::before {
    content: "🛒";
    font-size: 14px;
}

.single_add_to_cart_button:hover,
.woocommerce .single_add_to_cart_button:hover {
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 20px rgba(235, 115, 29, 0.5) !important;
    background: #d4660f !important;
    background: linear-gradient(135deg, #d4660f 0%, #eb731d 100%) !important;
}

.single_add_to_cart_button:active {
    transform: translateY(0);
    box-shadow: 0 2px 8px rgba(235, 115, 29, 0.4) !important;
}

/* Miktar ve buton kompakt yerleşim */
.woocommerce div.product form.cart {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 15px;
}

.woocommerce div.product form.cart .quantity {
    margin: 0 !important;
    display: flex;
    align-items: center;
    background: #f8f6f4;
    border-radius: 6px;
    border: 1px solid #e5e0db;
    overflow: hidden;
}

.woocommerce div.product form.cart .quantity .qty {
    width: 40px !important;
    height: 34px !important;
    padding: 0 !important;
    border: none !important;
    border-radius: 0 !important;
    font-size: 13px !important;
    font-weight: 600;
    text-align: center;
    background: transparent;
    color: #333;
    -moz-appearance: textfield;
}

.woocommerce div.product form.cart .quantity .qty::-webkit-outer-spin-button,
.woocommerce div.product form.cart .quantity .qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* Miktar artı/eksi butonları (eğer tema destekliyorsa) */
.woocommerce div.product form.cart .quantity .plus,
.woocommerce div.product form.cart .quantity .minus {
    width: 28px;
    height: 34px;
    background: transparent;
    border: none;
    font-size: 14px;
    font-weight: bold;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}

.woocommerce div.product form.cart .quantity .plus:hover,
.woocommerce div.product form.cart .quantity .minus:hover {
    background: var(--salome-primary);
    color: #fff;
}

/* ============================================
   ÜRÜN DETAYLARI TAB SİSTEMİ (Trendyol Style)
   ============================================ */

.salome-product-details-section {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.salome-tabs {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.salome-tab-buttons {
    display: flex;
    background: #fafafa;
    border-bottom: 1px solid #eee;
    overflow-x: auto;
}

.salome-tab-btn {
    flex: 1;
    padding: 16px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #666;
    background: transparent;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    white-space: nowrap;
}

.salome-tab-btn:hover {
    color: var(--salome-primary);
    background: #fff;
}

.salome-tab-btn.active {
    color: var(--salome-primary);
    background: #fff;
}

.salome-tab-btn.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--salome-primary) 0%, var(--salome-primary-dark) 100%);
}

.salome-tab-content {
    display: none;
    padding: 30px;
}

.salome-tab-content.active {
    display: block;
}

.salome-tab-content .product-description {
    line-height: 1.8;
    color: #444;
    font-size: 14px;
}

.salome-tab-content .product-description p {
    margin-bottom: 15px;
}

/* Özellikler Tablosu */
.salome-specs-table {
    width: 100%;
    border-collapse: collapse;
}

.salome-specs-table tr:nth-child(even) {
    background: #fafafa;
}

.salome-specs-table th,
.salome-specs-table td {
    padding: 14px 20px;
    text-align: left;
    border-bottom: 1px solid #f0f0f0;
    font-size: 14px;
}

.salome-specs-table th {
    width: 35%;
    color: #666;
    font-weight: 500;
}

.salome-specs-table td {
    color: var(--salome-secondary);
    font-weight: 600;
}

/* Teslimat & İade Bilgileri */
.shipping-info-detailed .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.shipping-info-detailed .info-item:last-child {
    border-bottom: none;
}

.shipping-info-detailed .info-icon {
    font-size: 28px;
    flex-shrink: 0;
}

.shipping-info-detailed .info-item strong {
    display: block;
    font-size: 15px;
    color: var(--salome-secondary);
    margin-bottom: 5px;
}

.shipping-info-detailed .info-item p {
    font-size: 13px;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   KATEGORİ BREADCRUMB
   ============================================ */

.salome-category-path {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 10px;
    font-size: 12px;
}

.salome-category-path a {
    color: #888;
    text-decoration: none;
    transition: color 0.2s;
}

.salome-category-path a:hover {
    color: var(--salome-primary);
}

.salome-category-path .separator {
    color: #ccc;
    font-size: 10px;
}

/* ============================================
   RENK VARYASYONLARI THUMBNAIL
   ============================================ */

.salome-variation-wrapper .original-select.hidden {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.salome-color-swatches {
    margin-bottom: 20px;
}

.salome-color-swatches .color-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--salome-secondary);
    margin-bottom: 10px;
}

.salome-color-swatches .color-options {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.salome-color-swatches .color-option {
    position: relative;
    width: 60px;
    height: 75px;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.salome-color-swatches .color-option:hover {
    border-color: var(--salome-primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.salome-color-swatches .color-option.selected {
    border-color: var(--salome-primary);
    box-shadow: 0 0 0 2px rgba(212, 165, 116, 0.3);
}

.salome-color-swatches .color-option.selected::after {
    content: '✓';
    position: absolute;
    top: 2px;
    right: 2px;
    width: 18px;
    height: 18px;
    background: var(--salome-primary);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: bold;
}

.salome-color-swatches .color-option img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.salome-color-swatches .color-option .color-name {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    font-size: 11px;
    text-align: center;
    padding: 5px;
    background: #f5f5f5;
}

.salome-color-swatches .color-tooltip {
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--salome-secondary);
    color: #fff;
    padding: 4px 10px;
    border-radius: 4px;
    font-size: 11px;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: all 0.2s ease;
    z-index: 10;
}

.salome-color-swatches .color-option:hover .color-tooltip {
    opacity: 1;
    visibility: visible;
    bottom: -35px;
}

/* ============================================
   KARGO BİLGİSİ
   ============================================ */

.salome-shipping-info {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px;
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    border-radius: 10px;
    margin: 20px 0;
}

.salome-shipping-info .shipping-icon {
    width: 40px;
    height: 40px;
    background: #27ae60;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
}

.salome-shipping-info .shipping-text {
    flex: 1;
}

.salome-shipping-info .shipping-text strong {
    display: block;
    color: #27ae60;
    font-size: 14px;
}

.salome-shipping-info .shipping-text span {
    font-size: 12px;
    color: #666;
}

/* ============================================
   MOBİL UYUMLULUK
   ============================================ */

@media (max-width: 768px) {
    .salome-product-badges {
        top: 10px;
        left: 10px;
        max-width: 150px;
    }
    
    .salome-badge {
        padding: 5px 10px;
        font-size: 10px;
    }
    
    .salome-price-current .price-amount,
    .salome-price-current .price-amount .woocommerce-Price-amount {
        font-size: 26px;
    }
    
    .salome-installment-info {
        flex-wrap: wrap;
    }
    
    .salome-installment-info .installment-link {
        width: 100%;
        text-align: center;
        margin-top: 10px;
    }
}

/* ============================================
   ÜRÜN LİSTESİ - LOOP BADGES
   ============================================ */

.products .product {
    position: relative;
}

.products .product .salome-loop-badges {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 10;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.salome-loop-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 8px;
    border-radius: 3px;
    font-size: 10px;
    font-weight: 600;
    text-transform: uppercase;
}

.salome-loop-badge-discount {
    background: #e74c3c;
    color: #fff;
}

.salome-loop-badge-shipping {
    background: #27ae60;
    color: #fff;
}

.salome-loop-badge-new {
    background: var(--salome-primary);
    color: #fff;
}

/* ============================================
   SALOME GÜVEN & AVANTAJ BÖLÜMü
   ============================================ */

.salome-trust-section {
    margin: 25px 0;
    padding: 0;
    background: linear-gradient(145deg, #fefefe 0%, #f8f6f4 100%);
    border: 1px solid #e8e0d8;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(212, 165, 116, 0.08);
}

.salome-trust-section .trust-header {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 16px 20px;
    background: linear-gradient(135deg, var(--salome-primary) 0%, #c49660 100%);
    color: #fff;
}

.salome-trust-section .trust-header .trust-icon {
    font-size: 22px;
}

.salome-trust-section .trust-header h4 {
    margin: 0;
    font-size: 15px;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.salome-trust-section .trust-badges-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0;
}

.salome-trust-section .trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 18px;
    border-right: 1px solid #f0e8e0;
    border-bottom: 1px solid #f0e8e0;
    transition: all 0.3s ease;
    cursor: default;
}

.salome-trust-section .trust-badge:nth-child(2n) {
    border-right: none;
}

.salome-trust-section .trust-badge:nth-child(n+3) {
    border-bottom: none;
}

.salome-trust-section .trust-badge:hover {
    background: linear-gradient(135deg, #fff9f5 0%, #fff5ed 100%);
}

.salome-trust-section .trust-badge-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #fff 0%, #f8f4f0 100%);
    border-radius: 12px;
    color: var(--salome-primary);
    box-shadow: 0 3px 10px rgba(212, 165, 116, 0.15);
    flex-shrink: 0;
}

.salome-trust-section .trust-badge-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.salome-trust-section .trust-badge-text strong {
    font-size: 13px;
    font-weight: 600;
    color: var(--salome-secondary);
}

.salome-trust-section .trust-badge-text span {
    font-size: 11px;
    color: #888;
    font-weight: 400;
}

.salome-trust-section .trust-footer {
    padding: 14px 20px;
    background: #faf8f6;
    border-top: 1px solid #f0e8e0;
}

.salome-trust-section .payment-methods {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.salome-trust-section .payment-label {
    font-size: 12px;
    color: #666;
    font-weight: 500;
}

.salome-trust-section .payment-icons {
    display: flex;
    align-items: center;
    gap: 8px;
}

.salome-trust-section .payment-icon {
    width: 40px;
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border: 1px solid #e0d8d0;
    border-radius: 4px;
    font-size: 16px;
    transition: transform 0.2s ease;
}

.salome-trust-section .payment-icon:hover {
    transform: scale(1.1);
    border-color: var(--salome-primary);
}

/* Mobile responsive for trust section */
@media (max-width: 480px) {
    .salome-trust-section .trust-badges-grid {
        grid-template-columns: 1fr;
    }
    
    .salome-trust-section .trust-badge {
        border-right: none !important;
        border-bottom: 1px solid #f0e8e0;
    }
    
    .salome-trust-section .trust-badge:last-child {
        border-bottom: none;
    }
    
    .salome-trust-section .trust-badge-icon {
        width: 42px;
        height: 42px;
    }
    
    .salome-trust-section .trust-badge-icon svg {
        width: 22px;
        height: 22px;
    }
    
    .salome-trust-section .payment-methods {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ============================================
   MOBİLE RESPONSIVE - TAB & SWATCH
   ============================================ */

@media (max-width: 768px) {
    .salome-product-details-section {
        margin: 25px auto;
        padding: 0 15px;
    }
    
    .salome-tab-buttons {
        flex-direction: column;
    }
    
    .salome-tab-btn {
        padding: 14px 20px;
        border-bottom: 1px solid #eee;
        text-align: left;
    }
    
    .salome-tab-btn.active::after {
        display: none;
    }
    
    .salome-tab-btn.active {
        background: var(--salome-light);
    }
    
    .salome-tab-content {
        padding: 20px;
    }
    
    .salome-specs-table th,
    .salome-specs-table td {
        padding: 10px 15px;
        font-size: 13px;
    }
    
    .salome-specs-table th {
        width: 45%;
    }
    
    .shipping-info-detailed .info-item {
        padding: 15px;
    }
    
    .shipping-info-detailed .info-icon {
        font-size: 24px;
    }
    
    /* Renk Swatches Mobile */
    .salome-color-swatches .color-option {
        width: 50px;
        height: 65px;
    }
    
    /* Sepete ekle butonu mobile */
    .woocommerce div.product form.cart {
        flex-direction: column;
        align-items: stretch;
    }
    
    .single_add_to_cart_button {
        width: 100% !important;
        min-width: auto;
    }
    
    /* Sidebar Mobile */
    .salome-sidebar-categories .category-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .salome-sidebar-categories .category-item {
        flex-direction: column;
        text-align: center;
        padding: 12px 8px;
    }
    
    .salome-sidebar-categories .cat-count {
        position: absolute;
        top: 5px;
        right: 5px;
    }
    
    .salome-sidebar-categories .category-item {
        position: relative;
    }
    
    .salome-sidebar-promo .promo-content {
        flex-direction: column;
        text-align: center;
    }
    
    .salome-sidebar-contact .contact-item {
        flex-direction: row;
        text-align: left;
    }
    
    /* Sidebar Installment Mobile */
    .salome-sidebar-installment .installment-table {
        font-size: 11px;
    }
    
    .salome-sidebar-installment .installment-table th,
    .salome-sidebar-installment .installment-table td {
        padding: 8px 5px;
    }
    
    /* Sidebar Seller Mobile */
    .salome-sidebar-seller .seller-stats {
        grid-template-columns: repeat(3, 1fr);
        gap: 5px;
    }
    
    .salome-sidebar-seller .stat {
        padding: 8px 3px;
    }
    
    .salome-sidebar-seller .stat-value {
        font-size: 12px;
    }
    
    .salome-sidebar-seller .stat-label {
        font-size: 9px;
    }
    
    /* Sidebar Related Mobile */
    .salome-sidebar-related .related-products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    /* Sidebar Benefits Mobile */
    .salome-sidebar-benefits .benefit-item {
        padding: 10px;
    }
    
    .salome-sidebar-benefits .benefit-icon {
        font-size: 20px;
    }
}

/* ============================================
   SIDEBAR MOBİL TAM RESPONSIVE
   ============================================ */

@media (max-width: 480px) {
    .salome-sidebar-categories .category-grid {
        grid-template-columns: 1fr;
    }
    
    .salome-sidebar-categories .category-item {
        flex-direction: row;
        text-align: left;
    }
    
    .salome-sidebar-categories .cat-count {
        position: static;
    }
    
    /* Sidebar Related Very Small */
    .salome-sidebar-related .related-products-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .salome-sidebar-related .related-name {
        font-size: 10px;
    }
    
    .salome-sidebar-related .related-price {
        font-size: 11px;
    }
}

/* ============================================
   TRUST BADGE - GÖRSELLER ALTINDA KONUMLANDIRMA
   ============================================ */

.salome-trust-section {
    max-width: 100% !important;
    margin: 25px 0 !important;
    padding: 0 !important;
}

/* Tek ürün sayfasında product summary sonrası */
.woocommerce-product-gallery ~ .salome-trust-section,
.woocommerce div.product .salome-trust-section {
    clear: both;
}

/* Galeri altında güvence kartı */
.woocommerce-product-gallery .salome-trust-section {
    margin-top: 20px;
    width: 100%;
}

.salome-trust-box {
    background: linear-gradient(135deg, #fff 0%, #fdf8f5 100%);
    border: 2px solid var(--salome-primary);
    border-radius: 12px;
    padding: 15px 18px;
    box-shadow: 0 4px 15px rgba(235, 115, 29, 0.12);
}

.salome-trust-box h4 {
    font-size: 14px !important;
    font-weight: 700;
    color: var(--salome-primary) !important;
    margin-bottom: 12px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--salome-primary);
    display: flex;
    align-items: center;
    gap: 8px;
}

.salome-trust-box h4::before {
    content: "✓";
    display: inline-flex;
    width: 20px;
    height: 20px;
    background: var(--salome-primary);
    color: #fff;
    border-radius: 50%;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: bold;
}

.salome-trust-badges {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
}

.salome-trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 12px;
    background: #fff;
    border-radius: 6px;
    border: 1px solid #f0ebe6;
    transition: all 0.2s ease;
}

.salome-trust-item:hover {
    border-color: var(--salome-primary);
    box-shadow: 0 2px 8px rgba(212, 165, 116, 0.15);
}

.salome-trust-item .trust-icon {
    font-size: 18px;
    flex-shrink: 0;
}

.salome-trust-item .trust-text strong {
    display: block;
    font-size: 11px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
}

.salome-trust-item .trust-text span {
    font-size: 10px;
    color: #888;
    line-height: 1.2;
}

/* Trust Badge Mobil */
@media (max-width: 768px) {
    .salome-trust-badges {
        grid-template-columns: 1fr;
    }
    
    .salome-trust-box {
        padding: 12px 14px;
    }
    
    .salome-trust-box h4 {
        font-size: 12px !important;
    }
}

/* ============================================
   ÜRÜN SAYFA GENEL RESPONSIVE İYİLEŞTİRMELER
   ============================================ */

/* Fiyat alanı mobil */
@media (max-width: 768px) {
    .salome-price-box {
        padding: 12px !important;
    }
    
    .salome-current-price {
        font-size: 22px !important;
    }
    
    .salome-old-price {
        font-size: 14px !important;
    }
    
    .salome-discount-badge {
        font-size: 11px !important;
        padding: 3px 8px !important;
    }
    
    .salome-shipping-badge,
    .salome-installment-info {
        font-size: 11px !important;
        padding: 6px 10px !important;
    }
    
    /* Sepete ekle butonu mobil */
    .single_add_to_cart_button {
        min-width: 120px !important;
        padding: 8px 12px !important;
        font-size: 11px !important;
    }
    
    .single_add_to_cart_button::before {
        display: none;
    }
    
    .woocommerce div.product form.cart .quantity .qty {
        width: 35px !important;
        height: 32px !important;
        font-size: 12px !important;
    }
}

/* Çok küçük ekranlar */
@media (max-width: 480px) {
    .salome-price-box .price-row {
        flex-wrap: wrap;
        gap: 8px;
    }
    
    .salome-current-price {
        font-size: 20px !important;
    }
    
    .salome-badges {
        flex-direction: column;
        align-items: flex-start;
    }
}
/* Cache Bust: 20260126232927 */
