:root {
    --vb-primary: #285234;
    --vb-primary-dark: #173522;
    --vb-primary-soft: rgba(40, 82, 52, 0.08);
    --vb-primary-border: rgba(40, 82, 52, 0.18);
    --vb-accent: #b98a3d;
    --vb-accent-soft: rgba(185, 138, 61, 0.12);
    --vb-danger: #b42318;
    --vb-success: #16803a;
    --vb-success-soft: #edf9f1;
    --vb-warning: #f59e0b;
    --vb-title: #111827;
    --vb-text: #344054;
    --vb-muted: #667085;
    --vb-soft: #98a2b3;
    --vb-border: #e4e7ec;
    --vb-border-soft: #eef1f5;
    --vb-card: #ffffff;
    --vb-page: #fbfaf6;
    --vb-cream: #fff8ea;
    --vb-container: 1480px;
    --vb-radius: 16px;
    --vb-radius-lg: 20px;
    --vb-shadow-soft: 0 8px 24px rgba(16, 24, 40, 0.045);
    --vb-shadow: 0 14px 34px rgba(16, 24, 40, 0.07);
    --vb-transition: 180ms ease;
    --vb-font-main: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

.vb-product-detail-page,
.vb-product-tab-section,
.vb-related-section,
.vb-review-page,
.vb-question-page {
    font-family: var(--vb-font-main);
    color: var(--vb-text);
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

.vb-product-detail-page *,
.vb-product-tab-section *,
.vb-related-section *,
.vb-review-page *,
.vb-question-page * {
    box-sizing: border-box;
}

.vb-product-detail-page .vb-container,
.vb-product-tab-section .vb-container,
.vb-related-section .vb-container,
.vb-review-page .vb-container,
.vb-question-page .vb-container {
    width: min(100% - 44px, var(--vb-container));
    max-width: var(--vb-container);
    margin-left: auto;
    margin-right: auto;
}

.vb-product-detail-page a,
.vb-product-tab-section a,
.vb-related-section a,
.vb-review-page a,
.vb-question-page a {
    text-decoration: none;
}

.vb-hb-product-page {
    padding: 14px 0 28px;
    background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%);
}

.vb-product-breadcrumb {
    margin: 0 0 14px;
    display: flex;
    align-items: center;
    gap: 7px;
    color: var(--vb-soft);
    font-size: 12.5px;
    font-weight: 500;
    overflow-x: auto;
    white-space: nowrap;
    scrollbar-width: none;
}

.vb-product-breadcrumb::-webkit-scrollbar {
    display: none;
}

.vb-product-breadcrumb a {
    color: #475467;
    font-weight: 600;
}

.vb-product-breadcrumb a:hover {
    color: var(--vb-primary);
}

.vb-product-breadcrumb i {
    color: #c3cad5;
    font-size: 10px;
}

.vb-product-breadcrumb span {
    color: #8a94a6;
}

.vb-hb-detail-layout {
    display: grid;
    grid-template-columns: minmax(380px, 500px) minmax(0, 1fr) minmax(300px, 360px);
    gap: 24px;
    align-items: flex-start;
}

.vb-hb-gallery-column,
.vb-market-buy-column {
    position: sticky;
    top: 92px;
}

.vb-hb-gallery-column,
.vb-hb-info-column,
.vb-market-buy-column {
    min-width: 0;
}

.vb-hb-gallery {
    padding: 0;
    border: 0;
    background: transparent;
    box-shadow: none;
}

.vb-hb-gallery-main {
    position: relative;
    height: 560px;
    border: 1px solid var(--vb-border);
    border-radius: 18px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: var(--vb-shadow-soft);
    cursor: zoom-in;
}

.vb-hb-gallery-main img {
    width: 100%;
    height: 100%;
    padding: 28px;
    object-fit: contain;
    object-position: center;
    background: transparent;
    transition: transform var(--vb-transition);
}

.vb-hb-gallery-main:hover img {
    transform: scale(1.008);
}

.vb-hb-gallery-nav {
    position: absolute;
    top: 50%;
    z-index: 5;
    width: 42px;
    height: 42px;
    border: 1px solid var(--vb-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--vb-title);
    display: grid;
    place-items: center;
    transform: translateY(-50%);
    box-shadow: 0 8px 22px rgba(16, 24, 40, 0.10);
    cursor: pointer;
    transition: all var(--vb-transition);
}

.vb-hb-gallery-nav:hover {
    background: var(--vb-primary);
    color: #ffffff;
    border-color: var(--vb-primary);
}

.vb-hb-gallery-prev {
    left: 12px;
}

.vb-hb-gallery-next {
    right: 12px;
}

.vb-detail-fav {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 8;
    width: 42px;
    height: 42px;
    border: 1px solid var(--vb-border);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.96);
    color: var(--vb-title);
    display: grid;
    place-items: center;
    box-shadow: 0 8px 22px rgba(16, 24, 40, 0.10);
    cursor: pointer;
    transition: all var(--vb-transition);
}

.vb-detail-fav:hover,
.vb-detail-fav.is-active {
    background: #fff4f4;
    color: var(--vb-danger);
    border-color: rgba(180, 35, 24, 0.22);
}

.vb-detail-fav i {
    font-size: 18px;
}

.vb-detail-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    z-index: 8;
    min-height: 32px;
    padding: 0 13px;
    border-radius: 999px;
    background: var(--vb-primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 750;
    box-shadow: 0 12px 24px rgba(40, 82, 52, 0.16);
}

.vb-product-thumbs-slider {
    position: relative;
    margin-top: 14px;
    padding: 0 36px;
}

.vb-product-thumbs-viewport {
    width: 100%;
    overflow: hidden;
}

.vb-product-thumbs {
    display: flex !important;
    gap: 9px !important;
    width: max-content;
    margin: 0 !important;
    transform: translate3d(0, 0, 0);
    transition: transform 240ms ease;
}

.vb-product-thumbs button {
    width: 60px !important;
    min-width: 60px !important;
    height: 66px !important;
    padding: 5px !important;
    border: 1px solid var(--vb-border);
    border-radius: 12px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: 0 6px 16px rgba(16, 24, 40, 0.035);
    cursor: pointer;
    transition: all var(--vb-transition);
}

.vb-product-thumbs button:hover,
.vb-product-thumbs button.is-active {
    border-color: var(--vb-primary);
    box-shadow: 0 0 0 2px rgba(40, 82, 52, 0.10);
}

.vb-product-thumbs img {
    width: 100%;
    height: 100%;
    padding: 0;
    object-fit: contain;
    object-position: center;
    border-radius: 9px;
    background: #ffffff;
}

.vb-product-thumbs-arrow {
    position: absolute;
    top: 50%;
    z-index: 3;
    width: 30px;
    height: 30px;
    border: 1px solid var(--vb-border);
    border-radius: 999px;
    background: #ffffff;
    color: var(--vb-title);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transform: translateY(-50%);
    box-shadow: 0 8px 18px rgba(16, 24, 40, 0.06);
    cursor: pointer;
    transition: all var(--vb-transition);
}

