/* =========================================================
   Vadi Bilgisayar - Profesyonel Ürün Detay Sayfası
   - Daha dar galeri
   - Daha zarif başlık
   - Premium satın alma paneli
   - Görsele tıklayınca zoom/lightbox desteği
   - Mevcut aq-* JS selectorları korunur
========================================================= */

:root {
    --vb-red: #b60000;
    --vb-red-dark: #870000;
    --vb-red-soft: rgba(182, 0, 0, 0.075);
    --vb-red-border: rgba(182, 0, 0, 0.2);

    --vb-black: #090909;
    --vb-dark: #111827;
    --vb-text: #1f2937;
    --vb-muted: #64748b;
    --vb-soft: #94a3b8;

    --vb-border: #e5ebf2;
    --vb-border-soft: #eef2f6;
    --vb-page: #f7f9fc;
    --vb-card: #ffffff;

    --vb-green: #15803d;
    --vb-yellow: #f59e0b;

    --vb-container: 1560px;
    --vb-radius: 18px;
    --vb-radius-lg: 24px;

    --vb-shadow-soft: 0 10px 28px rgba(15, 23, 42, 0.045);
    --vb-shadow: 0 16px 44px rgba(15, 23, 42, 0.07);
    --vb-shadow-lg: 0 26px 70px rgba(15, 23, 42, 0.12);

    --vb-transition: 220ms ease;
}

/* Genel container */

.vb-product-detail-page .vb-container,
.vb-product-info-section .vb-container,
.vb-product-reviews-section .vb-container,
.vb-related-section .vb-container,
.aq-product-detail-page .aq-container,
.aq-product-info-section .aq-container,
.aq-product-reviews-section .aq-container,
.aq-related-section .aq-container {
    width: min(100% - 44px, var(--vb-container));
    max-width: var(--vb-container);
    margin-left: auto;
    margin-right: auto;
}

/* Sayfa zemini */

.vb-product-detail-page {
    padding: 22px 0 40px;
    background:
        radial-gradient(780px 280px at 100% 0%, rgba(182, 0, 0, 0.04), transparent 62%),
        radial-gradient(620px 260px at 0% 12%, rgba(15, 23, 42, 0.035), transparent 64%),
        linear-gradient(180deg, #ffffff 0%, #f7f9fc 100%);
    font-family: var(--vb-font-main, "Roboto", Arial, sans-serif);
}

/* Breadcrumb */

.vb-product-breadcrumb {
    margin-bottom: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 500;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.vb-product-breadcrumb::-webkit-scrollbar {
    display: none;
}

.vb-product-breadcrumb a {
    color: #64748b;
    text-decoration: none;
    font-weight: 600;
    transition: color var(--vb-transition);
}

.vb-product-breadcrumb a:hover {
    color: var(--vb-red);
}

.vb-product-breadcrumb i {
    color: #cbd5e1;
    font-size: 10px;
}

.vb-product-breadcrumb span {
    color: #94a3b8;
    font-weight: 500;
}

/* Ana layout */

.vb-product-detail-layout {
    display: grid;
    grid-template-columns: minmax(420px, 0.68fr) minmax(0, 1fr);
    gap: 24px;
    align-items: flex-start;
}

/* Sol galeri */

.vb-product-gallery {
    min-width: 0;
}

.vb-product-gallery-main {
    position: relative;
    height: 430px;
    border: 1px solid var(--vb-border);
    border-radius: 24px;
    background:
        radial-gradient(circle at 50% 42%, rgba(15, 23, 42, 0.04), transparent 58%),
        linear-gradient(180deg, #ffffff 0%, #fbfcfd 100%);
    box-shadow: var(--vb-shadow);
    overflow: hidden;
    cursor: zoom-in;
}

.vb-product-gallery-main img {
    width: 100%;
    height: 100%;
    padding: 28px;
    object-fit: contain;
    object-position: center;
    background: transparent;
    transition: transform 380ms ease, opacity 160ms ease;
}

.vb-product-gallery-main:hover img {
    transform: scale(1.018);
}

.vb-detail-fav {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 5;
    width: 40px;
    height: 40px;
    border: 1px solid var(--vb-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: #111827;
    display: grid;
    place-items: center;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.075);
    transition:
        background var(--vb-transition),
        color var(--vb-transition),
        border-color var(--vb-transition),
        transform var(--vb-transition);
}

.vb-detail-fav:hover,
.vb-detail-fav.is-active {
    background: #fff1f1;
    color: var(--vb-red);
    border-color: var(--vb-red-border);
    transform: translateY(-1px);
}

.vb-detail-fav i {
    font-size: 18px;
}

.vb-detail-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    z-index: 5;
    min-height: 28px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--vb-red);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 750;
    box-shadow: 0 10px 22px rgba(182, 0, 0, 0.18);
}

/* Thumbnail slider */

.vb-product-thumbs-slider {
    position: relative;
    margin-top: 12px;
    padding: 0 36px;
}

.vb-product-thumbs-viewport {
    width: 100%;
    overflow: hidden;
}

.vb-product-thumbs {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 9px !important;
    width: max-content;
    margin-top: 0 !important;
    transform: translate3d(0, 0, 0);
    transition: transform 260ms ease;
    will-change: transform;
}

.vb-product-thumbs button {
    width: 76px !important;
    min-width: 76px !important;
    height: 66px !important;
    padding: 5px !important;
    border: 1px solid var(--vb-border);
    border-radius: 14px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 7px 18px rgba(15, 23, 42, 0.035);
    cursor: pointer;
    transition:
        border-color var(--vb-transition),
        box-shadow var(--vb-transition),
        transform var(--vb-transition);
}

.vb-product-thumbs button:hover,
.vb-product-thumbs button.is-active {
    border-color: rgba(182, 0, 0, 0.34);
    box-shadow: 0 10px 24px rgba(182, 0, 0, 0.08);
}

.vb-product-thumbs button.is-active {
    transform: translateY(-1px);
}

.vb-product-thumbs img {
    width: 100%;
    height: 100%;
    padding: 3px;
    object-fit: contain;
    object-position: center;
    border-radius: 10px;
    background: #ffffff;
}

.vb-product-thumbs-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 30px;
    height: 30px;
    border: 1px solid var(--vb-border);
    border-radius: 999px;
    background: #ffffff;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    box-shadow: 0 9px 20px rgba(15, 23, 42, 0.08);
    transition:
        background var(--vb-transition),
        color var(--vb-transition),
        border-color var(--vb-transition),
        opacity var(--vb-transition);
}

