/* ==========================================================================
   STRAFOR ÜRÜN KATALOĞU - PREMIUM CSS
   ========================================================================== */

:root {
    --suk-primary: #111;
    --suk-secondary: #ff3c20;
    --suk-whatsapp: #25d366;
    --suk-border: #eef0f3;
    --suk-text: #555;
    --suk-light: #f7f9fa;
    --suk-radius: 12px;
    --suk-card-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

/* ── GENEL RESET & CONTAINER ── */
.suk-single-container,
.suk-archive-container {
    max-width: 1300px;
    margin: 40px auto;
    padding: 0 20px;
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--suk-text);
}

.suk-breadcrumb {
    font-size: 14px;
    color: #888;
    margin-bottom: 30px;
}

.suk-breadcrumb a {
    color: var(--suk-primary);
    text-decoration: none;
}

.suk-breadcrumb a:hover {
    color: var(--suk-secondary);
}

.suk-breadcrumb .suk-current-bc {
    color: var(--suk-text);
}

/* ── ÜRÜN DETAY SAYFASI ÜST BÖLÜM ── */
.suk-product-top {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-bottom: 50px;
}

/* Sol Resim * Galeri */
.suk-product-left {
    position: relative;
}

.suk-main-image-wrap {
    position: relative;
    border: 1px solid var(--suk-border);
    border-radius: var(--suk-radius);
    overflow: hidden;
    background: #fff;
    margin-bottom: 15px;
    aspect-ratio: 1 / 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.suk-main-image-wrap img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transition: transform 0.3s ease;
}

.suk-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--suk-secondary);
    color: #fff;
    font-weight: 700;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    text-align: center;
    box-shadow: 0 4px 10px rgba(255, 60, 32, 0.3);
    z-index: 2;
}

.suk-gallery-wrap {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.suk-gal-item {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border: 2px solid transparent;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    transition: 0.2s;
    background: var(--suk-light);
    position: relative;
}

.suk-gal-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.suk-gal-item:hover,
.suk-gal-item.active {
    border-color: var(--suk-primary);
}

.suk-gal-video {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #ebebeb;
}

.suk-vid-icon {
    font-size: 24px;
    color: var(--suk-secondary);
}

/* Sağ Bilgi Kutusu */
.suk-product-right {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.suk-product-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--suk-primary);
    margin: 0;
    line-height: 1.2;
}

/* Küçük Etiketler (Yıldız vs) */
.suk-meta-top {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    font-size: 14px;
}

.suk-stars {
    color: #f1c40f;
    letter-spacing: 2px;
    font-size: 16px;
}

.suk-meta-extra ul {
    list-style: none;
    padding: 0;
    margin: 0;
    background: var(--suk-light);
    padding: 15px 20px;
    border-radius: 8px;
    font-size: 14px;
}

.suk-meta-extra li {
    padding: 6px 0;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed #dcdcdc;
}

.suk-meta-extra li:last-child {
    border-bottom: none;
}

/* Fiyatlandırma */
.suk-price-box {
    display: flex;
    flex-direction: column;
}

.suk-oldprice-val {
    font-size: 18px;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.suk-realprice-val {
    font-size: 36px;
    color: var(--suk-secondary);
    font-weight: 800;
    line-height: 1;
}

.suk-tax-note {
    font-size: 14px;
    color: #666;
    margin-left: 5px;
}

/* Satın Alma Butonları */
.suk-buy-action {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.suk-quantity-wrap {
    display: flex;
    align-items: center;
    border: 1px solid var(--suk-border);
    border-radius: 50px;
    background: #fff;
    height: 50px;
    overflow: hidden;
}

.suk-quantity-wrap button {
    width: 45px;
    height: 100%;
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
    color: var(--suk-text);
}

.suk-quantity-wrap button:hover {
    background: var(--suk-light);
}

.suk-quantity-wrap input {
    width: 40px;
    text-align: center;
    border: none;
    font-weight: bold;
    font-size: 16px;
    background: transparent;
    pointer-events: none;
    /* read only effect */
}

.suk-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    height: 55px; /* Taller for modern look */
    padding: 0 30px;
    border-radius: 12px; /* modern slight curves */
    border: none;
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05); /* Soft shadow */
    position: relative;
    overflow: hidden;
}

.suk-btn-addcart {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%); /* Modern blue gradient */
    color: #fff;
    flex: 1;
}

