@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap");
@import url("https://cdn.jsdelivr.net/npm/bootstrap-icons@1.11.3/font/bootstrap-icons.min.css");

:root {
    --vc-accent: #ff4f6d;
    --vc-ink: #252525;
    --vc-muted: #8b8b8b;
    --vc-line: #eeeeee;
    --vc-soft: #f7f7f7;
    --vc-product-image-ratio: 1 / 1;
    --vc-font-sans: "Poppins", Arial, Helvetica, sans-serif;
}

.vc-ratio-square {
    --vc-product-image-ratio: 1 / 1;
}

.vc-ratio-portrait {
    --vc-product-image-ratio: 4 / 5;
}

.vc-ratio-vertical {
    --vc-product-image-ratio: 3 / 4;
}

.vc-ratio-story {
    --vc-product-image-ratio: 9 / 16;
}

.vc-ratio-landscape {
    --vc-product-image-ratio: 4 / 3;
}

.vc-ratio-wide {
    --vc-product-image-ratio: 16 / 9;
}

body {
    overflow-x: hidden;
    background: #fff;
    color: var(--vc-ink);
    font-family: var(--vc-font-sans);
}

img,
svg,
video,
canvas {
    max-width: 100%;
}

.vc-home,
.vc-catalog-page,
.vc-product-detail-page,
.vc-utility-page {
    max-width: 100%;
    overflow-x: hidden;
}

.vc-store-header {
    position: sticky;
    z-index: 60;
    padding: 12px 14px;
    font-family: var(--vc-font-sans);
    top: 0 !important;
    width: 100% !important;
    max-width: none !important;
    margin: 0 !important;
    border: 0 !important;
    border-bottom: 1px solid var(--vc-line) !important;
    border-radius: 0 !important;
    background: rgba(255, 255, 255, .96) !important;
    box-shadow: none !important;
}

.vc-store-header-inner {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    width: min(1240px, calc(100% - 32px));
    margin: 0 auto;
}

.vc-store-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 0;
    color: var(--vc-ink);
    text-decoration: none;
    font-weight: 900;
}

.vc-store-logo {
    display: block;
    max-width: 190px;
    max-height: 54px;
    object-fit: contain;
}

.vc-store-logo-text {
    color: #a894ff !important;
    font-family: var(--vc-font-sans) !important;
    font-size: 1.7rem !important;
    letter-spacing: 0;
    text-transform: uppercase;
}

.vc-store-nav,
.vc-store-account {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.vc-store-nav a,
.vc-store-account a {
    color: #777 !important;
    font-size: .82rem !important;
    font-weight: 500 !important;
    text-decoration: none;
}

.vc-store-nav a:hover,
.vc-store-account a:hover {
    color: var(--vc-accent) !important;
}

.vc-store-icon-link {
    position: relative;
    display: inline-flex !important;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--vc-line);
    border-radius: 999px;
    background: #fff;
    color: #444 !important;
    font-size: 1.34rem !important;
    line-height: 1;
}

.vc-store-account .vc-store-icon-link,
.vc-store-nav .vc-store-icon-link {
    font-size: 1.34rem !important;
}

.vc-store-icon-link .bi {
    font-size: 1em;
    line-height: 1;
}

.vc-store-icon-link:hover {
    border-color: rgba(255, 73, 112, .32);
    background: var(--vc-soft);
}

.vc-store-icon-link::after {
    content: attr(data-vc-tooltip);
    position: absolute;
    top: calc(100% + 9px);
    left: 50%;
    z-index: 95;
    padding: 6px 9px;
    border-radius: 6px;
    background: #111827;
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    line-height: 1;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, -4px);
    transition: opacity .14s ease, transform .14s ease;
}

.vc-store-icon-link:hover::after,
.vc-store-icon-link:focus-visible::after {
    opacity: 1;
    transform: translate(-50%, 0);
}

.vc-store-cart-count {
    position: absolute;
    top: -4px;
    right: -4px;
    display: inline-flex;
    min-width: 20px;
    height: 20px;
    align-items: center;
    justify-content: center;
    padding: 0 4px;
    border: 2px solid #fff;
    border-radius: 999px;
    background: var(--vc-accent);
    color: #fff;
    font-size: .7rem;
    font-weight: 800;
    line-height: 1;
}

.vc-store-menu-check,
.vc-store-menu-button,
.vc-store-mobile-panel {
    display: none;
}

.vc-header-category-list {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-wrap: wrap;
}

.vc-header-category-item,
.vc-header-submenu-item {
    position: relative;
}

.vc-header-category-item > a,
.vc-header-submenu-item > a {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 6px;
    white-space: nowrap;
}

.vc-header-category-caret {
    color: #999;
    font-size: .72rem;
    line-height: 1;
}

.vc-header-submenu {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    z-index: 75;
    display: grid;
    min-width: 210px;
    padding: 10px;
    border: 1px solid var(--vc-line);
    background: #fff;
    box-shadow: 0 18px 42px rgba(0, 0, 0, .1);
    opacity: 0;
    pointer-events: none;
    transform: translateY(6px);
    transition: opacity .16s ease, transform .16s ease;
}

.vc-header-submenu::before {
    content: "";
    position: absolute;
    inset: -12px 0 auto;
    height: 12px;
}

.vc-header-submenu .vc-header-submenu {
    top: -10px;
    left: 100%;
}

.vc-header-submenu-nested::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 -12px;
    width: 12px;
}

.vc-header-submenu-item > a {
    width: min(100%, 320px);
    min-height: 36px;
    padding: 9px 10px;
    color: #444 !important;
    font-size: .86rem !important;
}

.vc-header-category-item:hover > .vc-header-submenu,
.vc-header-submenu-item:hover > .vc-header-submenu {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.vc-mega-menu-list {
    position: static;
}

.vc-header-category-item.vc-mega-menu-item {
    position: static;
}

.vc-mega-panel {
    position: absolute;
    top: calc(100% + 1px);
    left: 50%;
    z-index: 120;
    width: min(1140px, calc(100vw - 32px));
    max-height: calc(100vh - 110px);
    overflow-y: auto;
    border: 1px solid rgba(17, 24, 39, .1);
    border-radius: 0 0 18px 18px;
    background: #fff;
    box-shadow: 0 28px 70px rgba(15, 23, 42, .16);
    opacity: 0;
    pointer-events: none;
    transform: translate(-50%, 10px);
    transition: opacity .2s ease, transform .2s ease;
}

.vc-mega-panel::before {
    content: "";
    position: absolute;
    inset: -14px 0 auto;
    height: 14px;
}

.vc-mega-menu-item:hover > .vc-mega-panel,
.vc-mega-menu-item:focus-within > .vc-mega-panel {
    opacity: 1;
    pointer-events: auto;
    transform: translate(-50%, 0);
}

.vc-mega-panel-inner {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 250px;
    gap: 28px;
    padding: 28px 30px 18px;
}

.vc-mega-category-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(160px, 1fr));
    gap: 28px 30px;
}

.vc-mega-category-column {
    min-width: 0;
}

.vc-mega-category-title {
    display: flex;
    min-height: 28px;
    align-items: center;
    border-bottom: 1px solid rgba(17, 24, 39, .14);
    color: #262626 !important;
    font-size: .98rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-decoration: none;
    text-transform: uppercase;
}

.vc-mega-category-image {
    display: block;
    margin: 10px 0 8px;
    overflow: hidden;
    border-radius: 0;
    background: #f5f5f5;
}

.vc-mega-category-image img {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 1;
    object-fit: cover;
    transition: transform .25s ease;
}

.vc-mega-category-image:hover img {
    transform: scale(1.035);
}

.vc-mega-subcategory-list {
    display: grid;
}

.vc-mega-subcategory-list a {
    display: block;
    border-bottom: 1px solid rgba(17, 24, 39, .08);
    padding: 7px 0;
    color: #7a7f87 !important;
    font-size: .92rem;
    text-decoration: none;
}

.vc-mega-subcategory-list a:hover {
    color: var(--vc-primary) !important;
}

.vc-mega-products {
    min-width: 0;
}

.vc-mega-products-head {
    display: flex;
    min-height: 28px;
    align-items: center;
    justify-content: space-between;
    border-bottom: 1px solid rgba(17, 24, 39, .14);
    color: #262626;
    font-size: .98rem;
    font-weight: 700;
    letter-spacing: .02em;
    text-transform: uppercase;
}