.vb-product-thumbs-arrow:hover {
    background: var(--vb-red);
    color: #ffffff;
    border-color: var(--vb-red);
}

.vb-product-thumbs-prev {
    left: 0;
}

.vb-product-thumbs-next {
    right: 0;
}

.vb-product-thumbs-arrow.is-disabled {
    opacity: .35;
    pointer-events: none;
}

.vb-product-thumbs-slider[data-thumb-count="2"] .vb-product-thumbs,
.vb-product-thumbs-slider[data-thumb-count="3"] .vb-product-thumbs,
.vb-product-thumbs-slider[data-thumb-count="4"] .vb-product-thumbs {
    width: 100%;
    justify-content: center;
}

.vb-product-thumbs-slider[data-thumb-count="2"] .vb-product-thumbs-arrow,
.vb-product-thumbs-slider[data-thumb-count="3"] .vb-product-thumbs-arrow,
.vb-product-thumbs-slider[data-thumb-count="4"] .vb-product-thumbs-arrow {
    display: none;
}

/* Sağ ürün bilgi kartı */

.vb-product-summary {
    position: relative;
    padding: 0;
    border: 1px solid var(--vb-border);
    border-radius: 24px;
    background: #ffffff;
    box-shadow: var(--vb-shadow);
    overflow: hidden;
}

/* Sağ panel üst bölümü */