.suk-btn-addcart:hover {
    background: linear-gradient(135deg, #2a5298 0%, #1e3c72 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(30, 60, 114, 0.2);
}

.suk-btn-buynow {
    background: linear-gradient(135deg, #ff4b2b 0%, #ff416c 100%); /* modern red/orange gradient */
    color: #fff;
    flex: 1;
}

.suk-btn-buynow:hover {
    background: linear-gradient(135deg, #ff416c 0%, #ff4b2b 100%);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(255, 65, 108, 0.2);
}

.suk-btn-wa {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%); /* Whatsapp brand gradient */
    color: #fff;
    width: 100%;
    font-size: 18px;
    font-weight: 800;
    margin-top: 10px;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.2);
}

.suk-btn-wa:hover {
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
    transform: translateY(-3px);
}

.suk-mini-action {
    display: flex;
    gap: 15px;
    margin-top: 15px;
}

.suk-fav-btn {
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    color: #495057;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 25px;
    width: 100%;
    transition: all 0.3s ease;
    box-shadow: 0 2px 5px rgba(0,0,0,0.02);
}

.suk-fav-btn:hover {
    background: #fff;
    color: #e74c3c;
    border-color: #ffdce0;
    box-shadow: 0 5px 15px rgba(231, 76, 60, 0.1);
    transform: translateY(-2px);
}

/* Delivery info boxes */
.suk-info-boxes {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    background: var(--suk-light);
    padding: 15px;
    border-radius: 8px;
    border: 1px dashed #ccc;
}

.suk-info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
}

.suk-info-icon {
    font-size: 20px;
}

/* Social */
.suk-social-share {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
}

.suk-share-btn {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-decoration: none;
    transition: 0.2s;
    background-size: 50%;
    background-position: center;
    background-repeat: no-repeat;
}

.suk-share-btn:hover {
    opacity: 0.8;
    transform: scale(1.1);
}

/* Custom Social Icons via SVG Data URI */
.suk-share-facebook {
    background-image: url("data:image/svg+xml,%3Csvg fill='%23fff' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M18 2h-3a5 5 0 00-5 5v3H7v4h3v8h4v-8h3l1-4h-4V7a1 1 0 011-1h3V2z'/%3E%3C/svg%3E");
}

.suk-share-twitter {
    background-image: url("data:image/svg+xml,%3Csvg fill='%23fff' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M23 3a10.9 10.9 0 01-3.14 1.53 4.48 4.48 0 00-7.86 3v1A10.66 10.66 0 013 4s-4 9 5 13a11.64 11.64 0 01-7 2c9 5 20 0 20-11.5a4.5 4.5 0 00-.08-.83A7.72 7.72 0 0023 3z'/%3E%3C/svg%3E");
}

.suk-share-whatsapp {
    background-image: url("data:image/svg+xml,%3Csvg fill='%23fff' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21 11.5a8.38 8.38 0 01-.9 3.8 8.5 8.5 0 01-7.6 4.7 8.38 8.38 0 01-3.8-.9L3 21l1.9-5.7a8.38 8.38 0 01-.9-3.8 8.5 8.5 0 014.7-7.6 8.38 8.38 0 013.8-.9h.5a8.48 8.48 0 018 8v.5z'/%3E%3C/svg%3E");
}

.suk-share-linkedin {
    background-image: url("data:image/svg+xml,%3Csvg fill='%23fff' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16 8a6 6 0 016 6v7h-4v-7a2 2 0 00-2-2 2 2 0 00-2 2v7h-4v-7a6 6 0 016-6zM2 9h4v12H2zM4 6a2 2 0 110-4 2 2 0 010 4z'/%3E%3C/svg%3E");
}

.suk-share-pinterest {
    background-image: url("data:image/svg+xml,%3Csvg fill='%23fff' xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M12 2C6.5 2 2 6.5 2 12c0 4.3 2.7 8 6.5 9.4-.1-1-.2-2.5 0-3.5.2-.9 1.4-5.9 1.4-5.9s-.4-.7-.4-1.8c0-1.7 1-2.9 2.2-2.9 1 0 1.5.8 1.5 1.7 0 1-.7 2.6-1.1 4-.3 1.2.6 2.2 1.8 2.2 2.1 0 3.8-2.2 3.8-5.5 0-2.9-2.1-4.9-5-4.9-3.4 0-5.3 2.5-5.3 5.1 0 1 .4 2.1.9 2.7.1.1.1.2.1.3-.1.4-.3 1.1-.3 1.3-.1.2-.2.3-.4.2-1.5-.7-2.4-2.9-2.4-4.7 0-3.8 2.8-7.3 8-7.3 4.2 0 7.5 3 7.5 7 0 4.2-2.6 7.6-6.3 7.6-1.2 0-2.4-.6-2.8-1.4l-.8 2.9c-.3 1-1 2.4-1.5 3.2 1.3.4 2.6.6 4 .6 5.5 0 10-4.5 10-10S17.5 2 12 2z'/%3E%3C/svg%3E");
}