.vc-mega-products-head div {
    display: inline-flex;
    gap: 6px;
}

.vc-mega-products-head button {
    display: inline-grid;
    width: 26px;
    height: 26px;
    place-items: center;
    border: 0;
    border-radius: 999px;
    background: #f2f4f7;
    color: #222;
}

.vc-mega-product-card {
    display: grid;
    gap: 10px;
    padding-top: 10px;
    color: #222;
    text-decoration: none;
}

.vc-mega-product-card img,
.vc-mega-product-placeholder {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 5;
    object-fit: cover;
    background: linear-gradient(135deg, #f2f4f7, #e5e7eb);
}

.vc-mega-product-name {
    color: #444;
    font-size: .92rem;
    line-height: 1.35;
}

.vc-mega-product-card strong {
    color: #1f2937;
    font-size: 1.08rem;
}

.vc-mega-banners {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 30px;
    padding-top: 18px;
}

.vc-mega-banner {
    overflow: hidden;
    background: #f5f5f5;
}

.vc-mega-banner img {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 5;
    object-fit: cover;
    transition: transform .25s ease;
}

.vc-mega-banner a:hover img {
    transform: scale(1.025);
}

.vc-store-cart {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    border-radius: 999px;
    background: var(--vc-soft) !important;
    color: #444 !important;
}

.wrap > .topbar {
    display: none !important;
}

.vc-hero {
    background: linear-gradient(90deg, #bdbdbd 0%, #f7f7f7 100%);
}

.vc-hero .carousel-item {
    aspect-ratio: 20 / 7;
}

.vc-hero-img {
    height: 100%;
    min-height: 360px;
    object-fit: cover;
}

.vc-hero-caption {
    right: 8%;
    left: auto;
    top: 22%;
    bottom: auto;
    color: var(--vc-ink);
    text-shadow: none;
}

.vc-hero-caption h1 {
    color: var(--vc-ink);
    letter-spacing: 0;
}

.vc-hero-caption p {
    color: #666;
}

.carousel-indicators [data-bs-target] {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background-color: var(--vc-accent);
}

.vc-btn-accent,
.vc-btn-dark {
    border: 0;
    background: var(--vc-accent);
    color: #fff;
    font-size: .76rem;
    font-weight: 700;
    text-transform: uppercase;
}

.vc-btn-dark {
    background: #111;
}

.vc-btn-accent:hover,
.vc-btn-dark:hover {
    background: #ec405e;
    color: #fff;
}

.vc-square-banner-section {
    overflow: hidden;
}

.vc-square-banner-section .row {
    --bs-gutter-x: 1.5rem;
    --bs-gutter-y: 1.5rem;
}

.vc-square-banner-section [class*="col-"] {
    min-width: 0;
}

.vc-promo-card {
    width: 100%;
    aspect-ratio: 416 / 450;
    height: auto;
    background: #ddd;
}

.vc-promo-card picture {
    display: block;
    width: 100%;
    height: 100%;
}

.vc-promo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .25s ease;
}

.vc-promo-card::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 35%, rgba(0, 0, 0, .5));
}

.vc-promo-card > div {
    z-index: 1;
}

.vc-promo-card h2 {
    max-width: 100%;
    font-size: clamp(1.85rem, 4vw, 2.5rem);
    line-height: 1.05;
    overflow-wrap: anywhere;
}

.vc-promo-card:hover img {
    transform: scale(1.04);
}

.vc-square-banner-carousel {
    position: relative;
}

.vc-square-banner-control,
.vc-banner-control {
    width: 34px;
    height: 34px;
    border: 1px solid var(--vc-line);
    border-radius: 50%;
    background: rgba(255, 255, 255, .94);
    color: #333;
    opacity: 1;
}

.vc-square-banner-control {
    top: 50%;
    bottom: auto;
    transform: translateY(-50%);
    z-index: 5;
}

.vc-square-banner-control.carousel-control-prev {
    left: 10px;
    right: auto;
}

.vc-square-banner-control.carousel-control-next {
    right: 10px;
}

.vc-square-banner-control span,
.vc-banner-control span {
    display: block;
    color: #333;
    font-size: 1.4rem;
    line-height: 1;
}

.vc-home-tabs .nav-link {
    border: 0;
    background: transparent;
    color: var(--vc-muted);
    font-size: .95rem;
}

.vc-home-tabs .nav-link.active {
    background: transparent;
    color: var(--vc-accent);
}

.vc-product-carousel {
    padding-inline: 0;
}

.vc-carousel-control {
    top: -56px;
    bottom: auto;
    width: 34px;
    height: 34px;
    border: 1px solid var(--vc-line);
    border-radius: 50%;
    background: #fff;
    color: #333;
    opacity: 1;
}

.vc-carousel-control span {
    display: block;
    color: #333;
    font-size: 1.4rem;
    line-height: 1;
}

.vc-carousel-control.carousel-control-prev {
    right: 44px;
    left: auto;
}

.vc-carousel-control.carousel-control-next {
    right: 0;
}

.vc-product-card,
.vc-mini-product,
.vc-service-card {
    border: 1px solid var(--vc-line) !important;
    border-radius: 0;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
    transition: transform .18s ease, box-shadow .18s ease;
}

.vc-product-card {
    position: relative;
}

.vc-product-card:hover,
.vc-mini-product:hover,
.vc-service-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .08);
}

.vc-product-img {
    width: 100%;
    aspect-ratio: var(--vc-product-image-ratio);
    object-fit: cover;
    background: var(--vc-soft);
}

.vc-product-variant-badge {
    position: absolute;
    right: 10px;
    bottom: 10px;
    max-width: calc(100% - 20px);
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    color: #344054;
    font-size: .72rem;
    font-weight: 800;
    line-height: 1.1;
    box-shadow: 0 10px 24px rgba(16, 24, 40, .14);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.vc-like-form {
    position: absolute;
    top: 10px;
    left: 10px;
    z-index: 5;
    margin: 0;
}

.vc-like-button {
    display: inline-flex;
    min-width: 34px;
    height: 34px;
    align-items: center;
    justify-content: center;
    gap: 4px;
    padding: 0 9px;
    border: 0;
    border-radius: 999px;
    background: #fff;
    color: #1f2937;
    font-size: .78rem;
    font-weight: 700;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(16, 24, 40, .14);
    transition: color .18s ease, transform .18s ease, box-shadow .18s ease;
}

.vc-like-button:hover,
.vc-like-button.active {
    background: #fff;
    color: #e50023;
    transform: translateY(-1px) scale(1.04);
    box-shadow: 0 8px 20px rgba(16, 24, 40, .18);
}

.vc-like-button.active .bi {
    color: #e50023;
}

.vc-like-button .bi {
    font-size: 1.05rem;
}

.vc-like-button span {
    min-width: 0;
    font-size: .72rem;
    font-weight: 700;
}

.vc-product-title {
    min-height: 2.6em;
}

.vc-card-rating {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-wrap: wrap;
    margin: 0 0 9px;
    color: #777;
    font-size: .78rem;
    line-height: 1;
}

.vc-card-rating-score {
    color: var(--vc-ink);
    font-weight: 700;
}

.vc-card-rating-stars {
    display: inline-flex;
    gap: 1px;
    color: #d7d7d7;
    font-size: .86rem;
}

.vc-card-rating-count {
    color: #777;
    font-weight: 500;
}

.vc-card-rating-empty {
    visibility: hidden;
}

.vc-stock-pill {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 9px;
    border-radius: 999px;
    font-size: .74rem;
    font-weight: 700;
    line-height: 1.1;
    white-space: nowrap;
}

.vc-stock-pill::before {
    font-family: "bootstrap-icons";
    font-size: .82rem;
    line-height: 1;
}

.vc-stock-pill-ok {
    background: #ecfdf3;
    color: #027a48;
}

.vc-stock-pill-ok::before {
    content: "\F26A";
}

.vc-stock-pill-out {
    background: #f3f4f6;
    color: #667085;
}

.vc-stock-pill-out::before {
    content: "\F623";
}

.vc-card-rating-mini {
    margin: 6px 0 0;
    gap: 4px;
    font-size: .72rem;
}

.vc-card-rating-mini .vc-card-rating-stars {
    font-size: .78rem;
}

.vc-badge-soft {
    background: var(--vc-accent);
    color: #fff;
}

.vc-mini-product {
    min-height: 128px;
    padding: 12px;
    background: #fff;
}

.vc-mini-media {
    display: block;
    flex: 0 0 86px;
}

.vc-mini-product img,
.vc-mini-product-img {
    width: 86px;
    aspect-ratio: var(--vc-product-image-ratio);
    height: auto;
    object-fit: cover;
}

.vc-mini-title {
    color: #555;
    line-height: 1.35;
}

.vc-mini-buy-btn {
    padding: 6px 10px;
    font-size: .68rem;
}

.vc-service-card {
    background: #fff;
}

.vc-service-icon {
    display: inline-flex;
    width: 46px;
    height: 46px;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 73, 112, .18);
    border-radius: 50%;
    background: rgba(255, 73, 112, .08);
    color: var(--vc-accent);
    font-size: 1.35rem;
    line-height: 1;
}