.vb-product-thumbs-arrow:hover {
    background: var(--vb-primary);
    color: #ffffff;
    border-color: var(--vb-primary);
}

.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-hb-info-column {
    padding-top: 2px;
}

.vb-hb-title-line h1 {
    margin: 0;
    color: var(--vb-title);
    font-size: clamp(22px, 1.35vw, 28px);
    font-weight: 700;
    line-height: 1.28;
    letter-spacing: -0.35px;
}

.vb-hb-title-line h1 span {
    color: var(--vb-primary);
    font-weight: 760;
}

.vb-hb-rating-line {
    margin-top: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.vb-hb-score {
    min-width: 32px;
    height: 26px;
    padding: 0 8px;
    border-radius: 8px;
    background: var(--vb-cream);
    color: var(--vb-title);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 750;
}

.vb-hb-stars {
    color: var(--vb-warning);
    display: inline-flex;
    gap: 1px;
    font-size: 13px;
}

.vb-hb-review-link {
    color: var(--vb-primary);
    font-size: 12.5px;
    font-weight: 650;
}

.vb-hb-seller-line {
    margin-top: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.vb-hb-seller-line > span,
.vb-hb-seller-line a {
    min-height: 38px;
    padding: 0 12px;
    border: 1px solid var(--vb-border-soft);
    border-radius: 11px;
    background: #ffffff;
    color: var(--vb-muted);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12.5px;
    font-weight: 600;
    box-shadow: 0 5px 14px rgba(16, 24, 40, 0.02);
}

.vb-hb-seller-line > span strong {
    margin-left: 2px;
    color: var(--vb-primary);
    font-weight: 750;
}

.vb-hb-seller-line a {
    color: var(--vb-title);
    font-weight: 700;
}

.vb-hb-seller-line a:hover {
    color: var(--vb-primary);
    border-color: var(--vb-primary-border);
    background: var(--vb-primary-soft);
}

.vb-hb-price-line {
    margin-top: 22px;
    display: grid;
    gap: 8px;
}

.vb-hb-main-price-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.vb-hb-price-line strong {
    color: #182230;
    font-size: clamp(30px, 2.15vw, 40px);
    font-weight: 730;
    letter-spacing: -1px;
    line-height: 1;
}

.vb-hb-price-line span {
    height: 28px;
    padding: 0 11px;
    border: 1px solid #d6dee8;
    border-radius: 999px;
    background: #f3f6f8;
    color: #344054;
    display: inline-flex;
    align-items: center;
    font-size: 12px;
    font-weight: 700;
}

.vb-hb-price-line del,
.vb-market-price-row del {
    color: #98a2b3;
    font-size: 13.5px;
    font-weight: 600;
}

.vb-hb-bank-transfer-price {
    width: fit-content;
    max-width: 100%;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid rgba(22, 128, 58, 0.16);
    border-radius: 14px;
    background: #f0fbf4;
    color: var(--vb-success);
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 6px 16px rgba(22, 128, 58, 0.04);
}

.vb-hb-bank-transfer-price span {
    height: auto;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--vb-primary-dark);
    font-size: 13px;
    font-weight: 700;
}

.vb-hb-bank-transfer-price strong {
    color: var(--vb-success);
    font-size: 22px;
    font-weight: 730;
    letter-spacing: -0.55px;
}

.vb-hb-bank-transfer-price em {
    min-height: 25px;
    padding: 0 9px;
    border-radius: 999px;
    background: #dcfce7;
    color: var(--vb-success);
    display: inline-flex;
    align-items: center;
    font-size: 11px;
    font-style: normal;
    font-weight: 740;
    white-space: nowrap;
}

.vb-hb-trust-pills {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.vb-hb-installment-pill {
    min-height: 30px;
    padding: 0 10px;
    border: 1px solid rgba(40, 82, 52, 0.12);
    border-radius: 999px;
    background: var(--vb-primary-soft);
    color: var(--vb-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 11.8px;
    font-weight: 700;
    white-space: nowrap;
}

.vb-hb-installment-pill-soft {
    background: #ffffff;
    color: var(--vb-text);
    border-color: var(--vb-border-soft);
}

.vb-hb-variant-area {
    margin-top: 18px;
}

.vb-hb-variant-title {
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.vb-hb-variant-title strong {
    color: var(--vb-title);
    font-size: 14px;
    font-weight: 750;
}

.vb-hb-variant-title span {
    color: var(--vb-muted);
    font-size: 12.5px;
    font-weight: 500;
}

.vb-hb-variant-track {
    display: flex;
    gap: 9px;
    overflow-x: auto;
    padding-bottom: 4px;
    scrollbar-width: none;
}

.vb-hb-variant-track::-webkit-scrollbar {
    display: none;
}

.vb-hb-variant-card {
    width: 96px;
    min-width: 96px;
    min-height: 104px;
    padding: 8px;
    border: 1px solid var(--vb-border);
    border-radius: 13px;
    background: #ffffff;
    color: var(--vb-title);
    display: grid;
    align-content: space-between;
    gap: 6px;
    box-shadow: 0 6px 16px rgba(16, 24, 40, 0.028);
    transition: all var(--vb-transition);
}

.vb-hb-variant-card:hover,
.vb-hb-variant-card.is-active {
    border-color: var(--vb-primary);
    box-shadow: 0 0 0 2px rgba(40, 82, 52, 0.10);
}

.vb-hb-variant-card img {
    width: 100%;
    height: 56px;
    object-fit: contain;
}

.vb-hb-variant-card span {
    color: var(--vb-muted);
    font-size: 11.5px;
    font-weight: 650;
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vb-hb-variant-card.is-active span {
    color: var(--vb-primary);
    font-weight: 760;
}

.vb-market-support-card,
.vb-market-spec-card,
.vb-market-buy-card {
    border: 1px solid var(--vb-border);
    border-radius: 18px;
    background: #ffffff;
    box-shadow: var(--vb-shadow-soft);
}

.vb-market-support-card {
    margin-top: 16px;
    padding: 14px;
    display: grid;
    gap: 10px;
}

.vb-market-support-card div {
    min-height: 74px;
    padding: 14px;
    border: 1px solid var(--vb-border-soft);
    border-radius: 15px;
    background: #ffffff;
    display: grid;
    grid-template-columns: 38px 1fr;
    column-gap: 12px;
    align-items: center;
}

.vb-market-support-card i {
    width: 38px;
    height: 38px;
    border-radius: 12px;
    background: var(--vb-primary-soft);
    color: var(--vb-primary);
    display: grid;
    place-items: center;
    font-size: 16px;
    grid-row: span 2;
}

.vb-market-support-card strong {
    color: var(--vb-title);
    font-size: 14px;
    font-weight: 740;
}

.vb-market-support-card span {
    color: var(--vb-muted);
    font-size: 13px;
    line-height: 1.5;
}

.vb-market-spec-card {
    margin-top: 16px;
    padding: 18px;
}

.vb-market-card-title {
    margin-bottom: 14px;
    display: grid;
    gap: 4px;
}

.vb-market-card-title span,
.vb-tab-title span,
.vb-review-clean-kicker,
.vb-question-premium-head span {
    color: var(--vb-primary);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
}

.vb-market-card-title strong {
    color: var(--vb-title);
    font-size: 18px;
    font-weight: 730;
    letter-spacing: -0.2px;
}

.vb-market-spec-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
}

.vb-market-spec-grid div {
    min-height: 68px;
    padding: 13px;
    border: 1px solid var(--vb-border-soft);
    border-radius: 15px;
    background: #fbfcfd;
}

.vb-market-spec-grid span {
    display: block;
    color: var(--vb-muted);
    font-size: 12px;
    font-weight: 650;
}

.vb-market-spec-grid strong {
    display: block;
    margin-top: 6px;
    color: var(--vb-title);
    font-size: 13px;
    font-weight: 720;
    line-height: 1.35;
    word-break: break-word;
}

.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, var(--vb-primary), var(--vb-accent), var(--vb-primary-dark));
}

.vb-market-buy-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.vb-market-buy-head span {
    color: #5d6b82;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .45px;
    text-transform: uppercase;
}

.vb-market-buy-head em {
    min-height: 26px;
    padding: 0 10px;
    border-radius: 999px;
    background: var(--vb-primary-soft);
    color: var(--vb-primary);
    display: inline-flex;
    align-items: center;
    font-size: 11.5px;
    font-style: normal;
    font-weight: 780;
}

.vb-market-price-row {
    margin-top: 10px;
    display: grid;
    gap: 5px;
}

.vb-market-price-row strong {
    color: #101828;
    font-size: clamp(28px, 2.15vw, 36px);
    font-weight: 730;
    letter-spacing: -0.9px;
    line-height: 1;
}

.vb-market-discount-line,
.vb-market-stock-line {
    margin-top: 12px;
    min-height: 46px;
    padding: 0 14px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    font-weight: 720;
}

.vb-market-discount-line {
    background: var(--vb-cream);
    color: #9a5b13;
}

.vb-market-stock-line {
    background: var(--vb-success-soft);
    color: var(--vb-success);
}

.vb-market-stock-line.is-passive {
    background: #fff1f1;
    color: var(--vb-danger);
}

.vb-market-cart-form {
    margin: 15px 0 0;
    padding: 15px 0 0;
    border-top: 1px solid var(--vb-border-soft);
}

.vb-quantity-area {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.vb-hb-quantity-area {
    min-height: 74px;
    padding: 12px;
    border: 1px solid var(--vb-border-soft);
    border-radius: 14px;
    background: #ffffff;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
}

.vb-quantity-area > span,
.vb-hb-quantity-area > span {
    color: #475467;
    font-size: 12.5px;
    font-weight: 700;
}

.vb-quantity-control {
    height: 42px;
    border: 1px solid var(--vb-border-soft);
    border-radius: 12px;
    background: #ffffff;
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    overflow: hidden;
}

.vb-hb-quantity-area .vb-quantity-control {
    margin-top: 9px;
    width: 100%;
}

.vb-quantity-control button {
    border: 0;
    background: #fbfcfd;
    color: var(--vb-primary);
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all var(--vb-transition);
}

.vb-quantity-control button:hover {
    background: var(--vb-primary);
    color: #ffffff;
}

.vb-quantity-control input {
    width: 100%;
    border: 0;
    outline: none;
    background: #ffffff;
    color: var(--vb-title);
    text-align: center;
    font-size: 15px;
    font-weight: 760;
}

.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,
.vb-market-whatsapp {
    min-height: 50px;
    border-radius: 14px;
    border: 0;
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 14.5px;
    font-weight: 760;
    cursor: pointer;
    box-shadow: none;
    transition: all var(--vb-transition);
}

.vb-detail-add-cart {
    background: var(--vb-primary);
}

.vb-detail-buy-now {
    background: #151515;
}

.vb-detail-whatsapp,
.vb-market-whatsapp {
    width: 100%;
    margin: 12px 0 0;
    background: #16a34a;
}

.vb-detail-add-cart:hover {
    background: var(--vb-primary-dark);
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(40, 82, 52, 0.14);
}

.vb-detail-buy-now:hover {
    background: #000000;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(17, 17, 17, 0.12);
}

.vb-detail-whatsapp:hover,
.vb-market-whatsapp:hover {
    background: #15803d;
    color: #ffffff;
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(22, 163, 74, 0.14);
}

.vb-detail-add-cart:disabled,
.vb-detail-buy-now:disabled {
    opacity: .56;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.vb-purchase-closed {
    margin-top: 14px;
    padding: 14px;
    border: 1px solid rgba(180, 35, 24, 0.18);
    border-radius: 15px;
    background: #fff7f7;
    color: var(--vb-text);
    display: flex;
    align-items: flex-start;
    gap: 11px;
}

.vb-purchase-closed > i {
    color: var(--vb-danger);
    font-size: 20px;
}

.vb-purchase-closed strong {
    display: block;
    color: var(--vb-title);
    font-size: 13.5px;
    font-weight: 760;
}

.vb-purchase-closed span {
    display: block;
    margin-top: 4px;
    color: var(--vb-muted);
    font-size: 12.8px;
    line-height: 1.45;
}

.vb-market-buy-benefits {
    margin-top: 16px;
    padding-top: 15px;
    border-top: 1px solid var(--vb-border-soft);
    display: grid;
    gap: 10px;
}

.vb-market-buy-benefits div {
    display: flex;
    align-items: center;
    gap: 9px;
    color: #475467;
    font-size: 12.8px;
    font-weight: 650;
}

.vb-market-buy-benefits i {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: var(--vb-primary-soft);
    color: var(--vb-primary);
    display: grid;
    place-items: center;
    font-size: 14px;
}

.vb-product-tab-section {
    padding: 30px 0 42px;
    background: #fbfaf6;
}

.vb-product-tabs-card {
    border: 1px solid var(--vb-border);
    border-radius: 20px;
    background: #ffffff;
    overflow: hidden;
    box-shadow: var(--vb-shadow-soft);
}

.vb-product-tabs-card > input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.vb-product-tab-nav {
    min-height: 62px;
    border-bottom: 1px solid var(--vb-border);
    background: #ffffff;
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
}

.vb-product-tab-nav label {
    position: relative;
    min-height: 62px;
    padding: 0 14px;
    color: #475467;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    text-align: center;
    font-size: 13px;
    font-weight: 650;
    cursor: pointer;
    transition: all var(--vb-transition);
}

.vb-product-tab-nav label:hover {
    color: var(--vb-primary);
    background: #fbfdfb;
}

.vb-product-tab-nav label::after {
    content: "";
    position: absolute;
    left: 22px;
    right: 22px;
    bottom: 0;
    height: 2px;
    border-radius: 999px 999px 0 0;
    background: transparent;
}

.vb-product-tab-nav label span {
    min-width: 22px;
    height: 22px;
    padding: 0 6px;
    border-radius: 999px;
    background: var(--vb-primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 10.5px;
    font-weight: 760;
}

#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"],
#vbTabReturn:checked ~ .vb-product-tab-nav label[for="vbTabReturn"] {
    color: var(--vb-title);
    background: #ffffff;
    font-weight: 760;
}

#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,
#vbTabReturn:checked ~ .vb-product-tab-nav label[for="vbTabReturn"]::after {
    background: var(--vb-primary);
}

.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,
#vbTabReturn:checked ~ .vb-product-tab-panels .vb-tab-return-panel {
    display: block;
}

.vb-tab-content-inner {
    padding: 28px 34px 34px;
}

.vb-tab-title {
    margin-bottom: 18px;
}

.vb-tab-title h2 {
    margin: 0;
    color: var(--vb-title);
    font-size: 22px;
    font-weight: 730;
    letter-spacing: -0.35px;
}

.vb-tab-title p {
    margin: 8px 0 0;
    color: var(--vb-muted);
    font-size: 13.5px;
    line-height: 1.58;
}

.vb-tab-description-content {
    color: var(--vb-text);
    font-size: 14.5px;
    line-height: 1.68;
}

.vb-tab-description-content p {
    margin: 0 0 12px;
}

.vb-tab-description-content strong,
.vb-tab-description-content b {
    color: var(--vb-title);
    font-weight: 750;
}

.vb-tab-description-content ul,
.vb-tab-description-content ol {
    margin: 13px 0 0;
    padding-left: 20px;
}

.vb-tab-description-content li {
    margin-bottom: 7px;
}

.vb-tab-description-content table {
    width: 100%;
    margin-top: 16px;
    border-collapse: collapse;
}

.vb-tab-description-content table th,
.vb-tab-description-content table td {
    padding: 12px 14px;
    border: 1px solid var(--vb-border-soft);
    text-align: left;
    vertical-align: top;
}

.vb-tab-feature-title {
    margin-top: 24px;
    margin-bottom: 14px;
}

.vb-tab-feature-title h3 {
    margin: 0;
    color: var(--vb-title);
    font-size: 20px;
    font-weight: 730;
    letter-spacing: -0.35px;
}

.vb-product-feature-table {
    display: grid;
    gap: 10px;
}

.vb-product-feature-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.vb-product-feature-row > div {
    min-height: 58px;
    padding: 14px;
    border: 1px solid var(--vb-border-soft);
    border-radius: 14px;
    background: #fbfcfd;
    display: grid;
    grid-template-columns: minmax(120px, .7fr) minmax(0, 1fr);
    gap: 12px;
    align-items: center;
}

.vb-product-feature-row span {
    color: var(--vb-muted);
    font-size: 12.5px;
    font-weight: 650;
}

.vb-product-feature-row strong {
    color: var(--vb-title);
    font-size: 13px;
    font-weight: 720;
    text-align: right;
    line-height: 1.35;
    word-break: break-word;
}

.vb-tab-empty {
    min-height: 112px;
    padding: 18px;
    border: 1px solid var(--vb-border-soft);
    border-radius: 15px;
    background: #fbfcfd;
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.vb-tab-empty i {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 12px;
    background: var(--vb-primary-soft);
    color: var(--vb-primary);
    display: grid;
    place-items: center;
    font-size: 18px;
}

.vb-tab-empty strong {
    display: block;
    color: var(--vb-title);
    font-size: 14px;
    font-weight: 750;
}

.vb-tab-empty p {
    margin: 5px 0 0;
    color: var(--vb-muted);
    font-size: 13px;
    line-height: 1.5;
}

.vb-return-info-box {
    display: grid;
    gap: 12px;
}

.vb-return-info-box > div {
    padding: 16px;
    border: 1px solid var(--vb-border-soft);
    border-radius: 15px;
    background: #fbfcfd;
    display: grid;
    grid-template-columns: 42px 1fr;
    column-gap: 12px;
    align-items: flex-start;
}

.vb-return-info-box i {
    width: 42px;
    height: 42px;
    border-radius: 13px;
    background: var(--vb-primary-soft);
    color: var(--vb-primary);
    display: grid;
    place-items: center;
    font-size: 18px;
    grid-row: span 2;
}

.vb-return-info-box strong {
    color: var(--vb-title);
    font-size: 14px;
    font-weight: 750;
}

.vb-return-info-box p {
    margin: 6px 0 0;
    color: var(--vb-muted);
    font-size: 13.5px;
    line-height: 1.58;
}

.vb-question-clean {
    display: grid;
    gap: 16px;
}

.vb-question-premium-head {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
}

.vb-question-premium-head h2 {
    margin: 0;
    color: var(--vb-title);
    font-size: 21px;
    font-weight: 730;
    line-height: 1.25;
    letter-spacing: -0.35px;
}

.vb-question-premium-head p {
    margin: 8px 0 0;
    color: var(--vb-muted);
    font-size: 13.5px;
    line-height: 1.55;
}

.vb-question-action-btn,
.vb-review-action-btn,
.vb-review-empty-btn {
    min-height: 42px;
    padding: 0 17px;
    border: 0;
    border-radius: 12px;
    background: var(--vb-primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12.8px;
    font-weight: 760;
    box-shadow: 0 10px 22px rgba(40, 82, 52, 0.13);
    cursor: pointer;
    transition: all var(--vb-transition);
}

.vb-question-action-btn:hover,
.vb-review-action-btn:hover,
.vb-review-empty-btn:hover {
    background: var(--vb-primary-dark);
    color: #ffffff;
    transform: translateY(-1px);
}

.vb-question-form {
    padding: 18px;
    border: 1px solid var(--vb-primary-border);
    border-radius: 17px;
    background: #ffffff;
    box-shadow: var(--vb-shadow-soft);
}

.vb-question-form.is-collapsed {
    display: none;
}

.vb-question-form-head {
    display: grid;
    gap: 3px;
}

.vb-question-form-head strong {
    color: var(--vb-title);
    font-size: 16px;
    font-weight: 750;
}

.vb-question-form-head span {
    color: var(--vb-muted);
    font-size: 12.5px;
}

.vb-question-textarea {
    display: block;
    margin-top: 15px;
}

.vb-question-textarea > span {
    display: block;
    margin-bottom: 8px;
    color: var(--vb-title);
    font-size: 13.5px;
    font-weight: 720;
}

.vb-question-textarea textarea {
    width: 100%;
    min-height: 118px;
    padding: 14px 16px;
    border: 1px solid #dfe4ea;
    border-radius: 15px;
    background: #ffffff;
    color: var(--vb-title);
    font-size: 13.5px;
    line-height: 1.6;
    resize: vertical;
    outline: none;
    transition: all var(--vb-transition);
}

.vb-question-textarea textarea:focus {
    border-color: var(--vb-primary-border);
    box-shadow: 0 0 0 4px rgba(40, 82, 52, 0.07);
}

.vb-question-public-check {
    margin-top: 14px;
    padding: 13px;
    border: 1px solid var(--vb-border-soft);
    border-radius: 14px;
    background: #fbfcfd;
    display: flex;
    align-items: flex-start;
    gap: 9px;
    cursor: pointer;
}

.vb-question-public-check input {
    margin-top: 3px;
}

.vb-question-public-check strong {
    display: block;
    color: var(--vb-title);
    font-size: 13px;
    font-weight: 740;
}

.vb-question-public-check small {
    display: block;
    margin-top: 4px;
    color: var(--vb-muted);
    font-size: 12px;
    line-height: 1.45;
}

.vb-question-form-actions {
    margin-top: 15px;
    display: flex;
    justify-content: flex-end;
    gap: 9px;
    flex-wrap: wrap;
}

.vb-question-cancel {
    min-height: 42px;
    padding: 0 16px;
    border: 1px solid var(--vb-border);
    border-radius: 12px;
    background: #ffffff;
    color: var(--vb-title);
    font-size: 12.8px;
    font-weight: 720;
    cursor: pointer;
}

.vb-question-submit {
    min-height: 42px;
    padding: 0 18px;
    border: 0;
    border-radius: 12px;
    background: var(--vb-primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 12.8px;
    font-weight: 760;
    cursor: pointer;
}

.vb-question-card-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 13px;
}

.vb-question-card-grid.is-empty {
    grid-template-columns: 1fr;
}

.vb-question-preview-card,
.vb-question-preview-empty {
    padding: 16px;
    border: 1px solid var(--vb-border);
    border-radius: 17px;
    background: #ffffff;
    box-shadow: var(--vb-shadow-soft);
}

.vb-question-preview-card.is-answered {
    border-color: rgba(22, 128, 58, 0.18);
}

.vb-question-preview-head {
    display: flex;
    align-items: center;
    gap: 10px;
}

.vb-question-preview-avatar {
    width: 38px;
    height: 38px;
    border-radius: 999px;
    background: var(--vb-primary-soft);
    color: var(--vb-primary);
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 800;
}

.vb-question-preview-head strong {
    display: block;
    color: var(--vb-title);
    font-size: 13.5px;
    font-weight: 760;
}

.vb-question-preview-head span {
    display: block;
    margin-top: 2px;
    color: var(--vb-muted);
    font-size: 11.5px;
    font-weight: 650;
}

.vb-question-preview-body,
.vb-question-preview-answer {
    margin-top: 13px;
    padding: 13px;
    border-radius: 14px;
    background: #fbfcfd;
}

.vb-question-preview-answer {
    background: #f0fbf4;
}

.vb-question-preview-body small,
.vb-question-preview-answer small {
    display: block;
    margin-bottom: 5px;
    color: var(--vb-primary);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .4px;
    text-transform: uppercase;
}

.vb-question-preview-body p,
.vb-question-preview-answer p {
    margin: 0;
    color: var(--vb-text);
    font-size: 13px;
    line-height: 1.55;
}

.vb-question-preview-link {
    margin-top: 12px;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    background: var(--vb-primary-soft);
    color: var(--vb-primary);
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 750;
}

.vb-question-preview-link:hover {
    background: var(--vb-primary);
    color: #ffffff;
}

.vb-question-preview-empty {
    min-height: 150px;
    display: grid;
    grid-template-columns: 58px minmax(0, 1fr) auto;
    align-items: center;
    gap: 16px;
}

.vb-question-preview-empty-icon,
.vb-question-empty-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--vb-primary-soft);
    color: var(--vb-primary);
    display: grid;
    place-items: center;
}

.vb-question-preview-empty-icon i,
.vb-question-empty-icon i {
    font-size: 22px;
}

.vb-question-preview-empty span {
    color: var(--vb-primary);
    font-size: 10.5px;
    font-weight: 800;
    letter-spacing: .5px;
    text-transform: uppercase;
}

.vb-question-preview-empty strong {
    display: block;
    margin-top: 6px;
    color: var(--vb-title);
    font-size: 20px;
    font-weight: 740;
}

.vb-question-preview-empty p {
    margin: 6px 0 0;
    color: var(--vb-muted);
    font-size: 13px;
    line-height: 1.5;
}

.vb-question-clean-more,
.vb-review-clean-more {
    position: relative;
    display: flex;
    justify-content: center;
    margin-top: 4px;
}

.vb-question-clean-more::before,
.vb-review-clean-more::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: var(--vb-border);
}

.vb-question-clean-more a,
.vb-review-clean-more a {
    position: relative;
    z-index: 2;
    min-width: 230px;
    min-height: 40px;
    padding: 0 18px;
    border-radius: 999px;
    background: #ffffff;
    color: var(--vb-title);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    border: 1px solid var(--vb-border);
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .7px;
    text-transform: uppercase;
    transition: all var(--vb-transition);
}

.vb-question-clean-more a:hover,
.vb-review-clean-more a:hover {
    background: var(--vb-primary);
    border-color: var(--vb-primary);
    color: #ffffff;
}

.vb-related-section {
    padding: 36px 0 50px;
    background: #fbfaf6;
    overflow: hidden;
}

.vb-related-home-style .vb-product-section {
    padding: 20px;
    border-radius: 20px;
    background: #ffffff;
    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: 4px 2px 16px;
    cursor: grab;
    touch-action: pan-y;
}

.vb-related-home-style .vb-product-track {
    display: flex;
    gap: 16px;
    align-items: stretch;
    transition: transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
    will-change: transform;
}

.vb-related-home-style .vb-product-card {
    position: relative;
    border-radius: 17px;
    background: #ffffff;
    border: 1px solid var(--vb-border);
    box-shadow: 0 7px 18px rgba(16, 24, 40, 0.03);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: all var(--vb-transition);
}

.vb-related-home-style .vb-product-card:hover {
    transform: translateY(-2px);
    border-color: var(--vb-primary-border);
    box-shadow: 0 14px 32px rgba(16, 24, 40, 0.065);
}

.vb-related-home-style .vb-product-image {
    position: relative;
    height: 200px;
    padding: 16px;
    overflow: hidden;
    background: linear-gradient(180deg, #ffffff, #f7faf8);
}

.vb-related-home-style .vb-product-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: transform 420ms ease;
}

.vb-related-home-style .vb-product-card:hover .vb-product-image img {
    transform: scale(1.035);
}

.vb-related-home-style .vb-fav-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 4;
    width: 34px;
    height: 34px;
    border: 0;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.94);
    color: var(--vb-title);
    display: grid;
    place-items: center;
    box-shadow: 0 7px 16px rgba(16, 24, 40, 0.06);
}