.suk-share-instagram {
    background-image: url("data:image/svg+xml,%3Csvg fill='%23fff' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12 2.163c3.204 0 3.584.012 4.85.07 3.252.148 4.771 1.691 4.919 4.919.058 1.265.069 1.645.069 4.849 0 3.205-.012 3.584-.069 4.849-.149 3.225-1.664 4.771-4.919 4.919-1.266.058-1.644.07-4.85.07-3.204 0-3.584-.012-4.849-.07-3.26-.149-4.771-1.699-4.919-4.92-.058-1.265-.07-1.644-.07-4.849 0-3.204.013-3.583.07-4.849.149-3.227 1.664-4.771 4.919-4.919 1.266-.057 1.645-.069 4.849-.069zm0-2.163c-3.259 0-3.667.014-4.947.072-4.358.2-6.78 2.618-6.98 6.98-.059 1.281-.073 1.689-.073 4.948 0 3.259.014 3.668.072 4.948.2 4.358 2.618 6.78 6.98 6.98 1.281.058 1.689.072 4.948.072 3.259 0 3.668-.014 4.948-.072 4.354-.2 6.782-2.618 6.979-6.98.059-1.28.073-1.689.073-4.948 0-3.259-.014-3.667-.072-4.947-.196-4.354-2.617-6.78-6.979-6.98-1.281-.059-1.69-.073-4.949-.073zm0 5.838c-3.403 0-6.162 2.759-6.162 6.162s2.759 6.163 6.162 6.163 6.162-2.759 6.162-6.163c0-3.403-2.759-6.162-6.162-6.162zm0 10.162c-2.209 0-4-1.79-4-4 0-2.209 1.791-4 4-4s4 1.791 4 4c0 2.21-1.791 4-4 4zm6.406-11.845c-.796 0-1.441.645-1.441 1.44s.645 1.44 1.441 1.44c.795 0 1.439-.645 1.439-1.44s-.644-1.44-1.439-1.44z'/%3E%3C/svg%3E"), radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.suk-share-tiktok {
    background-image: url("data:image/svg+xml,%3Csvg fill='%23fff' viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M12.525.02c1.31-.032 2.61.1 3.84.41l.04.11c.49 1.41 1.42 2.64 2.59 3.55.9.69 1.95 1.19 3.09 1.45l.08.02.02 3.91-.18-.04a7.96 7.96 0 01-5.12-3.23l-.15-.19V15.5a8 8 0 01-8 8 8 8 0 01-8-8 8 8 0 018-8c.4 0 .8.04 1.2.12v4.06a3.91 3.91 0 00-1.2-.18c-2.14 0-3.91 1.77-3.91 3.91a3.91 3.91 0 003.91 3.91A3.91 3.91 0 0012.3 15.6l.03-15.58z'/%3E%3C/svg%3E");
    background-color: #000;
}

/* ── MERKEZİ BUTONLAR SATIRI ── */
.suk-center-buttons {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 50px;
    padding: 20px 0;
    border-top: 1px solid var(--suk-border);
    border-bottom: 1px solid var(--suk-border);
}

.suk-center-buttons a {
    display: inline-block;
    padding: 10px 20px;
    color: var(--suk-primary);
    background: #fff;
    border: 1px solid #ddd;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: 0.3s;
}

.suk-center-buttons a:hover {
    border-color: var(--suk-secondary);
    color: var(--suk-secondary);
    box-shadow: var(--suk-card-shadow);
}


/* ── AÇIKLAMA ── */
.suk-product-content {
    margin-bottom: 40px;
}

/* ── MÜŞTERİ PANELİ (HESABIM) ── */
.suk-cp-container {
    max-width: 1200px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 30px;
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--suk-text);
}

.suk-cp-sidebar {
    background: #fff;
    border: 1px solid var(--suk-border);
    border-radius: var(--suk-radius);
    padding: 30px 20px;
    box-shadow: var(--suk-card-shadow);
}