.vc-service-card .fw-bold {
    color: var(--vc-ink);
}

.vc-catalog-page .breadcrumb a,
.breadcrumbs a,
.topbar a {
    color: #666 !important;
    text-decoration: none !important;
}

@media (min-width: 992px) {
    .vc-catalog-heading > div:first-child {
        position: relative;
        min-height: 76px;
    }

    .vc-catalog-title-block {
        position: absolute;
        top: 0;
        right: 0;
        margin-left: auto;
        max-width: 680px;
        text-align: right;
    }
}

.vc-filter-card,
.wrap > .card,
.related.card,
.review-item,
.related-card {
    border: 1px solid var(--vc-line) !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .04) !important;
}

.vc-filter-card .list-group-item {
    margin-bottom: 8px;
    border: 1px solid var(--vc-line);
    border-radius: 999px !important;
    color: #555;
    font-size: .92rem;
    padding: 10px 14px;
}

.vc-filter-card .list-group-item.active {
    border-color: var(--vc-accent);
    background: var(--vc-accent);
    color: #fff;
}

.vc-category-toggle {
    border: 1px solid var(--vc-line);
    border-radius: 999px;
    background: var(--vc-soft);
    color: var(--vc-ink);
    font-weight: 700;
}

.vc-category-toggle:hover,
.vc-category-toggle:focus {
    border-color: var(--vc-accent);
    color: var(--vc-ink);
}

.vc-catalog-filter-toggle {
    display: none !important;
}

.vc-catalog-filter-panel.collapse:not(.show) {
    display: block;
}

.vc-catalog-filter-inner {
    display: grid;
    gap: 16px;
}

.vc-category-tree {
    display: grid;
    gap: 8px;
}

.vc-category-node {
    display: grid;
    gap: 6px;
}

.vc-category-root-link,
.vc-category-link,
.vc-category-branch-btn {
    min-height: 42px;
    border: 1px solid var(--vc-line) !important;
    border-radius: 8px !important;
    background: #fff !important;
    color: #4b4b4b !important;
    font-size: .92rem;
    font-weight: 600;
    line-height: 1.25;
    padding: 10px 12px;
    text-decoration: none;
    transition: border-color .18s ease, background-color .18s ease, color .18s ease;
}

.vc-category-root-link {
    gap: 9px;
}

.vc-category-link {
    justify-content: flex-start;
}

.vc-category-link:hover,
.vc-category-link:focus,
.vc-category-branch-btn:hover,
.vc-category-branch-btn:focus {
    border-color: var(--vc-accent) !important;
    color: var(--vc-ink) !important;
}

.vc-category-root-link.active,
.vc-category-link.active,
.vc-category-branch-btn.active,
.vc-category-branch-btn[aria-expanded="true"] {
    border-color: rgba(255, 79, 109, .28) !important;
    background: rgba(255, 79, 109, .08) !important;
    color: var(--vc-accent) !important;
}

.vc-category-branch-btn .bi-chevron-right {
    flex: 0 0 auto;
    font-size: .85rem;
    transition: transform .18s ease;
}

.vc-category-branch-btn[aria-expanded="true"] .bi-chevron-right {
    transform: rotate(90deg);
}

.vc-category-children {
    display: grid;
    gap: 6px;
    margin: 6px 0 2px 12px;
    padding-left: 12px;
    border-left: 1px solid var(--vc-line);
}

.vc-category-children .vc-category-link,
.vc-category-children .vc-category-branch-btn {
    min-height: 38px;
    border-radius: 7px !important;
    font-size: .88rem;
    font-weight: 500;
    padding-block: 9px;
}

.vc-category-all-link {
    color: #777 !important;
    font-size: .84rem !important;
}

.vc-active-filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.vc-active-filter-badge {
    display: inline-flex;
    min-height: 30px;
    align-items: center;
    padding: 6px 11px;
    border: 1px solid rgba(255, 79, 109, .22);
    border-radius: 999px;
    background: rgba(255, 79, 109, .08);
    color: var(--vc-accent);
    font-size: .78rem;
    font-weight: 600;
}

.vc-filter-card .form-control,
.vc-filter-card .form-select,
.select,
.input,
.textarea {
    border-color: var(--vc-line) !important;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.vc-filter-card .form-control:focus,
.vc-filter-card .form-select:focus,
.select:focus,
.input:focus,
.textarea:focus {
    border-color: var(--vc-accent) !important;
    box-shadow: 0 0 0 .15rem rgba(255, 79, 109, .12) !important;
}

.grid {
    width: min(1200px, calc(100% - 32px));
    margin-inline: auto;
}

.wrap {
    width: min(1200px, 100%) !important;
    margin-inline: auto !important;
    padding: 32px 16px 56px !important;
}

.breadcrumbs {
    color: var(--vc-muted) !important;
    font-size: .9rem !important;
}

.hero-image {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: var(--vc-product-image-ratio);
    border-radius: 0 !important;
    object-fit: cover !important;
    background: var(--vc-soft) !important;
}

.thumb-image,
.related-card img {
    border-radius: 0 !important;
    object-fit: cover !important;
}

.thumb-button.active .thumb-image {
    border-color: var(--vc-accent) !important;
}

.price,
.business-price-wholesale {
    color: var(--vc-ink) !important;
    font-family: var(--vc-font-sans) !important;
}

.old-price,
.meta,
.variant-note,
.review-meta,
.product-description {
    color: #666 !important;
}

.sale-badge {
    background: var(--vc-accent) !important;
    color: #fff !important;
}

.stock-ok {
    background: #ecfdf3 !important;
    color: #027a48 !important;
}

.stock-out {
    background: #f3f3f3 !important;
    color: #777 !important;
}

.button,
button.button,
.tab-button.active {
    border: 0 !important;
    border-radius: 999px !important;
    background: #111 !important;
    color: #fff !important;
}

.button-secondary,
.tab-button {
    border: 1px solid var(--vc-line) !important;
    border-radius: 999px !important;
    background: #fff !important;
    color: #444 !important;
}

.related-grid {
    gap: 1.5rem !important;
}

.related-card {
    padding: 12px !important;
    transition: transform .18s ease, box-shadow .18s ease;
}

.related-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .08) !important;
}

.related-card img {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: var(--vc-product-image-ratio);
}

.product-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50% !important;
    background: var(--vc-soft) !important;
    color: #444 !important;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    transition: background .18s ease, color .18s ease, transform .18s ease;
}

.product-social-link:hover {
    background: var(--vc-accent) !important;
    color: #fff !important;
    transform: translateY(-1px);
}

.product-social-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 16px;
}

.product-social-preview {
    opacity: .55;
}

.product-main-image-frame {
    width: 100%;
    overflow: hidden;
    background: var(--vc-soft);
}

.image-zoom-hint {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    margin: 10px 0 0;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--vc-muted);
    font-size: .85rem;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
}

.image-zoom-hint:hover {
    color: var(--vc-accent);
}

.image-preview-modal {
    position: fixed;
    inset: 0;
    z-index: 1080;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 32px;
    background: rgba(0, 0, 0, .82);
}

.image-preview-modal.active {
    display: flex;
}

