/**
 * Tek ürün sayfası – masaüstü düzen
 * Sol: dikey thumbnail + ana görsel; Sağ: başlık, satıcı, fiyat, toplu alım, CTA, kargo, güven.
 */

/* ========== DEĞİŞKENLER ========== */
.pr-single-product {
    --pr-mw: 1200px;
    --pr-heading: #222;
    --pr-text: #555;
    --pr-text-light: #767676;
    --pr-price: #222;
    --pr-sale: #c40000;
    --pr-link: #0654ba;
    --pr-btn-primary: #f57c00;
    --pr-btn-border: #f57c00;
    --pr-border: #e5e5e5;
    --pr-radius: 8px;
    --pr-shadow: 0 1px 3px rgba(0,0,0,.08);
}

/* ========== BANNER ========== */
.pr-single-product .pr-banner {
    background: #f7f7f7;
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    font-weight: 600;
    color: var(--pr-heading);
    border-bottom: 1px solid var(--pr-border);
}

/* ========== ANA YAPI ========== */
.pr-single-product .pr-product-main {
    width: 100%;
    max-width: var(--pr-mw);
    margin: 0 auto;
    padding: 24px 20px 48px;
    box-sizing: border-box;
}

.pr-single-product .pr-container {
    width: 100%;
}

.pr-single-product .pr-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
    max-width: 100%;
}

@media (min-width: 769px) {
    .pr-single-product .pr-row {
        grid-template-columns: 42% 1fr;
    }
}

/* ========== SOL: GALERİ ========== */
.pr-single-product .pr-gallery-wrap {
    min-width: 0;
}

.pr-single-product .pr-gallery-sticky {
    position: sticky;
    top: 80px;
}

.pr-single-product .pr-gallery-inner {
    position: relative;
}

.pr-single-product .pr-badge-sold {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 5;
    background: #c40000;
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 4px;
}

.pr-single-product .pr-gallery-box {
    display: flex;
    flex-direction: row;
    gap: 12px;
    margin-bottom: 16px;
}

.pr-single-product .pr-thumbs-vertical {
    display: flex;
    flex-direction: column;
    gap: 8px;
    flex-shrink: 0;
    width: 72px;
}

.pr-single-product .pr-thumb-item {
    width: 72px;
    height: 72px;
    padding: 0;
    margin: 0;
    border: 2px solid transparent;
    border-radius: 6px;
    overflow: hidden;
    cursor: pointer;
    background: #f5f5f5;
    display: block;
}

.pr-single-product .pr-thumb-item.active {
    border-color: var(--pr-btn-primary);
}

.pr-single-product .pr-thumb-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.pr-single-product .pr-main-image-wrap {
    flex: 1;
    min-width: 0;
    position: relative;
    border-radius: var(--pr-radius);
    overflow: hidden;
    background: #f5f5f5;
    min-height: 380px;
}

.pr-single-product .pr-main-image-stage {
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 380px;
}

.pr-single-product .pr-main-slide {
    display: none;
    position: absolute;
    inset: 0;
    align-items: center;
    justify-content: center;
}

.pr-single-product .pr-main-slide.active {
    display: flex;
    position: relative;
}

.pr-single-product .pr-main-slide a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    min-height: 380px;
}

.pr-single-product .pr-main-slide img {
    max-width: 100%;
    max-height: 100%;
    width: auto;
    height: auto;
    object-fit: contain;
}

.pr-single-product .pr-gallery-prev,
.pr-single-product .pr-gallery-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--pr-border);
    background: #fff;
    cursor: pointer;
    z-index: 3;
    font-size: 20px;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #555;
    box-shadow: var(--pr-shadow);
}

.pr-single-product .pr-gallery-prev {
    left: 12px;
}

.pr-single-product .pr-gallery-next {
    right: 12px;
}

.pr-single-product .pr-gallery-prev:hover,
.pr-single-product .pr-gallery-next:hover {
    background: #f0f0f0;
}

.pr-single-product .pr-expand-btn {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,.9);
    border: 1px solid var(--pr-border);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    color: #555;
    text-decoration: none;
}

.pr-single-product .pr-likes {
    position: absolute;
    bottom: 12px;
    right: 12px;
    font-size: 13px;
    color: #555;
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 3;
}

.pr-single-product .pr-likes svg {
    color: #c40000;
    flex-shrink: 0;
}

.pr-single-product .pr-sell-buttons {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 8px;
}

.pr-single-product .pr-sell-btn,
.pr-single-product .pr-share-btn {
    padding: 10px 16px;
    font-size: 13px;
    color: #555;
    background: #f5f5f5;
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.pr-single-product .pr-product-options {
    margin-top: 16px;
}

.pr-single-product .pr-product-options .kutay-product-options-wrapper {
    margin: 0;
}

.pr-single-product .pr-product-options .kutay-options-section.kutay-options-buttons {
    flex-direction: column;
    gap: 20px;
}

.pr-single-product .pr-product-options .kutay-option-label {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pr-single-product .pr-product-options .kutay-option-btn input:checked + .kutay-option-btn-text {
    background: #f57c00 !important;
    border-color: #f57c00 !important;
}

/* ========== SAĞ: BİLGİ ========== */
.pr-single-product .pr-info-wrap {
    min-width: 0;
}

.pr-single-product .pr-product-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--pr-heading);
    margin: 0 0 12px;
    line-height: 1.3;
}

.pr-single-product .pr-seller-block {
    margin-bottom: 16px;
    position: relative;
    padding-right: 24px;
}

.pr-single-product .pr-seller-link {
    font-size: 14px;
    color: var(--pr-link);
    text-decoration: none;
    font-weight: 500;
}

.pr-single-product .pr-seller-link:hover {
    text-decoration: underline;
}

.pr-single-product .pr-seller-meta {
    font-size: 13px;
    color: var(--pr-text-light);
    margin: 4px 0 0;
}

