:root {
    --vb-red: #b60000;
    --vb-red-dark: #8e0000;
    --vb-red-soft: rgba(182, 0, 0, 0.07);
    --vb-red-border: rgba(182, 0, 0, 0.22);
    --vb-black: #111111;
    --vb-dark: #111827;
    --vb-text: #1f2937;
    --vb-muted: #64748b;
    --vb-soft: #94a3b8;
    --vb-green: #15803d;
    --vb-green-soft: #ecfdf3;
    --vb-yellow: #f59e0b;
    --vb-orange: #f97316;
    --vb-border: #e5e7eb;
    --vb-border-soft: #eef2f6;
    --vb-card: #ffffff;
    --vb-page: #f7f8fa;
    --vb-container: 1500px;
    --vb-radius: 16px;
    --vb-radius-lg: 22px;
    --vb-shadow-soft: 0 8px 24px rgba(15, 23, 42, 0.045);
    --vb-shadow: 0 14px 38px rgba(15, 23, 42, 0.07);
    --vb-shadow-hover: 0 22px 58px rgba(15, 23, 42, 0.11);
    --vb-transition: 220ms ease;
}

.vb-product-detail-page,
.vb-product-info-section,
.vb-product-reviews-section,
.vb-related-section,
.vb-product-tab-section {
    font-family: var(--vb-font-main, "Roboto", Arial, sans-serif);
}

.vb-product-detail-page .vb-container,
.vb-product-info-section .vb-container,
.vb-product-reviews-section .vb-container,
.vb-related-section .vb-container,
.vb-product-tab-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;
}

.vb-market-product-page {
    padding: 18px 0 42px;
    background:
        radial-gradient(900px 320px at 100% 0%, rgba(182, 0, 0, 0.035), transparent 62%),
        linear-gradient(180deg, #ffffff 0%, #f6f7f9 100%);
}

.vb-product-breadcrumb {
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--vb-soft);
    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: #667085;
    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: #98a2b3;
    font-weight: 500;
}

.vb-market-detail-layout {
    display: grid;
    grid-template-columns: minmax(360px, 500px) minmax(0, 1fr) minmax(300px, 355px);
    gap: 18px;
    align-items: flex-start;
}

.vb-market-gallery-column,
.vb-market-buy-column {
    position: sticky;
    top: 104px;
}

.vb-market-gallery,
.vb-market-title-card,
.vb-market-option-card,
.vb-market-spec-card,
.vb-market-support-card,
.vb-market-buy-card {
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.045);
}

.vb-market-gallery {
    padding: 14px;
}

.vb-market-gallery-main {
    position: relative;
    height: 468px;
    border: 0;
    border-radius: 14px;
    background:
        radial-gradient(circle at 50% 36%, rgba(182, 0, 0, 0.045), transparent 52%),
        linear-gradient(180deg, #fbfcfd, #ffffff);
    box-shadow: none;
    overflow: hidden;
    cursor: zoom-in;
}

.vb-market-gallery-main img {
    width: 100%;
    height: 100%;
    padding: 30px;
    object-fit: contain;
    object-position: center;
    background: transparent;
    transition: transform 420ms ease, opacity 160ms ease;
}

.vb-market-gallery-main:hover img {
    transform: scale(1.025);
}

.vb-detail-fav {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 6;
    width: 42px;
    height: 42px;
    border: 1px solid var(--vb-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.97);
    color: #111827;
    display: grid;
    place-items: center;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
    cursor: pointer;
    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: 14px;
    left: 14px;
    z-index: 6;
    min-height: 30px;
    padding: 0 13px;
    border-radius: 999px;
    background: var(--vb-red);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.1px;
    box-shadow: 0 12px 26px rgba(182, 0, 0, 0.22);
}

.vb-product-thumbs-slider {
    position: relative;
    margin-top: 13px;
    padding: 0 34px;
}

.vb-product-thumbs-viewport {
    width: 100%;
    overflow: hidden;
}

.vb-product-thumbs {
    display: flex !important;
    grid-template-columns: none !important;
    gap: 10px !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: 72px !important;
    min-width: 72px !important;
    height: 66px !important;
    padding: 6px !important;
    border: 1px solid var(--vb-border);
    border-radius: 14px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 6px 16px 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.48);
    box-shadow: 0 11px 25px rgba(182, 0, 0, 0.10);
}

.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: 31px;
    height: 31px;
    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);
    cursor: pointer;
    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;
}

.vb-market-title-card {
    padding: 22px;
}

.vb-market-topline {
    margin-bottom: 12px;
    padding-bottom: 12px;
    border-bottom: 1px solid #eef2f6;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.vb-market-brand {
    min-height: 28px;
    padding: 0 11px;
    border-radius: 999px;
    background: #fff1f1;
    color: #b60000;
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-weight: 850;
    letter-spacing: .25px;
    text-transform: uppercase;
}

.vb-stock-badge {
    min-height: 28px;
    padding: 0 11px;
    border-radius: 999px;
    background: var(--vb-green-soft);
    color: var(--vb-green);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.2px;
    font-weight: 800;
    white-space: nowrap;
}

.vb-stock-badge.is-passive {
    background: #fff1f1;
    color: var(--vb-red);
}

.vb-market-title-card h1 {
    margin: 0;
    color: #111827;
    font-size: clamp(22px, 1.55vw, 30px);
    font-weight: 850;
    line-height: 1.28;
    letter-spacing: -0.55px;
}

.vb-market-rating-row {
    margin-top: 13px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.vb-market-stars {
    display: inline-flex;
    gap: 2px;
    color: #f59e0b;
    font-size: 13px;
}

.vb-market-rating-row strong {
    color: #111827;
    font-size: 12.5px;
    font-weight: 850;
}

.vb-market-rating-row span {
    color: #64748b;
    font-size: 12.3px;
    font-weight: 650;
}

.vb-market-rating-row em {
    margin-left: auto;
    color: #94a3b8;
    font-size: 11.8px;
    font-style: normal;
    font-weight: 650;
}

.vb-market-short-desc {
    margin: 15px 0 0;
    color: #4b5563;
    font-size: 13.6px;
    font-weight: 400;
    line-height: 1.7;
}

.vb-market-option-card,
.vb-market-spec-card,
.vb-market-support-card {
    margin-top: 14px;
    padding: 18px;
}

.vb-market-card-title {
    margin-bottom: 14px;
    display: grid;
    gap: 4px;
}

.vb-market-card-title span,
.vb-detail-card-head span,
.vb-section-title-row span,
.vb-review-form-head span,
.vb-tab-title span {
    color: var(--vb-red);
    font-size: 10.8px;
    font-weight: 900;
    letter-spacing: .85px;
    text-transform: uppercase;
}

.vb-market-card-title strong {
    color: #111827;
    font-size: 16px;
    font-weight: 850;
    letter-spacing: -0.25px;
}

.vb-market-options {
    margin: 0;
    padding: 0;
    border: 0;
    background: transparent;
}

.vb-market-options > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vb-market-options a,
.vb-market-options strong {
    min-height: 36px;
    padding: 0 13px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    font-size: 12.2px;
    font-weight: 700;
    text-decoration: none;
}

.vb-market-options a {
    border: 1px solid var(--vb-border);
    background: #ffffff;
    color: #1f2937;
}

.vb-market-options a:hover {
    border-color: var(--vb-red-border);
    color: var(--vb-red);
    background: #fff8f8;
}

.vb-market-options strong {
    border: 1px solid var(--vb-red);
    background: #fff1f1;
    color: var(--vb-red);
}

.vb-market-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.vb-market-spec-grid div {
    min-height: 64px;
    padding: 12px;
    border: 1px solid #eef2f6;
    border-radius: 14px;
    background: #f8fafc;
}

.vb-market-spec-grid span {
    display: block;
    color: #64748b;
    font-size: 11.5px;
    font-weight: 750;
}

.vb-market-spec-grid strong {
    display: block;
    margin-top: 6px;
    color: #111827;
    font-size: 13px;
    font-weight: 850;
    line-height: 1.35;
}

.vb-market-support-card {
    display: grid;
    gap: 10px;
}

.vb-market-support-card div {
    min-height: 76px;
    padding: 13px;
    border: 1px solid #eef2f6;
    border-radius: 14px;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
    display: grid;
    grid-template-columns: 38px 1fr;
    column-gap: 11px;
    align-items: center;
}

.vb-market-support-card i {
    width: 38px;
    height: 38px;
    border-radius: 13px;
    background: #fff1f1;
    color: #b60000;
    display: grid;
    place-items: center;
    font-size: 18px;
    grid-row: span 2;
}

.vb-market-support-card strong {
    color: #111827;
    font-size: 13px;
    font-weight: 850;
}

.vb-market-support-card span {
    color: #64748b;
    font-size: 12.3px;
    line-height: 1.45;
}

.vb-market-buy-card {
    padding: 18px;
    overflow: hidden;
}

.vb-market-buy-card::before {
    content: "";
    display: block;
    height: 4px;
    margin: -18px -18px 16px;
    background: linear-gradient(90deg, #b60000, #111111);
}

.vb-market-buy-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.vb-market-buy-head span {
    color: #64748b;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: .45px;
    text-transform: uppercase;
}

.vb-market-buy-head em {
    min-height: 25px;
    padding: 0 9px;
    border-radius: 999px;
    background: #fff1f1;
    color: #b60000;
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-style: normal;
    font-weight: 900;
}

.vb-market-price-row {
    margin-top: 9px;
    display: grid;
    gap: 4px;
}

.vb-market-price-row strong {
    color: #111111;
    font-size: clamp(30px, 2.2vw, 38px);
    font-weight: 950;
    line-height: 1.08;
    letter-spacing: -1.1px;
}

.vb-market-price-row del {
    color: #94a3b8;
    font-size: 13px;
    font-weight: 600;
}

.vb-market-discount-line {
    margin-top: 12px;
    min-height: 38px;
    padding: 0 12px;
    border-radius: 12px;
    background: #fff7ed;
    color: #c2410c;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 800;
}

.vb-market-stock-line {
    margin-top: 12px;
    min-height: 42px;
    padding: 0 12px;
    border-radius: 12px;
    background: #ecfdf3;
    color: #15803d;
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 850;
}

.vb-market-stock-line.is-passive {
    background: #fff1f1;
    color: #b60000;
}

.vb-market-cart-form {
    margin: 15px 0 0;
    padding: 15px 0 0;
    border-top: 1px solid #eef2f6;
}

.vb-market-quantity-area {
    margin: 0;
}

.vb-quantity-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.vb-quantity-area > span {
    color: #111827;
    font-size: 12.8px;
    font-weight: 850;
}

.vb-quantity-control {
    height: 42px;
    border: 1px solid #dfe6ee;
    border-radius: 999px;
    background: #ffffff;
    display: grid;
    grid-template-columns: 40px 56px 40px;
    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: 56px;
    border: 0;
    outline: none;
    background: #ffffff;
    color: #111827;
    text-align: center;
    font-size: 13px;
    font-weight: 800;
}

.vb-detail-actions,
.vb-market-actions {
    margin-top: 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
}

.vb-detail-add-cart,
.vb-detail-buy-now,
.vb-detail-whatsapp {
    min-height: 48px;
    border-radius: 13px;
    border: 0;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 850;
    text-decoration: none;
    cursor: pointer;
    box-shadow: none;
    transition:
        background var(--vb-transition),
        transform var(--vb-transition),
        color var(--vb-transition),
        box-shadow var(--vb-transition);
}

.vb-detail-add-cart {
    background: var(--vb-red);
}

.vb-detail-buy-now {
    background: #111111;
}

.vb-detail-whatsapp,
.vb-market-whatsapp {
    width: 100%;
    margin: 10px 0 0;
    background: #16a34a;
}

.vb-detail-add-cart:hover {
    background: var(--vb-red-dark);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(182, 0, 0, 0.18);
}

.vb-detail-buy-now:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(17, 17, 17, 0.16);
}

.vb-detail-whatsapp:hover {
    background: #15803d;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 12px 28px rgba(22, 163, 74, 0.16);
}

.vb-detail-add-cart:disabled,
.vb-detail-buy-now:disabled {
    opacity: .55;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.vb-purchase-closed {
    margin-top: 14px;
    padding: 15px;
    border: 1px solid var(--vb-red-border);
    border-radius: 16px;
    background: #fff7f7;
    color: #1f2937;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.vb-purchase-closed > i {
    color: var(--vb-red);
    font-size: 20px;
}

.vb-purchase-closed strong {
    display: block;
    color: #111827;
    font-size: 13px;
    font-weight: 850;
}

.vb-purchase-closed span {
    display: block;
    margin-top: 4px;
    color: #667085;
    font-size: 12.4px;
    line-height: 1.45;
}

.vb-market-buy-benefits {
    margin-top: 15px;
    padding-top: 14px;
    border-top: 1px solid #eef2f6;
    display: grid;
    gap: 9px;
}

.vb-market-buy-benefits div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #4b5563;
    font-size: 12.2px;
    font-weight: 700;
}

.vb-market-buy-benefits i {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: #f8fafc;
    color: #b60000;
    display: grid;
    place-items: center;
    font-size: 15px;
}

/* =========================================================
   Premium Sekmeli Alt Bilgi Alanı
========================================================= */

.vb-product-tab-section {
    padding: 36px 0 46px;
    background: #ffffff;
}

.vb-product-tabs-card {
    border: 1px solid #dfe3e8;
    border-radius: 16px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.045);
}

.vb-product-tabs-card > input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.vb-product-tab-nav {
    min-height: 70px;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
}

.vb-product-tab-nav label {
    position: relative;
    min-height: 70px;
    padding: 0 16px;
    color: #334155;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-align: center;
    font-size: 14px;
    font-weight: 650;
    cursor: pointer;
    transition:
        color 180ms ease,
        background 180ms ease;
}

.vb-product-tab-nav label:hover {
    color: var(--vb-red);
    background: #fffafa;
}

.vb-product-tab-nav label::after {
    content: "";
    position: absolute;
    left: 24px;
    right: 24px;
    bottom: 0;
    height: 3px;
    border-radius: 999px 999px 0 0;
    background: transparent;
    transition: background 180ms ease;
}

.vb-product-tab-nav label span {
    min-width: 24px;
    height: 24px;
    padding: 0 7px;
    border-radius: 999px;
    background: var(--vb-red);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 850;
}

#vbTabDescription:checked ~ .vb-product-tab-nav label[for="vbTabDescription"],
#vbTabReviews:checked ~ .vb-product-tab-nav label[for="vbTabReviews"],
#vbTabFaq:checked ~ .vb-product-tab-nav label[for="vbTabFaq"],
#vbTabInstallment:checked ~ .vb-product-tab-nav label[for="vbTabInstallment"],
#vbTabReturn:checked ~ .vb-product-tab-nav label[for="vbTabReturn"] {
    color: #111827;
    background: #ffffff;
    font-weight: 850;
}

#vbTabDescription:checked ~ .vb-product-tab-nav label[for="vbTabDescription"]::after,
#vbTabReviews:checked ~ .vb-product-tab-nav label[for="vbTabReviews"]::after,
#vbTabFaq:checked ~ .vb-product-tab-nav label[for="vbTabFaq"]::after,
#vbTabInstallment:checked ~ .vb-product-tab-nav label[for="vbTabInstallment"]::after,
#vbTabReturn:checked ~ .vb-product-tab-nav label[for="vbTabReturn"]::after {
    background: var(--vb-red);
}

.vb-product-tab-panels {
    background: #ffffff;
}

.vb-product-tab-panel {
    display: none;
}

#vbTabDescription:checked ~ .vb-product-tab-panels .vb-tab-description-panel,
#vbTabReviews:checked ~ .vb-product-tab-panels .vb-tab-reviews-panel,
#vbTabFaq:checked ~ .vb-product-tab-panels .vb-tab-faq-panel,
#vbTabInstallment:checked ~ .vb-product-tab-panels .vb-tab-installment-panel,
#vbTabReturn:checked ~ .vb-product-tab-panels .vb-tab-return-panel {
    display: block;
}

.vb-tab-content-inner {
    padding: 34px 44px 42px;
}

.vb-tab-title {
    margin-bottom: 18px;
}

.vb-tab-title h2 {
    margin: 0;
    color: #111827;
    font-size: 23px;
    font-weight: 850;
    letter-spacing: -0.45px;
}

.vb-tab-title p {
    margin: 7px 0 0;
    color: #64748b;
    font-size: 13.5px;
    line-height: 1.6;
}

.vb-tab-description-content {
    color: #1f2937;
    font-size: 15px;
    line-height: 1.58;
}

.vb-tab-description-content p {
    margin: 0 0 12px;
}

.vb-tab-description-content strong,
.vb-tab-description-content b {
    color: #111827;
    font-weight: 850;
}

.vb-tab-description-content ul,
.vb-tab-description-content ol {
    margin: 12px 0 0;
    padding-left: 20px;
}

.vb-tab-description-content li {
    margin-bottom: 7px;
}

.vb-tab-description-content table {
    width: 100%;
    margin-top: 18px;
    border-collapse: collapse;
}