.vb-product-summary::before {
    content: "";
    display: block;
    height: 5px;
    background: linear-gradient(90deg, var(--vb-red), #111111);
}

.vb-product-code-row,
.vb-product-summary h1,
.vb-detail-rating,
.vb-product-short-desc,
.vb-product-options,
.vb-detail-price-box,
.vb-currency-info-box,
.vb-tax-info-box,
.vb-stock-info-box,
.vb-detail-benefits,
.vb-product-cart-form,
.vb-purchase-closed,
.vb-detail-whatsapp,
.vb-product-meta {
    margin-left: 22px;
    margin-right: 22px;
}

.vb-product-code-row {
    margin-top: 18px;
    margin-bottom: 11px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--vb-border-soft);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.vb-product-code-row > span:first-child {
    color: var(--vb-muted);
    font-size: 11.8px;
    font-weight: 600;
}

.vb-stock-badge {
    min-height: 27px;
    padding: 0 10px;
    border-radius: 999px;
    background: #ecfdf3;
    color: var(--vb-green);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11px;
    font-weight: 750;
    white-space: nowrap;
}

.vb-stock-badge.is-passive {
    background: #fff1f1;
    color: var(--vb-red);
}

/* Başlık profesyonel ölçü */

.vb-product-summary h1 {
    margin-top: 0;
    margin-bottom: 0;
    color: #111827;
    font-size: clamp(20px, 1.32vw, 25px);
    font-weight: 750;
    line-height: 1.28;
    letter-spacing: -0.35px;
}

/* Rating */

.vb-detail-rating {
    margin-top: 11px;
    padding-bottom: 13px;
    border-bottom: 1px solid var(--vb-border-soft);
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.vb-detail-rating div {
    display: flex;
    gap: 2px;
    color: var(--vb-yellow);
    font-size: 12px;
}

.vb-detail-rating strong {
    color: #111827;
    font-size: 12px;
    font-weight: 750;
}

.vb-detail-rating span {
    color: var(--vb-muted);
    font-size: 11.6px;
    font-weight: 500;
}

/* Kısa açıklama */

.vb-product-short-desc {
    margin-top: 12px;
    margin-bottom: 0;
    color: #64748b;
    font-size: 12.8px;
    font-weight: 400;
    line-height: 1.62;
}

/* Seçenekler */

.vb-product-options {
    margin-top: 14px;
    padding: 13px;
    border: 1px solid var(--vb-border-soft);
    border-radius: 16px;
    background: #f8fafc;
}

.vb-product-options > span {
    display: block;
    margin-bottom: 8px;
    color: #111827;
    font-size: 11.8px;
    font-weight: 750;
}

.vb-product-options > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vb-product-options a,
.vb-product-options strong {
    min-height: 32px;
    padding: 0 11px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    font-size: 11.8px;
    font-weight: 600;
    text-decoration: none;
}

.vb-product-options a {
    border: 1px solid var(--vb-border);
    background: #ffffff;
    color: #1f2937;
}

.vb-product-options strong {
    border: 1px solid var(--vb-red);
    background: #fff1f1;
    color: var(--vb-red);
}

/* Fiyat alanı */

.vb-detail-price-box {
    margin-top: 16px;
    padding: 16px;
    border: 1px solid var(--vb-border-soft);
    border-radius: 20px;
    background:
        radial-gradient(circle at 100% 0%, rgba(182, 0, 0, 0.055), transparent 40%),
        linear-gradient(180deg, #fbfcfd 0%, #f8fafc 100%);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.vb-detail-price {
    display: grid;
    gap: 3px;
}

.vb-detail-price > span {
    color: #64748b;
    font-size: 10.8px;
    font-weight: 750;
    text-transform: uppercase;
    letter-spacing: .35px;
}

.vb-detail-price > span em {
    margin-left: 5px;
    padding: 2px 7px;
    border-radius: 999px;
    background: #fff1f1;
    color: var(--vb-red);
    font-style: normal;
    font-size: 9.5px;
    font-weight: 750;
    text-transform: none;
    letter-spacing: 0;
}

.vb-detail-price strong {
    color: #090909;
    font-size: clamp(27px, 2vw, 34px);
    font-weight: 850;
    letter-spacing: -0.8px;
    line-height: 1.05;
}

.vb-detail-price small {
    color: #64748b;
    font-size: 12px;
    font-weight: 500;
}

.vb-detail-price del {
    margin-top: 3px;
    color: #94a3b8;
    font-size: 12.5px;
    font-weight: 500;
}

.vb-detail-price del small {
    margin-left: 4px;
    font-size: 10.8px;
}

.vb-detail-discount {
    width: 62px;
    height: 62px;
    border-radius: 19px;
    background: var(--vb-red);
    color: #ffffff;
    display: grid;
    place-items: center;
    align-content: center;
    box-shadow: 0 12px 24px rgba(182, 0, 0, 0.16);
}

.vb-detail-discount strong {
    font-size: 17px;
    font-weight: 850;
    line-height: 1;
}

.vb-detail-discount span {
    margin-top: 4px;
    font-size: 9.5px;
    font-weight: 750;
}

/* Kur / KDV / stok bilgi kutuları */

.vb-tax-info-box,
.vb-stock-info-box {
    margin-top: 9px;
    min-height: 46px;
    padding: 10px 12px;
    border: 1px solid var(--vb-border-soft);
    border-radius: 15px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 13px;
}

.vb-tax-info-box div,
.vb-stock-info-box div {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #4b5563;
    font-size: 11.8px;
    font-weight: 650;
}

.vb-tax-info-box i {
    color: var(--vb-red);
    font-size: 15px;
}

.vb-stock-info-box i {
    color: var(--vb-green);
    font-size: 15px;
}

.vb-tax-info-box > strong,
.vb-stock-info-box > strong {
    color: #111827;
    font-size: 12.3px;
    font-weight: 750;
    text-align: right;
}

.vb-tax-info-box strong small {
    display: block;
    margin-top: 2px;
    color: #64748b;
    font-size: 10.5px;
    font-weight: 500;
}

/* Fayda kutuları */

.vb-detail-benefits {
    margin-top: 12px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
}

.vb-detail-benefits div {
    min-height: 74px;
    padding: 11px 10px;
    border: 1px solid var(--vb-border-soft);
    border-radius: 15px;
    background: #fbfcfd;
    color: #4b5563;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 7px;
    font-size: 11.5px;
    font-weight: 500;
    line-height: 1.35;
}

.vb-detail-benefits i {
    color: var(--vb-red);
    font-size: 17px;
}

/* Adet ve satın alma */

.vb-product-cart-form {
    margin-top: 15px;
    padding-top: 14px;
    border-top: 1px solid var(--vb-border-soft);
}

.vb-quantity-area {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.vb-quantity-area > span {
    color: #111827;
    font-size: 12.5px;
    font-weight: 750;
}

.vb-quantity-control {
    height: 40px;
    border: 1px solid #dfe6ee;
    border-radius: 999px;
    background: #ffffff;
    display: grid;
    grid-template-columns: 38px 52px 38px;
    overflow: hidden;
}

.vb-quantity-control button {
    border: 0;
    background: #f8fafc;
    color: var(--vb-red);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition:
        background var(--vb-transition),
        color var(--vb-transition);
}

.vb-quantity-control button:hover {
    background: var(--vb-red);
    color: #ffffff;
}

.vb-quantity-control input {
    width: 52px;
    border: 0;
    outline: none;
    background: #ffffff;
    color: #111827;
    text-align: center;
    font-size: 12.5px;
    font-weight: 750;
}

.vb-detail-actions {
    margin-top: 13px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 9px;
}

.vb-detail-add-cart,
.vb-detail-buy-now,
.vb-detail-whatsapp {
    min-height: 46px;
    border-radius: 14px;
    border: 0;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 750;
    text-decoration: none;
    cursor: pointer;
    box-shadow: none;
    transition:
        background var(--vb-transition),
        transform var(--vb-transition),
        color var(--vb-transition);
}

.vb-detail-add-cart {
    background: var(--vb-red);
}

.vb-detail-buy-now {
    background: #111111;
}

.vb-detail-whatsapp {
    width: calc(100% - 44px);
    margin-top: 9px;
    background: #16a34a;
}

.vb-detail-add-cart:hover {
    background: var(--vb-red-dark);
    color: #ffffff;
    transform: translateY(-1px);
}

.vb-detail-buy-now:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-1px);
}

.vb-detail-whatsapp:hover {
    background: #15803d;
    color: #ffffff;
    transform: translateY(-1px);
}

.vb-detail-add-cart:disabled,
.vb-detail-buy-now:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
}

/* Satın alma kapalı */

.vb-purchase-closed {
    margin-top: 15px;
    padding: 14px;
    border: 1px solid var(--vb-red-border);
    border-radius: 16px;
    background: #fff7f7;
    color: #1f2937;
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.vb-purchase-closed > i {
    color: var(--vb-red);
    font-size: 19px;
}

.vb-purchase-closed strong {
    display: block;
    color: #111827;
    font-size: 12.8px;
    font-weight: 800;
}

.vb-purchase-closed span {
    display: block;
    margin-top: 4px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.45;
}

/* Meta */

.vb-product-meta {
    margin-top: 14px;
    margin-bottom: 22px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
}

.vb-product-meta div {
    min-height: 57px;
    padding: 10px;
    border: 1px solid var(--vb-border-soft);
    border-radius: 14px;
    background: #f8fafc;
}

.vb-product-meta strong {
    display: block;
    color: #64748b;
    font-size: 10.3px;
    font-weight: 750;
}

.vb-product-meta span {
    display: block;
    margin-top: 5px;
    color: #111827;
    font-size: 11.8px;
    font-weight: 650;
}

/* Açıklama / SSS */

.vb-product-info-section {
    padding: 8px 0 42px;
    background: #ffffff;
}

.vb-product-info-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-items: stretch;
}

.vb-product-info-grid.is-full {
    grid-template-columns: 1fr;
}

.vb-detail-card {
    padding: 22px;
    border: 1px solid var(--vb-border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--vb-shadow-soft);
}

.vb-detail-card-head span {
    color: var(--vb-red);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .9px;
    text-transform: uppercase;
}

.vb-detail-card-head h2 {
    margin: 6px 0 0;
    color: #111827;
    font-size: 23px;
    font-weight: 750;
    letter-spacing: -0.45px;
}

.vb-detail-description {
    margin-top: 15px;
    color: #4b5563;
    font-size: 13.5px;
    font-weight: 400;
    line-height: 1.72;
}

.vb-detail-description p {
    margin: 0 0 13px;
}

.vb-detail-description ul,
.vb-detail-description ol {
    margin: 14px 0 0;
    padding-left: 19px;
}

.vb-detail-description li {
    margin-bottom: 7px;
}

.vb-detail-description table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;
    border-radius: 14px;
}

