/* WooCommerce Özel Stilleri */
.woocommerce ul.products {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 0;
    list-style: none;
}

.woocommerce ul.products li.product {
    background: #fff;
    border: 2px solid #e6b8c0;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease;
    position: relative;
    overflow: hidden;
}

.woocommerce ul.products li.product:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.2);
}

.woocommerce ul.products li.product img {
    max-width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

.woocommerce ul.products li.product:hover img {
    transform: scale(1.05);
}

.woocommerce ul.products li.product .woocommerce-loop-product__title {
    font-size: 28px;
    color: #4a3c34;
    margin: 20px 0 10px;
}

.woocommerce ul.products li.product .price {
    font-size: 20px;
    color: #b89d8f;
    font-weight: bold;
    margin-bottom: 15px;
}

.woocommerce ul.products li.product .button {
    display: inline-block;
    padding: 12px 30px;
    background: #e6b8c0;
    color: #fff;
    text-decoration: none;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.woocommerce ul.products li.product .button:hover {
    background: #b89d8f;
}

.woocommerce .product .summary .price {
    font-size: 24px;
    color: #b89d8f;
    font-weight: bold;
    margin: 15px 0;
}

.woocommerce .product .summary .button {
    padding: 12px 30px;
    background: #e6b8c0;
    color: #fff;
    border-radius: 25px;
    font-weight: bold;
    transition: background 0.3s ease;
}

.woocommerce .product .summary .button:hover {
    background: #b89d8f;
}

/* ========================================
   PROFESSIONAL QUANTITY SELECTOR
   ======================================== */
.quantity-selector.quantity-enhanced {
    display: inline-flex;
    align-items: center;
    border: 2px solid #e6b8c0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    box-shadow: 0 2px 8px rgba(230, 184, 192, 0.2);
    transition: all 0.3s ease;
}

.quantity-selector.quantity-enhanced:hover {
    box-shadow: 0 4px 12px rgba(230, 184, 192, 0.4);
    border-color: #b89d8f;
}

.qty-btn {
    background: #f9f1f5;
    border: none;
    padding: 12px 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
}

.qty-btn:hover {
    background: #e6b8c0;
}

.qty-btn:hover svg {
    stroke: #fff;
}

.qty-btn:active {
    background: #b89d8f;
    transform: scale(0.95);
}

.qty-btn svg {
    transition: stroke 0.3s ease;
}

.enhanced-qty-input {
    border: none;
    text-align: center;
    width: 60px;
    padding: 12px;
    font-size: 16px;
    font-weight: bold;
    color: #4a3c34;
    background: transparent;
}

.enhanced-qty-input:focus {
    outline: none;
    background: #f9f1f5;
}

/* ========================================
   IMAGE ZOOM FEATURES
   ======================================== */

/* Main Image Wrapper */
.main-image-wrapper {
    position: relative;
    cursor: zoom-in;
    overflow: hidden;
    border-radius: 15px;
    background: #f9f1f5;
}

.main-image-wrapper.zoomed {
    cursor: zoom-out;
}

/* ========================================
   GALLERY NAVIGATION ARROWS
   ======================================== */

/* Gallery Navigation Arrows - Minimalist Clean */
.gallery-nav-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.9);
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 5;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.gallery-nav-arrow:hover {
    background: rgba(232, 168, 184, 0.95);
    box-shadow: 0 4px 12px rgba(232, 168, 184, 0.4);
    transform: translateY(-50%) scale(1.1);
}

.gallery-nav-arrow:hover svg {
    stroke: #fff;
}

.gallery-nav-arrow svg {
    transition: stroke 0.2s ease;
}

.gallery-nav-arrow:active {
    transform: translateY(-50%) scale(0.95);
}

/* Previous Arrow - Sol */
.gallery-nav-prev {
    left: 15px;
}

/* Next Arrow - Sağ */
.gallery-nav-next {
    right: 15px;
}

/* Disabled state */
.gallery-nav-arrow[style*="opacity: 0.3"] {
    cursor: not-allowed;
}

/* Zoom Icon Button */
.zoom-icon {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.95);
    padding: 12px;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    transition: all 0.3s ease;
    z-index: 10;
    min-width: 48px;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.zoom-icon:hover {
    background: #e6b8c0;
    transform: scale(1.1);
}

.zoom-icon:hover svg {
    stroke: #fff;
}

.zoom-icon svg {
    display: block;
    transition: stroke 0.3s ease;
}

.zoom-icon.active {
    background: #e6b8c0;
    animation: pulseZoomIcon 2s ease-in-out infinite;
}

.zoom-icon.active svg {
    stroke: #fff;
}

@keyframes pulseZoomIcon {
    0%, 100% {
        box-shadow: 0 4px 12px rgba(230, 184, 192, 0.5);
    }
    50% {
        box-shadow: 0 6px 20px rgba(230, 184, 192, 0.8);
    }
}

/* Magnifier Lens */
.zoom-lens {
    position: absolute;
    width: 150px;
    height: 150px;
    border: 3px solid #e6b8c0;
    border-radius: 50%;
    pointer-events: none;
    box-shadow: 0 4px 20px rgba(230, 184, 192, 0.5);
    background-repeat: no-repeat;
    z-index: 100;
}

/* Lightbox Modal */
.product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.product-lightbox.active {
    opacity: 1;
    pointer-events: all;
}

.lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.95);
    cursor: pointer;
}