.suk-cp-user-info {
    text-align: center;
    border-bottom: 1px dashed var(--suk-border);
    padding-bottom: 20px;
    margin-bottom: 20px;
}

.suk-cp-avatar img {
    border-radius: 50%;
    margin-bottom: 10px;
}

.suk-cp-user-info h4 {
    margin: 0;
    font-size: 18px;
    color: var(--suk-primary);
}

.suk-cp-user-info p {
    margin: 5px 0 0;
    font-size: 13px;
    color: #888;
}

.suk-cp-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.suk-cp-menu li a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    color: #555;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    border-radius: 8px;
    transition: 0.2s;
}

.suk-cp-menu li a:hover,
.suk-cp-menu li a.active {
    background: var(--suk-light);
    color: var(--suk-secondary);
}

.suk-cp-icon {
    font-size: 18px;
}

.suk-cp-content {
    background: #fff;
    border: 1px solid var(--suk-border);
    border-radius: var(--suk-radius);
    padding: 40px;
    box-shadow: var(--suk-card-shadow);
}

.suk-cp-header h2 {
    margin-top: 0;
    color: var(--suk-primary);
    font-size: 26px;
    border-bottom: 2px solid var(--suk-light);
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.suk-cp-empty {
    text-align: center;
    padding: 60px 0;
    color: #777;
}

.suk-empty-icon {
    font-size: 60px;
    display: block;
    margin-bottom: 15px;
}

.suk-form-group {
    margin-bottom: 20px;
}

.suk-form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 14px;
}

.suk-form-group input {
    width: 100%;
    height: 50px;
    padding: 0 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
    outline: none;
    font-size: 15px;
}

.suk-btn-save {
    background: var(--suk-primary);
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 8px;
    cursor: pointer;
    transition: 0.3s;
}

.suk-btn-save:hover {
    background: var(--suk-secondary);
    transform: translateY(-2px);
}

@media (max-width: 992px) {
    .suk-cp-container {
        grid-template-columns: 1fr;
    }
}

.suk-product-content h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--suk-primary);
}

/* ── SEPET VE ÖDEME (CHECKOUT) EKRANI ── */
.suk-checkout-container {
    max-width: 1200px;
    margin: 60px auto;
    display: grid;
    grid-template-columns: 1fr 350px;
    gap: 40px;
    font-family: 'Inter', -apple-system, sans-serif;
    color: var(--suk-text);
}

.suk-checkout-left h2.suk-checkout-title {
    font-size: 22px;
    color: var(--suk-primary);
    border-bottom: 2px solid var(--suk-light);
    padding-bottom: 15px;
    margin-bottom: 30px;
}

.suk-cart-list {
    margin-bottom: 40px;
}

.suk-cart-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 15px;
    border: 1px solid var(--suk-border);
    border-radius: var(--suk-radius);
    margin-bottom: 15px;
    background: #fff;
    position: relative;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
}

.suk-cart-item img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
    border: 1px solid #eee;
}

.suk-cart-meta {
    flex: 1;
}

.suk-cart-meta h4 {
    margin: 0 0 5px 0;
    font-size: 16px;
}

.suk-cart-meta h4 a {
    color: var(--suk-primary);
    text-decoration: none;
}

.suk-cart-meta h4 a:hover {
    color: var(--suk-secondary);
}

.suk-cart-sku {
    font-size: 13px;
    color: #888;
}

.suk-cart-qty {
    display: flex;
    align-items: center;
    border: 1px solid #ddd;
    border-radius: 30px;
    overflow: hidden;
    height: 40px;
}

.suk-cart-qty-btn {
    width: 30px;
    height: 100%;
    border: none;
    background: #fff;
    cursor: pointer;
    font-size: 18px;
    color: #555;
}

.suk-cart-qty-btn:hover {
    background: #f0f0f0;
}

.suk-cart-qty-input {
    width: 40px;
    text-align: center;
    border: none;
    font-weight: bold;
    background: transparent;
    font-size: 14px;
}

.suk-cart-price {
    width: 100px;
    text-align: right;
    font-size: 18px;
    color: var(--suk-primary);
}

.suk-cart-remove {
    position: absolute;
    top: -10px;
    right: -10px;
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background: #e74c3c;
    color: #fff;
    border: none;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 6px rgba(231, 76, 60, 0.3);
}