.image-preview-modal img {
    display: block;
    max-width: min(1100px, 92vw);
    max-height: 86vh;
    object-fit: contain;
    background: #fff;
}

.image-preview-close,
.image-preview-nav {
    position: absolute;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: #222;
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.image-preview-close {
    top: 22px;
    right: 22px;
}

.image-preview-prev {
    left: 22px;
}

.image-preview-next {
    right: 22px;
}

.vc-banner-strip {
    width: min(1320px, 100%) !important;
    max-width: calc(100% - 24px);
    margin: 28px auto !important;
    overflow: hidden;
}

.vc-banner-item {
    display: block;
    width: 100%;
    border-radius: 0 !important;
    box-shadow: none !important;
}

.vc-banner-item picture {
    display: block;
    width: 100%;
}

.vc-banner-item img {
    display: block;
    width: 100% !important;
    max-width: 100% !important;
    height: 285px !important;
    aspect-ratio: auto !important;
    object-fit: cover !important;
}

.vc-banner-carousel {
    position: relative;
}

.vc-banner-control {
    top: 50%;
    transform: translateY(-50%);
}

.vc-banner-control.carousel-control-prev {
    left: 14px;
}

.vc-banner-control.carousel-control-next {
    right: 14px;
}

.vc-catalog-banner .vc-banner-strip {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}

.vc-catalog-banner .vc-banner-item img {
    height: 230px !important;
}

.vc-product-banner {
    width: 100%;
    margin-inline: auto;
}

.vc-product-banner .vc-banner-strip {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
}

.vc-product-banner .vc-banner-item img {
    height: 220px !important;
}

.vc-store-footer {
    margin-top: 0 !important;
    background: #f5f5f5 !important;
    color: #2f3439 !important;
    font-family: var(--vc-font-sans);
}

.vc-footer-wrap {
    width: min(1180px, 100%);
    margin: 0 auto;
    padding: 34px 22px;
}

.vc-footer-row-one {
    display: grid;
    grid-template-columns: 1.25fr .75fr .85fr;
    gap: 28px;
    padding-bottom: 26px;
    border-bottom: 1px solid rgba(47, 52, 57, .12);
}

.vc-footer-title {
    margin: 0 0 10px;
    font-size: 1.65rem;
    line-height: 1.1;
    font-weight: 800;
}

.vc-footer-subtitle {
    font-size: 1.25rem;
}

.vc-footer-address {
    margin-top: 10px;
    white-space: pre-line;
}

.vc-footer-links {
    display: grid;
    gap: 9px;
}

.vc-footer-links a,
.vc-footer-muted {
    font-size: .84rem;
    font-weight: 600 !important;
    line-height: 1.35;
}

.vc-footer-row-two {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
    padding: 20px 0;
    border-bottom: 1px solid rgba(47, 52, 57, .12);
}

.vc-footer-payment {
    max-height: 42px;
    max-width: 320px;
    object-fit: contain;
    background: #fff;
    border-radius: 12px;
    padding: 7px;
}

.vc-footer-payment-text {
    display: inline-flex;
    padding: 10px 12px;
    background: rgba(37, 37, 37, .06);
    color: #4b5560;
}

.vc-footer-row-three {
    padding-top: 18px;
    color: #4b5560;
    font-size: 13px;
    text-align: center;
}

.vc-store-footer,
.vc-store-footer p,
.vc-store-footer span,
.vc-store-footer div,
.vc-store-footer li,
.vc-store-footer small,
.vc-store-footer strong,
.vc-store-footer h1,
.vc-store-footer h2,
.vc-store-footer h3,
.vc-store-footer h4,
.vc-store-footer h5,
.vc-store-footer h6 {
    color: #2f3439 !important;
}

.vc-footer-slogan,
.vc-footer-address,
.vc-footer-muted,
.vc-footer-copy {
    color: #4b5560 !important;
}

.vc-store-footer a {
    color: #2f3439 !important;
    text-decoration: none;
    font-weight: 700;
}

.vc-utility-page {
    min-height: 100vh;
    background: #fff;
}

.vc-page-heading .breadcrumb a {
    color: #666;
    text-decoration: none;
}

.vc-soft-card {
    border: 1px solid var(--vc-line) !important;
    border-radius: 0 !important;
    background: #fff !important;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .04) !important;
}

.vc-table {
    --bs-table-bg: transparent;
}

.vc-table thead th {
    color: #777;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    white-space: nowrap;
}

.vc-table td,
.vc-table th {
    padding: 16px;
    border-color: var(--vc-line);
}

.vc-cart-thumb {
    width: 78px;
    height: 98px;
    flex: 0 0 78px;
    object-fit: cover;
    background: var(--vc-soft);
}

.vc-qty-input {
    width: 82px;
}

.vc-summary-total {
    color: var(--vc-ink);
    font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.vc-coupon-chip {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 79, 109, .08);
    color: var(--vc-accent);
    font-weight: 700;
}

.vc-empty-icon {
    display: inline-flex;
    width: 58px;
    height: 58px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--vc-soft);
    color: var(--vc-ink);
    font-size: 1.55rem;
}

.vc-step-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    padding: 14px;
    border: 1px solid var(--vc-line);
    background: #fff;
}

.vc-step-item > span {
    display: inline-flex;
    width: 34px;
    height: 34px;
    flex: 0 0 34px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--vc-ink);
    color: #fff;
    font-size: .9rem;
    font-weight: 700;
}

.vc-step-item strong,
.vc-step-item small {
    display: block;
}

.vc-step-item small {
    margin-top: 3px;
    color: #666;
    line-height: 1.45;
}

.vc-rich-text {
    line-height: 1.7;
}

.vc-rich-text :last-child {
    margin-bottom: 0;
}

.vc-info-tile {
    height: 100%;
    padding: 14px;
    border: 1px solid var(--vc-line);
    background: #fff;
}

.vc-info-tile span {
    display: block;
    margin-bottom: 5px;
    color: #777;
    font-size: .82rem;
}

.vc-info-tile strong {
    display: block;
    color: var(--vc-ink);
    line-height: 1.35;
    overflow-wrap: anywhere;
}

.vc-timeline {
    display: grid;
    gap: 12px;
}

.vc-timeline-item {
    position: relative;
    padding: 0 0 0 22px;
}

.vc-timeline-item::before {
    content: "";
    position: absolute;
    top: 6px;
    left: 0;
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: var(--vc-accent);
}

.vc-timeline-item::after {
    content: "";
    position: absolute;
    top: 19px;
    bottom: -12px;
    left: 4px;
    width: 1px;
    background: var(--vc-line);
}

.vc-timeline-item:last-child::after {
    display: none;
}

.vc-timeline-item strong,
.vc-timeline-item span {
    display: block;
}

.vc-timeline-item span {
    color: #777;
    font-size: .84rem;
}

.vc-timeline-item p {
    margin: 5px 0 0;
    color: #555;
}

.vc-address-card {
    padding: 16px;
    border: 1px solid var(--vc-line);
    background: #fff;
}

.vc-address-card strong {
    color: var(--vc-ink);
}

.vc-contract-box {
    border: 1px solid var(--vc-line);
    background: #fff;
}

.vc-contract-box + .vc-contract-box {
    margin-top: 10px;
}

.vc-contract-box summary {
    cursor: pointer;
    padding: 14px 16px;
    color: var(--vc-ink);
    font-weight: 700;
    background: var(--vc-soft);
}

.vc-contract-content {
    max-height: 360px;
    overflow: auto;
    padding: 16px;
    color: #555;
    line-height: 1.7;
}

.vc-contract-content table {
    width: 100%;
    margin: 12px 0;
    border-collapse: collapse;
}

.vc-contract-content th,
.vc-contract-content td {
    padding: 8px;
    border: 1px solid var(--vc-line);
    text-align: left;
}

.vc-content-body {
    color: #444;
}

.vc-content-body h1,
.vc-content-body h2,
.vc-content-body h3 {
    color: var(--vc-ink);
    font-weight: 700;
}

.vc-content-body p {
    margin-bottom: 16px;
}

.vc-content-body img {
    max-width: 100%;
    height: auto;
}

.vc-content-body table {
    width: 100%;
    margin: 18px 0;
    border-collapse: collapse;
}

.vc-content-body th,
.vc-content-body td {
    padding: 10px;
    border: 1px solid var(--vc-line);
    text-align: left;
}