.vb-related-home-style .vb-product-info {
    flex: 1;
    padding: 14px;
    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-primary-soft);
    color: var(--vb-primary);
    align-items: center;
    font-size: 10px;
    font-weight: 780;
}

.vb-related-home-style .vb-product-info h3 {
    min-height: 54px;
    max-height: 54px;
    margin: 9px 0 0;
    color: var(--vb-title);
    font-size: 13px;
    font-weight: 650;
    line-height: 1.38;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.vb-related-home-style .vb-product-info h3 a {
    color: inherit;
}

.vb-related-home-style .vb-product-meta {
    min-height: 38px;
    margin-top: 9px;
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.vb-related-home-style .vb-product-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #7a8491;
    font-size: 11px;
    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-success);
    font-weight: 700;
}

.vb-related-home-style .vb-stars {
    min-height: 15px;
    margin-top: 9px;
    display: flex;
    align-items: center;
    gap: 2px;
    color: var(--vb-warning);
    font-size: 10px;
}

.vb-related-home-style .vb-stars em {
    margin-left: 4px;
    color: #7d8795;
    font-style: normal;
    font-size: 10px;
    font-weight: 750;
}

.vb-related-home-style .vb-product-bottom {
    min-height: 56px;
    margin-top: auto;
    padding-top: 12px;
    border-top: 1px solid #edf1f4;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 9px;
}