.pr-single-product .pr-seller-arrow {
    position: absolute;
    right: 0;
    top: 0;
    font-size: 18px;
    color: var(--pr-text-light);
}

.pr-single-product .pr-price-block {
    margin-bottom: 12px;
}

.pr-single-product .pr-price-current {
    font-size: 22px;
    font-weight: 400;
    color: var(--pr-heading);
    margin: 0 0 4px;
}

.pr-single-product .pr-price-list {
    font-size: 14px;
    color: var(--pr-text-light);
    margin: 0 0 4px;
}

.pr-single-product .pr-price-list del {
    text-decoration: line-through;
}

.pr-single-product .pr-price-info-icon {
    font-size: 12px;
    color: var(--pr-text-light);
    margin-left: 4px;
    cursor: help;
}

.pr-single-product .pr-price-save {
    font-size: 14px;
    color: var(--pr-sale);
    margin: 0;
}

.pr-single-product .pr-condition {
    font-size: 14px;
    color: var(--pr-text);
    margin: 0 0 16px;
}

.pr-single-product .pr-quantity-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.pr-single-product .pr-qty-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--pr-heading);
    margin: 0;
}

.pr-single-product .pr-quantity-wrap {
    display: inline-flex;
    align-items: center;
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius);
    overflow: hidden;
}

.pr-single-product .pr-quantity-wrap .pr-qty-minus,
.pr-single-product .pr-quantity-wrap .pr-qty-plus {
    width: 44px;
    height: 44px;
    padding: 0;
    margin: 0;
    border: none;
    background: #f5f5f5;
    font-size: 20px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #333;
}

.pr-single-product .pr-quantity-wrap .pr-qty-minus:hover,
.pr-single-product .pr-quantity-wrap .pr-qty-plus:hover {
    background: #eee;
}

.pr-single-product .pr-quantity-wrap input.qty {
    width: 56px;
    padding: 10px 8px;
    font-size: 15px;
    border: none;
    border-left: 1px solid var(--pr-border);
    border-right: 1px solid var(--pr-border);
    text-align: center;
    outline: none;
    box-shadow: none;
}

.pr-single-product .pr-quantity-wrap input.qty:focus {
    outline: none !important;
    box-shadow: none !important;
    border-left-color: var(--pr-border) !important;
    border-right-color: var(--pr-border) !important;
}

/* Adet input: aşağı-yukarı okları kaldır */
.pr-single-product .pr-quantity-wrap input.qty::-webkit-outer-spin-button,
.pr-single-product .pr-quantity-wrap input.qty::-webkit-inner-spin-button,
.pr-single-product .pr-quantity-row .quantity input.qty::-webkit-outer-spin-button,
.pr-single-product .pr-quantity-row .quantity input.qty::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.pr-single-product .pr-quantity-wrap input.qty,
.pr-single-product .pr-quantity-row .quantity input.qty {
    -moz-appearance: textfield;
    appearance: textfield;
}

.pr-single-product .pr-quantity-row .quantity {
    margin: 0;
}

.pr-single-product .pr-quantity-row .quantity input.qty {
    width: 56px;
    padding: 10px 12px;
    font-size: 15px;
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius);
    text-align: center;
    outline: none;
    box-shadow: none;
}

.pr-single-product .pr-quantity-row .quantity input.qty:focus {
    outline: none !important;
    box-shadow: none !important;
    border-color: var(--pr-border) !important;
}

.pr-single-product .pr-sold-count {
    font-size: 14px;
    color: var(--pr-sale);
    font-weight: 500;
}

.pr-single-product .pr-bulk-section {
    margin-bottom: 20px;
}

.pr-single-product .pr-bulk-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--pr-heading);
    margin: 0 0 10px;
}

.pr-single-product .pr-bulk-boxes {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.pr-single-product .pr-bulk-box {
    padding: 12px 16px;
    font-size: 13px;
    color: var(--pr-text);
    background: #fff;
    border: 2px solid var(--pr-border);
    border-radius: var(--pr-radius);
    cursor: pointer;
    transition: border-color .2s;
}

.pr-single-product .pr-bulk-box:hover {
    border-color: #999;
}

.pr-single-product .pr-bulk-box.active {
    border-color: var(--pr-btn-primary);
    color: var(--pr-btn-primary);
    font-weight: 500;
}

/* Adet + Sepete Ekle yan yana, alt kenarlar aynı hizada (buton yukarı kaymasın) */
.pr-single-product .pr-cta-row {
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 20px;
}

.pr-single-product .pr-cta-row .pr-quantity-row {
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 40px;
}

.pr-single-product .pr-cta-row .pr-quantity-row .pr-qty-label {
    margin: 0;
    padding: 0;
    font-size: 14px;
    font-weight: 500;
    line-height: 40px;
    height: 40px;
    min-height: 40px;
    display: inline-flex;
    align-items: center;
    flex-shrink: 0;
}

.pr-single-product .pr-cta-row .pr-quantity-wrap {
    display: inline-flex;
    align-items: stretch;
    box-sizing: border-box;
    height: 40px;
    min-height: 40px;
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius);
    overflow: hidden;
    flex-shrink: 0;
}

.pr-single-product .pr-cta-row .pr-quantity-wrap .pr-qty-minus,
.pr-single-product .pr-cta-row .pr-quantity-wrap .pr-qty-plus {
    height: 100%;
}

.pr-single-product .pr-cta-row .pr-cta-buttons {
    display: inline-flex;
    align-items: stretch;
    align-self: flex-end;
    gap: 8px;
    margin: 0;
    padding: 0;
    flex: 0 0 auto;
    height: 40px;
}

.pr-single-product .pr-cta-row .pr-cta-buttons .pr-btn {
    flex: none;
    min-width: 0;
}

.pr-single-product .pr-cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 20px;
}