.vc-result-card {
    width: min(760px, 100%);
}

.vc-result-icon {
    display: inline-flex;
    width: 64px;
    height: 64px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--vc-soft);
    color: var(--vc-ink);
    font-size: 1.75rem;
}

.vc-result-success {
    background: rgba(25, 135, 84, .1);
    color: #198754;
}

.vc-check-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    color: #555;
}

.vc-check-row input {
    width: auto;
    margin-top: 4px;
}

.vc-payment-frame-wrap {
    position: relative;
    margin-top: 18px;
    overflow: hidden;
    border: 1px solid var(--vc-line);
    background: #fff;
}

.vc-payment-iframe {
    display: block;
    width: 100%;
    min-height: 720px;
    border: 0;
    background: #fff;
}

.vc-payment-iframe-paytr {
    min-height: 620px;
}

.vc-payment-lock {
    position: absolute;
    inset: 0;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 22px;
    background: rgba(37, 37, 37, .62);
    text-align: center;
}

.vc-payment-lock-card {
    max-width: 440px;
    background: #fff;
    padding: 22px;
    box-shadow: 0 18px 44px rgba(0, 0, 0, .16);
}

.vc-payment-lock-card strong {
    display: block;
    margin-bottom: 8px;
    color: var(--vc-ink);
    font-size: 1.15rem;
}

.vc-payment-lock-card p {
    margin: 0;
    color: #666;
}

.vc-payment-frame-wrap.locked iframe {
    filter: grayscale(.2);
    pointer-events: none;
}

.vc-product-detail-page .topbar,
.vc-product-detail-page .breadcrumbs,
.vc-product-detail-page .review-top {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.vc-product-detail-page .topbar {
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}

.vc-product-detail-page .topbar a,
.vc-product-detail-page .breadcrumbs a {
    color: #444;
    text-decoration: none;
    font-weight: 700;
}

.vc-product-detail-page .grid {
    width: 100%;
    margin-inline: 0 !important;
    display: grid;
    grid-template-columns: minmax(320px, .82fr) minmax(0, 1.18fr);
    gap: 28px;
}

.vc-product-detail-page .grid > *,
.vc-product-detail-page .related-grid > *,
.vc-product-detail-page .review-layout > *,
.vc-catalog-page .row > *,
.vc-catalog-page [class*="col-"] {
    min-width: 0;
}

.vc-product-detail-page .card,
.vc-checkout-page .card {
    border: 1px solid var(--vc-line);
    border-radius: 0;
    background: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .04);
}

.vc-product-detail-page .card {
    padding: 22px;
}

.vc-product-detail-page .product-media-card {
    align-self: start;
}

.vc-product-detail-page .product-gallery-layout {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    gap: 14px;
    align-items: start;
}

.vc-product-detail-page .product-main-image-frame {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: visible;
    background: var(--vc-soft);
}

.vc-product-detail-page .product-main-stage {
    min-width: 0;
}

.vc-product-detail-page .product-main-image-frame .hero-image {
    width: auto !important;
    max-width: 100%;
    max-height: min(68vh, 620px);
    object-fit: contain !important;
}

.vc-product-detail-page .thumb-grid {
    display: flex;
    max-height: min(68vh, 620px);
    flex-direction: column;
    gap: 9px;
    overflow-y: auto;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.vc-product-detail-page .thumb-grid::-webkit-scrollbar {
    display: none;
}

.vc-product-detail-page .thumb-button {
    padding: 0;
    border: 0;
    background: transparent;
    cursor: pointer;
}

.vc-product-detail-page .thumb-image {
    width: 100%;
    height: 92px;
    aspect-ratio: var(--vc-product-image-ratio);
    object-fit: cover;
    border: 2px solid transparent;
    background: var(--vc-soft);
}

.vc-product-detail-page .thumb-carousel {
    display: grid;
    gap: 8px;
}

.vc-product-detail-page .thumb-carousel-nav {
    display: inline-flex;
    width: 100%;
    min-height: 30px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--vc-line);
    background: #fff;
    color: #444;
    font-size: .9rem;
}

.vc-product-detail-page .thumb-carousel-nav:hover {
    border-color: var(--vc-accent);
    color: var(--vc-accent);
}

.vc-product-detail-page .meta {
    margin-bottom: 12px;
    font-size: 14px;
}

.product-detail-title,
.product-section-title,
.vc-checkout-title {
    margin: 0;
    color: var(--vc-ink);
    font-family: var(--vc-font-sans);
    font-weight: 800;
    letter-spacing: 0;
}

.product-detail-title {
    margin-bottom: 16px;
    padding-right: 220px;
    font-size: clamp(1.65rem, 3vw, 2.35rem);
    line-height: 1.08;
}

.product-detail-summary {
    margin: 0;
    color: #666;
    line-height: 1.8;
}

.product-purchase-form {
    margin-top: 16px;
}

.product-rating-summary {
    display: flex;
    align-items: center;
    gap: 7px;
    flex-wrap: wrap;
    margin-top: 16px;
    line-height: 1;
}

.product-rating-score {
    display: inline-flex;
    min-width: 34px;
    height: 26px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--vc-line);
    background: #fff;
    color: var(--vc-ink);
    font-size: .82rem;
    font-weight: 700;
}

.product-rating-stars {
    display: inline-flex;
    gap: 2px;
    color: #d7d7d7;
    font-size: 1.05rem;
}

.product-rating-count {
    color: var(--vc-accent);
    font-size: .84rem;
    font-weight: 500;
}

.product-rating-empty {
    color: var(--vc-accent);
    font-size: .9rem;
    font-weight: 700;
}

.product-like-form {
    margin: 14px 0 0;
}

.vc-product-detail-page .grid > .card {
    position: relative;
}

.vc-product-detail-page .product-like-form.vc-like-form {
    position: absolute;
    top: 24px;
    right: 24px;
    left: auto;
    z-index: 3;
    margin: 0;
}

.vc-product-detail-page .grid > .card > .meta:first-of-type {
    padding-right: 220px;
}

.product-like-button {
    display: inline-flex;
    min-height: 32px;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 6px 11px;
    border: 1px solid var(--vc-line);
    border-radius: 999px;
    background: #fff;
    color: var(--vc-ink);
    font-size: .76rem;
    font-weight: 600;
    transition: background .18s ease, border-color .18s ease, color .18s ease;
}

.product-like-button:hover,
.product-like-button.active {
    border-color: var(--vc-accent);
    background: var(--vc-accent);
    color: #fff;
}

.product-like-button .bi {
    font-size: .9rem;
}

.product-like-button strong {
    font-weight: 600;
}

.vc-product-detail-page .price {
    margin: 18px 0 10px;
    font-size: 2rem;
    line-height: 1;
    font-weight: 800;
}

.vc-product-detail-page .business-price {
    display: grid;
    gap: 8px;
    margin: 18px 0 10px;
    font-size: 1.08rem;
    line-height: 1.35;
    font-weight: 700;
}

.business-price-label,
.business-price-retail {
    color: #666;
}

.vc-product-detail-page .old-price {
    margin-left: 10px;
    color: #98a2b3;
    text-decoration: line-through;
    font-size: 1.1rem;
    font-weight: 400;
}

.vc-product-detail-page .sale-badge {
    display: inline-flex;
    margin-top: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
}

.vc-product-detail-page .button,
.vc-product-detail-page button.button {
    min-height: 44px;
    padding: 12px 18px;
    border: 0 !important;
    border-radius: 999px !important;
    background: var(--vc-accent) !important;
    color: #fff !important;
    font-size: .82rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
}

.vc-product-detail-page .button:hover,
.vc-product-detail-page button.button:hover {
    background: #ec405e !important;
    color: #fff !important;
}

.vc-product-detail-page .button-disabled,
.vc-product-detail-page .button:disabled,
.vc-product-detail-page button.button:disabled {
    background: #c9c9c9 !important;
    color: #fff !important;
    cursor: not-allowed;
}

.vc-product-detail-page .button-secondary,
.vc-product-detail-page .tab-button {
    min-height: 42px;
    border: 1px solid var(--vc-line) !important;
    border-radius: 999px !important;
    background: #fff !important;
    color: #444 !important;
}