.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: var(--vb-title);
    font-size: 17px;
    font-weight: 730;
    letter-spacing: -0.25px;
    white-space: nowrap;
}

.vb-related-home-style .vb-price-tl {
    color: #7d8795;
    font-size: 11.5px !important;
    font-weight: 500 !important;
    white-space: nowrap;
}

.vb-related-home-style .vb-add-cart {
    width: auto;
    min-width: 108px;
    height: 38px;
    padding: 0 12px;
    border: 0;
    border-radius: 12px;
    background: var(--vb-primary);
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 11.5px;
    font-weight: 760;
    white-space: nowrap;
}

.vb-related-home-style .vb-add-cart:hover {
    background: var(--vb-primary-dark);
}

.vb-related-home-style .vb-product-carousel-arrow {
    width: 38px;
    height: 38px;
    border: 1px solid var(--vb-border);
    border-radius: 999px;
    background: #ffffff;
    color: var(--vb-title);
    display: inline-grid;
    place-items: center;
    box-shadow: 0 7px 18px rgba(16, 24, 40, 0.045);
    transition: all var(--vb-transition);
}

.vb-related-home-style .vb-product-carousel-arrow:hover {
    background: var(--vb-primary);
    border-color: var(--vb-primary);
    color: #ffffff;
}

.vb-related-home-style .vb-product-carousel-arrow.is-disabled {
    opacity: .4;
    pointer-events: none;
}