.vb-detail-description table td,
.vb-detail-description table th {
    padding: 10px;
    border: 1px solid var(--vb-border-soft);
}

/* FAQ */

.vb-faq-list {
    margin: 15px 0 0;
    display: grid;
    gap: 9px;
}

.vb-faq-item {
    border: 1px solid var(--vb-border-soft);
    border-radius: 16px;
    background: #f8fafc;
    overflow: hidden;
}

.vb-faq-item > button {
    width: 100%;
    min-height: 52px;
    padding: 0 14px;
    border: 0;
    background: #f8fafc;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    text-align: left;
    font-size: 12.8px;
    font-weight: 700;
    cursor: pointer;
}

.vb-faq-item > button i {
    color: var(--vb-red);
    transition: transform var(--vb-transition);
}

.vb-faq-item.is-open > button i {
    transform: rotate(180deg);
}

.vb-faq-item > div {
    display: none;
    padding: 0 14px 14px;
}

.vb-faq-item.is-open > div {
    display: block;
}

.vb-faq-item p {
    margin: 0;
    color: #64748b;
    font-size: 12.7px;
    line-height: 1.6;
}

/* Yorumlar */

.vb-product-reviews-section {
    padding: 44px 0;
    background: #f7f9fc;
    border-top: 1px solid #e9eef4;
    border-bottom: 1px solid #e9eef4;
}

.vb-section-title-row {
    margin-bottom: 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 18px;
}

.vb-section-title-center {
    justify-content: center;
    text-align: center;
}

.vb-section-title-row span {
    color: var(--vb-red);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .9px;
    text-transform: uppercase;
}

.vb-section-title-row h2 {
    margin: 6px 0 0;
    color: #111827;
    font-size: 26px;
    font-weight: 750;
    letter-spacing: -0.55px;
}