.suk-cart-remove:hover {
    background: #c0392b;
}

.suk-co-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.suk-payment-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.suk-pm-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    border: 2px solid var(--suk-border);
    border-radius: 12px;
    cursor: pointer;
    transition: 0.2s;
}

.suk-pm-item:hover,
.suk-pm-item input:checked+.suk-pm-box {
    border-color: var(--suk-secondary);
    background: #fffafa;
}

.suk-pm-box {
    display: flex;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.suk-pm-icon {
    font-size: 30px;
}

.suk-pm-info strong {
    display: block;
    font-size: 16px;
    color: var(--suk-primary);
}

.suk-pm-info p {
    margin: 5px 0 0;
    font-size: 13px;
    color: #777;
}

/* Sipariş Özeti (Sağ Kolon) */
.suk-checkout-right {
    position: relative;
}

.suk-summary-box {
    background: #fff;
    border: 1px solid var(--suk-border);
    border-radius: 16px;
    padding: 30px;
    box-shadow: var(--suk-card-shadow);
    position: sticky;
    top: 100px;
}

.suk-summary-box h3 {
    margin-top: 0;
    font-size: 20px;
    color: var(--suk-primary);
    border-bottom: 2px solid var(--suk-light);
    padding-bottom: 15px;
    margin-bottom: 20px;
}

/* ==========================================================================
   TAKSİT PANELİ (Otomatik Hesaplanan Varsayılan Şablon)
   ========================================================================== */

.wp-installment-panel {
    font-family: "Inter", system-ui, -apple-system, sans-serif;
    line-height: 1.5;
    color: #1e293b;
    max-width: 1100px;
    margin: 0 auto;
    box-sizing: border-box;
    margin-top: 15px;
}

.wp-installment-panel * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.wp-installment-panel .installment-panel {
    background: #ffffff;
    border-radius: 20px;
    padding: 1.5rem;
    box-shadow: 0 10px 30px -10px rgba(0, 20, 40, 0.1);
    border: 1px solid #edf2f9;
}

.wp-installment-panel .panel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
    gap: 10px;
}

.wp-installment-panel .panel-header h2 {
    font-size: 1.4rem;
    font-weight: 600;
    color: #0b1d33;
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.wp-installment-panel .panel-header h2 i {
    color: var(--suk-secondary);
    font-size: 1.3rem;
    background: #fff0ed;
    padding: 8px;
    border-radius: 12px;
}

.wp-installment-panel .info-badge {
    background: #f1f5f9;
    border-radius: 60px;
    padding: 0.4rem 1rem;
    font-size: 0.8rem;
    font-weight: 500;
    color: #475569;
    border: 1px solid #e2e8f0;
}

/* banka kartları */
.wp-installment-panel .bank-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.wp-installment-panel .bank-item {
    background: #fafcff;
    border-radius: 16px;
    padding: 1.2rem;
    transition: all 0.2s ease;
    border: 1px solid #eef2f8;
}

.wp-installment-panel .bank-item:hover {
    border-color: #cbd5e1;
    box-shadow: 0 4px 12px rgba(20, 60, 120, 0.05);
    background: #ffffff;
}

.wp-installment-panel .bank-name {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1a202c;
    margin-bottom: 1rem;
    border-bottom: 1px dashed #dde3ed;
    padding-bottom: 0.8rem;
}

.wp-installment-panel .bank-name i {
    font-size: 1.2rem;
    color: var(--suk-secondary);
    background: white;
    padding: 6px;
    border-radius: 8px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    width: 2rem;
    text-align: center;
}

/* grid yapısı */
.wp-installment-panel .installment-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
    gap: 10px;
}

.wp-installment-panel .installment-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 0.8rem 0.6rem 0.8rem 0.8rem;
    border: 1px solid #e7ecf3;
    transition: all 0.15s;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
}

.wp-installment-panel .installment-card:hover {
    transform: translateY(-2px);
    border-color: #b9c8dd;
    box-shadow: 0 4px 10px rgba(30, 60, 120, 0.08);
}

.wp-installment-panel .term {
    font-size: 0.95rem;
    font-weight: 700;
    color: #132b44;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 4px;
}

.wp-installment-panel .term i {
    font-size: 0.8rem;
    color: #94a3b8;
}

.wp-installment-panel .monthly {
    font-size: 1.1rem;
    font-weight: 700;
    color: #0b2542;
    line-height: 1.2;
}