.pr-single-product .pr-btn,
.pr-single-product .pr-add-to-cart-wrap .single_add_to_cart_button {
    padding: 14px 24px;
    font-size: 16px;
    font-weight: 600;
    border-radius: var(--pr-radius);
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    border: none;
    transition: background .2s, color .2s;
    box-sizing: border-box;
}

.pr-single-product .pr-btn-buy,
.pr-single-product .pr-btn-cart,
.pr-single-product .pr-add-to-cart-wrap .single_add_to_cart_button {
    min-width: 140px;
    width: 140px;
    height: 48px;
}

/* Adet + Sepete Ekle: buton 40px, adet kutusu ile aynı seviyede – tüm stilleri ezer */
.pr-single-product .pr-cta-row .pr-btn-buy,
.pr-single-product .pr-cta-row .pr-btn-cart,
.pr-single-product .pr-cta-row .pr-cta-buttons .pr-btn,
.pr-single-product .pr-cta-row .pr-cta-buttons button.single_add_to_cart_button,
.pr-single-product .pr-cta-row button.single_add_to_cart_button.pr-btn-cart {
    width: auto !important;
    min-width: 0 !important;
    padding: 0 18px !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    height: 40px !important;
    min-height: 40px !important;
    max-height: 40px !important;
    line-height: 40px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    vertical-align: middle !important;
}

.pr-single-product .pr-cta-row .pr-quantity-wrap .pr-qty-minus,
.pr-single-product .pr-cta-row .pr-quantity-wrap .pr-qty-plus {
    width: 32px;
    height: 100%;
    min-height: 0;
    padding: 0;
    margin: 0;
    font-size: 16px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: #f5f5f5;
    flex-shrink: 0;
}

.pr-single-product .pr-cta-row .pr-quantity-wrap input.qty {
    width: 42px;
    height: 100% !important;
    min-height: 0 !important;
    padding: 0 4px !important;
    font-size: 14px !important;
    box-sizing: border-box !important;
    border: none !important;
    border-left: 1px solid var(--pr-border) !important;
    border-right: 1px solid var(--pr-border) !important;
    margin: 0 !important;
    border-radius: 0 !important;
}

.pr-single-product .pr-btn-buy {
    background: var(--pr-btn-primary);
    color: #fff;
}

.pr-single-product .pr-btn-buy:hover {
    background: #e65100;
    color: #fff;
}

.pr-single-product .pr-btn-cart,
.pr-single-product .pr-add-to-cart-wrap .single_add_to_cart_button {
    background: #e65100;
    color: #fff;
}

.pr-single-product .pr-btn-cart:hover,
.pr-single-product .pr-add-to-cart-wrap .single_add_to_cart_button:hover {
    background: #e65100;
    color: #fff;
}

.pr-single-product .pr-btn-wishlist {
    background: #fff;
    color: var(--pr-btn-primary);
    border: 2px solid var(--pr-btn-border);
}

.pr-single-product .pr-add-to-cart-wrap {
    display: inline-block;
}

.pr-single-product .pr-add-to-cart-wrap form.cart {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin: 0;
}


.pr-single-product .pr-social-proof {
    margin-bottom: 20px;
}

.pr-single-product .pr-popular,
.pr-single-product .pr-viewers {
    font-size: 14px;
    color: var(--pr-text);
    margin: 0 0 6px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.pr-single-product .pr-popular svg,
.pr-single-product .pr-viewers svg {
    flex-shrink: 0;
    color: #f90;
}

.pr-single-product .pr-logistics {
    margin-bottom: 20px;
    font-size: 14px;
    color: var(--pr-text);
}

.pr-single-product .pr-logistics p {
    margin: 0 0 8px;
}

.pr-single-product .pr-payment-logos {
    display: inline-block;
    margin-right: 6px;
}

.pr-single-product .pr-confidence-block {
    padding-top: 16px;
    border-top: 1px solid var(--pr-border);
}

.pr-single-product .pr-confidence-block .pr-confidence {
    padding-top: 0;
    border-top: none;
    font-size: 14px;
}

.pr-single-product .pr-confidence-block .pr-confidence-title {
    font-weight: 700;
    color: var(--pr-heading);
    margin: 0 0 4px;
}

.pr-single-product .pr-confidence-block .pr-confidence-desc {
    margin: 0 0 16px;
    color: var(--pr-text);
}

.pr-single-product .pr-check {
    color: #0a0;
    margin-right: 4px;
}

/* Sağ kolon: Sipariş Notu (Para İade Garantisi altında) */
.pr-single-product .pr-confidence-block .kutay-order-note-right {
    margin-top: 16px;
}

.pr-single-product .pr-confidence-block .kutay-order-note-right .kutay-option-label {
    font-size: 14px;
    font-weight: 700;
    color: var(--pr-heading);
    margin-bottom: 8px;
}

/* Sağ kolon: DOSYA YÜKLE (Para İade Garantisi altında, sabit) */
.pr-single-product .pr-confidence-block .kutay-file-upload-only {
    margin-top: 16px;
    padding-top: 0;
    border-top: none;
}

.pr-single-product .pr-confidence-block .kutay-file-upload-only .kutay-option-label {
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--pr-heading);
    margin-bottom: 12px;
}