.vb-reviews-layout {
    display: grid;
    grid-template-columns: 320px minmax(0, 1fr);
    gap: 18px;
    align-items: flex-start;
}

.vb-review-summary-card,
.vb-review-card,
.vb-review-form {
    border: 1px solid var(--vb-border);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: var(--vb-shadow-soft);
}

.vb-review-summary-card {
    position: sticky;
    top: 112px;
    padding: 20px;
}

.vb-review-score {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vb-review-score > strong {
    color: #111827;
    font-size: 44px;
    font-weight: 850;
    letter-spacing: -1.6px;
    line-height: 1;
}

.vb-review-score div {
    display: grid;
    gap: 5px;
}

.vb-review-score span,
.vb-review-stars {
    color: var(--vb-yellow);
    display: flex;
    gap: 2px;
}

.vb-review-score small {
    color: #64748b;
    font-size: 12px;
    font-weight: 650;
}

.vb-review-bars {
    margin-top: 18px;
    display: grid;
    gap: 9px;
}

.vb-review-bars div {
    display: grid;
    grid-template-columns: 58px 1fr 36px;
    gap: 8px;
    align-items: center;
}

.vb-review-bars span,
.vb-review-bars strong {
    color: #64748b;
    font-size: 10.8px;
    font-weight: 750;
}

.vb-review-bars strong {
    text-align: right;
}

.vb-review-bars em {
    height: 8px;
    border-radius: 999px;
    background: #eef2f6;
    overflow: hidden;
}

.vb-review-bars b {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--vb-red);
}

.vb-review-summary-card p {
    margin: 16px 0 0;
    color: #64748b;
    font-size: 12.6px;
    line-height: 1.6;
}

.vb-review-content,
.vb-review-list {
    display: grid;
    gap: 13px;
}

.vb-review-card {
    padding: 17px;
}

.vb-review-card-head {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    gap: 11px;
    align-items: center;
}

.vb-review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #fff1f1;
    color: var(--vb-red);
    display: grid;
    place-items: center;
    font-size: 15px;
    font-weight: 850;
}

.vb-review-card-head strong {
    display: block;
    color: #111827;
    font-size: 13.3px;
    font-weight: 800;
}

.vb-review-card-head span {
    display: block;
    margin-top: 3px;
    color: var(--vb-green);
    font-size: 10.8px;
    font-weight: 750;
}

.vb-review-card-head time {
    color: #94a3b8;
    font-size: 10.8px;
    font-weight: 650;
    white-space: nowrap;
}

.vb-review-stars {
    margin-top: 11px;
    font-size: 12.8px;
}

.vb-review-card p {
    margin: 9px 0 0;
    color: #4b5563;
    font-size: 12.9px;
    line-height: 1.62;
}

/* Yorum form */

.vb-review-form {
    padding: 21px;
}

.vb-review-form-head span {
    color: var(--vb-red);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .9px;
    text-transform: uppercase;
}

.vb-review-form-head h3 {
    margin: 6px 0 0;
    color: #111827;
    font-size: 23px;
    font-weight: 750;
    letter-spacing: -0.45px;
}

.vb-review-form-head p {
    margin: 7px 0 0;
    color: #64748b;
    font-size: 12.7px;
    line-height: 1.55;
}

.vb-review-rating-select {
    margin-top: 16px;
    min-height: 52px;
    padding: 12px 14px;
    border: 1px solid var(--vb-border-soft);
    border-radius: 16px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.vb-review-rating-select > span {
    color: #111827;
    font-size: 12px;
    font-weight: 800;
}

.vb-review-rate-buttons {
    display: inline-flex;
    gap: 5px;
    padding: 4px;
    border: 1px solid var(--vb-border-soft);
    border-radius: 999px;
    background: #ffffff;
}

.vb-review-rate-buttons button {
    width: 30px;
    height: 30px;
    border: 0;
    border-radius: 999px;
    background: #ffffff;
    color: #cbd5e1;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition:
        color var(--vb-transition),
        background var(--vb-transition),
        transform var(--vb-transition);
}

.vb-review-rate-buttons button:hover,
.vb-review-rate-buttons button.is-active {
    background: #fff7e6;
    color: var(--vb-yellow);
    transform: translateY(-1px);
}

.vb-review-customer-box {
    margin-top: 13px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 11px;
}

.vb-review-customer-box > div {
    min-height: 66px;
    padding: 12px 14px;
    border: 1px solid var(--vb-border-soft);
    border-radius: 15px;
    background: #f8fafc;
}

.vb-review-customer-box span {
    display: block;
    margin-bottom: 5px;
    color: #64748b;
    font-size: 11.8px;
    font-weight: 700;
}

.vb-review-customer-box strong {
    display: block;
    color: #111827;
    font-size: 13.5px;
    font-weight: 750;
    word-break: break-word;
}

.vb-review-textarea {
    display: block;
    margin-top: 13px;
}

.vb-review-textarea > span {
    display: block;
    margin-bottom: 8px;
    color: #111827;
    font-size: 12px;
    font-weight: 800;
}

.vb-review-textarea textarea {
    width: 100%;
    min-height: 118px;
    resize: vertical;
    padding: 14px;
    border: 1px solid #dfe6ee;
    border-radius: 16px;
    background: #ffffff;
    color: #111827;
    outline: none;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.55;
    transition:
        border-color var(--vb-transition),
        box-shadow var(--vb-transition);
}

.vb-review-textarea textarea:focus {
    border-color: rgba(182, 0, 0, 0.34);
    box-shadow: 0 0 0 4px rgba(182, 0, 0, 0.07);
}

.vb-review-submit {
    margin-top: 14px;
    min-height: 46px;
    padding: 0 20px;
    border: 0;
    border-radius: 14px;
    background: var(--vb-red);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 12.8px;
    font-weight: 800;
    cursor: pointer;
    transition:
        background var(--vb-transition),
        transform var(--vb-transition);
}

.vb-review-submit:hover {
    background: var(--vb-red-dark);
    transform: translateY(-1px);
}

.vb-review-gate {
    display: flex;
    align-items: flex-start;
    gap: 13px;
    padding: 16px;
    border: 1px solid var(--vb-border-soft);
    border-radius: 17px;
    background: #f8fafc;
}

.vb-review-gate.is-error {
    margin-top: 14px;
    border-color: rgba(182, 0, 0, 0.16);
    background: #fff7f7;
}

.vb-review-gate > i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 14px;
    background: #ffffff;
    color: var(--vb-red);
    display: grid;
    place-items: center;
    font-size: 18px;
    box-shadow: 0 9px 22px rgba(15, 23, 42, 0.06);
}