.wp-installment-panel .total {
    font-size: 0.7rem;
    color: #64748b;
    margin: 4px 0 6px;
    background: #f8fafc;
    padding: 0.2rem 0.4rem;
    border-radius: 4px;
    display: inline-block;
    align-self: flex-start;
    font-weight: 500;
}

.wp-installment-panel .badge {
    font-size: 0.65rem;
    font-weight: 600;
    padding: 0.2rem 0.6rem;
    border-radius: 40px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    width: fit-content;
    margin-top: 2px;
    color: #1e293b;
    border: 1px solid #e2e8f0;
}

.wp-installment-panel .badge.free {
    background: #f0fdf4;
    color: #166534;
    border-color: #bbf7d0;
}

.wp-installment-panel .badge.free i {
    color: #22c55e;
}

.wp-installment-panel .badge.interest {
    background: #fef2f2;
    color: #991b1b;
    border-color: #fecaca;
}

.wp-installment-panel .badge.interest i {
    color: #ef4444;
}

/* responsive */
@media (max-width: 600px) {
    .wp-installment-panel .installment-panel {
        padding: 1rem;
    }

    .wp-installment-panel .installment-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 400px) {
    .wp-installment-panel .installment-grid {
        grid-template-columns: 1fr;
    }
}

.wp-installment-panel .footnote {
    margin-top: 1.2rem;
    font-size: 0.75rem;
    color: #94a3b8;
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px dashed #e2e8f0;
    padding-top: 1rem;
}

/* ==========================================================================
   ÖZEL İÇERİK (USER HTML) İÇİN TAKSİT TABLOSU GRID YAPISI
   ========================================================================== */
.suk-custom-installments-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    align-items: start;
}

.suk-custom-installments-wrapper>table,
.suk-custom-installments-wrapper>div,
.suk-custom-installments-wrapper>p>table {
    width: 100% !important;
    background: #fff;
    border: 1px solid var(--suk-border);
    border-radius: 8px;
    overflow: hidden;
    margin: 0 !important;
}

/* Responsive Custom Grid */
@media (max-width: 992px) {
    .suk-custom-installments-wrapper {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 600px) {
    .suk-custom-installments-wrapper {
        grid-template-columns: 1fr;
    }
}

.suk-summary-lines {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}

.suk-summary-lines li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    font-size: 15px;
    color: #555;
}

.suk-summary-lines li span {
    font-weight: 600;
    color: var(--suk-primary);
}

.suk-summary-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    margin-bottom: 20px;
    border-top: 2px dashed var(--suk-border);
    font-size: 18px;
    font-weight: 800;
    color: var(--suk-primary);
}

.suk-summary-total span {
    font-size: 24px;
    color: var(--suk-secondary);
}

.suk-btn-complete {
    width: 100%;
    background: var(--suk-secondary);
    color: #fff;
    border: none;
    height: 55px;
    font-size: 18px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: bold;
    transition: 0.3s;
}

.suk-btn-complete:hover {
    background: #e62f15;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 60, 32, 0.3);
}

@media (max-width: 992px) {
    .suk-checkout-container {
        grid-template-columns: 1fr;
    }

    .suk-co-grid {
        grid-template-columns: 1fr;
    }
}

/* Modal / Popup for Success Message */
.suk-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 999999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: 0.3s;
}

.suk-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.suk-modal-box {
    background: #fff;
    width: 90%;
    max-width: 600px;
    border-radius: 12px;
    padding: 40px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    transform: translateY(-20px);
    transition: 0.3s;
}

.suk-modal-overlay.active .suk-modal-box {
    transform: translateY(0);
}

.suk-modal-icon {
    font-size: 60px;
    margin-bottom: 20px;
    color: #27ae60;
}

.suk-modal-title {
    font-size: 24px;
    color: var(--suk-primary);
    margin-bottom: 15px;
}

.suk-modal-content {
    font-size: 15px;
    color: #555;
    line-height: 1.6;
    margin-bottom: 30px;
}

.suk-modal-content strong {
    color: #111;
}

.suk-modal-btn {
    display: inline-block;
    background: var(--suk-secondary);
    color: #fff;
    padding: 12px 30px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
}

.suk-modal-btn:hover {
    background: #e62f15;
}

/* ── EDITOR CONTENT ── */
.suk-editor-content {
    line-height: 1.8;
    color: #444;
}