.lightbox-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.lightbox-content img {
    max-width: 90%;
    max-height: 90vh;
    object-fit: contain;
    transition: transform 0.3s ease;
    border-radius: 10px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 48px;
    color: #fff;
    background: rgba(230, 184, 192, 0.9);
    border: none;
    cursor: pointer;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
    line-height: 1;
    padding: 0;
}

.lightbox-close:hover {
    background: #e6b8c0;
    transform: rotate(90deg) scale(1.1);
}

.lightbox-zoom-controls {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    background: rgba(0, 0, 0, 0.7);
    padding: 12px 20px;
    border-radius: 50px;
}

.lightbox-zoom-controls button {
    background: #e6b8c0;
    color: #fff;
    border: none;
    padding: 12px 24px;
    border-radius: 25px;
    cursor: pointer;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    min-width: 50px;
}

.lightbox-zoom-controls button:hover {
    background: #b89d8f;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(230, 184, 192, 0.5);
}

.lightbox-zoom-controls button:active {
    transform: translateY(0);
}

/* Mobile Touch Zoom Support */
.main-product-image {
    transition: transform 0.3s ease;
    touch-action: pan-x pan-y pinch-zoom;
}

@media (max-width: 768px) {
    .woocommerce ul.products li.product {
        padding: 20px;
    }

    .woocommerce ul.products li.product img {
        height: 250px;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 22px;
    }

    .woocommerce ul.products li.product .price {
        font-size: 18px;
    }

    /* Mobile Zoom Adjustments */
    .zoom-icon {
        top: 15px;
        right: 15px;
        padding: 14px;
        min-width: 52px;
        min-height: 52px;
        background: rgba(230, 184, 192, 0.95);
    }

    .zoom-icon svg {
        stroke: #fff;
        width: 26px;
        height: 26px;
    }

    .zoom-icon.active {
        background: #b89d8f;
    }

    /* Mobile Gallery Navigation Arrows */
    .gallery-nav-arrow {
        width: 40px;
        height: 40px;
        background: rgba(255, 255, 255, 0.95);
    }

    .gallery-nav-arrow svg {
        width: 20px;
        height: 20px;
    }

    .gallery-nav-prev {
        left: 10px;
    }

    .gallery-nav-next {
        right: 10px;
    }

    .gallery-nav-arrow:hover {
        background: rgba(232, 168, 184, 0.95);
    }

    .lightbox-close {
        width: 50px;
        height: 50px;
        font-size: 36px;
        top: 10px;
        right: 10px;
    }

    .lightbox-zoom-controls {
        bottom: 20px;
        gap: 8px;
        padding: 10px 15px;
    }

    .lightbox-zoom-controls button {
        padding: 10px 20px;
        font-size: 14px;
        min-width: 45px;
    }

    /* Mobile Quantity Selector */
    .quantity-selector.quantity-enhanced {
        width: 100%;
        max-width: 200px;
        margin: 10px 0;
    }

    .qty-btn {
        flex: 1;
        padding: 15px;
    }

    .enhanced-qty-input {
        width: 80px;
        font-size: 18px;
    }

    /* ========================================
       MOBILE MAGNIFIER SYSTEM
       ======================================== */

    /* Mobil Mercek Baloncuğu */
    .mobile-zoom-lens {
        position: fixed;
        width: 120px;
        height: 120px;
        border: 4px solid #e6b8c0;
        border-radius: 50%;
        pointer-events: none;
        box-shadow: 0 8px 30px rgba(230, 184, 192, 0.6),
                    inset 0 0 20px rgba(255, 255, 255, 0.3);
        background-repeat: no-repeat;
        z-index: 10000;
        display: none;
        animation: pulseBorder 1.5s ease-in-out infinite;
    }

    @keyframes pulseBorder {
        0%, 100% {
            border-color: #e6b8c0;
            box-shadow: 0 8px 30px rgba(230, 184, 192, 0.6),
                        inset 0 0 20px rgba(255, 255, 255, 0.3);
        }
        50% {
            border-color: #b89d8f;
            box-shadow: 0 8px 35px rgba(184, 157, 143, 0.7),
                        inset 0 0 25px rgba(255, 255, 255, 0.4);
        }
    }

    /* Mercek Göstergesi (Sağ Üst Köşe) */
    .mobile-magnifier-indicator {
        position: fixed;
        top: 20px;
        right: 20px;
        background: linear-gradient(135deg, #e6b8c0 0%, #b89d8f 100%);
        color: white;
        padding: 10px 16px;
        border-radius: 25px;
        display: flex;
        align-items: center;
        gap: 8px;
        font-size: 13px;
        font-weight: bold;
        box-shadow: 0 4px 15px rgba(230, 184, 192, 0.5);
        z-index: 9998;
        opacity: 0;
        transform: translateY(-20px);
        transition: all 0.3s ease;
        pointer-events: none;
    }

    .mobile-magnifier-indicator.active {
        opacity: 1;
        transform: translateY(0);
    }

    .mobile-magnifier-indicator svg {
        stroke: white;
        animation: rotate360 2s linear infinite;
    }

    @keyframes rotate360 {
        from { transform: rotate(0deg); }
        to { transform: rotate(360deg); }
    }

    /* Magnifier Mode - Resim Wrapper'ı */
    .main-image-wrapper.magnifier-mode {
        cursor: crosshair;
        box-shadow: 0 0 0 3px #e6b8c0;
    }

    .main-image-wrapper.magnifier-mode::after {
        content: '👆 Parmağınızı hareket ettirin';
        position: absolute;
        bottom: 20px;
        left: 50%;
        transform: translateX(-50%);
        background: rgba(230, 184, 192, 0.95);
        color: white;
        padding: 8px 16px;
        border-radius: 20px;
        font-size: 12px;
        font-weight: bold;
        animation: fadeInOut 3s ease-in-out;
        pointer-events: none;
    }

    @keyframes fadeInOut {
        0%, 100% { opacity: 0; }
        10%, 90% { opacity: 1; }
    }
}

@media (max-width: 480px) {
    /* RADIKAL MOBİL ORTALAMA - SUPERCLAUDE FIX */
    .woocommerce ul.products {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        gap: 20px !important;
        width: 100% !important;
        padding: 0 15px !important;
    }

    .woocommerce ul.products li.product {
        padding: 15px;
        width: 90% !important;
        max-width: 340px !important;
        min-width: unset !important;
        flex: none !important;
        margin: 0 !important;
        list-style: none !important;
    }

    .woocommerce ul.products li.product img {
        height: 200px;
    }

    .woocommerce ul.products li.product .woocommerce-loop-product__title {
        font-size: 20px;
    }

    .woocommerce ul.products li.product .price {
        font-size: 16px;
    }

    .woocommerce ul.products li.product .button {
        padding: 15px 25px;
        font-size: 14px;
        min-height: 44px;
    }

    .woocommerce .product .summary .button {
        padding: 15px 25px;
        font-size: 14px;
        min-height: 44px;
        width: 100%;
    }
}

/* ==========================================
   PROFESSIONAL PRODUCT VARIATIONS DESIGN
   Varyasyon seçicileri, fiyat ve stok uyarıları
   ========================================== */

/* Varyasyon Formu Container - Minimalist */
form.variations_form.cart {
    margin: 20px 0 !important;
}

/* Varyasyon Tablosu - Minimalist Layout */
table.variations {
    width: 100% !important;
    border: none !important;
    border-collapse: separate !important;
    border-spacing: 0 10px !important;
    margin-bottom: 15px !important;
}

table.variations tbody tr {
    display: flex !important;
    flex-direction: column !important;
    gap: 8px !important;
}

/* Label Styling - SIZE, BEDEN, RENK etc. */
table.variations th.label,
table.variations td.label {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
    text-align: left !important;
    font-weight: normal !important;
    border: none !important;
}

table.variations th.label label,
table.variations td.label label {
    font-size: 13px !important;
    font-weight: 600 !important;
    color: #666 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    margin: 0 0 6px 0 !important;
    display: block !important;
}

/* Varyasyon Value Container */
table.variations td.value {
    display: block !important;
    width: 100% !important;
    padding: 0 !important;
    border: none !important;
}

/* Dropdown - Minimalist Clean Design */
table.variations select {
    width: 100% !important;
    padding: 11px 16px !important;
    font-size: 14px !important;
    font-weight: 400 !important;
    color: #333 !important;
    background: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    appearance: none !important;
    -webkit-appearance: none !important;
    -moz-appearance: none !important;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%23999' d='M1.41 0L6 4.58 10.59 0 12 1.41l-6 6-6-6z'/%3E%3C/svg%3E") !important;
    background-repeat: no-repeat !important;
    background-position: right 12px center !important;
    background-size: 12px !important;
    padding-right: 36px !important;
}

table.variations select:hover {
    border-color: #bbb !important;
}

table.variations select:focus {
    outline: none !important;
    border-color: #e8a8b8 !important;
    box-shadow: 0 0 0 2px rgba(232, 168, 184, 0.1) !important;
}

/* Reset Varyasyonlar Linki */
a.reset_variations {
    display: inline-block !important;
    color: #999 !important;
    font-size: 12px !important;
    text-decoration: none !important;
    margin-left: 10px !important;
    padding: 4px 8px !important;
    transition: color 0.2s ease !important;
}

a.reset_variations:hover {
    color: #e8a8b8 !important;
}

/* Fiyat ve Stok Container - Minimalist Clean */
.single_variation_wrap {
    margin: 18px 0 !important;
    padding: 0 !important;
}

.woocommerce-variation.single_variation {
    background: transparent !important;
    border: none !important;
    border-radius: 0 !important;
    padding: 12px 0 !important;
    margin-bottom: 15px !important;
    box-shadow: none !important;
}

/* Varyasyon Fiyatı - Minimalist */
.woocommerce-variation-price {
    margin-bottom: 10px !important;
}

.woocommerce-variation-price .price {
    font-size: 24px !important;
    font-weight: 700 !important;
    color: #333 !important;
    display: inline-block !important;
}

.woocommerce-variation-price .price::before {
    content: none !important;
}

.woocommerce-variation-price .price .woocommerce-Price-amount {
    color: #333 !important;
}

/* İndirimli Fiyat */
.woocommerce-variation-price .price del {
    font-size: 22px !important;
    color: #999 !important;
    font-weight: 400 !important;
    opacity: 0.7 !important;
    text-decoration: line-through !important;
}

.woocommerce-variation-price .price ins {
    text-decoration: none !important;
    background: none !important;
}

/* Stok Durumu - Minimalist Clean Design */
.woocommerce-variation-availability,
.single_variation {
    margin: 0 !important;
}

.woocommerce-variation-availability p,
.single_variation p.stock,
p.stock {
    margin: 0 0 12px 0 !important;
    padding: 0 !important;
    border-radius: 0 !important;
    font-size: 13px !important;
    font-weight: 500 !important;
    display: inline-block !important;
    letter-spacing: 0 !important;
}

/* Stokta Var - Yeşil Minimalist */
.woocommerce-variation-availability .stock.in-stock,
.single_variation .stock.in-stock,
p.stock.in-stock {
    background: transparent !important;
    color: #4caf50 !important;
    border: none !important;
}

.woocommerce-variation-availability .stock.in-stock::before,
.single_variation .stock.in-stock::before,
p.stock.in-stock::before {
    content: '✓ ' !important;
    font-weight: 700 !important;
}

/* Stokta Yok - Kırmızı Minimalist */
.woocommerce-variation-availability .stock.out-of-stock,
.single_variation .stock.out-of-stock,
p.stock.out-of-stock {
    background: transparent !important;
    color: #f44336 !important;
    border: none !important;
}

.woocommerce-variation-availability .stock.out-of-stock::before,
.single_variation .stock.out-of-stock::before,
p.stock.out-of-stock::before {
    content: '✕ ' !important;
    font-weight: 700 !important;
}

/* Az Stok - Turuncu Minimalist */
.woocommerce-variation-availability .stock.low-stock,
.single_variation .stock.low-stock,
p.stock.low-stock {
    background: transparent !important;
    color: #ff9800 !important;
    border: none !important;
}

.woocommerce-variation-availability .stock.low-stock::before,
.single_variation .stock.low-stock::before,
p.stock.low-stock::before {
    content: '⚠ ' !important;
    font-weight: 700 !important;
}

/* Quantity ve Button Container - Inline Minimalist Layout */
.woocommerce-variation-add-to-cart.variations_button {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
    margin-top: 15px !important;
}

/* Miktar Container - Minimalist Compact */
.quantity {
    display: flex !important;
    align-items: center !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    overflow: hidden !important;
    background: #fff !important;
}

.quantity input.qty {
    width: 50px !important;
    padding: 10px 8px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #333 !important;
    text-align: center !important;
    border: none !important;
    border-radius: 0 !important;
    transition: none !important;
    background: transparent !important;
}

.quantity input.qty:hover {
    border: none !important;
}

.quantity input.qty:focus {
    outline: none !important;
    border: none !important;
    box-shadow: none !important;
}

/* Sepete Ekle Butonu - Minimalist Clean */
button.single_add_to_cart_button.button {
    flex: 1 !important;
    min-width: 180px !important;
    max-width: 280px !important;
    padding: 11px 24px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.5px !important;
    background: #e8a8b8 !important;
    color: #fff !important;
    border: none !important;
    border-radius: 6px !important;
    cursor: pointer !important;
    transition: all 0.2s ease !important;
    box-shadow: none !important;
    position: relative !important;
}

button.single_add_to_cart_button.button::before {
    content: none !important;
}

button.single_add_to_cart_button.button:hover {
    background: #d494a6 !important;
    box-shadow: 0 2px 8px rgba(232, 168, 184, 0.25) !important;
}

button.single_add_to_cart_button.button:active {
    transform: translateY(1px) !important;
}

button.single_add_to_cart_button.button:disabled {
    background: #ccc !important;
    cursor: not-allowed !important;
    box-shadow: none !important;
    opacity: 0.6 !important;
}

/* Responsive Mobile - Minimalist */
@media (max-width: 768px) {
    .woocommerce-variation-price .price {
        font-size: 22px !important;
    }

    .woocommerce-variation-price .price del {
        font-size: 16px !important;
    }

    button.single_add_to_cart_button.button {
        width: 100% !important;
        max-width: 100% !important;
        padding: 12px 20px !important;
        font-size: 14px !important;
    }

    table.variations select {
        font-size: 14px !important;
        padding: 10px 14px !important;
    }

    .woocommerce-variation-add-to-cart.variations_button {
        flex-direction: column !important;
        align-items: stretch !important;
    }

    .quantity {
        width: 100% !important;
        max-width: 140px !important;
        margin: 0 auto !important;
    }

    .quantity input.qty {
        width: 60px !important;
    }
}
/* ==========================================
   WOOCOMMERCE PAGINATION - MINIMALIST CLEAN
   Sayfa numaraları yan yana görünüm
   ========================================== */

/* Pagination Container */
.woocommerce-pagination {
    display: flex !important;
    justify-content: center !important;
    align-items: center !important;
    margin: 40px 0 !important;
    padding: 20px 0 !important;
}

/* Page Numbers List */
.woocommerce-pagination ul.page-numbers {
    display: flex !important;
    flex-direction: row !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    list-style: none !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Individual Page Number Items */
.woocommerce-pagination ul.page-numbers li {
    display: inline-flex !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Page Number Links & Current Page */
.woocommerce-pagination .page-numbers {
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    min-width: 42px !important;
    height: 42px !important;
    padding: 10px 14px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: #666 !important;
    background: #fff !important;
    border: 1px solid #ddd !important;
    border-radius: 6px !important;
    text-decoration: none !important;
    transition: all 0.2s ease !important;
}

/* Page Number Hover */
.woocommerce-pagination .page-numbers:hover {
    background: #f9f1f5 !important;
    border-color: #e8a8b8 !important;
    color: #e8a8b8 !important;
}

/* Current Active Page */
.woocommerce-pagination .page-numbers.current {
    background: #e8a8b8 !important;
    border-color: #e8a8b8 !important;
    color: #fff !important;
    cursor: default !important;
    pointer-events: none !important;
}

/* Previous & Next Arrows */
.woocommerce-pagination .page-numbers.prev,
.woocommerce-pagination .page-numbers.next {
    font-size: 18px !important;
}

/* Dots (ellipsis) */
.woocommerce-pagination .page-numbers.dots {
    border: none !important;
    background: transparent !important;
    color: #999 !important;
    pointer-events: none !important;
}

/* Responsive Mobile */
@media (max-width: 768px) {
    .woocommerce-pagination {
        margin: 30px 0 !important;
        padding: 15px 0 !important;
    }

    .woocommerce-pagination ul.page-numbers {
        gap: 6px !important;
    }

    .woocommerce-pagination .page-numbers {
        min-width: 38px !important;
        height: 38px !important;
        padding: 8px 12px !important;
        font-size: 13px !important;
    }
}

@media (max-width: 480px) {
    .woocommerce-pagination ul.page-numbers {
        gap: 4px !important;
        flex-wrap: wrap !important;
    }

    .woocommerce-pagination .page-numbers {
        min-width: 36px !important;
        height: 36px !important;
        padding: 6px 10px !important;
        font-size: 12px !important;
    }
}

/* ==========================================
   CHECKOUT PAGE FIXES - SUPERCLAUDE
   Hem CLASSIC hem BLOCKS için
   ========================================== */

/* Telefon Alanı - "isteğe bağlı" yazısını gizle - CLASSIC */
.woocommerce-checkout #billing_phone_field .optional,
.woocommerce-checkout #shipping_phone_field .optional,
.woocommerce-checkout .woocommerce-billing-fields #billing_phone_field .optional,
#billing_phone_field .optional,
#shipping_phone_field .optional,
.woocommerce form .form-row .optional {
    display: none !important;
    visibility: hidden !important;
}

/* Telefon Alanı - "isteğe bağlı" yazısını gizle - BLOCKS (AGRESIF) */
.wc-block-checkout label[for="shipping-phone"] .optional,
.wc-block-checkout label[for="billing-phone"] .optional,
.wc-block-checkout label[for="contact-phone"] .optional,
.wc-block-components-text-input label .optional,
.wc-block-components-text-input .optional,
.wc-block-checkout .wc-block-components-text-input label span.optional,
label[for*="phone"] .optional {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    width: 0 !important;
    height: 0 !important;
    font-size: 0 !important;
    overflow: hidden !important;
    position: absolute !important;
    left: -9999px !important;
}

/* Telefon inputları - required görünümü - BLOCKS */
.wc-block-checkout input#shipping-phone,
.wc-block-checkout input#billing-phone,
.wc-block-checkout input#contact-phone {
    border-color: #e8a8b8 !important;
}

/* Telefon Label'larına otomatik * ekle - BLOCKS */
.wc-block-checkout label[for="shipping-phone"]::after,
.wc-block-checkout label[for="billing-phone"]::after,
.wc-block-checkout label[for="contact-phone"]::after {
    content: " *" !important;
    color: #e8a8b8 !important;
    font-weight: 600 !important;
}

/* Telefon Label'larına otomatik * ekle - CLASSIC */
#billing_phone_field label::after,
#shipping_phone_field label::after {
    content: " *" !important;
    color: #e8a8b8 !important;
    font-weight: 600 !important;
}

/* Sipariş Özeti Tablosu - Agresif Düzenleme */
.woocommerce-checkout-review-order-table,
.woocommerce table.shop_table,
table.woocommerce-checkout-review-order-table {
    table-layout: fixed !important;
    width: 100% !important;
}

/* Ürün İsimleri - Taşma Önleme (AGRESIF) */
.woocommerce-checkout-review-order-table .product-name,
.woocommerce-checkout-review-order-table td.product-name,
.woocommerce table.shop_table .product-name,
.woocommerce table.shop_table td.product-name,
.shop_table.woocommerce-checkout-review-order-table .product-name {
    font-size: 12px !important;
    line-height: 1.3 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    word-wrap: break-word !important;
    hyphens: auto !important;
    max-width: 170px !important;
    width: 55% !important;
    padding-right: 10px !important;
    display: block !important;
}

/* Ürün İsimleri Link */
.woocommerce-checkout-review-order-table .product-name a,
.woocommerce table.shop_table .product-name a {
    font-size: 12px !important;
    line-height: 1.3 !important;
    word-break: break-word !important;
    overflow-wrap: break-word !important;
    display: block !important;
}

/* Fiyat Sütunu */
.woocommerce-checkout-review-order-table .product-total,
.woocommerce-checkout-review-order-table td.product-total,
.woocommerce table.shop_table .product-total,
.woocommerce table.shop_table td.product-total {
    width: 45% !important;
    text-align: right !important;
    white-space: nowrap !important;
    padding-left: 10px !important;
}

/* Fiyat Gösterimi */
.woocommerce-checkout-review-order-table .amount,
.woocommerce-checkout-review-order-table .woocommerce-Price-amount,
.woocommerce-checkout-review-order-table bdi {
    font-size: 13px !important;
    white-space: nowrap !important;
    font-weight: 600 !important;
}

/* Toplam Satırı */
.woocommerce-checkout-review-order-table .order-total th,
.woocommerce-checkout-review-order-table .order-total td {
    font-size: 15px !important;
    font-weight: 700 !important;
}

/* ==========================================
   WOOCOMMERCE BLOCKS - SİPARİŞ ÖZETİ DÜZENLEMESİ
   Ürün isimleri ve fiyatlar için
   ========================================== */

/* Blocks - Sipariş Özeti Container */
.wc-block-components-order-summary,
.wc-block-components-order-summary-item {
    width: 100% !important;
}

/* Blocks - Ana Satır (Resim + İsim + Fiyat) */
.wc-block-components-order-summary-item {
    display: block !important;
    position: relative !important;
}

/* Blocks - Ürün İsmi ve Detay Alanı */
.wc-block-components-order-summary-item__description {
    flex: 1 1 100% !important;
    max-width: 100% !important;
    min-width: 0 !important;
    padding-right: 0 !important;
}

/* Blocks - Ürün İsmi */
.wc-block-components-product-name,
.wc-block-components-order-summary-item__description strong,
.wc-block-components-order-summary-item .wc-block-components-product-name {
    font-size: 14px !important;
    line-height: 1.4 !important;
    font-weight: 500 !important;
    color: #333 !important;
    display: block !important;
    word-break: keep-all !important;
    overflow-wrap: normal !important;
    hyphens: none !important;
    white-space: normal !important;
    max-width: 100% !important;
}

/* Blocks - Fiyat Alanı (SAĞDAKİ FİYATI GİZLE - Altta zaten var) */
.wc-block-components-order-summary-item__total-price {
    display: none !important;
}

/* Blocks - Quantity & Price Container (Ürün altındaki fiyat) */
.wc-block-components-order-summary-item__quantity-and-price {
    display: block !important;
    width: 100% !important;
    text-align: left !important;
    margin-top: 8px !important;
}

/* Blocks - Fiyat Gösterimi */
.wc-block-components-order-summary-item__total-price .wc-block-formatted-money-amount,
.wc-block-components-order-summary-item__quantity-and-price .wc-block-formatted-money-amount {
    font-size: 15px !important;
    font-weight: 600 !important;
    color: #333 !important;
    white-space: nowrap !important;
}

/* Blocks - Ürün Satırı Flex Düzeni */
.wc-block-components-order-summary-item__image-and-content {
    display: flex !important;
    align-items: flex-start !important;
    gap: 12px !important;
    width: 100% !important;
}

/* Blocks - Ürün Resmi */
.wc-block-components-order-summary-item__image {
    flex: 0 0 60px !important;
    max-width: 60px !important;
}

/* Responsive - Mobile */
@media (max-width: 768px) {
    /* Classic */
    .woocommerce-checkout-review-order-table .product-name,
    .woocommerce table.shop_table .product-name {
        font-size: 11px !important;
        max-width: 130px !important;
        width: 50% !important;
    }

    .woocommerce-checkout-review-order-table .product-total {
        width: 50% !important;
    }

    .woocommerce-checkout-review-order-table .amount,
    .woocommerce-checkout-review-order-table .woocommerce-Price-amount {
        font-size: 12px !important;
    }

    /* Blocks Mobile */
    .wc-block-components-product-name {
        font-size: 12px !important;
    }

    .wc-block-components-order-summary-item__description {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }

    .wc-block-components-order-summary-item__quantity-and-price .wc-block-formatted-money-amount {
        font-size: 14px !important;
    }
}