.vb-tab-description-content table th,
.vb-tab-description-content table td {
    padding: 13px 16px;
    border: 1px solid #eef2f6;
    text-align: left;
    vertical-align: top;
}

.vb-tab-feature-title {
    margin-top: 26px;
    margin-bottom: 16px;
}

.vb-tab-feature-title h3 {
    margin: 0;
    color: #111827;
    font-size: 25px;
    font-weight: 900;
    letter-spacing: -0.5px;
}

.vb-product-feature-table {
    display: grid;
    gap: 10px;
}

.vb-product-feature-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
}

.vb-product-feature-row > div {
    min-height: 58px;
    padding: 14px 18px;
    border-radius: 10px;
    background: #f7f7f8;
    display: grid;
    grid-template-columns: minmax(150px, 0.75fr) minmax(0, 1fr);
    gap: 16px;
    align-items: center;
}

.vb-product-feature-row span {
    color: #475569;
    font-size: 13px;
    font-weight: 650;
}

.vb-product-feature-row strong {
    color: #111827;
    font-size: 13.5px;
    font-weight: 750;
    text-align: right;
    line-height: 1.4;
    word-break: break-word;
}

.vb-tab-review-layout {
    display: grid;
    grid-template-columns: 330px minmax(0, 1fr);
    gap: 18px;
    align-items: flex-start;
}

.vb-tab-empty {
    min-height: 120px;
    padding: 22px;
    border: 1px solid #eef2f6;
    border-radius: 14px;
    background: #f8fafc;
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.vb-tab-empty i {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border-radius: 14px;
    background: #fff1f1;
    color: var(--vb-red);
    display: grid;
    place-items: center;
    font-size: 19px;
}

.vb-tab-empty strong {
    display: block;
    color: #111827;
    font-size: 14px;
    font-weight: 850;
}

.vb-tab-empty p {
    margin: 6px 0 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.55;
}

.vb-installment-info-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.vb-installment-info-grid > div {
    min-height: 150px;
    padding: 20px;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    background: linear-gradient(180deg, #ffffff, #f8fafc);
}

.vb-installment-info-grid i {
    width: 44px;
    height: 44px;
    border-radius: 15px;
    background: #fff1f1;
    color: var(--vb-red);
    display: grid;
    place-items: center;
    font-size: 20px;
}

.vb-installment-info-grid strong {
    display: block;
    margin-top: 14px;
    color: #111827;
    font-size: 14px;
    font-weight: 850;
}

.vb-installment-info-grid span {
    display: block;
    margin-top: 7px;
    color: #64748b;
    font-size: 13px;
    line-height: 1.55;
}

.vb-return-info-box {
    display: grid;
    gap: 14px;
}

.vb-return-info-box > div {
    padding: 18px;
    border: 1px solid #eef2f6;
    border-radius: 16px;
    background: #f8fafc;
    display: grid;
    grid-template-columns: 46px 1fr;
    column-gap: 14px;
    align-items: flex-start;
}

.vb-return-info-box i {
    width: 46px;
    height: 46px;
    border-radius: 15px;
    background: #fff1f1;
    color: var(--vb-red);
    display: grid;
    place-items: center;
    font-size: 20px;
    grid-row: span 2;
}

.vb-return-info-box strong {
    color: #111827;
    font-size: 14px;
    font-weight: 850;
}

.vb-return-info-box p {
    margin: 6px 0 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.6;
}

/* =========================================================
   Yorumlar
========================================================= */

.vb-review-summary-card,
.vb-review-card,
.vb-review-form {
    border: 1px solid var(--vb-border);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--vb-shadow-soft);
}

.vb-review-summary-card {
    padding: 21px;
}

.vb-review-score {
    display: flex;
    align-items: center;
    gap: 14px;
}

.vb-review-score > strong {
    color: #111827;
    font-size: 46px;
    font-weight: 900;
    letter-spacing: -1.7px;
    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: #667085;
    font-size: 12px;
    font-weight: 700;
}

.vb-review-bars {
    margin-top: 18px;
    display: grid;
    gap: 9px;
}

.vb-review-bars div {
    display: grid;
    grid-template-columns: 60px 1fr 38px;
    gap: 8px;
    align-items: center;
}

.vb-review-bars span,
.vb-review-bars strong {
    color: #667085;
    font-size: 10.8px;
    font-weight: 800;
}

.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-content,
.vb-review-list {
    display: grid;
    gap: 13px;
}

.vb-review-card {
    padding: 18px;
}

.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: 900;
}

.vb-review-card-head strong {
    display: block;
    color: #111827;
    font-size: 13.5px;
    font-weight: 850;
}

.vb-review-card-head span {
    display: block;
    margin-top: 3px;
    color: var(--vb-green);
    font-size: 10.8px;
    font-weight: 800;
}

.vb-review-card-head time {
    color: #98a2b3;
    font-size: 10.8px;
    font-weight: 700;
    white-space: nowrap;
}

.vb-review-stars {
    margin-top: 11px;
    font-size: 13px;
}

.vb-review-card p {
    margin: 9px 0 0;
    color: #4b5563;
    font-size: 13px;
    line-height: 1.64;
}

.vb-review-form {
    padding: 22px;
}

.vb-review-form-head p {
    margin: 8px 0 0;
    color: #667085;
    font-size: 12.8px;
    line-height: 1.58;
}

.vb-review-rating-select {
    margin-top: 16px;
    min-height: 54px;
    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: 850;
}

.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: 31px;
    height: 31px;
    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: #667085;
    font-size: 11.8px;
    font-weight: 750;
}

.vb-review-customer-box strong {
    display: block;
    color: #111827;
    font-size: 13.5px;
    font-weight: 800;
    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: 850;
}

.vb-review-textarea textarea {
    width: 100%;
    min-height: 120px;
    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.56;
    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: 47px;
    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: 13px;
    font-weight: 850;
    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: 850;
}

.vb-review-gate p {
    margin: 0;
    color: #667085;
    font-size: 12.8px;
    line-height: 1.56;
}

.vb-review-gate a {
    min-height: 36px;
    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: 800;
    text-decoration: none;
}

/* =========================================================
   FAQ
========================================================= */

.vb-faq-list {
    display: grid;
    gap: 10px;
}

.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: 54px;
    padding: 0 15px;
    border: 0;
    background: #f8fafc;
    color: #111827;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    text-align: left;
    font-size: 13px;
    font-weight: 800;
    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 15px 15px;
}

.vb-faq-item.is-open > div {
    display: block;
}

.vb-faq-item p {
    margin: 0;
    color: #667085;
    font-size: 12.8px;
    line-height: 1.65;
}

/* =========================================================
   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: 700;
}

.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: 700;
    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: 700;
}

.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: 850;
}

.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: 800;
    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: 700;
    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;
}

/* =========================================================
   Lightbox
========================================================= */

.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.84);
    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;
    transition: opacity 160ms ease;
}

.vb-product-lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    z-index: 5;
    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);
}

.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);
    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;
}

.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-market-detail-layout {
        grid-template-columns: minmax(330px, 430px) minmax(0, 1fr) minmax(280px, 330px);
        gap: 15px;
    }

    .vb-market-gallery-main {
        height: 410px;
    }

    .vb-market-price-row strong {
        font-size: 31px;
    }
}