.vb-review-gate strong {
    display: block;
    margin-bottom: 5px;
    color: #111827;
    font-size: 13.5px;
    font-weight: 800;
}

.vb-review-gate p {
    margin: 0;
    color: #64748b;
    font-size: 12.8px;
    line-height: 1.55;
}

.vb-review-gate a {
    min-height: 35px;
    margin-top: 12px;
    padding: 0 14px;
    border-radius: 999px;
    background: var(--vb-red);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    font-size: 12.3px;
    font-weight: 750;
    text-decoration: none;
}

/* Benzer ürünler */

.vb-related-section {
    padding: 44px 0 60px;
    background: #ffffff;
    overflow: hidden;
}

.vb-related-home-style .vb-product-section {
    padding: 24px;
    border-radius: 22px;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    border: 1px solid var(--vb-border);
    box-shadow: var(--vb-shadow-soft);
}

.vb-related-home-style .vb-product-carousel-viewport {
    width: 100%;
    overflow: hidden;
    padding: 6px 2px 20px;
    cursor: grab;
    touch-action: pan-y;
}

.vb-related-home-style .vb-product-carousel-viewport:active {
    cursor: grabbing;
}

.vb-related-home-style .vb-product-track {
    display: flex;
    gap: 18px;
    align-items: stretch;
    transition: transform 760ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.vb-related-home-style .vb-product-card {
    position: relative;
    border-radius: 18px;
    background: #ffffff;
    border: 1px solid #e8edf2;
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.032);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition:
        transform var(--vb-transition),
        box-shadow var(--vb-transition),
        border-color var(--vb-transition);
}

.vb-related-home-style .vb-product-card:hover {
    transform: translateY(-2px);
    border-color: rgba(182, 0, 0, 0.22);
    box-shadow: 0 18px 42px rgba(15, 23, 42, 0.075);
}

.vb-related-home-style .vb-product-image {
    position: relative;
    height: 210px;
    padding: 18px;
    overflow: hidden;
    background:
        radial-gradient(circle at 50% 35%, rgba(182, 0, 0, 0.05), transparent 55%),
        linear-gradient(180deg, #f9fbfd, #f3f6f8);
}

.vb-related-home-style .vb-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 520ms ease;
}

.vb-related-home-style .vb-product-card:hover .vb-product-image img {
    transform: scale(1.045);
}

.vb-related-home-style .vb-fav-btn {
    position: absolute;
    right: 12px;
    top: 12px;
    z-index: 4;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: #111827;
    display: grid;
    place-items: center;
    box-shadow: 0 7px 18px rgba(15, 23, 42, 0.055);
}

.vb-related-home-style .vb-product-info {
    flex: 1;
    padding: 15px 15px 16px;
    display: flex;
    flex-direction: column;
}

.vb-related-home-style .vb-product-cat {
    display: inline-flex;
    width: fit-content;
    min-height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: var(--vb-red-soft);
    color: var(--vb-red);
    align-items: center;
    font-size: 10px;
    font-weight: 650;
}