.pr-single-product .pr-confidence-block .kutay-file-upload-only .kutay-file-dropzone {
    border: 2px dashed var(--pr-border);
    border-radius: 8px;
    padding: 24px;
    background: #fafafa;
    min-height: 100px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.pr-single-product .pr-confidence-block .kutay-file-upload-only .kutay-file-select-btn {
    font-size: 14px;
    font-weight: 600;
    color: #0654ba;
    background: transparent;
    border: 1px solid #0654ba;
    padding: 8px 16px;
    border-radius: 6px;
    cursor: pointer;
    text-decoration: none;
}

.pr-single-product .pr-confidence-block .kutay-file-upload-only .kutay-file-hint {
    font-size: 13px;
    color: var(--pr-text-light);
}

/* Toplam: DOSYA YÜKLE altında */
.pr-single-product .pr-total-row {
    margin-top: 20px;
    padding-top: 16px;
    border-top: 1px solid var(--pr-border);
    font-size: 18px;
    font-weight: 700;
    color: var(--pr-heading);
}

.pr-single-product .pr-total-label {
    margin-right: 8px;
}

.pr-single-product .woocommerce-tabs {
    margin-top: 48px;
    padding-top: 28px;
    border-top: 1px solid var(--pr-border);
    width: 100%;
    max-width: var(--pr-mw);
    margin-left: auto;
    margin-right: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.pr-single-product .woocommerce-tabs ul.tabs {
    list-style: none;
    margin: 0 0 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0;
    border-bottom: 2px solid var(--pr-border);
}

.pr-single-product .woocommerce-tabs ul.tabs li {
    margin: 0;
}

.pr-single-product .woocommerce-tabs ul.tabs li a {
    display: block;
    padding: 14px 20px;
    font-size: 15px;
    font-weight: 600;
    color: var(--pr-text-light);
    text-decoration: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.pr-single-product .woocommerce-tabs ul.tabs li a:hover {
    color: var(--pr-heading);
}

.pr-single-product .woocommerce-tabs ul.tabs li.active a {
    color: var(--pr-btn-primary);
    border-bottom-color: var(--pr-btn-primary);
}

.pr-single-product .woocommerce-tabs ul.tabs li a:focus {
    outline: none;
}

.pr-single-product .woocommerce-tabs ul.tabs li a:focus-visible {
    outline: 2px solid var(--pr-btn-primary);
    outline-offset: 2px;
}

/* Panel içeriği – Açıklama / Özellikler vb. kaliteli görünüm */
.pr-single-product .woocommerce-tabs .panel {
    padding: 28px 0 32px;
}

.pr-single-product .woocommerce-tabs .panel > h2:first-child {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--pr-heading);
    margin: 0 0 1rem;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--pr-border);
}

.pr-single-product .woocommerce-tabs .panel p {
    margin: 0 0 1rem;
    line-height: 1.75;
    color: var(--pr-text);
}

.pr-single-product .woocommerce-tabs .panel img {
    max-width: 100%;
    height: auto;
    border-radius: var(--pr-radius);
    margin: 1rem 0;
    box-shadow: var(--pr-shadow);
}

.pr-single-product .woocommerce-tabs .panel table {
    width: 100%;
    border-collapse: collapse;
    margin: 1rem 0;
}

.pr-single-product .woocommerce-tabs .panel table th,
.pr-single-product .woocommerce-tabs .panel table td {
    padding: 10px 14px;
    text-align: left;
    border-bottom: 1px solid var(--pr-border);
}

.pr-single-product .woocommerce-tabs .panel table th {
    font-weight: 600;
    color: var(--pr-heading);
    background: #fafafa;
}

.pr-single-product .woocommerce-tabs .panel table tr:hover td {
    background: #fcfcfc;
}

/* Detaylı Bilgi paneli – görsel şölen */
.pr-single-product .kutay-product-detail-panel {
    padding: 28px 0 32px;
}

.pr-single-product .kutay-product-detail-content {
    font-size: 16px;
    line-height: 1.7;
    color: var(--pr-text);
}

.pr-single-product .kutay-product-detail-content h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 32px 0 16px;
    color: var(--pr-heading);
    padding-bottom: 8px;
    border-bottom: 2px solid var(--pr-border);
}

.pr-single-product .kutay-product-detail-content h2:first-child {
    margin-top: 0;
}

.pr-single-product .kutay-product-detail-content h3 {
    font-size: 18px;
    font-weight: 600;
    margin: 24px 0 12px;
    color: var(--pr-heading);
}

.pr-single-product .kutay-product-detail-content p {
    margin: 0 0 16px;
}

.pr-single-product .kutay-product-detail-content img {
    max-width: 100%;
    height: auto;
    border-radius: var(--pr-radius);
    box-shadow: var(--pr-shadow);
    margin: 16px 0;
}

.pr-single-product .kutay-product-detail-content ul,
.pr-single-product .kutay-product-detail-content ol {
    margin: 0 0 16px;
    padding-left: 24px;
}

.pr-single-product .kutay-product-detail-content blockquote {
    margin: 20px 0;
    padding: 16px 20px;
    border-left: 4px solid var(--pr-btn-primary);
    background: #f9f9f9;
    border-radius: 0 8px 8px 0;
    font-style: italic;
    color: #555;
}

.pr-single-product .related.products {
    margin-top: 48px;
    padding: 0 20px;
    max-width: var(--pr-mw);
    margin-left: auto;
    margin-right: auto;
}

.pr-single-product .related.products .pr-related-header {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px 16px;
    margin-bottom: 20px;
}

.pr-single-product .related.products .pr-related-header h2 {
    font-size: 22px;
    font-weight: 700;
    margin: 0;
    color: var(--pr-heading);
}

.pr-single-product .related.products .pr-related-sponsored {
    font-size: 12px;
    color: var(--pr-text-light);
}

.pr-single-product .related.products .pr-related-see-all {
    margin-left: auto;
    font-size: 14px;
    color: var(--pr-link);
    text-decoration: none;
}

.pr-single-product .related.products .pr-related-see-all:hover {
    text-decoration: underline;
}

.pr-single-product .related.products h2 {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--pr-heading);
}

.pr-single-product .related ul.products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.pr-single-product .related ul.products li.product {
    margin: 0;
    border: 1px solid var(--pr-border);
    border-radius: var(--pr-radius);
    padding: 12px;
    box-sizing: border-box;
    background: #fff;
}

.pr-single-product .related ul.products li.product img {
    width: 100%;
    height: 180px;
    object-fit: contain;
    border-radius: 6px;
    margin-bottom: 10px;
}

.pr-single-product .related ul.products li.product .woocommerce-loop-product__title {
    font-size: 14px;
    margin: 0 0 8px;
    line-height: 1.35;
}