@media (max-width: 1100px) {
    .vb-market-detail-layout {
        grid-template-columns: minmax(330px, 440px) minmax(0, 1fr);
    }

    .vb-market-buy-column {
        grid-column: 1 / -1;
        position: relative;
        top: auto;
    }

    .vb-market-buy-card {
        display: grid;
        grid-template-columns: minmax(0, 1fr) minmax(280px, 360px);
        gap: 16px;
        align-items: start;
    }

    .vb-market-buy-card::before {
        grid-column: 1 / -1;
    }

    .vb-market-buy-benefits {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .vb-product-tab-nav {
        overflow-x: auto;
        grid-template-columns: repeat(5, minmax(190px, 1fr));
    }
}

@media (max-width: 900px) {
    .vb-market-detail-layout {
        grid-template-columns: 1fr;
    }

    .vb-market-gallery-column,
    .vb-market-buy-column {
        position: relative;
        top: auto;
    }

    .vb-market-gallery-main {
        height: clamp(320px, 58vw, 470px);
    }

    .vb-market-buy-card {
        display: block;
    }

    .vb-market-buy-benefits {
        grid-template-columns: 1fr;
    }

    .vb-tab-review-layout {
        grid-template-columns: 1fr;
    }

    .vb-product-feature-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }

    .vb-installment-info-grid {
        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,
    .vb-product-tab-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-market-product-page {
        padding-top: 14px;
    }

    .vb-product-breadcrumb {
        margin-bottom: 10px;
        font-size: 11px;
    }

    .vb-market-gallery,
    .vb-market-title-card,
    .vb-market-option-card,
    .vb-market-spec-card,
    .vb-market-support-card,
    .vb-market-buy-card {
        border-radius: 16px;
    }

    .vb-market-gallery {
        padding: 10px;
    }

    .vb-market-gallery-main {
        height: clamp(270px, 82vw, 360px);
        border-radius: 13px;
    }

    .vb-market-gallery-main img {
        padding: 18px;
    }

    .vb-market-title-card,
    .vb-market-option-card,
    .vb-market-spec-card,
    .vb-market-support-card,
    .vb-market-buy-card {
        padding: 16px;
    }

    .vb-market-buy-card::before {
        margin: -16px -16px 14px;
    }

    .vb-market-topline {
        align-items: flex-start;
        flex-direction: column;
    }

    .vb-market-title-card h1 {
        font-size: 20px;
    }

    .vb-market-rating-row em {
        width: 100%;
        margin-left: 0;
    }

    .vb-market-spec-grid {
        grid-template-columns: 1fr;
    }

    .vb-market-support-card div {
        min-height: auto;
    }

    .vb-market-price-row strong {
        font-size: 29px;
    }

    .vb-product-thumbs-slider {
        padding: 0 32px;
    }

    .vb-product-thumbs button {
        width: 62px !important;
        min-width: 62px !important;
        height: 58px !important;
    }

    .vb-product-tab-section {
        padding: 26px 0 36px;
    }

    .vb-product-tabs-card {
        border-radius: 14px;
    }

    .vb-product-tab-nav {
        min-height: 60px;
        display: flex;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .vb-product-tab-nav::-webkit-scrollbar {
        display: none;
    }

    .vb-product-tab-nav label {
        min-width: 165px;
        min-height: 60px;
        padding: 0 12px;
        font-size: 12.6px;
    }

    .vb-tab-content-inner {
        padding: 22px 18px 28px;
    }

    .vb-tab-title h2 {
        font-size: 20px;
    }

    .vb-tab-feature-title h3 {
        font-size: 21px;
    }

    .vb-product-feature-row > div {
        grid-template-columns: 1fr;
        gap: 6px;
    }

    .vb-product-feature-row strong {
        text-align: left;
    }

    .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;
    }

    .vb-product-lightbox-nav {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .vb-product-lightbox-prev {
        left: 10px;
    }

    .vb-product-lightbox-next {
        right: 10px;
    }
}

@media (max-width: 420px) {
    .vb-market-gallery-main {
        height: 280px;
    }

    .vb-market-title-card h1 {
        font-size: 19px;
    }

    .vb-market-price-row strong {
        font-size: 26px;
    }

    .vb-product-thumbs button {
        width: 58px !important;
        min-width: 58px !important;
        height: 54px !important;
    }

    .vb-review-bars div {
        grid-template-columns: 52px 1fr 34px;
    }
}
/* =========================================================
   Vadi Ürün Detay - Hepsiburada Tarzı Premium Üst Alan
========================================================= */

.vb-hb-product-page {
    padding: 18px 0 34px;
    background: #ffffff;
}

.vb-hb-detail-layout {
    display: grid;
    grid-template-columns: minmax(390px, 520px) minmax(0, 1fr) minmax(270px, 320px);
    gap: 28px;
    align-items: flex-start;
}

.vb-hb-gallery-column {
    min-width: 0;
}

.vb-hb-gallery {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.vb-hb-gallery-main {
    position: relative;
    height: 650px;
    border: 1px solid #d9dde3;
    border-radius: 10px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: none;
    cursor: zoom-in;
}

.vb-hb-gallery-main img {
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: contain;
    object-position: center;
    background: #ffffff;
    transition: opacity 160ms ease, transform 260ms ease;
}

.vb-hb-gallery-main:hover img {
    transform: scale(1.01);
}

.vb-hb-gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 52px;
    height: 52px;
    border: 1px solid #e5e7eb;
    border-radius: 999px;
    background: #ffffff;
    color: #111827;
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    box-shadow: 0 8px 22px rgba(15, 23, 42, 0.12);
    cursor: pointer;
}

.vb-hb-gallery-nav:hover {
    color: #ffffff;
    background: var(--vb-red);
    border-color: var(--vb-red);
}

.vb-hb-gallery-prev {
    left: 12px;
}

.vb-hb-gallery-next {
    right: 12px;
}

.vb-hb-thumbs-slider {
    margin-top: 22px;
    padding: 0 44px;
}

.vb-hb-thumbs-slider .vb-product-thumbs button {
    width: 58px !important;
    min-width: 58px !important;
    height: 70px !important;
    border-radius: 8px;
    border: 1px solid #dfe3e8;
    padding: 4px !important;
    background: #ffffff;
}

.vb-hb-thumbs-slider .vb-product-thumbs button.is-active,
.vb-hb-thumbs-slider .vb-product-thumbs button:hover {
    border-color: var(--vb-red);
    box-shadow: 0 0 0 1px var(--vb-red);
}

.vb-hb-thumbs-slider .vb-product-thumbs img {
    padding: 0;
    border-radius: 6px;
}

.vb-hb-info-column {
    min-width: 0;
    padding-top: 2px;
}

.vb-hb-title-line h1 {
    margin: 0;
    color: #111827;
    font-size: 21px;
    font-weight: 850;
    line-height: 1.3;
    letter-spacing: -0.25px;
}

.vb-hb-title-line h1 span {
    color: #b60000;
    font-weight: 900;
}

.vb-hb-rating-line {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.vb-hb-score {
    min-width: 28px;
    height: 24px;
    padding: 0 6px;
    border-radius: 6px;
    background: #fff7ed;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 850;
}

.vb-hb-stars {
    color: #f59e0b;
    display: inline-flex;
    gap: 2px;
    font-size: 14px;
}

.vb-hb-review-link {
    color: #b60000;
    font-size: 12.5px;
    font-weight: 700;
    text-decoration: none;
}

.vb-hb-review-link:hover {
    text-decoration: underline;
}

.vb-hb-mini-icon {
    width: 26px;
    height: 26px;
    border: 1px solid #dfe3e8;
    border-radius: 6px;
    background: #ffffff;
    color: #4b5563;
    display: grid;
    place-items: center;
}

.vb-hb-seller-line {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
}

.vb-hb-seller-line > span {
    min-height: 36px;
    padding: 0 10px;
    border: 1px solid #eef2f6;
    border-radius: 6px;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    font-size: 12.5px;
    font-weight: 700;
}

.vb-hb-seller-line > span strong {
    margin-left: 4px;
    color: #b60000;
    font-weight: 900;
}

.vb-hb-seller-line em {
    min-width: 32px;
    height: 26px;
    border-radius: 6px;
    background: #16a34a;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-style: normal;
    font-weight: 900;
}

.vb-hb-seller-line a {
    min-height: 36px;
    padding: 0 12px;
    border: 1px solid #eef2f6;
    border-radius: 6px;
    color: #111827;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 800;
}

.vb-hb-seller-line a:hover {
    color: var(--vb-red);
    border-color: var(--vb-red-border);
}

.vb-hb-price-line {
    margin-top: 26px;
    display: grid;
    gap: 4px;
}

.vb-hb-price-line strong {
    color: #374151;
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -1px;
    line-height: 1;
}

.vb-hb-price-line del {
    color: #94a3b8;
    font-size: 14px;
    font-weight: 600;
}

.vb-hb-installment-pill {
    width: fit-content;
    min-height: 32px;
    margin-top: 17px;
    padding: 0 13px;
    border-radius: 4px;
    background: #f6f0ff;
    color: #6d28d9;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 800;
}

.vb-hb-variant-area {
    margin-top: 24px;
}

.vb-hb-variant-title {
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.vb-hb-variant-title strong {
    color: #111827;
    font-size: 14px;
    font-weight: 900;
}

.vb-hb-variant-title span {
    color: #64748b;
    font-size: 12.5px;
    font-weight: 600;
}

.vb-hb-variant-track {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding-bottom: 3px;
    scrollbar-width: none;
}

.vb-hb-variant-track::-webkit-scrollbar {
    display: none;
}

.vb-hb-variant-card {
    width: 98px;
    min-width: 98px;
    min-height: 108px;
    padding: 8px;
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    background: #ffffff;
    color: #111827;
    display: grid;
    align-content: space-between;
    gap: 6px;
    text-decoration: none;
}

.vb-hb-variant-card:hover,
.vb-hb-variant-card.is-active {
    border-color: var(--vb-red);
    box-shadow: 0 0 0 1px var(--vb-red);
}

.vb-hb-variant-card img {
    width: 100%;
    height: 58px;
    object-fit: contain;
}

.vb-hb-variant-card span {
    color: #64748b;
    font-size: 12px;
    font-weight: 700;
    text-align: center;
    white-space: nowrap;
}

.vb-hb-variant-card.is-active span {
    color: #111827;
    font-weight: 900;
}

.vb-hb-cart-form {
    margin-top: 20px;
    padding: 0;
    border: 0;
}

.vb-hb-cart-row {
    display: grid;
    grid-template-columns: 105px minmax(0, 1fr) 130px;
    gap: 10px;
    align-items: stretch;
}

.vb-hb-quantity-area {
    min-height: 54px;
    padding: 6px 8px;
    border: 1px solid #eef2f6;
    border-radius: 10px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.vb-hb-quantity-area > span {
    font-size: 10px;
    color: #64748b;
}

.vb-hb-quantity-area .vb-quantity-control {
    width: 100%;
    height: 26px;
    grid-template-columns: 24px 1fr 24px;
    border: 0;
}

.vb-hb-quantity-area .vb-quantity-control input {
    width: 100%;
    font-size: 12px;
}

.vb-hb-cart-row .vb-detail-add-cart {
    min-height: 54px;
    border-radius: 8px;
    background: var(--vb-red);
    font-size: 18px;
    font-weight: 900;
}

.vb-hb-cart-row .vb-detail-buy-now {
    min-height: 54px;
    border-radius: 8px;
    background: #111827;
    font-size: 13px;
    font-weight: 850;
}

.vb-hb-action-icons {
    margin-top: 10px;
    display: flex;
    gap: 10px;
}

.vb-hb-action-icon {
    min-height: 44px;
    padding: 0 14px;
    border: 1px solid #eef2f6;
    border-radius: 8px;
    background: #ffffff;
    color: #111827;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 800;
}

.vb-hb-action-icon:hover,
.vb-hb-action-icon.is-active {
    color: var(--vb-red);
    border-color: var(--vb-red-border);
    background: #fffafa;
}

.vb-hb-delivery-box {
    margin-top: 20px;
    max-width: 520px;
    border-radius: 8px;
    background: #f8fafc;
    overflow: hidden;
}

.vb-hb-delivery-head {
    padding: 12px 14px 0;
}

.vb-hb-delivery-head strong {
    color: #111827;
    font-size: 13px;
    font-weight: 900;
}

.vb-hb-delivery-row {
    padding: 13px 14px;
    display: grid;
    grid-template-columns: 28px 1fr auto;
    align-items: center;
    gap: 10px;
}

.vb-hb-delivery-row > i {
    color: #111827;
    font-size: 18px;
}

.vb-hb-delivery-row span {
    display: block;
    color: #64748b;
    font-size: 11.5px;
    font-weight: 700;
}

.vb-hb-delivery-row strong {
    display: block;
    margin-top: 2px;
    color: #111827;
    font-size: 13px;
    font-weight: 850;
}

.vb-hb-delivery-row em {
    padding: 4px 8px;
    border-radius: 4px;
    background: #fff1f1;
    color: #b60000;
    font-size: 11px;
    font-style: normal;
    font-weight: 850;
}

.vb-hb-delivery-note {
    margin: 0 14px 14px;
    padding: 12px;
    border-radius: 6px;
    background: #eef2ff;
    color: #4f46e5;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.45;
}

.vb-hb-product-info-strip {
    margin-top: 22px;
}

.vb-hb-product-info-strip > strong {
    display: block;
    margin-bottom: 10px;
    color: #111827;
    font-size: 13px;
    font-weight: 900;
}

.vb-hb-product-info-strip > div {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.vb-hb-product-info-strip span,
.vb-hb-product-info-strip a {
    min-height: 46px;
    padding: 8px 12px;
    border-radius: 8px;
    background: #f8fafc;
    color: #111827;
    display: inline-flex;
    flex-direction: column;
    justify-content: center;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
}

.vb-hb-product-info-strip span b {
    color: #64748b;
    font-size: 10.5px;
    font-weight: 750;
}

.vb-hb-product-info-strip a {
    flex-direction: row;
    align-items: center;
    gap: 7px;
    color: var(--vb-red);
    border: 1px solid #eef2f6;
    background: #ffffff;
}

.vb-hb-side-column {
    display: grid;
    gap: 12px;
}

.vb-hb-premium-box {
    position: relative;
    min-height: 78px;
    padding: 14px 42px 14px 16px;
    border-radius: 9px;
    background: #fff1f7;
    overflow: hidden;
}

.vb-hb-premium-box strong {
    display: block;
    color: #d10074;
    font-size: 18px;
    font-weight: 950;
    letter-spacing: 7px;
}

.vb-hb-premium-box span {
    display: block;
    margin-top: 4px;
    color: #111827;
    font-size: 11.5px;
    line-height: 1.3;
    font-weight: 700;
}

.vb-hb-premium-box i {
    position: absolute;
    right: 14px;
    top: 50%;
    color: #d10074;
    transform: translateY(-50%);
    font-size: 20px;
}

.vb-hb-side-card {
    padding: 16px;
    border: 1px solid #eef2f6;
    border-radius: 10px;
    background: #ffffff;
}

.vb-hb-side-card-head {
    margin-bottom: 14px;
    display: flex;
    justify-content: space-between;
}

.vb-hb-side-card-head strong {
    color: #111827;
    font-size: 13px;
    font-weight: 900;
}

.vb-hb-side-seller {
    display: flex;
    align-items: center;
    gap: 6px;
}

.vb-hb-side-seller span {
    color: #b60000;
    font-size: 13px;
    font-weight: 900;
}

.vb-hb-side-seller em {
    min-width: 28px;
    height: 22px;
    border-radius: 6px;
    background: #16a34a;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-style: normal;
    font-weight: 900;
}

.vb-hb-side-card p {
    margin: 10px 0 0;
    color: #334155;
    font-size: 12px;
    line-height: 1.45;
}

.vb-hb-side-price {
    display: block;
    margin-top: 18px;
    color: #111827;
    font-size: 17px;
    font-weight: 950;
}

.vb-hb-side-card > a {
    min-height: 36px;
    margin-top: 12px;
    padding: 0 14px;
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 800;
}

.vb-hb-side-card > a:hover {
    color: #ffffff;
    background: var(--vb-red);
    border-color: var(--vb-red);
}

.vb-hb-security-badge {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.vb-hb-security-badge + .vb-hb-security-badge {
    margin-top: 14px;
    padding-top: 14px;
    border-top: 1px solid #eef2f6;
}

.vb-hb-security-badge i {
    width: 38px;
    height: 38px;
    min-width: 38px;
    border-radius: 10px;
    background: #fff1f1;
    color: var(--vb-red);
    display: grid;
    place-items: center;
    font-size: 18px;
}

.vb-hb-security-badge strong {
    display: block;
    color: #111827;
    font-size: 12px;
    font-weight: 900;
}

.vb-hb-security-badge span {
    display: block;
    margin-top: 3px;
    color: #64748b;
    font-size: 11.5px;
    line-height: 1.35;
}

@media (max-width: 1280px) {
    .vb-hb-detail-layout {
        grid-template-columns: minmax(340px, 460px) minmax(0, 1fr);
    }

    .vb-hb-side-column {
        grid-column: 1 / -1;
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .vb-hb-gallery-main {
        height: 560px;
    }
}

@media (max-width: 980px) {
    .vb-hb-detail-layout {
        grid-template-columns: 1fr;
    }

    .vb-hb-gallery-main {
        height: clamp(320px, 78vw, 520px);
    }

    .vb-hb-side-column {
        grid-template-columns: 1fr;
    }

    .vb-hb-cart-row {
        grid-template-columns: 1fr;
    }

    .vb-hb-quantity-area {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }

    .vb-hb-quantity-area .vb-quantity-control {
        max-width: 130px;
    }
}

@media (max-width: 767px) {
    .vb-hb-detail-layout {
        gap: 18px;
    }

    .vb-hb-gallery-main {
        height: 350px;
    }

    .vb-hb-gallery-nav {
        width: 42px;
        height: 42px;
    }

    .vb-hb-title-line h1 {
        font-size: 19px;
    }

    .vb-hb-price-line strong {
        font-size: 30px;
    }

    .vb-hb-thumbs-slider {
        padding: 0 34px;
    }

    .vb-hb-product-info-strip > div {
        display: grid;
        grid-template-columns: 1fr 1fr;
    }

    .vb-hb-product-info-strip a {
        grid-column: 1 / -1;
        justify-content: center;
    }
}
/* =========================================================
   Ürün Detay - Thumbnail Galeri Düzeltme
   - Aktif kırmızı çizgi kesilmesin
   - Küçük görseller düzgün ortalansın
   - Kutular eşit ve premium görünsün
========================================================= */

.vb-hb-thumbs-slider {
    margin-top: 18px;
    padding: 0 38px;
}

.vb-hb-thumbs-slider .vb-product-thumbs-viewport {
    overflow: hidden;
    padding: 3px;
    margin: -3px;
}

.vb-hb-thumbs-slider .vb-product-thumbs {
    gap: 12px !important;
    padding: 2px 2px 4px;
    align-items: center;
}

.vb-hb-thumbs-slider .vb-product-thumbs button {
    width: 72px !important;
    min-width: 72px !important;
    max-width: 72px !important;
    height: 72px !important;
    min-height: 72px !important;
    max-height: 72px !important;
    padding: 7px !important;
    border: 1px solid #dfe3e8;
    border-radius: 10px;
    background: #ffffff;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: none;
    flex: 0 0 72px !important;
}

.vb-hb-thumbs-slider .vb-product-thumbs button:hover,
.vb-hb-thumbs-slider .vb-product-thumbs button.is-active {
    border-color: var(--vb-red);
    box-shadow: 0 0 0 1px var(--vb-red);
}

.vb-hb-thumbs-slider .vb-product-thumbs img {
    width: 100%;
    height: 100%;
    max-width: 58px;
    max-height: 58px;
    padding: 0;
    border-radius: 6px;
    object-fit: contain !important;
    object-position: center;
    background: #ffffff;
}

.vb-hb-thumbs-slider .vb-product-thumbs-arrow {
    width: 30px;
    height: 30px;
    border-color: #dfe3e8;
    background: #ffffff;
}

.vb-hb-thumbs-slider .vb-product-thumbs-prev {
    left: 0;
}

.vb-hb-thumbs-slider .vb-product-thumbs-next {
    right: 0;
}

@media (max-width: 767px) {
    .vb-hb-thumbs-slider {
        padding: 0 34px;
    }

    .vb-hb-thumbs-slider .vb-product-thumbs {
        gap: 9px !important;
    }

    .vb-hb-thumbs-slider .vb-product-thumbs button {
        width: 62px !important;
        min-width: 62px !important;
        max-width: 62px !important;
        height: 62px !important;
        min-height: 62px !important;
        max-height: 62px !important;
        flex-basis: 62px !important;
    }

    .vb-hb-thumbs-slider .vb-product-thumbs img {
        max-width: 50px;
        max-height: 50px;
    }
}
/* =========================================================
   Ürün Detay - Mobil Alt Tablo / Sekmeli Alan Taşma Düzeltmesi
========================================================= */

@media (max-width: 767px) {
    .vb-product-tab-section {
        width: 100%;
        overflow: hidden;
        padding-left: 0;
        padding-right: 0;
    }

    .vb-product-tabs-card {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .vb-product-tab-panels {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .vb-product-tab-panel {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .vb-tab-content-inner {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        padding: 20px 14px 26px;
    }

    .vb-tab-description-content {
        width: 100%;
        max-width: 100%;
        overflow-wrap: anywhere;
        word-break: break-word;
        font-size: 13.6px;
        line-height: 1.62;
    }

    .vb-tab-description-content * {
        max-width: 100%;
    }

    .vb-tab-description-content img,
    .vb-tab-description-content iframe,
    .vb-tab-description-content video {
        max-width: 100%;
        height: auto;
    }

    .vb-tab-description-content table {
        display: block;
        width: 100%;
        max-width: 100%;
        overflow-x: auto;
        border-collapse: separate;
        border-spacing: 0;
        -webkit-overflow-scrolling: touch;
    }

    .vb-tab-description-content table tbody,
    .vb-tab-description-content table thead,
    .vb-tab-description-content table tr {
        width: 100%;
    }

    .vb-tab-description-content table th,
    .vb-tab-description-content table td {
        min-width: 180px;
        padding: 10px 12px;
        font-size: 12.8px;
        white-space: normal;
        word-break: break-word;
    }

    .vb-product-feature-table {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
        display: grid;
        gap: 8px;
    }

    .vb-product-feature-row {
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
    }

    .vb-product-feature-row > div {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        min-height: auto;
        padding: 12px 13px;
        border-radius: 9px;
        display: grid;
        grid-template-columns: 1fr;
        gap: 5px;
        overflow: hidden;
    }

    .vb-product-feature-row span {
        display: block;
        color: #64748b;
        font-size: 12px;
        font-weight: 750;
    }

    .vb-product-feature-row strong {
        display: block;
        width: 100%;
        max-width: 100%;
        color: #111827;
        text-align: left;
        font-size: 13px;
        font-weight: 850;
        line-height: 1.45;
        white-space: normal;
        overflow-wrap: anywhere;
        word-break: break-word;
    }

    .vb-tab-review-layout {
        width: 100%;
        max-width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        gap: 12px;
        overflow: hidden;
    }

    .vb-review-summary-card,
    .vb-review-content,
    .vb-review-list,
    .vb-review-card,
    .vb-review-form {
        width: 100%;
        max-width: 100%;
        min-width: 0;
        overflow: hidden;
    }

    .vb-installment-info-grid {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 1fr;
    }

    .vb-return-info-box {
        width: 100%;
        max-width: 100%;
    }

    .vb-return-info-box > div {
        width: 100%;
        max-width: 100%;
        grid-template-columns: 40px 1fr;
        overflow: hidden;
    }

    .vb-return-info-box p,
    .vb-return-info-box strong,
    .vb-installment-info-grid span,
    .vb-installment-info-grid strong {
        overflow-wrap: anywhere;
        word-break: break-word;
    }
}

@media (max-width: 420px) {
    .vb-tab-content-inner {
        padding-left: 12px;
        padding-right: 12px;
    }

    .vb-product-tab-nav label {
        min-width: 148px;
        font-size: 12px;
    }

    .vb-tab-title h2 {
        font-size: 18px;
        line-height: 1.3;
    }

    .vb-tab-title p {
        font-size: 12.6px;
    }

    .vb-tab-feature-title h3 {
        font-size: 19px;
    }
}
/* =========================================================
   Mobil Ürün Detay Tab Menü Düzeltme
   Tab başlıkları mobilde kaymasın, tamamı görünsün
========================================================= */

@media (max-width: 767px) {
    .vb-product-tab-nav {
        min-height: auto !important;
        display: grid !important;
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 0 !important;
        overflow: visible !important;
        border-bottom: 1px solid #e5e7eb;
        background: #ffffff;
    }

    .vb-product-tab-nav label {
        width: 100% !important;
        min-width: 0 !important;
        min-height: 54px !important;
        padding: 10px 8px !important;
        border-right: 1px solid #eef2f6;
        border-bottom: 1px solid #eef2f6;
        color: #334155;
        display: flex !important;
        align-items: center;
        justify-content: center;
        gap: 6px;
        text-align: center;
        white-space: normal !important;
        line-height: 1.25;
        font-size: 12.2px !important;
        font-weight: 750;
    }

    .vb-product-tab-nav label:nth-child(2n) {
        border-right: 0;
    }

    .vb-product-tab-nav label[for="vbTabReturn"] {
        grid-column: 1 / -1;
        border-right: 0;
    }

    .vb-product-tab-nav label::after {
        left: 14px !important;
        right: 14px !important;
        height: 2px !important;
    }

    .vb-product-tab-nav label span {
        min-width: 20px;
        height: 20px;
        padding: 0 6px;
        font-size: 10px;
        flex: 0 0 auto;
    }
}

@media (max-width: 420px) {
    .vb-product-tab-nav label {
        min-height: 52px !important;
        padding: 9px 6px !important;
        font-size: 11.5px !important;
    }

    .vb-product-tab-nav label span {
        min-width: 18px;
        height: 18px;
        font-size: 9.5px;
    }
}
/* =========================================================
   Ürün Detay - Profesyonel Değerlendirme Alanı
========================================================= */

.vb-review-premium-head {
    margin-bottom: 22px;
    padding: 22px;
    border: 1px solid #eef2f6;
    border-radius: 18px;
    background:
        radial-gradient(520px 180px at 100% 0%, rgba(182, 0, 0, 0.06), transparent 62%),
        linear-gradient(180deg, #ffffff, #f8fafc);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.vb-review-premium-head span {
    color: var(--vb-red);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .9px;
    text-transform: uppercase;
}

.vb-review-premium-head h2 {
    margin: 6px 0 0;
    color: #111827;
    font-size: 25px;
    font-weight: 950;
    letter-spacing: -0.7px;
}

.vb-review-premium-head p {
    margin: 7px 0 0;
    color: #64748b;
    font-size: 13.5px;
    line-height: 1.55;
}

.vb-review-action-btn {
    min-width: 178px;
    min-height: 48px;
    padding: 0 18px;
    border: 0;
    border-radius: 13px;
    background: var(--vb-red);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(182, 0, 0, 0.18);
    transition:
        background 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.vb-review-action-btn:hover {
    background: var(--vb-red-dark);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(182, 0, 0, 0.24);
}

.vb-review-premium-layout {
    align-items: start;
}

.vb-review-premium-summary {
    position: sticky;
    top: 104px;
    overflow: hidden;
}

.vb-review-premium-summary::before {
    content: "";
    display: block;
    height: 4px;
    margin: -21px -21px 18px;
    background: linear-gradient(90deg, var(--vb-red), #111111);
}

.vb-review-summary-note {
    margin-top: 18px;
    padding: 13px;
    border-radius: 14px;
    background: #f8fafc;
    color: #475569;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 12.3px;
    font-weight: 700;
    line-height: 1.45;
}

.vb-review-summary-note i {
    width: 32px;
    height: 32px;
    min-width: 32px;
    border-radius: 11px;
    background: #fff1f1;
    color: var(--vb-red);
    display: grid;
    place-items: center;
    font-size: 16px;
}

.vb-review-form-premium {
    margin-bottom: 14px;
    border-color: rgba(182, 0, 0, 0.18);
    background:
        radial-gradient(420px 160px at 100% 0%, rgba(182, 0, 0, 0.055), transparent 66%),
        #ffffff;
}

.vb-review-form-premium.is-collapsed {
    display: none;
}

.vb-review-premium-card {
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease,
        transform 180ms ease;
}

.vb-review-premium-card:hover {
    border-color: rgba(182, 0, 0, 0.18);
    box-shadow: 0 16px 34px rgba(15, 23, 42, 0.07);
    transform: translateY(-1px);
}

.vb-review-empty-premium {
    min-height: 260px;
    padding: 34px 26px;
    border: 1px dashed #dfe6ee;
    border-radius: 20px;
    background:
        radial-gradient(420px 180px at 50% 0%, rgba(182, 0, 0, 0.055), transparent 64%),
        linear-gradient(180deg, #ffffff, #f8fafc);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
    text-align: center;
}

.vb-review-empty-premium > div {
    width: 58px;
    height: 58px;
    border-radius: 20px;
    background: #fff1f1;
    color: var(--vb-red);
    display: grid;
    place-items: center;
    font-size: 26px;
}

.vb-review-empty-premium strong {
    color: #111827;
    font-size: 17px;
    font-weight: 950;
}

.vb-review-empty-premium p {
    max-width: 520px;
    margin: 0;
    color: #64748b;
    font-size: 13.5px;
    line-height: 1.65;
}

@media (max-width: 900px) {
    .vb-review-premium-summary {
        position: relative;
        top: auto;
    }
}

@media (max-width: 767px) {
    .vb-review-premium-head {
        padding: 18px;
        align-items: stretch;
        flex-direction: column;
    }

    .vb-review-premium-head h2 {
        font-size: 21px;
    }

    .vb-review-action-btn {
        width: 100%;
    }

    .vb-review-empty-premium {
        min-height: 220px;
        padding: 26px 18px;
    }
}
/* =========================================================
   Ürün Detay - Soru Cevap Boş Alanı
========================================================= */

.vb-question-empty-state {
    min-height: 330px;
    padding: 46px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    text-align: center;
}

.vb-question-empty-icon {
    position: relative;
    width: 92px;
    height: 76px;
    color: #4b5563;
}

.vb-question-empty-icon i:first-child {
    position: absolute;
    left: 6px;
    top: 0;
    font-size: 54px;
    line-height: 1;
    color: #374151;
}

.vb-question-empty-icon i:last-child {
    position: absolute;
    right: 4px;
    bottom: 0;
    font-size: 52px;
    line-height: 1;
    color: #9ca3af;
    text-shadow:
        -2px 0 #ffffff,
        0 -2px #ffffff,
        2px 0 #ffffff,
        0 2px #ffffff;
}

.vb-question-empty-state p {
    margin: 0;
    color: #4b5563;
    font-size: 16px;
    font-weight: 500;
    line-height: 1.5;
}

.vb-question-empty-state a,
.vb-question-empty-state button {
    min-width: 156px;
    min-height: 54px;
    padding: 0 26px;
    border: 0;
    border-radius: 10px;
    background: var(--vb-red);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 15px;
    font-weight: 900;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(182, 0, 0, 0.18);
    transition:
        background 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.vb-question-empty-state a:hover {
    background: var(--vb-red-dark);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(182, 0, 0, 0.24);
}

.vb-question-empty-state button:disabled {
    opacity: .55;
    cursor: not-allowed;
    box-shadow: none;
}

@media (max-width: 767px) {
    .vb-question-empty-state {
        min-height: 280px;
        padding: 36px 14px;
        gap: 16px;
    }

    .vb-question-empty-state p {
        font-size: 14px;
    }

    .vb-question-empty-state a,
    .vb-question-empty-state button {
        min-width: 145px;
        min-height: 48px;
        font-size: 14px;
        border-radius: 9px;
    }
}
/* =========================================================
   Ürün Detay - Vadi Destek WhatsApp Link
========================================================= */

.vb-hb-premium-link {
    display: block;
    text-decoration: none;
    color: inherit;
    cursor: pointer;
    transition:
        transform 180ms ease,
        box-shadow 180ms ease,
        background 180ms ease;
}

.vb-hb-premium-link:hover {
    color: inherit;
    transform: translateY(-1px);
    box-shadow: 0 14px 32px rgba(182, 0, 0, 0.10);
}

.vb-hb-premium-link:hover i {
    transform: translateY(-50%) translateX(3px);
}
/* =========================================================
   Ürün Detay - Onay Bekleyen Kendi Yorumum
========================================================= */

.vb-review-card.is-pending-review {
    border-color: rgba(245, 158, 11, 0.35);
    background:
        radial-gradient(420px 160px at 100% 0%, rgba(245, 158, 11, 0.08), transparent 65%),
        #ffffff;
}

.vb-review-pending-label {
    color: #b45309 !important;
}

.vb-review-pending-note {
    margin-top: 13px;
    padding: 11px 13px;
    border-radius: 12px;
    background: #fffbeb;
    color: #92400e;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.45;
}

.vb-review-pending-note i {
    color: #d97706;
    font-size: 15px;
    line-height: 1.35;
}
/* =========================================================
   Ürün Detay - Soru Cevap Sistemi
========================================================= */

.vb-question-premium-head {
    margin-bottom: 18px;
    padding: 22px;
    border: 1px solid #eef2f6;
    border-radius: 18px;
    background:
        radial-gradient(520px 180px at 100% 0%, rgba(182, 0, 0, 0.06), transparent 62%),
        linear-gradient(180deg, #ffffff, #f8fafc);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.vb-question-premium-head span {
    color: var(--vb-red);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .9px;
    text-transform: uppercase;
}

.vb-question-premium-head h2 {
    margin: 6px 0 0;
    color: #111827;
    font-size: 25px;
    font-weight: 950;
    letter-spacing: -0.7px;
}

.vb-question-premium-head p {
    margin: 7px 0 0;
    color: #64748b;
    font-size: 13.5px;
    line-height: 1.55;
}

.vb-question-action-btn,
.vb-question-empty-state button {
    min-width: 156px;
    min-height: 48px;
    padding: 0 20px;
    border: 0;
    border-radius: 13px;
    background: var(--vb-red);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 900;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 14px 30px rgba(182, 0, 0, 0.18);
    transition:
        background 180ms ease,
        transform 180ms ease,
        box-shadow 180ms ease;
}

.vb-question-action-btn:hover,
.vb-question-empty-state button:hover {
    background: var(--vb-red-dark);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(182, 0, 0, 0.24);
}

.vb-question-form {
    margin-bottom: 16px;
    padding: 22px;
    border: 1px solid rgba(182, 0, 0, 0.18);
    border-radius: 18px;
    background:
        radial-gradient(420px 160px at 100% 0%, rgba(182, 0, 0, 0.055), transparent 66%),
        #ffffff;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
}

.vb-question-form.is-collapsed {
    display: none;
}

.vb-question-form-head {
    display: grid;
    gap: 4px;
}

.vb-question-form-head strong {
    color: #111827;
    font-size: 18px;
    font-weight: 950;
    letter-spacing: -0.35px;
}

.vb-question-form-head span {
    color: #64748b;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.45;
}

.vb-question-textarea {
    display: block;
    margin-top: 15px;
}

.vb-question-textarea > span {
    display: block;
    margin-bottom: 8px;
    color: #111827;
    font-size: 12.5px;
    font-weight: 850;
}

.vb-question-textarea textarea {
    width: 100%;
    min-height: 130px;
    resize: vertical;
    padding: 14px;
    border: 1px solid #dfe6ee;
    border-radius: 16px;
    background: #ffffff;
    color: #111827;
    outline: none;
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.6;
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.vb-question-textarea textarea:focus {
    border-color: rgba(182, 0, 0, 0.34);
    box-shadow: 0 0 0 4px rgba(182, 0, 0, 0.07);
}

.vb-question-public-check {
    margin-top: 13px;
    padding: 13px 14px;
    border: 1px solid #eef2f6;
    border-radius: 15px;
    background: #f8fafc;
    display: flex;
    align-items: flex-start;
    gap: 11px;
    cursor: pointer;
}

.vb-question-public-check input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    accent-color: var(--vb-red);
    flex: 0 0 auto;
}

.vb-question-public-check span {
    display: grid;
    gap: 3px;
}

.vb-question-public-check strong {
    color: #111827;
    font-size: 13px;
    font-weight: 850;
}

.vb-question-public-check small {
    color: #64748b;
    font-size: 12px;
    line-height: 1.45;
}

.vb-question-form-actions {
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
    gap: 10px;
}

.vb-question-cancel,
.vb-question-submit {
    min-height: 44px;
    padding: 0 17px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 850;
    cursor: pointer;
}

.vb-question-cancel {
    border: 1px solid #dfe6ee;
    background: #ffffff;
    color: #111827;
}

.vb-question-submit {
    border: 0;
    background: var(--vb-red);
    color: #ffffff;
}

.vb-question-submit:hover {
    background: var(--vb-red-dark);
}

.vb-question-list {
    display: grid;
    gap: 13px;
}

.vb-question-card {
    padding: 18px;
    border: 1px solid var(--vb-border);
    border-radius: 20px;
    background: #ffffff;
    box-shadow: var(--vb-shadow-soft);
}

.vb-question-card.is-own {
    border-color: rgba(182, 0, 0, 0.16);
}

.vb-question-card.is-pending {
    background:
        radial-gradient(420px 160px at 100% 0%, rgba(245, 158, 11, 0.06), transparent 65%),
        #ffffff;
}

.vb-question-card-head {
    display: grid;
    grid-template-columns: 42px 1fr auto;
    gap: 11px;
    align-items: center;
}

.vb-question-avatar {
    width: 42px;
    height: 42px;
    border-radius: 14px;
    background: #fff1f1;
    color: var(--vb-red);
    display: grid;
    place-items: center;
    font-size: 15px;
    font-weight: 900;
}

.vb-question-card-head strong {
    display: block;
    color: #111827;
    font-size: 13.5px;
    font-weight: 850;
}

.vb-question-card-head span {
    display: block;
    margin-top: 3px;
    color: #b45309;
    font-size: 10.8px;
    font-weight: 850;
}

.vb-question-card.is-answered .vb-question-card-head span {
    color: var(--vb-green);
}

.vb-question-card-head time {
    color: #98a2b3;
    font-size: 10.8px;
    font-weight: 700;
    white-space: nowrap;
}

.vb-question-card-body {
    margin-top: 13px;
    display: grid;
    gap: 11px;
}

.vb-question-bubble,
.vb-answer-bubble {
    padding: 14px 15px;
    border-radius: 16px;
}

.vb-question-bubble {
    background: #f8fafc;
}

.vb-answer-bubble {
    border: 1px solid rgba(182, 0, 0, 0.12);
    background: #fffafa;
}

.vb-question-bubble small,
.vb-answer-bubble small {
    display: block;
    margin-bottom: 6px;
    color: var(--vb-red);
    font-size: 10.8px;
    font-weight: 900;
    letter-spacing: .45px;
    text-transform: uppercase;
}

.vb-question-bubble p,
.vb-answer-bubble p {
    margin: 0;
    color: #334155;
    font-size: 13.2px;
    line-height: 1.62;
}

.vb-answer-bubble em {
    display: block;
    margin-top: 8px;
    color: #94a3b8;
    font-size: 11px;
    font-style: normal;
    font-weight: 750;
}

.vb-question-waiting-note {
    padding: 11px 13px;
    border-radius: 12px;
    background: #fffbeb;
    color: #92400e;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.45;
}

.vb-question-waiting-note i {
    color: #d97706;
    font-size: 15px;
    line-height: 1.35;
}

@media (max-width: 767px) {
    .vb-question-premium-head {
        padding: 18px;
        align-items: stretch;
        flex-direction: column;
    }

    .vb-question-premium-head h2 {
        font-size: 21px;
    }

    .vb-question-action-btn {
        width: 100%;
    }

    .vb-question-form {
        padding: 18px;
    }

    .vb-question-form-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .vb-question-card-head {
        grid-template-columns: 40px 1fr;
    }

    .vb-question-card-head time {
        grid-column: 2 / 3;
    }
}
/* =========================================================
   Ürün Detay - Yeni Değerlendirme Tabı
========================================================= */

.vb-review-tab-v2-head {
    margin-bottom: 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.vb-review-tab-v2-head span {
    color: var(--vb-red);
    font-size: 11px;
    font-weight: 950;
    letter-spacing: .85px;
    text-transform: uppercase;
}

.vb-review-tab-v2-head h2 {
    margin: 5px 0 0;
    color: #111827;
    font-size: 25px;
    font-weight: 950;
    letter-spacing: -0.65px;
}

.vb-review-tab-v2-summary {
    min-height: 96px;
    margin-bottom: 30px;
    padding: 22px 28px;
    border-radius: 10px;
    background: #fff8e9;
    display: flex;
    align-items: center;
    gap: 18px;
    color: #111827;
}

.vb-review-tab-stars {
    display: inline-flex;
    gap: 4px;
    color: #ffb300;
    font-size: 31px;
    line-height: 1;
}

.vb-review-tab-v2-summary > strong {
    color: #111827;
    font-size: 25px;
    font-weight: 950;
}

.vb-review-tab-v2-summary > i {
    color: #111827;
    font-size: 18px;
}

.vb-review-tab-v2-summary > span {
    position: relative;
    color: #111827;
    font-size: 14px;
    font-weight: 850;
    white-space: nowrap;
}

.vb-review-tab-v2-summary > span + span::before {
    content: "•";
    margin-right: 18px;
    color: #9ca3af;
}

.vb-review-tab-v2-cards {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 12px;
    overflow: hidden;
}

.vb-review-tab-card {
    min-height: 238px;
    padding: 20px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    box-shadow: 0 8px 20px rgba(15, 23, 42, 0.035);
}

.vb-review-tab-card-stars {
    color: #ffb300;
    display: inline-flex;
    gap: 2px;
    font-size: 15px;
}

.vb-review-tab-card-meta {
    margin-top: 7px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: #6b7280;
    font-size: 12px;
    font-weight: 700;
}

.vb-review-tab-card-meta strong {
    color: #4b5563;
    font-weight: 850;
}

.vb-review-tab-card p {
    margin: 42px 0 0;
    color: #111827;
    font-size: 14px;
    line-height: 1.62;
}

.vb-review-tab-card p a {
    margin-left: 5px;
    color: #111827;
    display: inline-flex;
    align-items: center;
    gap: 3px;
    text-decoration: none;
    font-weight: 900;
}

.vb-review-tab-card p a:hover {
    color: var(--vb-red);
}

.vb-review-tab-card-foot {
    margin-top: auto;
    padding-top: 18px;
    color: #9ca3af;
    font-size: 12.5px;
    font-weight: 650;
}

.vb-review-tab-card-foot strong {
    color: #0b65c2;
    font-weight: 900;
}

.vb-review-tab-card.is-pending-review {
    border-color: rgba(245, 158, 11, 0.34);
    background:
        radial-gradient(360px 130px at 100% 0%, rgba(245, 158, 11, 0.07), transparent 65%),
        #ffffff;
}

.vb-review-tab-v2-more {
    position: relative;
    margin-top: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vb-review-tab-v2-more::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #e5e7eb;
}

.vb-review-tab-v2-more a {
    position: relative;
    z-index: 2;
    min-width: 360px;
    min-height: 48px;
    padding: 0 30px;
    border-radius: 999px;
    background: #f4f4f5;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 950;
    letter-spacing: 2px;
    text-transform: uppercase;
}

.vb-review-tab-v2-more a:hover {
    background: var(--vb-red);
    color: #ffffff;
}

/* =========================================================
   Ürün Tüm Yorumlar Sayfası
========================================================= */

.vb-review-page {
    padding: 22px 0 56px;
    background: #ffffff;
    font-family: var(--vb-font-main, "Roboto", Arial, sans-serif);
}

.vb-review-page .vb-container {
    width: min(100% - 44px, var(--vb-container));
    max-width: var(--vb-container);
    margin-left: auto;
    margin-right: auto;
}

.vb-review-page-layout {
    display: grid;
    grid-template-columns: minmax(320px, 420px) minmax(0, 1fr);
    gap: 34px;
    align-items: flex-start;
}

.vb-review-page-product {
    position: sticky;
    top: 102px;
    display: grid;
    gap: 16px;
}

.vb-review-back {
    width: fit-content;
    min-height: 38px;
    padding: 0 13px;
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    background: #ffffff;
    color: var(--vb-red);
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
}

.vb-review-back:hover {
    color: #ffffff;
    background: var(--vb-red);
    border-color: var(--vb-red);
}

.vb-review-product-card {
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #ffffff;
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 14px;
    box-shadow: 0 10px 28px rgba(15, 23, 42, 0.045);
}

.vb-review-product-image {
    width: 120px;
    height: 150px;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    background: #ffffff;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.vb-review-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.vb-review-product-info {
    min-width: 0;
    display: grid;
    align-content: flex-start;
    gap: 10px;
}

.vb-review-product-info > a {
    color: #111827;
    display: -webkit-box;
    overflow: hidden;
    text-decoration: none;
    font-size: 14px;
    font-weight: 850;
    line-height: 1.42;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.vb-review-product-info > strong {
    color: var(--vb-red);
    font-size: 20px;
    font-weight: 950;
}

.vb-review-product-stars {
    display: flex;
    align-items: center;
    gap: 8px;
}

.vb-review-product-stars span {
    color: #111827;
    font-size: 14px;
    font-weight: 900;
}

.vb-review-product-stars div {
    color: #ffb300;
    display: inline-flex;
    gap: 2px;
    font-size: 13px;
}

.vb-review-product-info p {
    margin: 0;
    color: #64748b;
    font-size: 12px;
    font-weight: 750;
}

.vb-review-page-cart-form {
    grid-column: 1 / -1;
}

.vb-review-page-cart-form button {
    width: 100%;
    min-height: 50px;
    border: 0;
    border-radius: 10px;
    background: var(--vb-red);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 15px;
    font-weight: 950;
    cursor: pointer;
}

.vb-review-page-cart-form button:hover {
    background: var(--vb-red-dark);
}

.vb-review-seller-box {
    padding: 20px;
    border-radius: 16px;
    background: #eef6ff;
    display: grid;
    grid-template-columns: 52px 1fr;
    column-gap: 14px;
    align-items: center;
}

.vb-review-seller-box div {
    width: 52px;
    height: 52px;
    border-radius: 999px;
    background: #111827;
    color: #ffffff;
    display: grid;
    place-items: center;
    grid-row: span 2;
    font-size: 23px;
}

.vb-review-seller-box strong {
    color: #0b65c2;
    font-size: 15px;
    font-weight: 950;
}

.vb-review-seller-box span {
    color: #64748b;
    font-size: 12.5px;
    font-weight: 700;
    line-height: 1.45;
}

.vb-review-page-bars {
    display: grid;
    gap: 8px;
}

.vb-review-page-bars a {
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    background: #ffffff;
    color: #111827;
    display: grid;
    grid-template-columns: 70px 1fr 34px;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    font-size: 12px;
    font-weight: 800;
}

.vb-review-page-bars a.is-active,
.vb-review-page-bars a:hover {
    border-color: var(--vb-red-border);
    background: #fffafa;
}

.vb-review-page-bars em {
    height: 8px;
    border-radius: 999px;
    background: #eef2f6;
    overflow: hidden;
}

.vb-review-page-bars b {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--vb-red);
}

.vb-review-page-bars strong {
    text-align: right;
    color: #64748b;
}

.vb-review-page-main {
    min-width: 0;
}

.vb-review-page-head {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.vb-review-page-head h1 {
    margin: 0;
    color: #111827;
    font-size: 25px;
    font-weight: 950;
    letter-spacing: -0.6px;
}

.vb-review-page-head > a {
    color: #111827;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
}

.vb-review-page-head > a:hover {
    color: var(--vb-red);
}

.vb-review-page-score {
    margin-top: 8px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
}

.vb-review-page-score strong {
    color: #111827;
    font-size: 22px;
    font-weight: 950;
}

.vb-review-page-score span {
    color: #ffb300;
    display: inline-flex;
    gap: 2px;
    font-size: 16px;
}

.vb-review-page-score em {
    color: #64748b;
    font-size: 13px;
    font-style: normal;
    font-weight: 750;
}

.vb-review-page-filter {
    margin-bottom: 24px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px auto auto;
    gap: 10px;
}

.vb-review-page-filter > div {
    position: relative;
}

.vb-review-page-filter > div i {
    position: absolute;
    left: 15px;
    top: 50%;
    color: var(--vb-red);
    transform: translateY(-50%);
    font-size: 18px;
}

.vb-review-page-filter input,
.vb-review-page-filter select {
    width: 100%;
    min-height: 50px;
    border: 1px solid #dfe3e8;
    border-radius: 8px;
    background: #ffffff;
    color: #111827;
    outline: none;
    font-size: 14px;
    font-weight: 650;
}

.vb-review-page-filter input {
    padding: 0 15px 0 46px;
}

.vb-review-page-filter select {
    padding: 0 14px;
}

.vb-review-page-filter button,
.vb-review-page-filter a {
    min-height: 50px;
    padding: 0 18px;
    border-radius: 8px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
}

.vb-review-page-filter button {
    border: 0;
    background: var(--vb-red);
    color: #ffffff;
    cursor: pointer;
}

.vb-review-page-filter a {
    border: 1px solid #dfe3e8;
    background: #ffffff;
    color: #111827;
}

.vb-review-page-list {
    display: grid;
    gap: 0;
}

.vb-review-page-item {
    padding: 20px 0 24px;
    border-bottom: 1px solid #e5e7eb;
    background: #ffffff;
}

.vb-review-page-item:first-child {
    border-top: 1px solid #e5e7eb;
}

.vb-review-page-item-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.vb-review-page-item-head > div {
    display: flex;
    align-items: center;
    gap: 11px;
}

.vb-review-page-item-head > div > span {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #fff1f1;
    color: var(--vb-red);
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 950;
}

.vb-review-page-item-head strong {
    display: block;
    color: #111827;
    font-size: 13.5px;
    font-weight: 900;
}

.vb-review-page-item-head em {
    display: block;
    margin-top: 3px;
    color: #64748b;
    font-size: 11px;
    font-style: normal;
    font-weight: 750;
}

.vb-review-page-item-head time {
    color: #64748b;
    font-size: 12px;
    font-weight: 750;
    white-space: nowrap;
}

.vb-review-page-stars {
    margin-top: 14px;
    color: #ffb300;
    display: inline-flex;
    gap: 2px;
    font-size: 16px;
}

.vb-review-page-item > p {
    margin: 16px 0 0;
    color: #111827;
    font-size: 15px;
    line-height: 1.7;
}

.vb-review-page-source {
    margin-top: 20px;
    color: #64748b;
    font-size: 13px;
    font-weight: 650;
}

.vb-review-page-source strong {
    color: #0b65c2;
    font-weight: 900;
}

.vb-review-page-item.is-pending-review {
    padding: 20px;
    border: 1px solid rgba(245, 158, 11, 0.35);
    border-radius: 16px;
    background:
        radial-gradient(420px 160px at 100% 0%, rgba(245, 158, 11, 0.07), transparent 65%),
        #ffffff;
    margin-bottom: 14px;
}

.vb-review-page-empty {
    padding: 44px 20px;
    border: 1px dashed #dfe3e8;
    border-radius: 18px;
    background: #ffffff;
    text-align: center;
}

.vb-review-page-empty i {
    color: var(--vb-red);
    font-size: 36px;
}

.vb-review-page-empty strong {
    display: block;
    margin-top: 12px;
    color: #111827;
    font-size: 17px;
    font-weight: 950;
}

.vb-review-page-empty p {
    margin: 8px 0 0;
    color: #64748b;
    font-size: 13px;
}

.vb-review-page-pagination {
    margin-top: 24px;
}

@media (max-width: 1100px) {
    .vb-review-tab-v2-cards {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vb-review-page-layout {
        grid-template-columns: 1fr;
    }

    .vb-review-page-product {
        position: relative;
        top: auto;
    }
}

@media (max-width: 767px) {
    .vb-review-tab-v2-head {
        align-items: stretch;
        flex-direction: column;
    }

    .vb-review-tab-v2-summary {
        align-items: flex-start;
        flex-direction: column;
        gap: 10px;
        padding: 18px;
    }

    .vb-review-tab-v2-summary > span + span::before {
        display: none;
    }

    .vb-review-tab-v2-cards {
        grid-template-columns: 1fr;
    }

    .vb-review-tab-card {
        min-height: auto;
    }

    .vb-review-tab-card p {
        margin-top: 22px;
    }

    .vb-review-tab-v2-more a {
        min-width: 0;
        width: 100%;
        letter-spacing: 1.2px;
    }

    .vb-review-page .vb-container {
        width: min(100% - 22px, var(--vb-container));
    }

    .vb-review-product-card {
        grid-template-columns: 94px 1fr;
    }

    .vb-review-product-image {
        width: 94px;
        height: 118px;
    }

    .vb-review-page-filter {
        grid-template-columns: 1fr;
    }

    .vb-review-page-head {
        display: grid;
    }
}
/* =========================================================
   Tüm Yorumlar Sayfası - Buton ve AJAX Sepet Düzeltme
========================================================= */

.vb-review-page-actions {
    display: grid;
    gap: 9px;
}

.vb-review-write-btn,
.vb-review-page-review-btn,
.vb-review-page-empty a {
    min-height: 42px;
    padding: 0 15px;
    border-radius: 12px;
    background: var(--vb-red);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 850;
    box-shadow: 0 10px 22px rgba(182, 0, 0, .14);
    transition:
        background 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.vb-review-write-btn:hover,
.vb-review-page-review-btn:hover,
.vb-review-page-empty a:hover {
    background: var(--vb-red-dark);
    color: #ffffff;
    transform: translateY(-1px);
}

.vb-review-page-head-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    justify-content: flex-end;
}

.vb-review-page-head-actions > a:not(.vb-review-page-review-btn) {
    min-height: 42px;
}

.vb-review-page-empty a {
    width: fit-content;
    margin: 14px auto 0;
}

.vb-review-page-cart-form button:disabled {
    opacity: .75;
    cursor: wait;
}

@media (max-width: 767px) {
    .vb-review-page-head-actions {
        width: 100%;
        justify-content: stretch;
    }

    .vb-review-page-head-actions a,
    .vb-review-write-btn,
    .vb-review-page-cart-form button {
        width: 100%;
    }
}
/* =========================================================
   Tüm Yorumlar Sayfası - Ürün Kartı Buton Hizalama Final
========================================================= */

.vb-review-product-card {
    display: grid !important;
    grid-template-columns: 150px minmax(0, 1fr) !important;
    gap: 18px !important;
    align-items: start !important;
}

.vb-review-product-image {
    width: 150px !important;
    height: 150px !important;
}

.vb-review-product-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: contain !important;
}

.vb-review-product-info {
    min-width: 0 !important;
}

.vb-review-page-actions {
    grid-column: 1 / -1 !important;
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
    margin-top: 2px !important;
}

.vb-review-page-cart-form {
    width: 100% !important;
    margin: 0 !important;
}

.vb-review-page-cart-form button,
.vb-review-write-btn {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 46px !important;
    padding: 0 12px !important;
    border-radius: 12px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    white-space: nowrap !important;
    line-height: 1 !important;
    text-align: center !important;
    font-size: 13px !important;
    font-weight: 850 !important;
}

.vb-review-page-cart-form button i,
.vb-review-write-btn i {
    flex: 0 0 auto !important;
    font-size: 16px !important;
    line-height: 1 !important;
}

.vb-review-write-btn {
    background: var(--vb-red) !important;
    color: #ffffff !important;
    text-decoration: none !important;
    box-shadow: 0 10px 22px rgba(182, 0, 0, .14) !important;
}

.vb-review-write-btn:hover {
    background: var(--vb-red-dark) !important;
    color: #ffffff !important;
}

@media (max-width: 1199px) {
    .vb-review-product-card {
        grid-template-columns: 132px minmax(0, 1fr) !important;
        gap: 16px !important;
    }

    .vb-review-product-image {
        width: 132px !important;
        height: 132px !important;
    }

    .vb-review-page-actions {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 767px) {
    .vb-review-product-card {
        grid-template-columns: 110px minmax(0, 1fr) !important;
        gap: 13px !important;
    }

    .vb-review-product-image {
        width: 110px !important;
        height: 110px !important;
    }

    .vb-review-page-actions {
        grid-column: 1 / -1 !important;
        grid-template-columns: 1fr !important;
        gap: 8px !important;
    }

    .vb-review-page-cart-form button,
    .vb-review-write-btn {
        min-height: 43px !important;
        font-size: 12.5px !important;
    }
}

@media (max-width: 420px) {
    .vb-review-product-card {
        grid-template-columns: 1fr !important;
    }

    .vb-review-product-image {
        width: 100% !important;
        height: 180px !important;
    }
}
/* =========================================================
   Tüm Yorumlar Sayfası - Final Toparlama
========================================================= */

.vb-review-page {
    padding: 24px 0 46px;
    background: #ffffff;
    font-family: var(--vb-font-main, "Roboto", Arial, sans-serif);
}

.vb-review-page .vb-container {
    width: min(100% - 44px, var(--vb-container));
    max-width: var(--vb-container);
    margin-left: auto;
    margin-right: auto;
}

.vb-review-page-layout {
    display: grid;
    grid-template-columns: 360px minmax(0, 1fr);
    gap: 28px;
    align-items: flex-start;
}

.vb-review-page-product {
    position: sticky;
    top: 96px;
    display: grid;
    gap: 14px;
    min-width: 0;
}

.vb-review-back {
    width: fit-content;
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    color: #b60000;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 800;
}

.vb-review-back:hover {
    background: #fff5f5;
    border-color: rgba(182, 0, 0, .2);
    color: #b60000;
}

.vb-review-product-card {
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #ffffff;
    display: grid;
    grid-template-columns: 118px minmax(0, 1fr);
    gap: 16px;
    align-items: start;
    box-shadow: 0 12px 30px rgba(15, 23, 42, .045);
}

.vb-review-product-image {
    width: 118px;
    height: 118px;
    border: 1px solid #eef2f6;
    border-radius: 14px;
    background: #ffffff;
    display: grid;
    place-items: center;
    overflow: hidden;
}

.vb-review-product-image img {
    width: 100%;
    height: 100%;
    padding: 10px;
    object-fit: contain;
}

.vb-review-product-info {
    min-width: 0;
}

.vb-review-product-info > a {
    color: #0f172a;
    display: block;
    text-decoration: none;
    font-size: 14px;
    font-weight: 900;
    line-height: 1.38;
}

.vb-review-product-info > a:hover {
    color: #b60000;
}

.vb-review-product-info > strong {
    display: block;
    margin-top: 12px;
    color: #b60000;
    font-size: 22px;
    font-weight: 950;
    line-height: 1;
}

.vb-review-product-stars {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
}

.vb-review-product-stars > span {
    color: #0f172a;
    font-size: 13px;
    font-weight: 900;
}

.vb-review-product-stars > div {
    color: #ffb300;
    display: inline-flex;
    gap: 2px;
    font-size: 13px;
}

.vb-review-product-info p {
    margin: 9px 0 0;
    color: #64748b;
    font-size: 12.5px;
    font-weight: 800;
}

.vb-review-page-cart-form {
    grid-column: 1 / -1;
    margin: 2px 0 0;
}

.vb-review-page-cart-form button {
    width: 100%;
    min-height: 46px;
    padding: 0 18px;
    border: 0;
    border-radius: 13px;
    background: #b60000;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-size: 14px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 12px 26px rgba(182, 0, 0, .16);
}

.vb-review-page-cart-form button:hover {
    background: #8e0000;
}

.vb-review-page-cart-form button:disabled {
    opacity: .75;
    cursor: wait;
}

.vb-review-seller-box {
    padding: 18px;
    border-radius: 18px;
    background: #eef6ff;
    display: grid;
    grid-template-columns: 46px 1fr;
    column-gap: 13px;
    align-items: center;
}

.vb-review-seller-box > div {
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: #0f172a;
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 20px;
    grid-row: span 2;
}

.vb-review-seller-box strong {
    color: #0b65c2;
    font-size: 14px;
    font-weight: 900;
}

.vb-review-seller-box span {
    margin-top: 4px;
    color: #475569;
    font-size: 12.5px;
    font-weight: 750;
    line-height: 1.45;
}

.vb-review-page-bars {
    display: grid;
    gap: 9px;
}

.vb-review-page-bars a {
    min-height: 42px;
    padding: 0 12px;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    background: #ffffff;
    color: #0f172a;
    display: grid;
    grid-template-columns: 70px 1fr 26px;
    gap: 10px;
    align-items: center;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 850;
}

.vb-review-page-bars a:hover,
.vb-review-page-bars a.is-active {
    border-color: rgba(182, 0, 0, .22);
    background: #fffafa;
    color: #b60000;
}

.vb-review-page-bars em {
    height: 8px;
    border-radius: 999px;
    background: #eef2f6;
    overflow: hidden;
}

.vb-review-page-bars b {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: #b60000;
}

.vb-review-page-bars strong {
    color: #64748b;
    text-align: right;
    font-size: 12px;
    font-weight: 900;
}

.vb-review-page-main {
    min-width: 0;
}

.vb-review-page-head {
    margin-bottom: 18px;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
}

.vb-review-page-head h1 {
    margin: 0;
    color: #0f172a;
    font-size: 28px;
    font-weight: 950;
    line-height: 1.15;
    letter-spacing: -.6px;
}

.vb-review-page-score {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
}

.vb-review-page-score strong {
    color: #0f172a;
    font-size: 22px;
    font-weight: 950;
}

.vb-review-page-score span {
    color: #ffb300;
    display: inline-flex;
    gap: 2px;
    font-size: 14px;
}

.vb-review-page-score em {
    color: #64748b;
    font-size: 13px;
    font-style: normal;
    font-weight: 800;
}

.vb-review-page-head-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 12px;
    flex-wrap: wrap;
}

.vb-review-page-review-btn,
.vb-review-page-product-btn {
    min-height: 42px;
    padding: 0 17px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    font-size: 13px;
    font-weight: 850;
    white-space: nowrap;
}

.vb-review-page-review-btn {
    border: 0;
    background: #b60000;
    color: #ffffff;
    box-shadow: 0 12px 26px rgba(182, 0, 0, .16);
}

.vb-review-page-review-btn:hover {
    background: #8e0000;
    color: #ffffff;
}

.vb-review-page-product-btn {
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #0f172a;
}

.vb-review-page-product-btn:hover {
    border-color: rgba(182, 0, 0, .22);
    background: #fffafa;
    color: #b60000;
}

.vb-review-page-filter {
    margin-bottom: 22px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 210px 96px auto;
    gap: 10px;
    align-items: stretch;
}

.vb-review-page-filter > div {
    position: relative;
}

.vb-review-page-filter > div i {
    position: absolute;
    left: 16px;
    top: 50%;
    color: #b60000;
    transform: translateY(-50%);
    font-size: 18px;
}

.vb-review-page-filter input,
.vb-review-page-filter select {
    width: 100%;
    min-height: 48px;
    border: 1px solid #dfe5ec;
    border-radius: 12px;
    background: #ffffff;
    color: #0f172a;
    outline: none;
    font-size: 13px;
    font-weight: 700;
}

.vb-review-page-filter input {
    padding: 0 15px 0 46px;
}

.vb-review-page-filter select {
    padding: 0 14px;
}

.vb-review-page-filter button,
.vb-review-page-filter > a {
    min-height: 48px;
    padding: 0 16px;
    border: 0;
    border-radius: 12px;
    background: #b60000;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 13px;
    font-weight: 900;
    cursor: pointer;
}

.vb-review-page-filter > a {
    background: #f4f4f5;
    color: #0f172a;
}

.vb-review-page-list {
    display: grid;
    gap: 14px;
}

.vb-review-page-item,
.vb-review-page-empty {
    padding: 22px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .035);
}

.vb-review-page-item-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 14px;
}

.vb-review-page-item-head > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vb-review-page-item-head > div > span {
    width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #fff1f1;
    color: #b60000;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 900;
}

.vb-review-page-item-head strong {
    display: block;
    color: #0f172a;
    font-size: 14px;
    font-weight: 900;
}

.vb-review-page-item-head em {
    display: block;
    margin-top: 3px;
    color: #16a34a;
    font-size: 11px;
    font-style: normal;
    font-weight: 850;
}

.vb-review-page-item-head time {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.vb-review-page-stars {
    margin-top: 13px;
    color: #ffb300;
    display: inline-flex;
    gap: 3px;
    font-size: 14px;
}

.vb-review-page-item p {
    margin: 12px 0 0;
    color: #334155;
    font-size: 13.5px;
    line-height: 1.65;
}

.vb-review-page-source {
    margin-top: 16px;
    padding-top: 13px;
    border-top: 1px solid #eef2f6;
    color: #94a3b8;
    font-size: 12px;
    font-weight: 750;
}

.vb-review-page-source strong {
    color: #0b65c2;
    font-weight: 900;
}

.vb-review-page-empty {
    min-height: 250px;
    display: grid;
    place-items: center;
    align-content: center;
    text-align: center;
}

.vb-review-page-empty > i {
    width: 62px;
    height: 62px;
    border-radius: 20px;
    background: #fff1f1;
    color: #b60000;
    display: grid;
    place-items: center;
    font-size: 28px;
}

.vb-review-page-empty strong {
    margin-top: 14px;
    color: #0f172a;
    font-size: 21px;
    font-weight: 950;
}

.vb-review-page-empty p {
    margin: 7px 0 0;
    color: #64748b;
    font-size: 13px;
    font-weight: 650;
}

.vb-review-page-pagination {
    margin-top: 18px;
}

/* Eski sonradan eklenen bozan classları pasifleştir */
.vb-review-page-actions,
.vb-review-write-btn {
    display: none !important;
}

.vb-review-page-empty a {
    display: none !important;
}

/* Responsive */
@media (max-width: 1199px) {
    .vb-review-page-layout {
        grid-template-columns: 320px minmax(0, 1fr);
        gap: 22px;
    }

    .vb-review-product-card {
        grid-template-columns: 104px minmax(0, 1fr);
    }

    .vb-review-product-image {
        width: 104px;
        height: 104px;
    }

    .vb-review-page-filter {
        grid-template-columns: 1fr 180px 90px auto;
    }
}

@media (max-width: 991px) {
    .vb-review-page-layout {
        grid-template-columns: 1fr;
    }

    .vb-review-page-product {
        position: relative;
        top: auto;
    }

    .vb-review-product-card {
        grid-template-columns: 130px minmax(0, 1fr);
    }

    .vb-review-product-image {
        width: 130px;
        height: 130px;
    }
}

@media (max-width: 767px) {
    .vb-review-page {
        padding: 18px 0 34px;
    }

    .vb-review-page .vb-container {
        width: min(100% - 22px, var(--vb-container));
    }

    .vb-review-page-head {
        flex-direction: column;
        align-items: stretch;
    }

    .vb-review-page-head h1 {
        font-size: 23px;
    }

    .vb-review-page-head-actions {
        justify-content: stretch;
    }

    .vb-review-page-review-btn,
    .vb-review-page-product-btn {
        width: 100%;
    }

    .vb-review-page-filter {
        grid-template-columns: 1fr;
    }

    .vb-review-product-card {
        grid-template-columns: 106px minmax(0, 1fr);
        padding: 15px;
        gap: 13px;
    }

    .vb-review-product-image {
        width: 106px;
        height: 106px;
    }

    .vb-review-product-info > a {
        font-size: 13px;
    }

    .vb-review-product-info > strong {
        font-size: 19px;
    }

    .vb-review-page-cart-form button {
        min-height: 43px;
        font-size: 13px;
    }
}

@media (max-width: 420px) {
    .vb-review-product-card {
        grid-template-columns: 1fr;
    }

    .vb-review-product-image {
        width: 100%;
        height: 170px;
    }
}
/* =========================================================
   Tüm Yorumlar Sayfası - Aynı Sayfada Değerlendirme Formu
========================================================= */

.vb-review-page-head-actions button {
    border: 0;
    cursor: pointer;
}

.vb-review-page-form {
    margin: 0 0 20px;
    padding: 20px;
    border: 1px solid rgba(182, 0, 0, .16);
    border-radius: 18px;
    background:
        radial-gradient(420px 160px at 100% 0%, rgba(182, 0, 0, .045), transparent 66%),
        #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .045);
}

.vb-review-page-form.is-collapsed {
    display: none;
}

.vb-review-page-form-head span {
    display: inline-block;
    margin-bottom: 6px;
    color: #b60000;
    font-size: 10.5px;
    font-weight: 900;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.vb-review-page-form-head h2 {
    margin: 0;
    color: #0f172a;
    font-size: 20px;
    font-weight: 950;
    line-height: 1.2;
    letter-spacing: -.4px;
}

.vb-review-page-form-head p {
    margin: 7px 0 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.55;
}

.vb-review-page-form-alert {
    margin-top: 14px;
    padding: 13px 14px;
    border: 1px solid rgba(182, 0, 0, .16);
    border-radius: 14px;
    background: #fff7f7;
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.vb-review-page-form-alert > i {
    color: #b60000;
    font-size: 18px;
}

.vb-review-page-form-alert strong {
    display: block;
    color: #0f172a;
    font-size: 13.5px;
    font-weight: 900;
}

.vb-review-page-form-alert p {
    margin: 4px 0 0;
    color: #64748b;
    font-size: 12.5px;
    line-height: 1.45;
}

.vb-review-page-rating {
    margin-top: 16px;
    padding: 13px 14px;
    border: 1px solid #eef2f6;
    border-radius: 15px;
    background: #f8fafc;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
}

.vb-review-page-rating > span {
    color: #0f172a;
    font-size: 12.5px;
    font-weight: 900;
}

.vb-review-page-rate-buttons {
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.vb-review-page-rate-buttons button {
    width: 36px;
    height: 36px;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    background: #ffffff;
    color: #cbd5e1;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition:
        border-color 180ms ease,
        background 180ms ease,
        color 180ms ease,
        transform 180ms ease;
}

.vb-review-page-rate-buttons button:hover,
.vb-review-page-rate-buttons button.is-active {
    border-color: #ffd76a;
    background: #fff8df;
    color: #ffb300;
    transform: translateY(-1px);
}

.vb-review-page-customer {
    margin-top: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.vb-review-page-customer > div {
    padding: 12px 14px;
    border: 1px solid #eef2f6;
    border-radius: 14px;
    background: #fbfcfe;
}

.vb-review-page-customer span {
    display: block;
    margin-bottom: 5px;
    color: #64748b;
    font-size: 11.5px;
    font-weight: 750;
}

.vb-review-page-customer strong {
    color: #0f172a;
    font-size: 13px;
    font-weight: 850;
    word-break: break-word;
}

.vb-review-page-textarea {
    display: block;
    margin-top: 14px;
}

.vb-review-page-textarea > span {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 12.5px;
    font-weight: 900;
}

.vb-review-page-textarea textarea {
    width: 100%;
    min-height: 120px;
    padding: 14px 15px;
    border: 1px solid #dfe5ec;
    border-radius: 15px;
    background: #ffffff;
    color: #0f172a;
    outline: none;
    resize: vertical;
    font-size: 13px;
    line-height: 1.6;
    transition:
        border-color 180ms ease,
        box-shadow 180ms ease;
}

.vb-review-page-textarea textarea:focus {
    border-color: rgba(182, 0, 0, .3);
    box-shadow: 0 0 0 4px rgba(182, 0, 0, .06);
}

.vb-review-page-form-actions {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.vb-review-page-submit,
.vb-review-page-cancel {
    min-height: 42px;
    padding: 0 17px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 900;
    cursor: pointer;
}

.vb-review-page-submit {
    border: 0;
    background: #b60000;
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(182, 0, 0, .14);
}

.vb-review-page-submit:hover {
    background: #8e0000;
}

.vb-review-page-cancel {
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #0f172a;
}

.vb-review-page-cancel:hover {
    border-color: rgba(182, 0, 0, .22);
    background: #fffafa;
    color: #b60000;
}

.vb-review-page-item.is-pending-review {
    border-color: rgba(245, 158, 11, .32);
    background:
        radial-gradient(320px 120px at 100% 0%, rgba(245, 158, 11, .06), transparent 70%),
        #ffffff;
}

@media (max-width: 767px) {
    .vb-review-page-form {
        padding: 16px;
        border-radius: 16px;
    }

    .vb-review-page-rating {
        align-items: flex-start;
        flex-direction: column;
    }

    .vb-review-page-rate-buttons {
        width: 100%;
        justify-content: space-between;
    }

    .vb-review-page-rate-buttons button {
        width: 38px;
        height: 38px;
    }

    .vb-review-page-customer {
        grid-template-columns: 1fr;
    }

    .vb-review-page-form-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .vb-review-page-submit,
    .vb-review-page-cancel {
        width: 100%;
    }
}
/* =========================================================
   Ürün Soru Cevap - Tüm Sorular Sayfası ve Detay Tabı
========================================================= */

.vb-question-clean {
    display: grid;
    gap: 18px;
}

.vb-question-premium-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
}

.vb-question-premium-head > div {
    min-width: 0;
}

.vb-question-premium-head span {
    display: block;
    margin-bottom: 5px;
    color: var(--vb-red);
    font-size: 10.5px;
    font-weight: 900;
    letter-spacing: .85px;
    text-transform: uppercase;
}

.vb-question-premium-head h2 {
    margin: 0;
    color: #0f172a;
    font-size: 21px;
    font-weight: 950;
    line-height: 1.22;
    letter-spacing: -.35px;
}

.vb-question-premium-head p {
    max-width: 760px;
    margin: 7px 0 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.55;
}

.vb-question-action-btn,
.vb-question-empty-state button {
    min-width: 170px;
    min-height: 42px;
    padding: 0 16px;
    border: 0;
    border-radius: 12px;
    background: var(--vb-red);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 850;
    white-space: nowrap;
    cursor: pointer;
    box-shadow: 0 10px 24px rgba(182, 0, 0, .14);
}

.vb-question-action-btn:hover,
.vb-question-empty-state button:hover {
    background: var(--vb-red-dark);
    color: #ffffff;
}

.vb-question-form,
.vb-question-page-form {
    padding: 20px;
    border: 1px solid rgba(182, 0, 0, .16);
    border-radius: 18px;
    background:
        radial-gradient(420px 160px at 100% 0%, rgba(182, 0, 0, .045), transparent 66%),
        #ffffff;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .045);
}

.vb-question-form.is-collapsed,
.vb-question-page-form.is-collapsed {
    display: none;
}

.vb-question-form-head strong,
.vb-question-page-form-head h2 {
    display: block;
    margin: 0;
    color: #0f172a;
    font-size: 19px;
    font-weight: 950;
    line-height: 1.2;
}

.vb-question-form-head span,
.vb-question-page-form-head span {
    display: block;
    margin-bottom: 6px;
    color: var(--vb-red);
    font-size: 10.5px;
    font-weight: 900;
    letter-spacing: .75px;
    text-transform: uppercase;
}

.vb-question-page-form-head p {
    margin: 7px 0 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.55;
}

.vb-question-textarea,
.vb-question-page-textarea {
    display: block;
    margin-top: 14px;
}

.vb-question-textarea > span,
.vb-question-page-textarea > span {
    display: block;
    margin-bottom: 8px;
    color: #0f172a;
    font-size: 12.5px;
    font-weight: 900;
}

.vb-question-textarea textarea,
.vb-question-page-textarea textarea {
    width: 100%;
    min-height: 120px;
    padding: 14px 15px;
    border: 1px solid #dfe5ec;
    border-radius: 15px;
    background: #ffffff;
    color: #0f172a;
    outline: none;
    resize: vertical;
    font-size: 13px;
    line-height: 1.6;
}

.vb-question-textarea textarea:focus,
.vb-question-page-textarea textarea:focus {
    border-color: rgba(182, 0, 0, .3);
    box-shadow: 0 0 0 4px rgba(182, 0, 0, .06);
}

.vb-question-public-check,
.vb-question-page-public-check {
    margin-top: 13px;
    padding: 13px 14px;
    border: 1px solid #eef2f6;
    border-radius: 14px;
    background: #f8fafc;
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
}

.vb-question-public-check input,
.vb-question-page-public-check input {
    margin-top: 4px;
    accent-color: var(--vb-red);
}

.vb-question-public-check strong,
.vb-question-page-public-check strong {
    display: block;
    color: #0f172a;
    font-size: 12.5px;
    font-weight: 900;
}

.vb-question-public-check small,
.vb-question-page-public-check small {
    display: block;
    margin-top: 3px;
    color: #64748b;
    font-size: 12px;
    line-height: 1.45;
}

.vb-question-form-actions,
.vb-question-page-form-actions {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.vb-question-submit,
.vb-question-page-submit,
.vb-question-cancel,
.vb-question-page-cancel {
    min-height: 42px;
    padding: 0 17px;
    border-radius: 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12.5px;
    font-weight: 900;
    cursor: pointer;
}

.vb-question-submit,
.vb-question-page-submit {
    border: 0;
    background: var(--vb-red);
    color: #ffffff;
    box-shadow: 0 10px 22px rgba(182, 0, 0, .14);
}

.vb-question-submit:hover,
.vb-question-page-submit:hover {
    background: var(--vb-red-dark);
}

.vb-question-cancel,
.vb-question-page-cancel {
    border: 1px solid #e5e7eb;
    background: #ffffff;
    color: #0f172a;
}

.vb-question-cancel:hover,
.vb-question-page-cancel:hover {
    border-color: rgba(182, 0, 0, .22);
    background: #fffafa;
    color: var(--vb-red);
}

.vb-question-list,
.vb-question-page-list {
    display: grid;
    gap: 14px;
}

.vb-question-list.is-empty {
    grid-template-columns: 1fr;
}

.vb-question-card,
.vb-question-page-item {
    padding: 18px;
    border: 1px solid #e5e7eb;
    border-radius: 18px;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, .035);
}

.vb-question-card.is-pending,
.vb-question-page-item.is-pending {
    border-color: rgba(245, 158, 11, .28);
    background:
        radial-gradient(260px 120px at 100% 0%, rgba(245, 158, 11, .05), transparent 70%),
        #ffffff;
}

.vb-question-card-head,
.vb-question-page-item-head {
    display: grid;
    grid-template-columns: 42px minmax(0, 1fr) auto;
    gap: 12px;
    align-items: center;
}

.vb-question-page-item-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
}

.vb-question-page-item-head > div {
    display: flex;
    align-items: center;
    gap: 12px;
}

.vb-question-avatar,
.vb-question-page-item-head > div > span {
    width: 42px;
    min-width: 42px;
    height: 42px;
    border-radius: 999px;
    background: #fff1f1;
    color: var(--vb-red);
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 900;
}

.vb-question-card-head strong,
.vb-question-page-item-head strong {
    display: block;
    color: #0f172a;
    font-size: 14px;
    font-weight: 900;
}

.vb-question-card-head span,
.vb-question-page-item-head em {
    display: block;
    margin-top: 3px;
    color: #16a34a;
    font-size: 11px;
    font-style: normal;
    font-weight: 850;
}

.vb-question-card.is-pending .vb-question-card-head span,
.vb-question-page-item.is-pending .vb-question-page-item-head em {
    color: #b45309;
}

.vb-question-card-head time,
.vb-question-page-item-head time {
    color: #94a3b8;
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.vb-question-card-body {
    margin-top: 13px;
    display: grid;
    gap: 11px;
}

.vb-question-bubble,
.vb-question-page-bubble {
    margin-top: 13px;
    padding: 14px 15px;
    border-radius: 15px;
    background: #f8fafc;
    border: 1px solid #eef2f6;
}

.vb-question-bubble small,
.vb-answer-bubble small,
.vb-question-page-bubble small,
.vb-question-page-answer small {
    display: block;
    margin-bottom: 6px;
    color: var(--vb-red);
    font-size: 10.5px;
    font-weight: 900;
    letter-spacing: .6px;
    text-transform: uppercase;
}

.vb-question-bubble p,
.vb-answer-bubble p,
.vb-question-page-bubble p,
.vb-question-page-answer p {
    margin: 0;
    color: #334155;
    font-size: 13.2px;
    line-height: 1.62;
}

.vb-question-bubble a,
.vb-answer-bubble a {
    margin-left: 6px;
    color: #0f172a;
    text-decoration: none;
    font-weight: 900;
}

.vb-question-bubble a:hover,
.vb-answer-bubble a:hover {
    color: var(--vb-red);
}

.vb-answer-bubble,
.vb-question-page-answer {
    padding: 14px 15px;
    border-radius: 15px;
    background: #eef6ff;
    border: 1px solid #dbeafe;
}

.vb-answer-bubble small,
.vb-question-page-answer small {
    color: #0b65c2;
}

.vb-answer-bubble em,
.vb-question-page-answer em {
    display: block;
    margin-top: 8px;
    color: #64748b;
    font-size: 11.5px;
    font-style: normal;
    font-weight: 800;
}

.vb-question-waiting-note,
.vb-question-page-waiting {
    margin-top: 12px;
    padding: 11px 13px;
    border-radius: 14px;
    background: #fff9eb;
    color: #9a6700;
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 12px;
    font-weight: 750;
    line-height: 1.5;
}

.vb-question-empty-state {
    width: 100%;
    min-height: 150px;
    padding: 22px 28px;
    border: 1px dashed #dfe5ec;
    border-radius: 18px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%);
    display: grid;
    grid-template-columns: 66px minmax(0, 1fr) auto;
    grid-template-rows: auto auto;
    column-gap: 20px;
    row-gap: 5px;
    align-items: center;
    text-align: left;
}

.vb-question-empty-icon {
    grid-column: 1;
    grid-row: 1 / 3;
    width: 58px;
    height: 58px;
    border-radius: 17px;
    background: #fff1f1;
    color: var(--vb-red);
    display: grid;
    place-items: center;
    position: relative;
}

.vb-question-empty-icon i {
    font-size: 22px;
}

.vb-question-empty-icon i + i {
    display: none;
}

.vb-question-empty-state strong {
    grid-column: 2;
    grid-row: 1;
    color: #0f172a;
    font-size: 21px;
    font-weight: 950;
    line-height: 1.2;
}

.vb-question-empty-state p {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    color: #64748b;
    font-size: 13px;
    line-height: 1.55;
}

.vb-question-empty-state button {
    grid-column: 3;
    grid-row: 1 / 3;
}

.vb-question-clean-more {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 2px;
}

.vb-question-clean-more::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #e5e7eb;
}

.vb-question-clean-more a {
    position: relative;
    z-index: 2;
    min-width: 220px;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    background: #f4f4f5;
    color: #111827;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-decoration: none;
    font-size: 11.5px;
    font-weight: 900;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.vb-question-clean-more a:hover {
    background: var(--vb-red);
    color: #ffffff;
}

.vb-question-product-stats {
    margin-top: 12px;
    display: grid;
    gap: 6px;
}

.vb-question-product-stats span {
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 800;
}

.vb-question-product-stats i {
    color: var(--vb-red);
}

.vb-question-page-side-stats {
    display: grid;
    gap: 9px;
}

.vb-question-page-side-stats a {
    min-height: 42px;
    padding: 0 13px;
    border: 1px solid #eef2f6;
    border-radius: 12px;
    background: #ffffff;
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    text-decoration: none;
    font-size: 12.5px;
    font-weight: 850;
}

.vb-question-page-side-stats a:hover,
.vb-question-page-side-stats a.is-active {
    border-color: rgba(182, 0, 0, .22);
    background: #fffafa;
    color: var(--vb-red);
}

.vb-question-page-side-stats strong {
    color: inherit;
    font-weight: 950;
}

.vb-question-page-score {
    margin-top: 10px;
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
}

.vb-question-page-score span {
    min-height: 30px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f8fafc;
    color: #64748b;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-size: 12px;
    font-weight: 850;
}

.vb-question-page-score i {
    color: var(--vb-red);
}

.vb-question-page-head-actions button {
    border: 0;
    cursor: pointer;
}

@media (max-width: 991px) {
    .vb-question-empty-state {
        grid-template-columns: 58px minmax(0, 1fr);
    }

    .vb-question-empty-state button {
        grid-column: 2;
        grid-row: 3;
        justify-self: start;
        margin-top: 6px;
    }
}

@media (max-width: 767px) {
    .vb-question-premium-head {
        align-items: stretch;
        flex-direction: column;
    }

    .vb-question-action-btn {
        width: 100%;
    }

    .vb-question-card-head {
        grid-template-columns: 40px minmax(0, 1fr);
    }

    .vb-question-card-head time {
        grid-column: 2 / 3;
    }

    .vb-question-page-item-head {
        gap: 10px;
        flex-direction: column;
    }

    .vb-question-empty-state {
        padding: 20px 16px;
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
        gap: 10px;
    }

    .vb-question-empty-icon,
    .vb-question-empty-state strong,
    .vb-question-empty-state p,
    .vb-question-empty-state button {
        grid-column: 1;
        grid-row: auto;
    }

    .vb-question-empty-state button {
        width: 100%;
    }

    .vb-question-form-actions,
    .vb-question-page-form-actions {
        display: grid;
        grid-template-columns: 1fr;
    }

    .vb-question-submit,
    .vb-question-page-submit,
    .vb-question-cancel,
    .vb-question-page-cancel {
        width: 100%;
    }
}
/* =========================================================
   Ürün Detay Show - Soru Cevap Kart Görünümü
========================================================= */

.vb-tab-faq-panel .vb-tab-content-inner {
    padding: 22px 28px 28px !important;
}

.vb-question-clean {
    width: 100% !important;
    display: grid !important;
    gap: 16px !important;
}

.vb-question-premium-head {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 16px !important;
}

.vb-question-premium-head > div {
    min-width: 0 !important;
    max-width: 760px !important;
}

.vb-question-premium-head span {
    display: block !important;
    margin: 0 0 5px !important;
    color: var(--vb-red) !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    letter-spacing: .8px !important;
    text-transform: uppercase !important;
}

.vb-question-premium-head h2 {
    margin: 0 !important;
    color: #0f172a !important;
    font-size: 21px !important;
    font-weight: 950 !important;
    line-height: 1.22 !important;
    letter-spacing: -.35px !important;
}

.vb-question-premium-head p {
    margin: 7px 0 0 !important;
    color: #64748b !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
}

.vb-question-action-btn,
.vb-question-preview-empty button {
    min-width: 160px !important;
    min-height: 42px !important;
    padding: 0 16px !important;
    border: 0 !important;
    border-radius: 12px !important;
    background: var(--vb-red) !important;
    color: #ffffff !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 8px !important;
    font-size: 12.5px !important;
    font-weight: 850 !important;
    white-space: nowrap !important;
    cursor: pointer !important;
    box-shadow: 0 10px 24px rgba(182, 0, 0, .14) !important;
}

.vb-question-action-btn:hover,
.vb-question-preview-empty button:hover {
    background: var(--vb-red-dark) !important;
    color: #ffffff !important;
}

.vb-question-card-grid {
    width: 100% !important;
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 14px !important;
}

.vb-question-card-grid.is-empty {
    grid-template-columns: 1fr !important;
}

.vb-question-preview-card {
    min-height: 220px !important;
    padding: 16px !important;
    border: 1px solid #e7ebf0 !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    display: flex !important;
    flex-direction: column !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .045) !important;
    transition:
        transform 180ms ease,
        border-color 180ms ease,
        box-shadow 180ms ease !important;
}

.vb-question-preview-card:hover {
    transform: translateY(-3px) !important;
    border-color: rgba(182, 0, 0, .16) !important;
    box-shadow: 0 18px 34px rgba(15, 23, 42, .08) !important;
}

.vb-question-preview-card.is-pending {
    border-color: rgba(245, 158, 11, .28) !important;
    background:
        radial-gradient(260px 120px at 100% 0%, rgba(245, 158, 11, .055), transparent 70%),
        #ffffff !important;
}

.vb-question-preview-head {
    display: grid !important;
    grid-template-columns: 36px minmax(0, 1fr) auto !important;
    gap: 10px !important;
    align-items: center !important;
}

.vb-question-preview-avatar {
    width: 36px !important;
    height: 36px !important;
    border-radius: 999px !important;
    background: #fff1f1 !important;
    color: var(--vb-red) !important;
    display: grid !important;
    place-items: center !important;
    font-size: 12px !important;
    font-weight: 900 !important;
}

.vb-question-preview-head strong {
    display: block !important;
    color: #0f172a !important;
    font-size: 13px !important;
    font-weight: 900 !important;
    line-height: 1.25 !important;
}

.vb-question-preview-head span {
    display: inline-flex !important;
    margin-top: 4px !important;
    color: #16a34a !important;
    font-size: 10.5px !important;
    font-weight: 850 !important;
}

.vb-question-preview-card.is-pending .vb-question-preview-head span {
    color: #b45309 !important;
}

.vb-question-preview-head time {
    color: #94a3b8 !important;
    font-size: 11px !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
}

.vb-question-preview-body,
.vb-question-preview-answer {
    margin-top: 12px !important;
    padding: 13px !important;
    border: 1px solid #eef2f6 !important;
    border-radius: 14px !important;
    background: #f8fafc !important;
}

.vb-question-preview-answer {
    background: #eef6ff !important;
    border-color: #dbeafe !important;
}

.vb-question-preview-body small,
.vb-question-preview-answer small {
    display: block !important;
    margin-bottom: 6px !important;
    color: var(--vb-red) !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    letter-spacing: .55px !important;
    text-transform: uppercase !important;
}

.vb-question-preview-answer small {
    color: #0b65c2 !important;
}

.vb-question-preview-body p,
.vb-question-preview-answer p {
    margin: 0 !important;
    color: #334155 !important;
    font-size: 12.8px !important;
    line-height: 1.58 !important;
}

.vb-question-preview-body a,
.vb-question-preview-answer a {
    margin-left: 5px !important;
    color: #0f172a !important;
    text-decoration: none !important;
    font-weight: 900 !important;
}

.vb-question-preview-body a:hover,
.vb-question-preview-answer a:hover {
    color: var(--vb-red) !important;
}

.vb-question-preview-waiting {
    margin-top: 12px !important;
    padding: 10px 12px !important;
    border-radius: 13px !important;
    background: #fff9eb !important;
    color: #9a6700 !important;
    display: flex !important;
    align-items: flex-start !important;
    gap: 8px !important;
    font-size: 11.5px !important;
    font-weight: 750 !important;
    line-height: 1.45 !important;
}

.vb-question-preview-foot {
    margin-top: auto !important;
    padding-top: 13px !important;
    color: #94a3b8 !important;
    font-size: 11.5px !important;
    font-weight: 750 !important;
}

.vb-question-preview-foot strong {
    color: #0b65c2 !important;
    font-weight: 900 !important;
}

.vb-question-preview-empty {
    width: 100% !important;
    min-height: 128px !important;
    padding: 22px 28px !important;
    border: 1px dashed #dfe5ec !important;
    border-radius: 18px !important;
    background: linear-gradient(180deg, #ffffff 0%, #fbfcfe 100%) !important;
    display: grid !important;
    grid-template-columns: 62px minmax(0, 1fr) auto !important;
    gap: 18px !important;
    align-items: center !important;
    text-align: left !important;
    box-shadow: none !important;
}

.vb-question-preview-empty-icon {
    width: 56px !important;
    height: 56px !important;
    border-radius: 16px !important;
    background: #fff1f1 !important;
    color: var(--vb-red) !important;
    display: grid !important;
    place-items: center !important;
}

.vb-question-preview-empty-icon i {
    font-size: 23px !important;
}

.vb-question-preview-empty span {
    width: fit-content !important;
    padding: 5px 10px !important;
    border-radius: 999px !important;
    background: #fff4f4 !important;
    color: var(--vb-red) !important;
    display: inline-flex !important;
    font-size: 10px !important;
    font-weight: 900 !important;
    letter-spacing: .55px !important;
    text-transform: uppercase !important;
}

.vb-question-preview-empty strong {
    display: block !important;
    margin-top: 8px !important;
    color: #0f172a !important;
    font-size: 22px !important;
    font-weight: 950 !important;
    line-height: 1.18 !important;
}

.vb-question-preview-empty p {
    margin: 6px 0 0 !important;
    color: #64748b !important;
    font-size: 13px !important;
    line-height: 1.5 !important;
}

.vb-question-clean-more {
    position: relative !important;
    display: flex !important;
    justify-content: center !important;
    margin-top: 2px !important;
}

.vb-question-clean-more::before {
    content: "" !important;
    position: absolute !important;
    left: 0 !important;
    right: 0 !important;
    top: 50% !important;
    height: 1px !important;
    background: #e5e7eb !important;
}

.vb-question-clean-more a {
    position: relative !important;
    z-index: 2 !important;
    min-width: 220px !important;
    min-height: 40px !important;
    padding: 0 18px !important;
    border-radius: 999px !important;
    background: #f4f4f5 !important;
    color: #111827 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 7px !important;
    text-decoration: none !important;
    font-size: 11.5px !important;
    font-weight: 900 !important;
    letter-spacing: .8px !important;
    text-transform: uppercase !important;
}

.vb-question-clean-more a:hover {
    background: var(--vb-red) !important;
    color: #ffffff !important;
}

@media (max-width: 1199px) {
    .vb-question-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    }

    .vb-question-card-grid.is-empty {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 767px) {
    .vb-tab-faq-panel .vb-tab-content-inner {
        padding: 18px 13px 24px !important;
    }

    .vb-question-premium-head {
        align-items: stretch !important;
        flex-direction: column !important;
    }

    .vb-question-action-btn {
        width: 100% !important;
    }

    .vb-question-card-grid {
        grid-template-columns: 1fr !important;
    }

    .vb-question-preview-head {
        grid-template-columns: 36px minmax(0, 1fr) !important;
    }

    .vb-question-preview-head time {
        grid-column: 2 / 3 !important;
    }

    .vb-question-preview-empty {
        padding: 20px 16px !important;
        grid-template-columns: 1fr !important;
        justify-items: center !important;
        text-align: center !important;
        gap: 10px !important;
    }

    .vb-question-preview-empty button {
        width: 100% !important;
    }

    .vb-question-clean-more a {
        width: 100% !important;
        min-width: 0 !important;
    }
}
/* =========================================================
   Soru Cevap - Satıcı Cevabı Alt Cevap Görünümü
========================================================= */

.vb-question-page-answer,
.vb-question-preview-answer,
.vb-answer-bubble {
    position: relative !important;
    width: calc(100% - 54px) !important;
    margin: 14px 0 0 54px !important;
    padding: 14px 16px 14px 18px !important;
    border: 1px solid #dbeafe !important;
    border-radius: 14px !important;
    background: #eef6ff !important;
    box-shadow: none !important;
}

.vb-question-page-answer::before,
.vb-question-preview-answer::before,
.vb-answer-bubble::before {
    content: "" !important;
    position: absolute !important;
    left: -24px !important;
    top: 22px !important;
    width: 24px !important;
    height: 1px !important;
    background: #dbeafe !important;
}

.vb-question-page-answer::after,
.vb-question-preview-answer::after,
.vb-answer-bubble::after {
    content: "" !important;
    position: absolute !important;
    left: -25px !important;
    top: 22px !important;
    width: 1px !important;
    height: 22px !important;
    background: #dbeafe !important;
}

.vb-question-page-answer small,
.vb-question-preview-answer small,
.vb-answer-bubble small {
    display: inline-flex !important;
    align-items: center !important;
    gap: 7px !important;
    margin: 0 0 7px !important;
    color: #0b65c2 !important;
    font-size: 10.5px !important;
    font-weight: 950 !important;
    letter-spacing: .65px !important;
    text-transform: uppercase !important;
}

.vb-question-page-answer small::before,
.vb-question-preview-answer small::before,
.vb-answer-bubble small::before {
    content: "\F26A" !important;
    font-family: "bootstrap-icons" !important;
    font-size: 13px !important;
    font-weight: normal !important;
    line-height: 1 !important;
}

.vb-question-page-answer p,
.vb-question-preview-answer p,
.vb-answer-bubble p {
    margin: 0 !important;
    color: #1e293b !important;
    font-size: 13px !important;
    line-height: 1.58 !important;
}

.vb-question-page-answer em,
.vb-question-preview-answer em,
.vb-answer-bubble em {
    display: block !important;
    margin-top: 8px !important;
    color: #64748b !important;
    font-size: 11.5px !important;
    font-style: normal !important;
    font-weight: 800 !important;
}

.vb-question-page-bubble,
.vb-question-preview-body,
.vb-question-bubble {
    margin-bottom: 0 !important;
}

@media (max-width: 767px) {
    .vb-question-page-answer,
    .vb-question-preview-answer,
    .vb-answer-bubble {
        width: calc(100% - 28px) !important;
        margin-left: 28px !important;
        padding: 13px 14px !important;
    }

    .vb-question-page-answer::before,
    .vb-question-preview-answer::before,
    .vb-answer-bubble::before {
        left: -16px !important;
        width: 16px !important;
    }

    .vb-question-page-answer::after,
    .vb-question-preview-answer::after,
    .vb-answer-bubble::after {
        left: -17px !important;
    }
}


/* =========================================================
   Ürün Detay - Canlı İyzico Taksit Tabı
   Tab geçişine müdahale etmez, sadece taksit alanını tasarlar.
========================================================= */

.vb-installment-live {
    width: 100%;
}

.vb-installment-live .d-none {
    display: none !important;
}

.vb-installment-hero {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 18px;
    padding: 20px;
    border: 1px solid #e6e8ee;
    border-radius: 20px;
    background:
        radial-gradient(520px 220px at 100% 0%, rgba(182, 0, 0, 0.075), transparent 62%),
        linear-gradient(180deg, #ffffff, #f8fafc);
    box-shadow: 0 12px 34px rgba(15, 23, 42, 0.055);
    margin-bottom: 16px;
}

.vb-installment-kicker {
    min-height: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 12px;
    border-radius: 999px;
    background: #fff1f1;
    color: var(--vb-red);
    border: 1px solid var(--vb-red-border);
    font-size: 11px;
    font-weight: 900;
    margin-bottom: 10px;
}

.vb-installment-hero h2 {
    margin: 0;
    color: #111827;
    font-size: 22px;
    line-height: 1.18;
    font-weight: 950;
    letter-spacing: -0.35px;
}

.vb-installment-hero p {
    max-width: 720px;
    margin: 8px 0 0;
    color: #64748b;
    font-size: 13px;
    font-weight: 650;
    line-height: 1.55;
}

.vb-installment-price-card {
    width: 210px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 16px;
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid #e6e8ee;
    box-shadow: 0 10px 24px rgba(15, 23, 42, 0.055);
}

.vb-installment-price-card span {
    color: #64748b;
    font-size: 11px;
    font-weight: 850;
    text-transform: uppercase;
    letter-spacing: 0.25px;
}

.vb-installment-price-card strong {
    margin-top: 5px;
    color: var(--vb-red);
    font-size: 22px;
    font-weight: 950;
    letter-spacing: -0.45px;
}

.vb-installment-price-card small {
    margin-top: 4px;
    color: #94a3b8;
    font-size: 11px;
    font-weight: 700;
}

.vb-installment-status,
.vb-installment-alert {
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 16px;
    border-radius: 16px;
    border: 1px solid #e6e8ee;
    background: #ffffff;
    box-shadow: 0 10px 26px rgba(15, 23, 42, 0.045);
}

.vb-installment-status strong,
.vb-installment-alert strong {
    display: block;
    color: #111827;
    font-size: 14px;
    font-weight: 950;
}

.vb-installment-status p,
.vb-installment-alert p {
    margin: 3px 0 0;
    color: #64748b;
    font-size: 12px;
    font-weight: 650;
}

.vb-installment-alert {
    border-color: #fde68a;
    background: #fffbeb;
}

.vb-installment-alert i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #fef3c7;
    color: #b45309;
    font-size: 18px;
    flex-shrink: 0;
}

.vb-installment-spinner {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    border: 3px solid #e2e8f0;
    border-top-color: var(--vb-red);
    animation: vbInstallmentSpin .75s linear infinite;
    flex-shrink: 0;
}

@keyframes vbInstallmentSpin {
    to {
        transform: rotate(360deg);
    }
}

.vb-installment-summary {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin-bottom: 16px;
}

.vb-installment-summary > div {
    display: flex;
    align-items: flex-start;
    gap: 11px;
    padding: 14px;
    border-radius: 16px;
    border: 1px solid #e6e8ee;
    background: #ffffff;
    box-shadow: 0 9px 24px rgba(15, 23, 42, 0.04);
}

.vb-installment-summary i {
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: #fff1f1;
    color: var(--vb-red);
    font-size: 18px;
    flex-shrink: 0;
}

.vb-installment-summary strong {
    display: block;
    color: #111827;
    font-size: 13px;
    font-weight: 950;
}

.vb-installment-summary small {
    display: block;
    margin-top: 3px;
    color: #64748b;
    font-size: 11.5px;
    font-weight: 650;
    line-height: 1.45;
}

.vb-installment-bank-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.vb-installment-bank-card {
    border: 1px solid #e6e8ee;
    border-radius: 18px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 12px 30px rgba(15, 23, 42, 0.052);
}

.vb-installment-bank-head {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 14px;
    background:
        radial-gradient(220px 100px at 100% 0%, rgba(182, 0, 0, 0.075), transparent 60%),
        linear-gradient(180deg, #ffffff, #f8fafc);
    border-bottom: 1px solid #e6e8ee;
}

.vb-installment-bank-head span {
    display: block;
    color: #64748b;
    font-size: 11px;
    font-weight: 850;
}

.vb-installment-bank-head strong {
    display: block;
    margin-top: 2px;
    color: #111827;
    font-size: 15px;
    font-weight: 950;
}

.vb-installment-bank-head i {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    background: #fff1f1;
    color: var(--vb-red);
    font-size: 19px;
    flex-shrink: 0;
}

.vb-installment-table-wrap {
    overflow-x: auto;
}

.vb-installment-table {
    width: 100%;
    border-collapse: collapse;
}

.vb-installment-table th,
.vb-installment-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #eef2f7;
    text-align: left;
    white-space: nowrap;
}

.vb-installment-table th {
    color: #64748b;
    background: #f8fafc;
    font-size: 11px;
    font-weight: 950;
}

.vb-installment-table td {
    color: #334155;
    font-size: 12px;
    font-weight: 800;
}

.vb-installment-table tbody tr:last-child td {
    border-bottom: 0;
}

.vb-installment-count {
    display: inline-flex;
    align-items: center;
    min-height: 25px;
    padding: 0 9px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #111827;
    font-size: 11px;
    font-weight: 950;
}

.vb-installment-note {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-top: 15px;
    padding: 13px 14px;
    border-radius: 16px;
    background: #f8fafc;
    border: 1px solid #e6e8ee;
    color: #64748b;
    font-size: 11.5px;
    font-weight: 650;
    line-height: 1.5;
}

.vb-installment-note i {
    color: var(--vb-red);
    font-size: 16px;
    margin-top: 1px;
    flex-shrink: 0;
}

@media (max-width: 1200px) {
    .vb-installment-bank-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 992px) {
    .vb-installment-hero {
        flex-direction: column;
    }

    .vb-installment-price-card {
        width: 100%;
    }

    .vb-installment-summary {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .vb-installment-hero {
        padding: 16px;
        border-radius: 18px;
    }

    .vb-installment-hero h2 {
        font-size: 20px;
    }

    .vb-installment-bank-grid {
        grid-template-columns: 1fr;
    }

    .vb-installment-summary > div {
        padding: 13px;
    }

    .vb-installment-table th,
    .vb-installment-table td {
        padding: 9px 10px;
        font-size: 11.5px;
    }
}

/* =========================================================
   Ürün Detay - Havale/EFT Fiyatı ve Güven Rozetleri
========================================================= */

.vb-hb-bank-transfer-price {
    width: fit-content;
    max-width: 100%;
    margin-top: 12px;
    padding: 10px 13px;
    border: 1px solid rgba(21, 128, 61, 0.18);
    border-radius: 8px;
    background: linear-gradient(180deg, #f0fdf4, #ffffff);
    display: flex;
    align-items: center;
    gap: 9px;
    flex-wrap: wrap;
}

.vb-hb-bank-transfer-price span {
    color: #166534;
    font-size: 12px;
    font-weight: 850;
}

.vb-hb-bank-transfer-price strong {
    color: #15803d;
    font-size: 20px;
    font-weight: 950;
    letter-spacing: -0.35px;
    line-height: 1;
}

.vb-hb-bank-transfer-price em {
    min-height: 22px;
    padding: 0 8px;
    border-radius: 999px;
    background: #dcfce7;
    color: #166534;
    display: inline-flex;
    align-items: center;
    font-size: 10.5px;
    font-style: normal;
    font-weight: 900;
}

.vb-hb-trust-pills {
    margin-top: 15px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.vb-hb-trust-pills .vb-hb-installment-pill {
    margin-top: 0;
}

.vb-hb-installment-pill-soft {
    background: #f8fafc;
    color: #334155;
    border: 1px solid #eef2f6;
}

.vb-hb-installment-pill-soft i {
    color: #b60000;
}

.vb-hb-side-bank-price {
    margin-top: 10px;
    padding: 10px 11px;
    border: 1px solid rgba(21, 128, 61, 0.18);
    border-radius: 8px;
    background: #f0fdf4;
    display: grid;
    gap: 4px;
}

.vb-hb-side-bank-price span {
    color: #166534;
    font-size: 11px;
    font-weight: 850;
}

.vb-hb-side-bank-price strong {
    color: #15803d;
    font-size: 17px;
    font-weight: 950;
    letter-spacing: -0.25px;
}

.vb-hb-side-bank-price em {
    color: #166534;
    font-size: 10.5px;
    font-style: normal;
    font-weight: 800;
}

@media (max-width: 767px) {
    .vb-hb-bank-transfer-price {
        width: 100%;
        align-items: flex-start;
        flex-direction: column;
        gap: 5px;
    }

    .vb-hb-bank-transfer-price strong {
        font-size: 18px;
    }

    .vb-hb-trust-pills {
        display: grid;
        grid-template-columns: 1fr;
    }

    .vb-hb-trust-pills .vb-hb-installment-pill {
        width: 100%;
        justify-content: flex-start;
    }
}
/* =========================================================
   Ürün Detay - Kompakt Güven Rozetleri Override
========================================================= */

.vb-hb-trust-pills {
    margin-top: 10px !important;
    display: flex !important;
    align-items: center !important;
    gap: 6px !important;
    flex-wrap: wrap !important;
}

.vb-hb-trust-pills .vb-hb-installment-pill {
    width: auto !important;
    min-height: 27px !important;
    margin-top: 0 !important;
    padding: 0 9px !important;
    border-radius: 6px !important;
    background: #f8fafc !important;
    color: #334155 !important;
    border: 1px solid #eef2f6 !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 6px !important;
    font-size: 11.5px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
}

.vb-hb-trust-pills .vb-hb-installment-pill:first-child {
    background: #f6f0ff !important;
    color: #6d28d9 !important;
    border-color: #efe5ff !important;
}

.vb-hb-trust-pills .vb-hb-installment-pill i {
    font-size: 13px !important;
    line-height: 1 !important;
}

.vb-hb-trust-pills .vb-hb-installment-pill-soft i {
    color: #b60000 !important;
}

@media (max-width: 767px) {
    .vb-hb-trust-pills {
        gap: 5px !important;
    }

    .vb-hb-trust-pills .vb-hb-installment-pill {
        min-height: 26px !important;
        padding: 0 8px !important;
        font-size: 11px !important;
        white-space: normal !important;
    }
}
/* =========================================================
   Ürün Detay - Güven Rozetleri Tek Satır Override
========================================================= */

.vb-hb-trust-pills {
    margin-top: 10px !important;
    display: flex !important;
    align-items: center !important;
    gap: 5px !important;
    flex-wrap: nowrap !important;
    width: 100% !important;
    max-width: 100% !important;
    overflow: hidden !important;
}

.vb-hb-trust-pills .vb-hb-installment-pill {
    width: auto !important;
    min-width: 0 !important;
    min-height: 25px !important;
    margin-top: 0 !important;
    padding: 0 7px !important;
    border-radius: 6px !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: flex-start !important;
    gap: 5px !important;
    font-size: 10.8px !important;
    font-weight: 800 !important;
    line-height: 1 !important;
    white-space: nowrap !important;
    flex: 0 1 auto !important;
}

.vb-hb-trust-pills .vb-hb-installment-pill i {
    font-size: 12px !important;
    flex: 0 0 auto !important;
}

@media (max-width: 767px) {
    .vb-hb-trust-pills {
        flex-wrap: wrap !important;
        overflow: visible !important;
    }

    .vb-hb-trust-pills .vb-hb-installment-pill {
        font-size: 10.5px !important;
        min-height: 25px !important;
        padding: 0 7px !important;
    }
}
/* =========================================================
   Ürün Detay - KDV Dahil ve Sadakat Puanı Bilgisi
========================================================= */

.vb-hb-main-price-wrap {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.vb-hb-main-price-wrap > strong {
    display: inline-flex;
    align-items: center;
}

.vb-hb-main-price-wrap > span,
.vb-hb-side-main-price > span {
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: #f1f5f9;
    color: #475569;
    border: 1px solid #e2e8f0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 900;
    line-height: 1;
    white-space: nowrap;
}

.vb-hb-side-main-price {
    margin-top: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.vb-hb-side-main-price .vb-hb-side-price {
    margin-top: 0 !important;
}

.vb-hb-side-loyalty-earn {
    margin-top: 12px;
    padding: 13px;
    border-radius: 13px;
    border: 1px solid rgba(22, 163, 74, 0.18);
    background: linear-gradient(135deg, rgba(240, 253, 244, 0.98), rgba(236, 253, 245, 0.82));
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.vb-hb-side-loyalty-earn > div {
    width: 34px;
    height: 34px;
    border-radius: 11px;
    background: #16a34a;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    box-shadow: 0 10px 22px rgba(22, 163, 74, 0.18);
}

.vb-hb-side-loyalty-earn > div i {
    font-size: 17px;
    line-height: 1;
}

.vb-hb-side-loyalty-earn section {
    min-width: 0;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.vb-hb-side-loyalty-earn span {
    color: #166534;
    font-size: 11.5px;
    font-weight: 850;
    line-height: 1.25;
}

.vb-hb-side-loyalty-earn strong {
    color: #15803d;
    font-size: 20px;
    font-weight: 950;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.vb-hb-side-loyalty-earn small {
    color: #64748b;
    font-size: 11px;
    font-weight: 650;
    line-height: 1.35;
}

@media (max-width: 991px) {
    .vb-hb-side-main-price {
        margin-top: 12px;
    }

    .vb-hb-side-loyalty-earn {
        padding: 12px;
    }
}

@media (max-width: 767px) {
    .vb-hb-main-price-wrap {
        gap: 8px;
    }

    .vb-hb-main-price-wrap > span,
    .vb-hb-side-main-price > span {
        min-height: 24px;
        padding: 0 8px;
        font-size: 10.5px;
    }

    .vb-hb-side-loyalty-earn strong {
        font-size: 18px;
    }
}