.vb-product-lightbox {
    position: fixed;
    inset: 0;
    z-index: 999999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
    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%, 1080px);
    height: min(84vh, 740px);
    border-radius: 22px;
    background: #ffffff;
    box-shadow: 0 30px 80px rgba(0, 0, 0, 0.34);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.vb-product-lightbox-inner img {
    width: 100%;
    height: 100%;
    padding: 30px;
    object-fit: contain;
    background: #ffffff;
}

.vb-product-lightbox-close {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 5;
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 999px;
    background: #111111;
    color: #ffffff;
    display: grid;
    place-items: center;
    font-size: 17px;
    cursor: pointer;
}

.vb-product-lightbox-close:hover {
    background: var(--vb-primary);
}

.vb-product-lightbox-nav {
    position: absolute;
    top: 50%;
    z-index: 4;
    width: 44px;
    height: 44px;
    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: 19px;
    cursor: pointer;
    box-shadow: 0 14px 32px rgba(0, 0, 0, 0.24);
}

.vb-product-lightbox-nav:hover {
    background: var(--vb-primary);
}

.vb-product-lightbox-prev {
    left: 16px;
}

.vb-product-lightbox-next {
    right: 16px;
}

.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;
}

@media (max-width: 1280px) {
    .vb-hb-detail-layout {
        grid-template-columns: minmax(330px, 430px) minmax(0, 1fr) minmax(280px, 330px);
        gap: 18px;
    }

    .vb-hb-gallery-main {
        height: 500px;
    }

    .vb-hb-price-line strong {
        font-size: 34px;
    }

    .vb-market-price-row strong {
        font-size: 32px;
    }
}