.pr-single-product .related ul.products li.product .price {
    font-size: 16px;
    font-weight: 600;
    color: var(--pr-sale);
}

.pr-single-product .related ul.products li.product .price del {
    font-size: 13px;
    color: var(--pr-text-light);
}

/* ========== LIGHTBOX ========== */
.pr-lightbox {
    position: fixed;
    inset: 0;
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    box-sizing: border-box;
}

body.pr-lightbox-open {
    overflow: hidden;
}

.pr-lightbox-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    cursor: pointer;
}

.pr-lightbox-inner {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
}

.pr-lightbox-img {
    max-width: 100%;
    max-height: 90vh;
    width: auto;
    height: auto;
    object-fit: contain;
    border-radius: 8px;
    background: #fff;
}

.pr-lightbox-close {
    position: absolute;
    top: -48px;
    right: 0;
    width: 44px;
    height: 44px;
    border: none;
    background: #fff;
    color: #333;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.pr-lightbox-close:hover {
    background: #f5f5f5;
}

/* ========== MOBİL UYUMLULUK – ETSY tarzı (sadece 768px ve altı) ========== */
@media (max-width: 768px) {
    .pr-single-product .pr-product-main {
        padding: 0 0 32px;
    }
    .pr-single-product .pr-container {
        padding: 0;
    }
    /* Tek sütun: önce galeri (foto + thumbnails + seçenekler), sonra bilgi */
    .pr-single-product .pr-row {
        grid-template-columns: 1fr;
        gap: 0;
        display: flex;
        flex-direction: column;
    }
    .pr-single-product .pr-gallery-wrap {
        order: 1;
        margin-left: 0;
        margin-right: 0;
        width: 100%;
        max-width: 100%;
    }
    .pr-single-product .pr-info-wrap {
        order: 2;
        display: flex;
        flex-direction: column;
    }
    /* Bilgi alanı: başlık, fiyat, kargo/dosya alt alta; sepete ekle + toplam en altta */
    .pr-single-product .pr-info-inner {
        display: flex;
        flex-direction: column;
    }
    .pr-single-product .pr-info-inner .pr-product-title { order: 1; }
    .pr-single-product .pr-info-inner .pr-price-block { order: 2; }
    .pr-single-product .pr-info-inner .pr-bulk-section { order: 3; }
    .pr-single-product .pr-info-inner .pr-logistics { order: 4; }
    .pr-single-product .pr-info-inner .pr-confidence-block { order: 5; }
    .pr-single-product .pr-info-inner .kutay-options-section.kutay-order-note { order: 6; }
    .pr-single-product .pr-info-inner .kutay-product-options-wrapper.kutay-file-upload-only { order: 7; }
    .pr-single-product .pr-info-inner .pr-cta-row { order: 10; margin-top: 16px; }
    .pr-single-product .pr-info-inner .pr-total-row { order: 11; margin-top: 12px; }
    .pr-single-product .pr-gallery-sticky {
        position: relative;
        top: auto;
    }
    .pr-single-product .pr-gallery-box {
        flex-direction: column;
        gap: 0;
        margin-bottom: 0;
    }
    /* Ana görsel: tam ekran genişliği, en üstte */
    .pr-single-product .pr-main-image-wrap {
        order: -1;
        width: 100%;
        min-width: 100%;
        min-height: 0;
        aspect-ratio: 1;
        max-height: 85vh;
        border-radius: 0;
        background: #f5f5f5;
    }
    .pr-single-product .pr-main-image-stage {
        min-height: 0;
        height: 100%;
    }
    .pr-single-product .pr-main-slide,
    .pr-single-product .pr-main-slide.active {
        min-height: 0;
        height: 100%;
    }
    .pr-single-product .pr-main-slide a {
        min-height: 0;
        height: 100%;
    }
    .pr-single-product .pr-main-slide img {
        width: 100%;
        height: 100%;
        object-fit: contain;
    }
    /* Thumbnail'lar: büyük görselin altında, ufak yatay sıra */
    .pr-single-product .pr-thumbs-vertical {
        flex-direction: row;
        flex-wrap: nowrap;
        width: 100%;
        justify-content: center;
        gap: 8px;
        padding: 12px 12px 16px;
        overflow-x: auto;
        overflow-y: hidden;
        -webkit-overflow-scrolling: touch;
    }
    .pr-single-product .pr-thumb-item {
        width: 48px;
        height: 48px;
        flex-shrink: 0;
        border-radius: 6px;
    }
    .pr-single-product .pr-thumb-item img {
        width: 48px;
        height: 48px;
        object-fit: cover;
    }
    /* Seçenekler (ADET/KAĞIT vb.) galeri altında, satır satır */
    .pr-single-product .pr-product-options {
        padding: 0 14px 20px;
        margin-top: 0;
    }
    .pr-single-product .pr-product-options .kutay-option-group {
        display: flex;
        flex-direction: column;
        gap: 8px;
        margin-bottom: 16px;
    }
    .pr-single-product .pr-product-options .kutay-option-group:last-child {
        margin-bottom: 0;
    }
    .pr-single-product .pr-product-options .kutay-option-buttons {
        flex-wrap: wrap;
    }
    /* Bilgi bloğu: padding ve düzenli boşluk */
    .pr-single-product .pr-info-wrap {
        padding: 0 14px;
    }
    .pr-single-product .pr-info-inner {
        padding: 0;
    }
    .pr-single-product .pr-product-title {
        font-size: 18px !important;
        line-height: 1.3;
        margin-bottom: 10px;
    }
    .pr-single-product .pr-price-block .pr-price-current {
        font-size: 16px;
    }
    .pr-single-product .pr-price-value {
        font-size: 18px;
    }
    .pr-single-product .pr-price-list,
    .pr-single-product .pr-price-save {
        font-size: 12px;
    }
    .pr-single-product .pr-condition {
        font-size: 13px;
    }
    .pr-single-product .pr-quantity-row {
        margin-bottom: 14px;
    }
    .pr-single-product .pr-qty-label {
        font-size: 13px;
    }
    .pr-single-product .pr-quantity-wrap .pr-qty-minus,
    .pr-single-product .pr-quantity-wrap .pr-qty-plus {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    .pr-single-product .pr-quantity-wrap input.qty,
    .pr-single-product .pr-quantity-row .quantity input.qty {
        width: 44px;
        padding: 8px 6px;
        font-size: 14px;
    }
    .pr-single-product .pr-bulk-section {
        margin-bottom: 14px;
    }
    .pr-single-product .pr-bulk-label {
        font-size: 13px;
    }
    .pr-single-product .pr-bulk-box {
        padding: 8px 12px;
        font-size: 11px;
    }
    /* Adet + Hemen Satın Al + Sepete Ekle yan yana */
    .pr-single-product .pr-cta-row {
        margin-bottom: 20px;
        margin-top: 0;
        gap: 8px;
    }
    .pr-single-product .pr-cta-row .pr-quantity-wrap .pr-qty-minus,
    .pr-single-product .pr-cta-row .pr-quantity-wrap .pr-qty-plus {
        width: 32px;
        height: 32px;
        font-size: 16px;
    }
    .pr-single-product .pr-cta-row .pr-quantity-wrap input.qty {
        width: 38px;
        padding: 6px 4px;
        font-size: 13px;
    }
    .pr-single-product .pr-cta-row .pr-cta-buttons {
        flex-direction: row;
        flex: 1 1 auto;
        min-width: 0;
    }
    .pr-single-product .pr-cta-row .pr-cta-buttons {
        flex: 1 1 100%;
        min-width: 0;
    }
    .pr-single-product .pr-cta-row .pr-cta-buttons .pr-btn {
        flex: 1 1 100%;
        min-width: 0;
        padding: 12px 16px;
        font-size: 14px;
        height: 40px !important;
        min-height: 40px !important;
    }
    .pr-single-product .pr-btn,
    .pr-single-product .pr-add-to-cart-wrap .single_add_to_cart_button {
        padding: 12px 20px;
        font-size: 14px;
        font-weight: 600;
        width: 100%;
        min-width: 0;
        height: 46px;
        border-radius: var(--pr-radius);
        box-sizing: border-box;
    }
    .pr-single-product .pr-cta-row .pr-btn-buy,
    .pr-single-product .pr-cta-row .pr-btn-cart {
        min-width: 0;
        height: 40px !important;
        min-height: 40px !important;
    }
    .pr-single-product .pr-btn-buy,
    .pr-single-product .pr-btn-cart,
    .pr-single-product .pr-add-to-cart-wrap .single_add_to_cart_button {
        min-width: 0;
        width: 100%;
        height: 46px;
    }
    .pr-single-product .pr-logistics {
        margin-bottom: 16px;
    }
    .pr-single-product .pr-logistics p,
    .pr-single-product .pr-confidence-desc p {
        font-size: 12px;
        margin-bottom: 6px;
    }
    .pr-single-product .pr-confidence-title {
        font-size: 14px;
    }
    .pr-single-product .pr-confidence-block {
        padding-top: 16px;
    }
    .pr-single-product .pr-total-row {
        font-size: 15px !important;
        padding: 12px 14px !important;
        margin-top: 16px;
    }
    .pr-single-product .kutay-option-label {
        font-size: 12px;
    }
    .pr-single-product .kutay-option-btn,
    .pr-single-product .kutay-option-btn-text {
        font-size: 12px;
    }
    .pr-single-product .woocommerce-tabs {
        padding-left: 14px;
        padding-right: 14px;
    }
    .pr-single-product .woocommerce-tabs ul.tabs li a {
        padding: 10px 14px;
        font-size: 13px;
    }
    .pr-single-product .woocommerce-tabs .panel {
        font-size: 13px;
    }
    .pr-single-product .woocommerce-tabs .panel h2 {
        font-size: 15px;
    }
    /* Galeri ok / tam ekran butonları mobilde küçült */
    .pr-single-product .pr-gallery-prev,
    .pr-single-product .pr-gallery-next {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }
    .pr-single-product .pr-expand-btn {
        width: 32px;
        height: 32px;
        top: 8px;
        right: 8px;
    }
}

/* ========== DEĞERLENDİRMELER BLOĞU (tek blok, Türkçe) ========== */
.pr-single-product .kutay-reviews-block {
    width: 100%;
    max-width: var(--pr-mw);
    margin: 32px auto 0;
    padding: 28px 0 40px;
    border-top: 1px solid var(--pr-border);
}
.pr-single-product .kutay-reviews-title {
    font-size: 20px;
    font-weight: 700;
    color: var(--pr-heading);
    margin: 0 0 20px;
}
.pr-single-product .kutay-reviews-write-wrap {
    margin-bottom: 24px;
}
.pr-single-product .kutay-reviews-write-btn {
    display: inline-block;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    background: var(--pr-btn-primary);
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s, transform 0.2s;
}
.pr-single-product .kutay-reviews-write-btn:hover {
    background: #e65100;
    color: #fff;
    transform: translateY(-1px);
}
.pr-single-product .kutay-reviews-login-msg {
    font-size: 14px;
    color: var(--pr-text);
    margin: 0;
}
.pr-single-product .kutay-reviews-login-msg a {
    color: var(--pr-btn-primary);
    font-weight: 600;
    text-decoration: underline;
}
.pr-single-product .kutay-reviews-login-msg a:hover {
    color: #e65100;
}
.pr-single-product .kutay-review-form-wrap {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--pr-border);
}
.pr-single-product .kutay-review-form-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--pr-heading);
    margin: 0 0 16px;
}
/* Oturum bilgisi ve gerekli alanlar notu – profesyonel görünüm */
.pr-single-product .kutay-review-form-wrap .logged-in-as,
.pr-single-product .kutay-review-form-wrap .comment-notes {
    font-size: 13px;
    line-height: 1.5;
    color: var(--pr-text);
    margin: 0 0 12px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid var(--pr-border);
}
.pr-single-product .kutay-review-form-wrap .logged-in-as a,
.pr-single-product .kutay-review-form-wrap .comment-notes a {
    color: var(--pr-btn-primary);
    font-weight: 600;
    text-decoration: none;
}
.pr-single-product .kutay-review-form-wrap .logged-in-as a:hover,
.pr-single-product .kutay-review-form-wrap .comment-notes a:hover {
    text-decoration: underline;
    color: #e65100;
}
.pr-single-product .kutay-review-form-wrap .comment-notes {
    margin-bottom: 20px;
}
.pr-single-product .kutay-review-form-wrap .comment-form > p:first-of-type {
    font-size: 13px;
    line-height: 1.5;
    color: var(--pr-text);
    margin: 0 0 12px;
    padding: 12px 16px;
    background: #f8f9fa;
    border-radius: 8px;
    border: 1px solid var(--pr-border);
}
.pr-single-product .kutay-review-form-wrap .comment-form > p:first-of-type a {
    color: var(--pr-btn-primary);
    font-weight: 600;
    text-decoration: none;
}
.pr-single-product .kutay-review-form-wrap .comment-form > p:first-of-type a:hover {
    text-decoration: underline;
    color: #e65100;
}
/* Yorum alanı etiketi */
.pr-single-product .kutay-review-form-wrap .comment-form-comment label {
    font-size: 15px;
    font-weight: 600;
    color: var(--pr-heading);
    margin-bottom: 8px;
    display: block;
}
.pr-single-product .kutay-review-form-wrap .comment-form-comment label .required {
    color: #c00;
}
/* WooCommerce tek yıldız alanını gizle; 3 kategori puanı kullanılıyor */
.pr-single-product .kutay-review-form-wrap .comment-form-rating {
    display: none !important;
}
.pr-single-product .kutay-review-three-ratings {
    margin-bottom: 24px;
    padding: 20px 24px;
    background: #f8f9fa;
    border-radius: 12px;
    border: 1px solid var(--pr-border);
}
.pr-single-product .kutay-review-ratings-label {
    font-size: 15px;
    font-weight: 600;
    color: var(--pr-heading);
    margin: 0 0 16px;
    letter-spacing: -0.01em;
}
.pr-single-product .kutay-review-ratings-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 28px;
}
.pr-single-product .kutay-review-rating-item {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
    padding: 14px 18px;
    background: #fff;
    border: 2px solid var(--pr-border);
    border-radius: 10px;
    min-width: 160px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.pr-single-product .kutay-review-rating-item:focus-within {
    border-color: var(--pr-btn-primary);
    box-shadow: 0 0 0 3px rgba(245, 124, 0, 0.15);
}
.pr-single-product .kutay-review-rating-name {
    font-size: 13px;
    font-weight: 600;
    color: var(--pr-heading);
    min-width: 0;
}
.pr-single-product .kutay-review-rating-select {
    width: 100%;
    padding: 10px 14px;
    border: 2px solid var(--pr-border);
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--pr-heading);
    background: #fff;
    cursor: pointer;
    transition: border-color 0.2s ease;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23555' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
    padding-right: 36px;
}
.pr-single-product .kutay-review-rating-select:hover {
    border-color: #ccc;
}
.pr-single-product .kutay-review-rating-select:focus {
    outline: none;
    border-color: var(--pr-btn-primary);
}
.pr-single-product .kutay-review-rating-select option {
    font-weight: 500;
    padding: 8px;
}
.pr-single-product .kutay-review-form-wrap .comment-form-comment label,
.pr-single-product .kutay-review-form-wrap .comment-form-author label,
.pr-single-product .kutay-review-form-wrap label {
    display: block;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--pr-heading);
}
.pr-single-product .kutay-review-form-wrap textarea {
    width: 100%;
    min-height: 120px;
    padding: 12px;
    border: 2px solid var(--pr-border);
    border-radius: 8px;
    font-size: 14px;
}
.pr-single-product .kutay-review-submit-btn {
    margin-top: 12px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    color: #fff !important;
    background: var(--pr-btn-primary);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: background 0.2s, transform 0.2s;
}
.pr-single-product .kutay-review-submit-btn:hover {
    background: #e65100;
    color: #fff !important;
    transform: translateY(-1px);
}
.pr-single-product .kutay-reviews-summary {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
}
.pr-single-product .kutay-reviews-avg {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}
.pr-single-product .kutay-reviews-stars-big .star-rating {
    font-size: 22px;
    width: 6em;
}
.pr-single-product .kutay-reviews-avg-value {
    font-size: 22px;
    font-weight: 700;
    color: var(--pr-heading);
}
.pr-single-product .kutay-reviews-avg-label {
    display: block;
    width: 100%;
    font-size: 12px;
    color: var(--pr-text-light);
}
.pr-single-product .kutay-reviews-breakdown {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
}
.pr-single-product .kutay-reviews-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 120px;
    padding: 8px 12px;
    font-size: 12px;
    color: var(--pr-text);
    background: #f5f5f5;
    border-radius: 999px;
}
.pr-single-product .kutay-reviews-badge {
    font-size: 12px;
    font-weight: 600;
    color: #0a6b0a;
    background: #e8f5e9;
    padding: 8px 14px;
    border-radius: 999px;
}
.pr-single-product .kutay-reviews-highlights-label {
    font-size: 13px;
    color: var(--pr-text-light);
    margin: 0 0 8px;
}
.pr-single-product .kutay-reviews-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.pr-single-product .kutay-reviews-highlight-tag {
    font-size: 12px;
    color: var(--pr-text);
    padding: 6px 12px;
    background: #f7f7f7;
    border-radius: 6px;
}
.pr-single-product .kutay-reviews-highlight-tag:not(:last-child)::after {
    content: ' \007C ';
    margin-left: 4px;
    color: #bbb;
}
.pr-single-product .kutay-reviews-filters {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}
.pr-single-product .kutay-reviews-filter-pill {
    font-size: 13px;
    color: var(--pr-text);
    background: #fff;
    border: 1px solid var(--pr-border);
    padding: 8px 14px;
    border-radius: 999px;
    cursor: pointer;
}
.pr-single-product .kutay-reviews-filter-pill:hover {
    border-color: var(--pr-btn-primary);
    color: var(--pr-btn-primary);
}
.pr-single-product .kutay-reviews-list {
    margin-bottom: 24px;
}
.pr-single-product .kutay-review-item {
    padding: 16px 0;
    border-bottom: 1px solid var(--pr-border);
}
.pr-single-product .kutay-review-item:last-child {
    border-bottom: 0;
}
.pr-single-product .kutay-review-header {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 8px;
}
.pr-single-product .kutay-reviews-stars .star-rating {
    font-size: 14px;
    color: #e0e0e0 !important;
}
.pr-single-product .kutay-reviews-stars .star-rating span::before,
.pr-single-product .kutay-reviews-stars-big .star-rating span::before {
    color: #f57c00 !important;
}
.pr-single-product .kutay-reviews-stars-big .star-rating {
    color: #e0e0e0 !important;
}
.pr-single-product .kutay-review-meta {
    font-size: 13px;
    color: var(--pr-text-light);
}
.pr-single-product .kutay-review-author {
    font-weight: 600;
    color: var(--pr-heading);
}
.pr-single-product .kutay-review-date {
    margin-left: 8px;
}
.pr-single-product .kutay-review-content {
    font-size: 14px;
    color: var(--pr-text);
    line-height: 1.5;
}
.pr-single-product .kutay-reviews-empty {
    font-size: 14px;
    color: var(--pr-text-light);
    margin: 0;
    padding: 20px 0;
}
.pr-single-product .kutay-reviews-cta {
    text-align: center;
}
.pr-single-product .kutay-reviews-view-all {
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: var(--pr-heading);
    border: 2px solid var(--pr-heading);
    padding: 12px 24px;
    border-radius: 8px;
    text-decoration: none;
}
.pr-single-product .kutay-reviews-view-all:hover {
    background: var(--pr-heading);
    color: #fff;
}