.vb-related-home-style .vb-product-info h3 {
    min-height: 58px;
    max-height: 58px;
    margin: 9px 0 0;
    color: #111827;
    font-size: 13.5px;
    font-weight: 650;
    line-height: 1.42;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.vb-related-home-style .vb-product-info h3 a {
    color: inherit;
    text-decoration: none;
}

.vb-related-home-style .vb-product-meta {
    min-height: 42px;
    margin-top: 9px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.vb-related-home-style .vb-product-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #7a8491;
    font-size: 11.5px;
    font-weight: 500;
    line-height: 1.25;
    white-space: normal;
    word-break: break-word;
}

.vb-related-home-style .vb-product-meta span:first-child {
    color: var(--vb-green);
    font-weight: 600;
}

.vb-related-home-style .vb-stars {
    min-height: 16px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 2px;
    color: #ff9700;
    font-size: 10px;
}

.vb-related-home-style .vb-stars em {
    margin-left: 4px;
    color: #7d8795;
    font-style: normal;
    font-size: 10.5px;
    font-weight: 800;
}

.vb-related-home-style .vb-product-bottom {
    min-height: 58px;
    margin-top: auto;
    padding-top: 13px;
    border-top: 1px solid #edf1f4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.vb-related-home-style .vb-price {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
    justify-content: center;
}

.vb-related-home-style .vb-price strong {
    color: #111827;
    font-size: 18px;
    font-weight: 750;
    letter-spacing: -0.3px;
    white-space: nowrap;
}

.vb-related-home-style .vb-price-tl {
    color: #7d8795;
    font-size: 12px !important;
    font-weight: 500 !important;
    white-space: nowrap;
}

.vb-related-home-style .vb-add-cart {
    width: auto;
    min-width: 116px;
    height: 38px;
    padding: 0 13px;
    border: 0;
    border-radius: 12px;
    background: #111111;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 650;
    white-space: nowrap;
}

.vb-related-home-style .vb-add-cart:hover {
    background: var(--vb-red);
}

.vb-related-home-style .vb-product-carousel-arrow {
    width: 38px;
    height: 38px;
    border: 1px solid var(--vb-border);
    border-radius: 999px;
    background: #ffffff;
    color: #111827;
    display: inline-grid;
    place-items: center;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.055);
    transition:
        background var(--vb-transition),
        color var(--vb-transition),
        border-color var(--vb-transition),
        transform var(--vb-transition);
}

.vb-related-home-style .vb-product-carousel-arrow:hover {
    background: var(--vb-red);
    border-color: var(--vb-red);
    color: #ffffff;
    transform: translateY(-1px);
}

.vb-related-home-style .vb-product-carousel-arrow.is-disabled {
    opacity: .4;
    pointer-events: none;
}

/* Görsel zoom modal */

.vb-product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 26px;
    background: rgba(2, 6, 23, 0.82);
    backdrop-filter: blur(10px);
}

.vb-product-lightbox.is-open {
    display: flex;
}

.vb-product-lightbox-inner {
    position: relative;
    width: min(100%, 1120px);
    height: min(86vh, 780px);
    border-radius: 26px;
    background: #ffffff;
    box-shadow: 0 32px 90px rgba(0, 0, 0, 0.38);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vb-product-lightbox-inner img {
    width: 100%;
    height: 100%;
    padding: 34px;
    object-fit: contain;
    background: #ffffff;
}

.vb-product-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 3;
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 18px;
    cursor: pointer;
}

.vb-product-lightbox-close:hover {
    background: var(--vb-red);
}

/* Eski aq köprüleri */

.aq-product-detail-page,
.aq-product-info-section,
.aq-product-reviews-section,
.aq-related-section {
    padding: 0;
    background: transparent;
}

.aq-product-gallery-main img,
.aq-product-thumbs button img {
    object-fit: contain !important;
}

/* Responsive */

@media (max-width: 1280px) {
    .vb-product-detail-layout {
        grid-template-columns: minmax(370px, .72fr) minmax(0, 1fr);
        gap: 20px;
    }

    .vb-product-gallery-main {
        height: 390px;
    }

    .vb-detail-benefits {
        grid-template-columns: 1fr;
    }

    .vb-detail-benefits div {
        min-height: 40px;
        flex-direction: row;
        align-items: center;
    }
}