.vc-product-detail-page .tab-button.active {
    border-color: var(--vc-accent) !important;
    background: var(--vc-accent) !important;
    color: #fff !important;
}

.vc-product-detail-page .stock {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 700;
}

.vc-product-detail-page .field-label {
    display: block;
    margin: 18px 0 8px;
    font-size: 14px;
    font-weight: 700;
}

.vc-product-detail-page .select,
.vc-product-detail-page .input,
.vc-product-detail-page .textarea {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    background: #fff;
}

.vc-product-detail-page .textarea {
    min-height: 120px;
    resize: vertical;
}

.vc-product-detail-page .related {
    margin-top: 24px;
}

.vc-product-detail-page .related-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.vc-product-detail-page .related-card {
    position: relative;
    overflow: hidden;
    padding: 0 !important;
    color: inherit;
    background: #fff;
    border: 1px solid var(--vc-line);
}

.vc-product-detail-page .related-card-link {
    display: block;
    color: inherit;
    text-decoration: none;
}

.vc-product-detail-page .related-card img,
.vc-product-detail-page .related-card .related-image-placeholder {
    display: block;
    margin: 0 0 10px;
}

.vc-product-detail-page .related-card .related-card-link > :not(img):not(.related-image-placeholder) {
    margin-left: 12px;
    margin-right: 12px;
}

.vc-product-detail-page .related-card strong {
    display: block;
    min-height: 2.7em;
    color: var(--vc-ink);
    font-size: .86rem;
    font-weight: 700;
    line-height: 1.35;
}

.vc-product-detail-page .related-card .vc-card-rating {
    margin-top: 7px;
    margin-bottom: 8px;
}

.vc-product-detail-page .related-card .vc-stock-pill {
    margin-top: 9px;
    margin-bottom: 12px;
}

.related-image-placeholder {
    width: 100%;
    aspect-ratio: var(--vc-product-image-ratio);
    background: var(--vc-soft);
}

.relation-badge {
    margin-bottom: 8px;
    background: #344054 !important;
    font-size: .68rem;
    font-weight: 700;
}

.related-price-line,
.related-current-price,
.related-stock {
    margin-top: 6px;
    font-weight: 700;
    font-size: .82rem;
    line-height: 1.35;
}

.related-price-line,
.related-stock {
    color: #666;
    font-weight: 500;
}

.related-price-line-secondary {
    margin-top: 4px;
}

.related-price-retail,
.related-current-price {
    color: var(--vc-ink);
}

.related-price-wholesale {
    color: #027a48;
}

.related-old-price {
    margin-left: 6px;
    color: #98a2b3;
    text-decoration: line-through;
    font-weight: 400;
    font-size: .76rem;
}

.vc-product-detail-page .success,
.vc-product-detail-page .error,
.vc-product-detail-page .notice {
    margin-bottom: 16px;
    padding: 14px 16px;
    border-radius: 0;
    font-size: 14px;
}

.vc-product-detail-page .success {
    background: #ecfdf3;
    color: #027a48;
}

.vc-product-detail-page .error {
    background: #fff1f2;
    color: #be123c;
}

.vc-product-detail-page .notice {
    background: var(--vc-soft);
    color: #444;
}

.vc-product-detail-page .cart-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
    color: var(--vc-accent);
    text-decoration: none;
    font-weight: 700;
}

.vc-product-detail-page .review-layout {
    display: grid;
    grid-template-columns: 1fr .95fr;
    gap: 20px;
}

.vc-product-detail-page .review-list {
    display: grid;
    gap: 14px;
}

.vc-product-detail-page .review-item {
    border: 1px solid var(--vc-line);
    padding: 16px;
    background: #fff;
}

.vc-catalog-results-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--vc-muted);
    font-size: .95rem;
}

.vc-catalog-pagination {
    margin-top: 28px;
}

.vc-catalog-pagination .page-link {
    border-radius: 999px;
    margin: 0 4px;
    border-color: var(--vc-line);
    color: var(--vc-ink);
}

.vc-catalog-pagination .page-item.active .page-link {
    background: var(--vc-accent);
    border-color: var(--vc-accent);
    color: #fff;
}

.vc-catalog-pagination .page-item.disabled .page-link {
    color: var(--vc-muted);
}

.vc-product-detail-page .stars {
    display: inline-flex;
    gap: 2px;
    color: var(--vc-accent);
    font-weight: 700;
}

.vc-rating-star {
    position: relative;
    display: inline-block;
    color: #d7d7d7;
    line-height: 1;
}

.vc-rating-star::before {
    content: "\2605";
    position: absolute;
    inset: 0 auto 0 0;
    width: var(--fill, 0%);
    overflow: hidden;
    color: #ff9f1c;
    white-space: nowrap;
}

.review-title {
    margin: 10px 0 6px;
    font-size: 1.1rem;
}

.review-comment {
    margin: 0;
    line-height: 1.8;
}

.form-actions {
    margin-top: 14px;
}

.vc-review-rating-input {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-wrap: wrap;
    margin-bottom: 10px;
}

.vc-review-rating-star {
    border: 0;
    background: transparent;
    padding: 0;
    font-size: 2rem;
    line-height: 1;
    color: #d7d7d7;
    cursor: pointer;
    transition: transform .15s ease, color .15s ease;
}

.vc-review-rating-star:hover,
.vc-review-rating-star.is-active {
    color: #ff9f1c;
}

.vc-review-rating-star:hover {
    transform: translateY(-1px) scale(1.04);
}

.vc-review-rating-label {
    margin-left: 6px;
    color: var(--vc-muted);
    font-size: .95rem;
    font-weight: 600;
}

.vc-product-detail-page .tabs {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    margin-bottom: 18px;
    border-bottom: 1px solid var(--vc-line);
}

.vc-product-detail-page .tab-panel {
    display: none;
}

.vc-product-detail-page .tab-panel.active {
    display: block;
    animation: vcTabFadeIn .18s ease both;
}

.vc-product-detail-page .tabs .tab-button {
    min-height: 40px;
    margin: 0 18px -1px 0;
    padding: 0 0 11px;
    border: 0 !important;
    border-bottom: 2px solid transparent !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #667085 !important;
    font-size: .92rem;
    font-weight: 700;
}

.vc-product-detail-page .tabs .tab-button:hover,
.vc-product-detail-page .tabs .tab-button.active {
    border-color: var(--vc-accent) !important;
    background: transparent !important;
    color: var(--vc-ink) !important;
}