/* Değerlendirme yap / Açıklama butonları ve collapsible */
.pr-single-product .kutay-reviews-buttons-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 16px;
    margin-bottom: 0;
}
.pr-single-product .kutay-reviews-trigger-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    font-size: 15px;
    font-weight: 600;
    color: var(--pr-heading);
    background: #fff;
    border: 2px solid var(--pr-border);
    border-radius: var(--pr-radius);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
}
.pr-single-product .kutay-reviews-trigger-btn:hover {
    border-color: var(--pr-btn-primary);
    color: var(--pr-btn-primary);
}
.pr-single-product .kutay-reviews-trigger-btn[aria-expanded="true"] {
    border-color: var(--pr-btn-primary);
    background: var(--pr-btn-primary);
    color: #fff;
}
.pr-single-product .kutay-reviews-collapsible,
.pr-single-product .kutay-description-collapsible {
    overflow: hidden;
    max-height: 0;
    transition: max-height 0.4s ease-out;
}
.pr-single-product .kutay-reviews-collapsible.is-open,
.pr-single-product .kutay-description-collapsible.is-open {
    max-height: 6000px;
    transition: max-height 0.5s ease-in;
}
.pr-single-product .kutay-reviews-collapsible > .kutay-reviews-write-wrap {
    margin-top: 20px;
}
.pr-single-product .kutay-description-collapsible-inner {
    margin-top: 20px;
    padding: 20px 0;
    border-top: 1px solid var(--pr-border);
    font-size: 15px;
    line-height: 1.6;
    color: var(--pr-text);
}
.pr-single-product .kutay-description-collapsible-inner p {
    margin-bottom: 1em;
}
.pr-single-product .kutay-description-collapsible-inner p:last-child {
    margin-bottom: 0;
}