/* ── AKORDİYON (BILGI KUTULARI) ── */
.suk-accordion-wrap {
    margin-bottom: 50px;
}

.suk-accordion-item {
    border: 1px solid var(--suk-border);
    border-radius: 8px;
    margin-bottom: 10px;
    overflow: hidden;
}

.suk-accordion-title {
    width: 100%;
    background: var(--suk-light);
    border: none;
    padding: 15px 20px;
    text-align: left;
    font-size: 16px;
    font-weight: 600;
    color: var(--suk-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: 0.3s;
}

.suk-accordion-title:hover {
    background: #eee;
}

.suk-accordion-content {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s;
}

.suk-accordion-item.open .suk-accordion-content {
    padding: 15px 20px;
    max-height: 8000px;
    /* Büyük metin için yetecek yükseklik */
}

.suk-accordion-item.open .suk-accordion-title {
    background: #fff;
    border-bottom: 1px solid var(--suk-border);
}

.suk-accordion-item.open .suk-accordion-title span {
    transform: rotate(45deg);
    /* + simgesini x yapar */
}

/* ── ÜRÜN KARTLARI & IZGARA (ARŞİV VE KISA KOD) ── */
.suk-archive-header {
    margin-bottom: 40px;
    text-align: center;
}

.suk-archive-header h1 {
    font-size: 36px;
    color: var(--suk-primary);
    font-weight: 800;
}

.suk-archive-desc {
    color: #666;
    max-width: 600px;
    margin: 10px auto;
    line-height: 1.6;
}

.suk-related-products h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--suk-primary);
}

.suk-product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.suk-card {
    background: #fff;
    border: 1px solid var(--suk-border);
    border-radius: var(--suk-radius);
    padding: 15px;
    transition: 0.3s;
    display: flex;
    flex-direction: column;
}

.suk-card:hover {
    box-shadow: var(--suk-card-shadow);
    border-color: #ddd;
    transform: translateY(-5px);
}

.suk-card-img-wrap {
    position: relative;
    display: block;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 15px;
}

.suk-card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.5s;
}

.suk-card:hover .suk-card-img-wrap img {
    transform: scale(1.05);
}

.suk-card-sku {
    font-size: 12px;
    color: #999;
    margin: 5px 0 0 0;
}

.suk-card-body h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 5px 0 10px 0;
    line-height: 1.4;
}

.suk-card-body h3 a {
    color: var(--suk-primary);
    text-decoration: none;
}

.suk-card-body h3 a:hover {
    color: var(--suk-secondary);
}

.suk-card-price-area {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.suk-card .suk-old-price {
    font-size: 14px;
    color: #999;
    text-decoration: line-through;
}

.suk-card .suk-price {
    font-size: 20px;
    font-weight: 800;
    color: var(--suk-secondary);
}

.suk-card .suk-price span {
    font-size: 12px;
    font-weight: normal;
    color: #666;
}

.suk-card-buttons {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: auto;
}

.suk-card-buttons .suk-btn {
    height: 42px;
    padding: 0 15px;
    font-size: 13px;
    border-radius: 8px;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.suk-btn-cart {
    background: #111;
    color: #fff;
    border: 1px solid #111;
}

.suk-btn-cart:hover {
    background: #333;
    border-color: #333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.suk-btn-detail {
    background: #fff;
    color: #111;
    border: 1px solid #e0e0e0;
    text-decoration: none;
}

.suk-btn-detail:hover {
    background: #f8f9fa;
    border-color: #111;
    color: #111;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.suk-btn-detail i {
    font-size: 16px;
    opacity: 0.7;
}

/* ── VİDEO POPUP ── */
#suk-video-popup {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    /* En üstte duracak */
    display: flex;
    align-items: center;
    justify-content: center;
}

.suk-popup-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
}

.suk-popup-content {
    position: relative;
    max-width: 800px;
    width: 90%;
    z-index: 2;
}

.suk-popup-content video {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.suk-popup-close {
    position: absolute;
    top: -40px;
    right: -20px;
    background: none;
    border: none;
    color: #fff;
    font-size: 40px;
    cursor: pointer;
}


/* ── RESPONSIVE YAPI (MOBİL UYUM) ── */
@media (max-width: 992px) {
    .suk-product-top {
        grid-template-columns: 1fr;
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .suk-product-title {
        font-size: 26px;
    }

    .suk-realprice-val {
        font-size: 28px;
    }

    .suk-center-buttons {
        justify-content: flex-start;
    }
}