@keyframes vcTabFadeIn {
    from {
        opacity: 0;
        transform: translateY(6px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.vc-product-detail-page .product-description-card {
    padding: 18px;
}

.vc-product-detail-page .product-description {
    line-height: 1.8;
}

.vc-product-detail-page .product-description p {
    margin: 0 0 16px;
}

.vc-product-detail-page .product-description ul,
.vc-product-detail-page .product-description ol {
    padding-left: 22px;
}

.vc-product-detail-page .product-description table {
    width: 100%;
    border-collapse: collapse;
    margin: 16px 0;
}

.vc-product-detail-page .product-description th,
.vc-product-detail-page .product-description td {
    border: 1px solid var(--vc-line);
    padding: 10px;
    text-align: left;
}

.vc-product-detail-page .product-description img {
    max-width: 100%;
    height: auto;
    border-radius: 0;
}

.product-buy-row {
    display: flex;
    gap: 12px;
    align-items: center;
    flex-wrap: wrap;
}

.quantity-stepper {
    display: inline-grid;
    grid-template-columns: 36px 42px 36px;
    width: 114px;
    height: 42px;
    overflow: hidden;
    border: 1px solid #e8e8e8;
    border-radius: 999px;
    background: #fff;
}

.quantity-stepper-btn,
.quantity-input {
    width: 100% !important;
    height: 100%;
    min-width: 0;
    border: 0 !important;
    border-radius: 0 !important;
    background: transparent !important;
    color: #555;
    box-shadow: none !important;
    font-size: .88rem;
}

.quantity-stepper-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    color: #555;
    cursor: pointer;
}

.quantity-stepper-btn:first-child,
.quantity-input {
    border-right: 1px solid #eeeeee !important;
}

.quantity-stepper-btn:hover {
    color: var(--vc-accent);
}

.quantity-stepper-btn:disabled {
    color: #bbb;
    cursor: not-allowed;
}

.quantity-input {
    padding: 0 !important;
    text-align: center;
    appearance: textfield;
    -moz-appearance: textfield;
}

.quantity-input::-webkit-outer-spin-button,
.quantity-input::-webkit-inner-spin-button {
    margin: 0;
    appearance: none;
    -webkit-appearance: none;
}

.quantity-input:focus {
    outline: 0;
    box-shadow: none !important;
}

.vc-checkout-page {
    box-sizing: border-box;
    width: min(1320px, 100%) !important;
    padding: 32px 22px 56px !important;
}

.vc-checkout-page *,
.vc-checkout-page *::before,
.vc-checkout-page *::after {
    box-sizing: border-box;
}

.vc-checkout-page .topbar {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}

.vc-checkout-page .topbar a {
    color: #666;
    text-decoration: none;
    font-weight: 700;
}

.vc-checkout-page .links {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.vc-checkout-page .layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 420px;
    gap: 24px;
    min-width: 0;
}

.vc-checkout-page .card {
    padding: 24px;
    min-width: 0;
}

.vc-checkout-page .grid {
    width: 100%;
    margin-inline: 0;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    min-width: 0;
}

.vc-checkout-page .field {
    margin-bottom: 16px;
}

.vc-checkout-page .field-full {
    grid-column: 1 / -1;
}

.vc-checkout-page label {
    display: block;
    margin-bottom: 8px;
    color: #666;
    font-size: 13px;
    font-weight: 700;
}

.vc-checkout-page input,
.vc-checkout-page textarea,
.vc-checkout-page select {
    max-width: 100%;
    width: 100%;
    border: 1px solid var(--vc-line);
    border-radius: 0;
    padding: 12px 14px;
    font-size: 15px;
    font-family: inherit;
    background: #fff;
    box-shadow: none;
}

.vc-checkout-page input:focus,
.vc-checkout-page textarea:focus,
.vc-checkout-page select:focus {
    border-color: var(--vc-accent);
    outline: 0;
    box-shadow: 0 0 0 .15rem rgba(255, 79, 109, .12);
}

.vc-checkout-page textarea {
    min-height: 116px;
    resize: vertical;
}

.vc-checkout-title {
    font-size: 2.4rem;
    line-height: 1.1;
}

.vc-checkout-subtitle {
    margin: 8px 0 0;
    color: #666;
}

.vc-checkout-section-title {
    margin: 8px 0 10px;
    color: var(--vc-ink);
    font-size: 1.35rem;
    font-weight: 800;
}

.vc-checkout-summary-title {
    margin-top: 0;
    color: var(--vc-ink);
    font-size: 1.35rem;
    font-weight: 800;
}

.vc-checkout-page .button {
    text-transform: uppercase;
    font-size: .82rem;
}

.vc-checkout-page .vc-checkout-submit-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 320px;
    margin-top: 4px;
    border: 0 !important;
    border-radius: 999px !important;
    background: var(--vc-accent) !important;
    color: #fff !important;
    font-size: .76rem;
    font-weight: 700;
    letter-spacing: 0;
    text-transform: uppercase;
    box-shadow: none;
}

.vc-checkout-page .vc-checkout-submit-button:hover {
    background: #ec405e !important;
    color: #fff !important;
}

.vc-checkout-page .alert {
    margin-bottom: 16px;
    padding: 14px 16px;
    border: 1px solid rgba(190, 18, 60, .14);
    border-radius: 0;
    background: #fff1f2;
    color: #be123c;
    font-size: 14px;
}

.vc-checkout-page .item {
    display: grid;
    grid-template-columns: 72px 1fr auto;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid var(--vc-line);
}

.vc-checkout-page .thumb {
    width: 72px;
    height: auto;
    aspect-ratio: var(--vc-product-image-ratio);
    object-fit: cover;
    background: var(--vc-soft);
}

.vc-checkout-page .total {
    margin-top: 18px;
    color: var(--vc-ink);
    font-size: 1.75rem;
    font-weight: 800;
}

.vc-checkout-page .totals {
    display: grid;
    gap: 8px;
}

.vc-checkout-page .coupon-chip {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(255, 79, 109, .08);
    color: var(--vc-accent);
    font-weight: 700;
    margin-top: 16px;
}

.vc-coupon-name {
    font-weight: 400;
}

.vc-checkout-page .helper {
    margin-top: 6px;
    color: #777;
    font-size: 13px;
}

.vc-checkout-choice-row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.vc-checkout-choice {
    display: flex !important;
    align-items: flex-start;
    gap: 12px;
    min-height: 86px;
    margin: 0 !important;
    padding: 16px;
    border: 1px solid var(--vc-line);
    background: #fff;
    cursor: pointer;
    min-width: 0;
    transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}

.vc-checkout-choice:hover {
    border-color: rgba(255, 79, 109, .45);
    box-shadow: 0 14px 34px rgba(15, 23, 42, .06);
    transform: translateY(-1px);
}

.vc-checkout-choice input {
    width: auto;
    margin-top: 2px;
    accent-color: var(--vc-accent);
}

.vc-checkout-choice strong,
.vc-checkout-choice small {
    display: block;
}

.vc-checkout-choice strong {
    color: var(--vc-ink);
    font-size: 14px;
}

.vc-checkout-choice small {
    margin-top: 4px;
    color: #777;
    font-size: 12px;
    line-height: 1.45;
}

.vc-checkout-page .address-preview {
    border: 1px solid var(--vc-line);
    padding: 16px;
    background: #fff;
    display: grid;
    gap: 8px;
    min-width: 0;
}

.vc-checkout-page .address-preview strong {
    font-size: 15px;
}

.vc-checkout-page .address-preview .line {
    color: #666;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.vc-checkout-page .contract-box {
    border: 1px solid var(--vc-line);
    background: #fff;
    overflow: hidden;
    margin-bottom: 14px;
    min-width: 0;
}

.vc-checkout-page .contract-box summary {
    cursor: pointer;
    padding: 14px 16px;
    font-weight: 700;
    color: var(--vc-ink);
    background: var(--vc-soft);
    white-space: normal;
    overflow-wrap: anywhere;
}

.vc-checkout-page .contract-content {
    max-height: 260px;
    overflow: auto;
    padding: 16px;
    line-height: 1.7;
    overflow-wrap: anywhere;
}

.vc-checkout-page .contract-content table {
    width: 100%;
    border-collapse: collapse;
    margin: 12px 0;
}

.vc-checkout-page .contract-content th,
.vc-checkout-page .contract-content td {
    border: 1px solid var(--vc-line);
    padding: 8px;
    text-align: left;
}

.vc-checkout-page .checkbox-row {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    margin: 12px 0;
}

.vc-checkout-page .checkbox-row input {
    width: auto;
    margin-top: 3px;
}

.vc-checkout-page .payment-module-box {
    border: 1px solid var(--vc-line);
    background: #fff;
    padding: 16px;
    line-height: 1.6;
}

.vc-checkout-page .payment-module-box dl {
    display: grid;
    grid-template-columns: 128px 1fr;
    gap: 8px 12px;
    margin: 10px 0;
}

.vc-checkout-page .payment-module-box dt {
    font-weight: 700;
    color: var(--vc-ink);
}

.vc-checkout-page .payment-module-box dd {
    margin: 0;
    color: var(--vc-ink);
}

.vc-checkout-page .payment-module-note {
    margin: 12px 0 0;
    color: #777;
    font-size: 13px;
}

.vc-checkout-item-meta,
.vc-checkout-tax-note,
.vc-checkout-totals,
.vc-checkout-tax-totals {
    color: #666;
}

.vc-checkout-item-meta,
.vc-checkout-b2b-discount,
.vc-checkout-tax-note {
    margin-top: 6px;
}

.vc-checkout-b2b-discount {
    color: #027a48;
    font-size: 13px;
}

.vc-checkout-tax-note,
.vc-checkout-small-note {
    font-size: 13px;
}

.vc-checkout-payment-info {
    margin-top: 18px;
}

.vc-checkout-payment-info h3 {
    margin: 0 0 10px;
    color: var(--vc-ink);
    font-size: 1.1rem;
    font-weight: 800;
}

.vc-checkout-totals {
    margin-top: 18px;
}

.vc-checkout-tax-totals {
    margin-top: 12px;
}

@media (max-width: 767.98px) {
    .vc-checkout-page {
        width: 100% !important;
        max-width: 100% !important;
        padding: 20px 12px 42px !important;
    }

    .vc-checkout-page .topbar {
        margin-bottom: 16px;
    }

    .vc-checkout-page .card {
        padding: 16px 14px;
    }

    .vc-checkout-page .field {
        margin-bottom: 14px;
    }

    .vc-checkout-page input,
    .vc-checkout-page textarea,
    .vc-checkout-page select {
        padding: 11px 12px;
        font-size: 14px;
    }

    .vc-checkout-title {
        font-size: 1.8rem;
    }

    .vc-checkout-section-title,
    .vc-checkout-summary-title {
        font-size: 1.15rem;
        line-height: 1.25;
    }

    .vc-checkout-choice {
        min-height: 0;
        padding: 14px;
    }

    .vc-checkout-page .address-preview,
    .vc-checkout-page .payment-module-box,
    .vc-checkout-page .contract-content {
        padding: 14px;
    }

    .vc-checkout-page .contract-content {
        max-height: 360px;
    }

    .vc-checkout-page .payment-module-box dl {
        grid-template-columns: 1fr;
    }

    .vc-store-header {
        position: sticky;
    }

    .vc-store-header-inner {
        align-items: center;
        flex-direction: row;
        flex-wrap: wrap;
        width: min(100%, calc(100% - 24px));
    }

    .vc-store-nav,
    .vc-store-account {
        display: none;
    }

    .vc-store-menu-button {
        display: inline-flex;
        width: 42px;
        height: 42px;
        margin-left: auto;
        align-items: center;
        justify-content: center;
        flex-direction: column;
        gap: 5px;
        border: 1px solid var(--vc-line);
        border-radius: 999px;
        background: #fff;
    }

    .vc-store-menu-button span {
        display: block;
        width: 17px;
        height: 2px;
        border-radius: 999px;
        background: var(--vc-ink);
    }

    .vc-store-mobile-panel {
        display: none;
        width: 100%;
        padding: 14px 0 4px;
    }

    .vc-store-menu-check:checked ~ .vc-store-mobile-panel {
        display: grid;
        gap: 8px;
    }

    .vc-store-mobile-panel a,
    .vc-mobile-category summary {
        color: #444 !important;
        font-size: .94rem;
        font-weight: 700;
        text-decoration: none;
    }

    .vc-store-mobile-panel > a,
    .vc-mobile-category,
    .vc-mobile-category-link {
        padding: 11px 12px;
        border: 1px solid var(--vc-line);
        background: #fff;
    }

    .vc-mobile-menu-title {
        margin-top: 4px;
        color: #7b8087;
        font-size: .75rem;
        font-weight: 800;
        text-transform: uppercase;
    }

    .vc-mobile-category summary {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
        list-style: none;
        cursor: pointer;
    }

    .vc-mobile-category summary::-webkit-details-marker {
        display: none;
    }
    .vc-mobile-category-link {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 12px;
    }

    .vc-mobile-category summary a {
        margin-left: auto;
        color: var(--vc-accent) !important;
        font-size: .78rem;
    }

    .vc-mobile-category-caret {
        color: #999;
        font-size: .8rem;
        transition: transform .18s ease;
    }

    .vc-mobile-category[open] > summary .vc-mobile-category-caret {
        transform: rotate(180deg);
    }

    .vc-mobile-category-children {
        display: grid;
        gap: 8px;
        margin-top: 10px;
        padding-left: 10px;
    }

    .vc-mobile-category-children .vc-mobile-category,
    .vc-mobile-category-children .vc-mobile-category-link {
        background: var(--vc-soft);
    }

    .vc-catalog-page aside.col-lg-3 {
        margin-bottom: 4px;
    }

    .vc-catalog-page .vc-filter-card .card-body {
        padding: 12px !important;
    }

    .vc-catalog-filter-toggle {
        display: inline-flex !important;
    }

    .vc-catalog-filter-panel.collapse:not(.show) {
        display: none;
    }

    .vc-catalog-filter-panel.show {
        margin-top: 12px;
    }

    .vc-store-logo {
        max-width: 160px;
        max-height: 48px;
    }

    .vc-footer-row-one {
        grid-template-columns: 1fr;
    }

    .vc-footer-row-two {
        align-items: flex-start;
        flex-direction: column;
    }

    .vc-hero-img {
        height: 430px;
        min-height: 0;
    }

    .vc-hero-caption {
        right: 1.5rem;
        left: 1.5rem;
        top: 16%;
        text-align: center !important;
    }

    .vc-square-banner-section {
        padding-inline: 16px;
    }

    .vc-square-banner-section .row {
        --bs-gutter-x: 0;
        --bs-gutter-y: 0;
        flex-wrap: nowrap;
        margin-inline: 0;
    }

    .vc-square-banner-section .row > * {
        padding-inline: 0;
    }

    .vc-promo-card {
        aspect-ratio: 416 / 450;
        height: auto;
    }

    .vc-promo-card > div {
        padding: 1.25rem !important;
    }

    .vc-promo-card h2 {
        font-size: clamp(1.55rem, 8vw, 2.15rem);
    }

    .vc-carousel-control,
    .vc-square-banner-control,
    .vc-banner-control {
        display: none;
    }

    .vc-banner-strip .vc-banner-item img {
        height: auto !important;
        aspect-ratio: 16 / 5 !important;
        min-height: 118px;
    }

    .vc-catalog-banner .vc-banner-strip .vc-banner-item img {
        height: auto !important;
        aspect-ratio: 16 / 5 !important;
        min-height: 110px;
    }

    .vc-product-banner .vc-banner-strip .vc-banner-item img {
        height: auto !important;
        aspect-ratio: 16 / 5 !important;
        min-height: 110px;
    }

    .vc-product-detail-page .grid,
    .vc-product-detail-page .review-layout,
    .vc-checkout-page .layout,
    .vc-checkout-page .grid {
        grid-template-columns: 1fr;
    }

    .vc-checkout-choice-row {
        grid-template-columns: 1fr;
    }

    .vc-checkout-page .vc-checkout-submit-button {
        width: 100%;
    }

    .vc-product-detail-page {
        width: 100% !important;
        padding-inline: 16px !important;
    }

    .vc-product-detail-page .card {
        padding: 16px;
    }

    .vc-product-detail-page .product-like-form.vc-like-form {
        position: static;
        margin: 12px 0 0;
    }

    .product-detail-title {
        padding-right: 0;
    }

    .vc-product-detail-page .grid > .card > .meta:first-of-type {
        padding-right: 0;
    }

    .image-preview-modal {
        padding: 18px;
    }

    .image-preview-modal img {
        max-width: 100%;
        max-height: 82vh;
    }

    .image-preview-nav {
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .image-preview-prev {
        left: 10px;
    }

    .image-preview-next {
        right: 10px;
    }

    .vc-product-detail-page .product-gallery-layout {
        display: flex;
        flex-direction: column;
        gap: 12px;
    }

    .vc-product-detail-page .product-main-image-frame {
        order: 1;
        max-height: none;
    }

    .vc-product-detail-page .thumb-carousel {
        order: 2;
        display: block;
    }

    .vc-product-detail-page .thumb-carousel-nav {
        display: none;
    }

    .vc-product-detail-page .hero-image {
        aspect-ratio: var(--vc-product-image-ratio);
    }

    .vc-product-detail-page .product-main-image-frame .hero-image {
        width: 100% !important;
        max-height: none;
        object-fit: cover !important;
    }

    .vc-product-detail-page .related-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vc-product-detail-page .thumb-grid {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        max-height: none;
        overflow: visible;
    }

    .vc-product-detail-page .thumb-image {
        height: auto;
    }
}

@media (max-width: 575.98px) {
    .container,
    .container-fluid {
        max-width: 100%;
        padding-right: 16px;
        padding-left: 16px;
    }

    .row {
        --bs-gutter-x: 1rem;
    }

    .vc-banner-strip {
        max-width: calc(100% - 32px);
        margin-block: 20px !important;
    }

    .vc-product-detail-page .related-grid {
        grid-template-columns: 1fr;
    }
}