/* ========== Sepete eklendi modal (küçük pencere + animasyon) ========== */
body.pr-added-to-cart-modal-open {
    overflow: hidden;
}
.pr-added-to-cart-modal {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}
.pr-added-to-cart-modal.pr-added-to-cart-open .pr-added-to-cart-overlay {
    opacity: 1;
}
.pr-added-to-cart-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    transition: opacity 0.25s ease;
}
.pr-added-to-cart-content {
    position: relative;
    background: #fff;
    border-radius: 12px;
    padding: 24px 28px;
    max-width: 340px;
    width: 100%;
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.18);
    opacity: 0;
    transform: scale(0.92);
    transition: opacity 0.25s ease, transform 0.25s ease;
}
.pr-added-to-cart-content.pr-added-to-cart-content-visible {
    opacity: 1;
    transform: scale(1);
}
.pr-added-to-cart-title {
    margin: 0 0 20px;
    font-size: 17px;
    font-weight: 600;
    color: var(--pr-heading, #222);
    text-align: center;
}
.pr-added-to-cart-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.pr-added-to-cart-buttons .pr-btn {
    display: block;
    text-align: center;
    padding: 12px 20px;
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--pr-radius, 8px);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
    box-sizing: border-box;
}
.pr-added-to-cart-buttons .pr-added-to-cart-btn-go {
    background: var(--pr-btn-primary, #f57c00);
    color: #fff;
}
.pr-added-to-cart-buttons .pr-added-to-cart-btn-go:hover {
    background: #e65100;
    color: #fff;
}
.pr-added-to-cart-buttons .pr-added-to-cart-btn-continue {
    background: #f5f5f5;
    color: #333;
}
.pr-added-to-cart-buttons .pr-added-to-cart-btn-continue:hover {
    background: #eee;
    color: #222;
}