@media (max-width: 1100px) {
    .vb-hb-detail-layout {
        grid-template-columns: minmax(330px, 450px) 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(260px, 330px);
        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(4, minmax(170px, 1fr)) !important;
    }
}

@media (max-width: 900px) {
    .vb-hb-detail-layout {
        grid-template-columns: 1fr;
    }

    .vb-hb-gallery-column,
    .vb-market-buy-column {
        position: relative;
        top: auto;
    }

    .vb-hb-gallery-main {
        height: clamp(310px, 58vw, 460px);
    }

    .vb-market-buy-card {
        display: block;
    }

    .vb-market-buy-benefits {
        grid-template-columns: 1fr;
    }

    .vb-market-spec-grid,
    .vb-product-feature-row,
    .vb-question-card-grid {
        grid-template-columns: 1fr;
    }

    .vb-product-feature-row > div {
        grid-template-columns: 1fr;
        gap: 5px;
    }

    .vb-product-feature-row strong {
        text-align: left;
    }
}

@media (max-width: 767px) {
    .vb-product-detail-page .vb-container,
    .vb-product-tab-section .vb-container,
    .vb-related-section .vb-container,
    .vb-review-page .vb-container,
    .vb-question-page .vb-container {
        width: min(100% - 22px, var(--vb-container));
    }

    .vb-hb-product-page {
        padding-top: 12px;
    }

    .vb-product-breadcrumb {
        margin-bottom: 11px;
        font-size: 11.5px;
    }

    .vb-hb-gallery-main {
        height: clamp(270px, 82vw, 370px);
        border-radius: 16px;
    }

    .vb-hb-gallery-main img {
        padding: 18px;
    }

    .vb-hb-gallery-nav {
        width: 38px;
        height: 38px;
    }

    .vb-detail-fav {
        width: 38px;
        height: 38px;
        top: 10px;
        right: 10px;
    }

    .vb-detail-badge {
        top: 10px;
        left: 10px;
        min-height: 30px;
        padding: 0 12px;
        font-size: 11.5px;
    }

    .vb-hb-title-line h1 {
        font-size: 20px;
    }

    .vb-hb-price-line strong {
        font-size: 30px;
    }

    .vb-hb-bank-transfer-price {
        width: 100%;
        flex-wrap: wrap;
        padding: 12px;
    }

    .vb-hb-bank-transfer-price strong {
        font-size: 21px;
    }

    .vb-market-spec-card,
    .vb-market-support-card,
    .vb-market-buy-card {
        padding: 15px;
        border-radius: 16px;
    }

    .vb-market-buy-card::before {
        margin: -15px -15px 15px;
    }

    .vb-market-price-row strong {
        font-size: 29px;
    }

    .vb-detail-add-cart,
    .vb-detail-buy-now,
    .vb-detail-whatsapp,
    .vb-market-whatsapp {
        min-height: 48px;
        font-size: 14px;
    }

    .vb-product-thumbs-slider {
        padding: 0 32px;
    }

    .vb-product-thumbs button {
        width: 56px !important;
        min-width: 56px !important;
        height: 60px !important;
    }

    .vb-product-tab-section {
        padding: 24px 0 34px;
    }

    .vb-product-tabs-card {
        border-radius: 16px;
    }

    .vb-product-tab-nav {
        min-height: 58px;
        display: flex;
        overflow-x: auto;
        scrollbar-width: none;
    }

    .vb-product-tab-nav::-webkit-scrollbar {
        display: none;
    }

    .vb-product-tab-nav label {
        min-width: 150px;
        min-height: 58px;
        padding: 0 11px;
        font-size: 12px;
    }

    .vb-tab-content-inner {
        padding: 20px 16px 24px;
    }

    .vb-tab-title h2,
    .vb-question-premium-head h2 {
        font-size: 20px;
    }

    .vb-tab-feature-title h3 {
        font-size: 19px;
    }

    .vb-question-premium-head {
        align-items: stretch;
    }

    .vb-question-action-btn {
        width: 100%;
    }

    .vb-question-form-actions {
        justify-content: stretch;
    }

    .vb-question-cancel,
    .vb-question-submit {
        width: 100%;
    }

    .vb-question-preview-empty {
        min-height: auto;
        padding: 20px 16px;
        grid-template-columns: 1fr;
        justify-items: center;
        text-align: center;
    }

    .vb-question-clean-more a,
    .vb-review-clean-more a {
        width: 100%;
        min-width: 0;
    }

    .vb-related-home-style .vb-product-section {
        padding: 15px;
    }

    .vb-related-home-style .vb-product-image {
        height: 200px;
    }

    .vb-product-lightbox {
        padding: 14px;
    }

    .vb-product-lightbox-inner {
        height: min(76vh, 600px);
        border-radius: 18px;
    }

    .vb-product-lightbox-inner img {
        padding: 18px;
    }

    .vb-product-lightbox-close {
        top: 10px;
        right: 10px;
        width: 36px;
        height: 36px;
    }

    .vb-product-lightbox-nav {
        width: 38px;
        height: 38px;
        font-size: 17px;
    }

    .vb-product-lightbox-prev {
        left: 8px;
    }

    .vb-product-lightbox-next {
        right: 8px;
    }
}