@media (max-width: 1080px) {
    .vb-product-detail-layout {
        grid-template-columns: 1fr;
    }

    .vb-product-gallery-main {
        height: clamp(320px, 52vw, 430px);
    }

    .vb-product-summary,
    .vb-review-summary-card {
        position: relative;
        top: auto;
    }

    .vb-product-info-grid,
    .vb-product-info-grid.has-faq,
    .vb-reviews-layout {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 767px) {
    .vb-product-detail-page .vb-container,
    .vb-product-info-section .vb-container,
    .vb-product-reviews-section .vb-container,
    .vb-related-section .vb-container,
    .aq-product-detail-page .aq-container,
    .aq-product-info-section .aq-container,
    .aq-product-reviews-section .aq-container,
    .aq-related-section .aq-container {
        width: min(100% - 22px, var(--vb-container));
    }

    .vb-product-detail-page {
        padding: 18px 0 30px;
    }

    .vb-product-breadcrumb {
        margin-bottom: 10px;
        font-size: 11px;
    }

    .vb-product-detail-layout {
        gap: 15px;
    }

    .vb-product-gallery-main {
        height: clamp(260px, 78vw, 360px);
        border-radius: 18px;
    }

    .vb-product-gallery-main img {
        padding: 16px;
    }

    .vb-detail-fav {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
    }

    .vb-detail-badge {
        top: 12px;
        left: 12px;
        min-height: 27px;
        font-size: 10.5px;
    }

    .vb-product-thumbs-slider {
        padding: 0 32px;
    }

    .vb-product-thumbs button {
        width: 66px !important;
        min-width: 66px !important;
        height: 58px !important;
        border-radius: 12px;
    }

    .vb-product-summary {
        border-radius: 19px;
    }

    .vb-product-code-row,
    .vb-product-summary h1,
    .vb-detail-rating,
    .vb-product-short-desc,
    .vb-product-options,
    .vb-detail-price-box,
    .vb-currency-info-box,
    .vb-tax-info-box,
    .vb-stock-info-box,
    .vb-detail-benefits,
    .vb-product-cart-form,
    .vb-purchase-closed,
    .vb-detail-whatsapp,
    .vb-product-meta {
        margin-left: 16px;
        margin-right: 16px;
    }

    .vb-product-code-row {
        margin-top: 16px;
        flex-direction: column;
        align-items: flex-start;
        gap: 7px;
    }

    .vb-product-summary h1 {
        font-size: 20px;
        line-height: 1.27;
    }

    .vb-detail-rating {
        flex-wrap: wrap;
    }

    .vb-product-short-desc {
        font-size: 12.7px;
    }

    .vb-detail-price-box {
        padding: 14px;
        border-radius: 18px;
        align-items: flex-start;
        flex-direction: column;
    }

    .vb-detail-price strong {
        font-size: 26px;
    }

    .vb-detail-discount {
        width: auto;
        height: 34px;
        padding: 0 12px;
        border-radius: 999px;
        display: inline-flex;
        gap: 5px;
    }

    .vb-tax-info-box,
    .vb-stock-info-box {
        align-items: flex-start;
        flex-direction: column;
        gap: 6px;
    }

    .vb-tax-info-box > strong,
    .vb-stock-info-box > strong {
        text-align: left;
    }

    .vb-detail-benefits {
        grid-template-columns: 1fr;
    }

    .vb-detail-benefits div {
        min-height: 39px;
        flex-direction: row;
        align-items: center;
    }

    .vb-detail-actions {
        grid-template-columns: 1fr;
    }

    .vb-detail-add-cart,
    .vb-detail-buy-now,
    .vb-detail-whatsapp {
        width: 100%;
        min-height: 45px;
    }

    .vb-detail-whatsapp {
        width: calc(100% - 32px);
    }

    .vb-product-meta {
        margin-bottom: 16px;
        grid-template-columns: 1fr;
    }

    .vb-detail-card,
    .vb-review-summary-card,
    .vb-review-card,
    .vb-review-form {
        border-radius: 19px;
    }

    .vb-detail-card {
        padding: 17px;
    }

    .vb-detail-card-head h2,
    .vb-section-title-row h2 {
        font-size: 22px;
    }

    .vb-review-score > strong {
        font-size: 40px;
    }

    .vb-review-card-head {
        grid-template-columns: 40px 1fr;
    }

    .vb-review-card-head time {
        grid-column: 2 / 3;
    }

    .vb-review-rating-select {
        align-items: flex-start;
        flex-direction: column;
    }

    .vb-review-rate-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .vb-review-customer-box {
        grid-template-columns: 1fr;
    }

    .vb-review-submit {
        width: 100%;
    }

    .vb-related-home-style .vb-product-section {
        padding: 16px;
    }

    .vb-related-home-style .vb-product-image {
        height: 220px;
    }

    .vb-related-home-style .vb-add-cart {
        min-width: 122px;
    }

    .vb-product-lightbox {
        padding: 14px;
    }

    .vb-product-lightbox-inner {
        height: min(78vh, 620px);
        border-radius: 20px;
    }

    .vb-product-lightbox-inner img {
        padding: 18px;
    }

    .vb-product-lightbox-close {
        top: 12px;
        right: 12px;
        width: 38px;
        height: 38px;
    }
}

@media (max-width: 420px) {
    .vb-product-gallery-main {
        height: 275px;
    }

    .vb-product-summary h1 {
        font-size: 19px;
    }

    .vb-detail-price strong {
        font-size: 25px;
    }

    .vb-product-thumbs button {
        width: 62px !important;
        min-width: 62px !important;
        height: 56px !important;
    }

    .vb-review-bars div {
        grid-template-columns: 52px 1fr 34px;
    }
}
/* =========================================================
   Vadi Ürün Detay - Lightbox Galeri Sağ/Sol Okları
========================================================= */

.vb-product-lightbox-nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 48px;
    height: 48px;
    border: 0;
    border-radius: 999px;
    background: rgba(17, 17, 17, 0.92);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    font-size: 21px;
    cursor: pointer;
    box-shadow: 0 16px 38px rgba(0, 0, 0, 0.28);
    transition:
        background 180ms ease,
        transform 180ms ease,
        opacity 180ms ease;
}

.vb-product-lightbox-nav:hover {
    background: var(--vb-red, #b60000);
    transform: translateY(-50%) scale(1.04);
}

.vb-product-lightbox-prev {
    left: 18px;
}

.vb-product-lightbox-next {
    right: 18px;
}

.vb-product-lightbox-nav[hidden] {
    display: none !important;
}

.vb-product-lightbox-inner img {
    transition: opacity 160ms ease;
}

@media (max-width: 767px) {
    .vb-product-lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .vb-product-lightbox-prev {
        left: 10px;
    }

    .vb-product-lightbox-next {
        right: 10px;
    }
}