@media (max-width: 420px) {
    .vb-hb-gallery-main {
        height: 286px;
    }

    .vb-hb-title-line h1 {
        font-size: 19px;
    }

    .vb-hb-price-line strong,
    .vb-market-price-row strong {
        font-size: 27px;
    }

    .vb-product-thumbs button {
        width: 52px !important;
        min-width: 52px !important;
        height: 56px !important;
    }
}

/* =========================================================
   BARUT ÜRÜN DETAY FINAL TOPARLAMA
========================================================= */

.vb-product-detail-page .vb-container,
.vb-product-tab-section .vb-container,
.vb-related-section .vb-container {
    width: min(100% - 48px, 1500px) !important;
    max-width: 1500px !important;
}

.vb-hb-product-page {
    padding: 10px 0 18px !important;
    background: linear-gradient(180deg, #ffffff 0%, #fbfaf6 100%) !important;
}

.vb-product-breadcrumb {
    margin-bottom: 12px !important;
}

.vb-hb-detail-layout {
    grid-template-columns: 455px minmax(0, 1fr) 350px !important;
    gap: 20px !important;
    align-items: start !important;
}

.vb-hb-gallery-column,
.vb-market-buy-column {
    position: sticky !important;
    top: 86px !important;
}

.vb-hb-gallery-main {
    height: 445px !important;
    min-height: 445px !important;
    max-height: 445px !important;
    border-radius: 18px !important;
}

.vb-hb-gallery-main img {
    padding: 14px !important;
    object-fit: contain !important;
}

.vb-product-thumbs-slider {
    margin-top: 10px !important;
}

.vb-hb-info-column {
    padding-top: 0 !important;
}

.vb-hb-title-line h1 {
    margin: 0 !important;
    font-size: 27px !important;
    line-height: 1.2 !important;
    letter-spacing: -0.45px !important;
}

.vb-hb-rating-line,
.vb-hb-seller-line {
    margin-top: 10px !important;
}

.vb-hb-seller-line > span,
.vb-hb-seller-line a {
    min-height: 34px !important;
    padding: 0 11px !important;
}

.vb-hb-price-line {
    margin-top: 15px !important;
    gap: 6px !important;
}

.vb-hb-price-line strong {
    font-size: 38px !important;
}

.vb-hb-trust-pills {
    margin-top: 10px !important;
    gap: 6px !important;
}

.vb-hb-installment-pill {
    min-height: 30px !important;
    padding: 0 10px !important;
    font-size: 11.7px !important;
}

.vb-hb-variant-area {
    display: none !important;
}

.vb-hb-option-box {
    margin-top: 14px !important;
    padding: 15px 16px !important;
    border: 1px solid rgba(40, 82, 52, 0.16) !important;
    border-radius: 18px !important;
    background:
        radial-gradient(circle at 96% 0%, rgba(185, 138, 61, 0.13), transparent 35%),
        linear-gradient(135deg, #ffffff 0%, #fffaf0 52%, #f6f9f3 100%) !important;
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.045) !important;
}

.vb-hb-option-head {
    display: grid !important;
    grid-template-columns: 48px minmax(0, 1fr) auto !important;
    gap: 12px !important;
    align-items: center !important;
}

.vb-hb-option-icon {
    width: 48px !important;
    height: 48px !important;
    border-radius: 15px !important;
    background: #ffffff !important;
    color: var(--vb-primary) !important;
    border: 1px solid rgba(40, 82, 52, 0.14) !important;
    display: grid !important;
    place-items: center !important;
    font-size: 18px !important;
}

.vb-hb-option-title span {
    display: block !important;
    margin-bottom: 2px !important;
    color: var(--vb-accent) !important;
    font-size: 10px !important;
    font-weight: 850 !important;
    letter-spacing: .7px !important;
    text-transform: uppercase !important;
}

.vb-hb-option-title strong {
    display: block !important;
    color: var(--vb-title) !important;
    font-size: 21px !important;
    font-weight: 800 !important;
    line-height: 1.15 !important;
}

.vb-hb-option-title p {
    margin: 3px 0 0 !important;
    color: var(--vb-muted) !important;
    font-size: 12.5px !important;
    font-weight: 650 !important;
}

.vb-hb-option-head > em {
    min-height: 32px !important;
    padding: 0 12px !important;
    border: 1px solid rgba(40, 82, 52, 0.18) !important;
    border-radius: 999px !important;
    background: #ffffff !important;
    color: var(--vb-primary) !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    font-size: 11.5px !important;
    font-style: normal !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
}

.vb-hb-option-list {
    margin-top: 12px !important;
    display: flex !important;
    flex-wrap: wrap !important;
    gap: 10px !important;
}

.vb-hb-option-card {
    position: relative !important;
    width: 145px !important;
    min-height: 94px !important;
    padding: 13px 14px !important;
    border: 1px solid #dfe5ec !important;
    border-radius: 16px !important;
    background: #ffffff !important;
    color: var(--vb-title) !important;
    display: grid !important;
    align-content: start !important;
    gap: 5px !important;
    box-shadow: 0 7px 18px rgba(16, 24, 40, 0.035) !important;
    transition: all 180ms ease !important;
}

.vb-hb-option-card:hover {
    transform: translateY(-2px) !important;
    border-color: rgba(40, 82, 52, 0.35) !important;
    box-shadow: 0 13px 26px rgba(40, 82, 52, 0.10) !important;
    color: var(--vb-title) !important;
}

.vb-hb-option-card.is-active {
    border-color: var(--vb-primary) !important;
    background:
        radial-gradient(circle at 90% 12%, rgba(185, 138, 61, 0.18), transparent 34%),
        linear-gradient(135deg, rgba(40, 82, 52, 0.075) 0%, #ffffff 100%) !important;
    box-shadow:
        0 0 0 3px rgba(40, 82, 52, 0.10),
        0 13px 26px rgba(40, 82, 52, 0.12) !important;
}

.vb-hb-option-name {
    display: block !important;
    color: var(--vb-title) !important;
    font-size: 16px !important;
    font-weight: 850 !important;
    line-height: 1.15 !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
}

.vb-hb-option-card strong {
    display: block !important;
    color: var(--vb-primary) !important;
    font-size: 13px !important;
    font-weight: 850 !important;
    line-height: 1.15 !important;
}

.vb-hb-option-card small {
    display: inline-flex !important;
    align-items: center !important;
    gap: 4px !important;
    margin-top: 1px !important;
    font-size: 11.2px !important;
    font-weight: 800 !important;
    white-space: nowrap !important;
}

.vb-hb-option-card small.is-in-stock {
    color: var(--vb-success) !important;
}

.vb-hb-option-card small.is-pre-order {
    color: #b87913 !important;
}

.vb-hb-option-card small.is-no-stock {
    color: var(--vb-danger) !important;
}

.vb-hb-option-card > b {
    position: absolute !important;
    top: 10px !important;
    right: 10px !important;
    width: 13px !important;
    height: 13px !important;
    border-radius: 999px !important;
    background: var(--vb-accent) !important;
    box-shadow:
        0 0 0 4px rgba(185, 138, 61, 0.15),
        0 4px 10px rgba(185, 138, 61, 0.20) !important;
}

.vb-market-support-card {
    margin-top: 14px !important;
    padding: 12px !important;
    border-radius: 17px !important;
}

.vb-market-support-card div {
    min-height: auto !important;
    padding: 13px 14px !important;
    grid-template-columns: 42px minmax(0, 1fr) !important;
    border-radius: 14px !important;
}

.vb-market-support-card i {
    width: 42px !important;
    height: 42px !important;
    border-radius: 13px !important;
}

.vb-market-support-card strong {
    font-size: 15px !important;
}

.vb-market-support-card span {
    font-size: 13.5px !important;
    line-height: 1.5 !important;
}

.vb-market-spec-card {
    margin-top: 14px !important;
    padding: 17px 18px !important;
    border-radius: 18px !important;
}

.vb-market-card-title {
    margin-bottom: 13px !important;
}

.vb-market-card-title strong {
    font-size: 21px !important;
}

.vb-market-spec-grid {
    gap: 10px !important;
}

.vb-market-spec-grid div {
    min-height: 68px !important;
    padding: 13px 15px !important;
    border-radius: 14px !important;
}

.vb-market-buy-card {
    padding: 18px !important;
    border-radius: 19px !important;
}

.vb-market-buy-card::before {
    margin: -18px -18px 16px !important;
}

.vb-market-price-row strong {
    font-size: 36px !important;
}

.vb-market-stock-line {
    min-height: 58px !important;
    border-radius: 15px !important;
}

.vb-purchase-closed {
    margin-top: 16px !important;
    padding: 15px !important;
    border-radius: 16px !important;
}

.vb-detail-whatsapp,
.vb-market-whatsapp {
    min-height: 62px !important;
    border-radius: 15px !important;
    font-size: 18px !important;
    font-weight: 850 !important;
}

.vb-market-buy-benefits {
    margin-top: 18px !important;
    padding-top: 16px !important;
    gap: 11px !important;
}

.vb-market-buy-benefits div {
    font-size: 14px !important;
    font-weight: 760 !important;
}

.vb-market-buy-benefits i {
    width: 34px !important;
    height: 34px !important;
    border-radius: 11px !important;
}

.vb-product-tab-section {
    padding: 20px 0 36px !important;
    margin-top: 0 !important;
}

.vb-product-tabs-card {
    border-radius: 18px !important;
}

.vb-hb-gallery,
.vb-product-gallery {
    margin-bottom: 0 !important;
}

.vb-hb-gallery-column {
    align-self: start !important;
}

@media (min-width: 1500px) {
    .vb-hb-detail-layout {
        grid-template-columns: 455px minmax(0, 1fr) 350px !important;
    }

    .vb-hb-gallery-main {
        height: 445px !important;
        min-height: 445px !important;
        max-height: 445px !important;
    }
}

@media (max-width: 1280px) {
    .vb-product-detail-page .vb-container,
    .vb-product-tab-section .vb-container,
    .vb-related-section .vb-container {
        width: min(100% - 34px, 1480px) !important;
    }

    .vb-hb-detail-layout {
        grid-template-columns: 405px minmax(0, 1fr) 315px !important;
        gap: 16px !important;
    }

    .vb-hb-gallery-main {
        height: 410px !important;
        min-height: 410px !important;
        max-height: 410px !important;
    }

    .vb-hb-title-line h1 {
        font-size: 24px !important;
    }

    .vb-hb-price-line strong {
        font-size: 34px !important;
    }

    .vb-hb-option-card {
        width: 132px !important;
    }
}

@media (max-width: 1100px) {
    .vb-hb-detail-layout {
        grid-template-columns: minmax(330px, 430px) minmax(0, 1fr) !important;
    }

    .vb-market-buy-column {
        grid-column: 1 / -1 !important;
        position: relative !important;
        top: auto !important;
    }

    .vb-market-buy-card {
        display: grid !important;
        grid-template-columns: minmax(0, 1fr) minmax(260px, 330px) !important;
        gap: 16px !important;
    }

    .vb-market-buy-card::before {
        grid-column: 1 / -1 !important;
    }

    .vb-market-buy-benefits {
        grid-column: 1 / -1 !important;
        grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
    }
}

@media (max-width: 900px) {
    .vb-hb-detail-layout {
        grid-template-columns: 1fr !important;
    }

    .vb-hb-gallery-column,
    .vb-market-buy-column {
        position: relative !important;
        top: auto !important;
    }

    .vb-hb-gallery-main {
        height: clamp(300px, 62vw, 430px) !important;
        min-height: auto !important;
        max-height: none !important;
    }

    .vb-market-buy-card {
        display: block !important;
    }

    .vb-market-buy-benefits {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 767px) {
    .vb-product-detail-page .vb-container,
    .vb-product-tab-section .vb-container,
    .vb-related-section .vb-container {
        width: min(100% - 22px, 1480px) !important;
    }

    .vb-hb-title-line h1 {
        font-size: 20px !important;
    }

    .vb-hb-price-line strong {
        font-size: 30px !important;
    }

    .vb-hb-option-head {
        grid-template-columns: 46px minmax(0, 1fr) !important;
    }

    .vb-hb-option-head > em {
        grid-column: 1 / -1 !important;
        width: fit-content !important;
    }

    .vb-hb-option-card {
        width: calc(50% - 5px) !important;
        min-height: 86px !important;
    }

    .vb-market-spec-grid {
        grid-template-columns: 1fr !important;
    }
}

@media (max-width: 420px) {
    .vb-hb-option-card {
        width: 100% !important;
    }
}
body::before {
    content: "URUN DETAY CSS CALISIYOR";
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 9999999;
    background: red;
    color: #fff;
    padding: 10px 15px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 800;
}
