/* =========================================================
   VENTACTIVE
   PRODUCT PAGE
   PREMIUM PRODUCT EXPERIENCE
========================================================= */


/* =========================================================
   PAGE
========================================================= */

.vcProductPage {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 8%,
            rgba(49, 143, 204, 0.09),
            transparent 27%
        ),
        radial-gradient(
            circle at 92% 20%,
            rgba(21, 77, 125, 0.06),
            transparent 24%
        ),
        #f7fafc;
}


/* =========================================================
   PRODUCT FOCUS
========================================================= */

.vcProductFocus {
    position: relative;
    width: 100%;
    padding:
        clamp(24px, 3vw, 48px)
        clamp(18px, 4vw, 70px)
        clamp(50px, 6vw, 90px);
}

.vcProductFocus::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    top: -260px;
    right: -180px;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(53, 151, 216, 0.12),
            transparent 68%
        );
    pointer-events: none;
}

.vcProductFocusInner {
    position: relative;
    z-index: 2;
    width: min(1540px, 100%);
    margin: 0 auto;
}


/* =========================================================
   BREADCRUMB
========================================================= */

.vcProductBreadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 22px;
    font-size: 13px;
    line-height: 1.4;
    color: #8195a8;
}

.vcProductBreadcrumb a {
    position: relative;
    color: #71899f;
    text-decoration: none;
    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.vcProductBreadcrumb a:hover {
    color: #154d7d;
}

.vcProductBreadcrumbDivider {
    width: 17px;
    height: 17px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #b4c1cc;
}

.vcProductBreadcrumbDivider svg {
    width: 100%;
    height: 100%;
}

.vcProductBreadcrumbCurrent {
    max-width: 380px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    color: #31516e;
    font-weight: 700;
}


/* =========================================================
   PRODUCT WORKSPACE
========================================================= */

.vcProductWorkspace {
    position: relative;
    display: grid;
    grid-template-columns:
        minmax(0, 1.1fr)
        minmax(390px, 0.9fr);
    gap: clamp(20px, 2.2vw, 38px);
    align-items: stretch;
}


/* =========================================================
   GALLERY
========================================================= */

.vcProductGallery {
    position: relative;
    min-width: 0;
    display: grid;
    grid-template-columns: 88px minmax(0, 1fr);
    gap: 16px;
}


/* =========================================================
   GALLERY RAIL
========================================================= */

.vcProductGalleryRailWrap {
    position: relative;
    min-width: 0;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 9px;
}

.vcProductGalleryRail {
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 10px;
    max-height: 620px;
    overflow-y: auto;
    overflow-x: hidden;
    scrollbar-width: none;
    scroll-behavior: smooth;
}

.vcProductGalleryRail::-webkit-scrollbar {
    display: none;
}

.vcProductGalleryRailArrow {
    width: 100%;
    height: 34px;
    flex: 0 0 auto;
    border: 1px solid rgba(22, 77, 124, 0.1);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    color: #55738d;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    transition:
        background 0.25s ease,
        color 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.vcProductGalleryRailArrow:hover {
    color: #154d7d;
    background: #ffffff;
    border-color: rgba(22, 77, 124, 0.2);
}

.vcProductGalleryRailArrow:active {
    transform: scale(0.95);
}

.vcProductGalleryRailArrow svg {
    width: 18px;
    height: 18px;
}


/* =========================================================
   THUMBNAILS
========================================================= */

.vcProductGalleryThumb {
    position: relative;
    width: 100%;
    aspect-ratio: 1 / 1;
    flex: 0 0 auto;
    padding: 7px;
    overflow: hidden;
    border:
        1px solid
        rgba(22, 77, 124, 0.1);
    border-radius: 20px;
    background: #ffffff;
    cursor: pointer;
    isolation: isolate;
    transition:
        transform 0.3s cubic-bezier(.2,.75,.3,1),
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.vcProductGalleryThumb::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    opacity: 0;
    background:
        linear-gradient(
            145deg,
            rgba(42, 135, 198, 0.11),
            transparent 65%
        );
    transition: opacity 0.3s ease;
}

.vcProductGalleryThumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 13px;
    transition:
        transform 0.35s cubic-bezier(.2,.75,.3,1);
}

.vcProductGalleryThumb:hover {
    transform: translateY(-2px);
    border-color: rgba(37, 122, 181, 0.3);
}

.vcProductGalleryThumb:hover img {
    transform: scale(1.05);
}

.vcProductGalleryThumb.is-active {
    border-color: #277db6;
    box-shadow:
        0 12px 30px
        rgba(20, 73, 115, 0.13);
}

.vcProductGalleryThumb.is-active::before {
    opacity: 1;
}

.vcProductGalleryThumbIndex {
    position: absolute;
    right: 7px;
    bottom: 7px;
    min-width: 25px;
    height: 22px;
    padding: 0 6px;
    border-radius: 8px;
    background: rgba(13, 54, 89, 0.78);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.06em;
    backdrop-filter: blur(8px);
}


/* =========================================================
   GALLERY STAGE
========================================================= */

.vcProductGalleryStage {
    position: relative;
    min-width: 0;
    min-height: 680px;
    overflow: hidden;
    border:
        1px solid
        rgba(22, 77, 124, 0.09);
    border-radius:
        clamp(28px, 3vw, 46px);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.98),
            rgba(246, 250, 253, 0.95)
        );
    box-shadow:
        0 30px 80px
        rgba(21, 63, 98, 0.10);
    isolation: isolate;
}

.vcProductGalleryAmbient {
    position: absolute;
    inset: 0;
    z-index: -1;
    overflow: hidden;
    pointer-events: none;
}

.vcProductGalleryGlow {
    position: absolute;
    width: 70%;
    aspect-ratio: 1;
    left: 50%;
    top: 50%;
    transform:
        translate(-50%, -50%);
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(69, 159, 218, 0.13),
            rgba(69, 159, 218, 0.025) 45%,
            transparent 70%
        );
    filter: blur(3px);
}

.vcProductGalleryGrid {
    position: absolute;
    inset: 0;
    opacity: 0.16;
    background-image:
        linear-gradient(
            rgba(34, 95, 140, 0.08) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(34, 95, 140, 0.08) 1px,
            transparent 1px
        );
    background-size: 42px 42px;
    mask-image:
        radial-gradient(
            circle at center,
            black,
            transparent 72%
        );
    -webkit-mask-image:
        radial-gradient(
            circle at center,
            black,
            transparent 72%
        );
}


/* =========================================================
   GALLERY TOP
========================================================= */

.vcProductGalleryTop {
    position: absolute;
    z-index: 5;
    top: 26px;
    left: 28px;
    right: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    pointer-events: none;
}

.vcProductGalleryEdition {
    min-height: 34px;
    padding: 0 14px;
    border:
        1px solid
        rgba(22, 77, 124, 0.09);
    border-radius: 999px;
    background:
        rgba(255, 255, 255, 0.78);
    color: #6d859a;
    display: inline-flex;
    align-items: center;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.vcProductGalleryBadges {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
}

.vcProductGalleryDiscount,
.vcProductGalleryShipping {
    min-height: 34px;
    padding: 0 13px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.03em;
}

.vcProductGalleryDiscount {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #164e7d,
            #2d82ba
        );
    box-shadow:
        0 10px 24px
        rgba(24, 87, 135, 0.18);
}

.vcProductGalleryShipping {
    color: #15785b;
    border:
        1px solid
        rgba(32, 170, 126, 0.13);
    background:
        rgba(229, 249, 241, 0.9);
}


/* =========================================================
   MAIN PRODUCT IMAGE
========================================================= */

.vcProductGalleryMain {
    position: absolute;
    inset: 80px 25px 65px;
    width: calc(100% - 50px);
    height: calc(100% - 145px);
    padding: clamp(24px, 4vw, 58px);
    border: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: zoom-in;
}

.vcProductGalleryMain img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    max-width: 630px;
    max-height: 535px;
    object-fit: contain;
    filter:
        drop-shadow(
            0 28px 30px
            rgba(25, 55, 77, 0.10)
        );
    transition:
        transform 0.55s
        cubic-bezier(.2,.75,.3,1),
        opacity 0.25s ease;
}

.vcProductGalleryMain:hover img {
    transform:
        translateY(-5px)
        scale(1.025);
}

.vcProductGalleryMain.is-changing img {
    opacity: 0;
    transform:
        scale(0.975);
}


/* =========================================================
   IMAGE PLACEHOLDER
========================================================= */

.vcProductGalleryPlaceholder {
    width: min(360px, 80%);
    aspect-ratio: 1;
    border:
        1px dashed
        rgba(22, 77, 124, 0.17);
    border-radius: 40px;
    background:
        rgba(255, 255, 255, 0.58);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    color: #6f879b;
}

.vcProductGalleryPlaceholder span {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.vcProductGalleryPlaceholder strong {
    color: #1d4d75;
    font-size: 20px;
}


/* =========================================================
   ZOOM BUTTON
========================================================= */

.vcProductGalleryZoom {
    position: absolute;
    z-index: 5;
    right: 12px;
    bottom: 12px;
    width: 48px;
    height: 48px;
    border:
        1px solid
        rgba(22, 77, 124, 0.1);
    border-radius: 17px;
    background:
        rgba(255, 255, 255, 0.88);
    color: #315f84;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 10px 28px
        rgba(17, 60, 95, 0.09);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.vcProductGalleryMain:hover
.vcProductGalleryZoom {
    color: #ffffff;
    background: #1c5c8f;
    transform: scale(1.05);
}

.vcProductGalleryZoom svg {
    width: 22px;
    height: 22px;
}


/* =========================================================
   GALLERY FOOTER
========================================================= */

.vcProductGalleryFooter {
    position: absolute;
    z-index: 5;
    left: 29px;
    right: 29px;
    bottom: 22px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 15px;
    pointer-events: none;
}

.vcProductGalleryFooter > div {
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.vcProductGalleryFooter span {
    color: #8ca0b2;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.vcProductGalleryFooter strong {
    color: #154d7d;
    font-size: 19px;
    font-weight: 800;
}

.vcProductGalleryFooter small {
    color: #9badbd;
    font-size: 11px;
}

.vcProductGalleryFooter
.vcProductGalleryHint {
    letter-spacing: 0;
    text-transform: none;
    font-size: 11px;
    font-weight: 500;
}


/* =========================================================
   COMMERCE PANEL
========================================================= */

.vcProductCommerce {
    position: relative;
    min-width: 0;
}

.vcProductCommerceInner {
    position: sticky;
    top: 20px;
    min-height: 680px;
    padding:
        clamp(30px, 3.3vw, 52px);
    border:
        1px solid
        rgba(22, 77, 124, 0.09);
    border-radius:
        clamp(28px, 3vw, 46px);
    background:
        rgba(255, 255, 255, 0.92);
    box-shadow:
        0 30px 80px
        rgba(21, 63, 98, 0.10);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


/* =========================================================
   PRODUCT META
========================================================= */

.vcProductMeta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 17px;
}

.vcProductMetaCategory {
    color: #347cab;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.vcProductMetaSku {
    padding: 7px 10px;
    border-radius: 999px;
    background: #f2f6f9;
    color: #8a9cac;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
}


/* =========================================================
   TITLE
========================================================= */

.vcProductTitle {
    max-width: 680px;
    margin: 0;
    color: #123f68;
    font-family: "Inter", sans-serif;
    font-size:
        clamp(32px, 3vw, 54px);
    line-height: 0.99;
    font-weight: 700;
    letter-spacing: -0.035em;
    text-wrap: balance;
}


/* =========================================================
   RATING SUMMARY
========================================================= */

.vcProductRatingSummary {
    width: fit-content;
    max-width: 100%;
    margin-top: 19px;
    padding: 0;
    border: 0;
    background: transparent;
    color: inherit;
    display: flex;
    align-items: center;
    gap: 9px;
    cursor: pointer;
    text-align: left;
}

.vcProductRatingSummary strong {
    color: #244e71;
    font-size: 13px;
}

.vcProductRatingSummary > span {
    color: #8296a7;
    font-size: 12px;
}

.vcProductRatingSummary > svg {
    width: 16px;
    height: 16px;
    color: #6b8ba4;
    transition:
        transform 0.25s ease;
}

.vcProductRatingSummary:hover > svg {
    transform: translateX(4px);
}


/* =========================================================
   STARS
========================================================= */

.vcProductStars {
    position: relative;
    display: inline-block;
    font-size: 15px;
    line-height: 1;
    letter-spacing: 1px;
}

.vcProductStarsBack {
    color: #dce5ec;
}

.vcProductStarsFront {
    position: absolute;
    top: 0;
    left: 0;
    overflow: hidden;
    white-space: nowrap;
    color: #f4ad2d;
}

.vcProductRatingNewDot {
    width: 9px;
    height: 9px;
    flex: 0 0 auto;
    border-radius: 50%;
    background: #30c794;
    box-shadow:
        0 0 0 6px
        rgba(48, 199, 148, 0.11);
}


/* =========================================================
   INTRO
========================================================= */

.vcProductIntro {
    max-width: 640px;
    margin:
        22px 0 0;
    color: #70879b;
    font-size:
        clamp(14px, 1.1vw, 16px);
    line-height: 1.72;
}


/* =========================================================
   PRICE ZONE
========================================================= */

.vcProductPriceZone {
    position: relative;
    margin-top: 27px;
    padding:
        24px 0 23px;
    border-top:
        1px solid
        rgba(22, 77, 124, 0.08);
    border-bottom:
        1px solid
        rgba(22, 77, 124, 0.08);
}

.vcProductPriceLabel {
    display: block;
    margin-bottom: 7px;
    color: #93a5b5;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.vcProductPricePrevious {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 11px;
    margin-bottom: 3px;
}

.vcProductPricePrevious del {
    color: #9baab7;
    font-size: 15px;
}

.vcProductPricePrevious span {
    min-height: 25px;
    padding: 0 9px;
    border-radius: 999px;
    background: #edf8f4;
    color: #45836e;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 10px;
}

.vcProductPricePrevious strong {
    color: #147c5d;
}

.vcProductPriceCurrent {
    display: flex;
    align-items: flex-end;
    flex-wrap: wrap;
    gap: 8px;
}

.vcProductPriceCurrent strong {
    color: #123f68;
    font-family: "Inter", sans-serif;
    font-size:
        clamp(38px, 3.7vw, 62px);
    line-height: 0.98;
    letter-spacing: -0.045em;
}

.vcProductPriceCurrent span {
    margin-bottom: 7px;
    color: #7c91a4;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
}

.vcProductSavingSignal {
    margin-top: 12px;
    color: #738a9e;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px;
    font-size: 11px;
}

.vcProductSavingSignal > span {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #2bc492;
    box-shadow:
        0 0 0 5px
        rgba(43, 196, 146, 0.10);
}

.vcProductSavingSignal strong {
    color: #16805e;
}


/* =========================================================
   DELIVERY
========================================================= */

.vcProductDeliveryGrid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 18px;
}

.vcProductDeliveryCard {
    min-width: 0;
    min-height: 96px;
    padding: 16px;
    border:
        1px solid
        rgba(22, 77, 124, 0.08);
    border-radius: 20px;
    background:
        linear-gradient(
            145deg,
            #fbfdff,
            #f6f9fb
        );
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition:
        transform 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

.vcProductDeliveryCard:hover {
    transform: translateY(-2px);
    border-color:
        rgba(33, 112, 167, 0.17);
    box-shadow:
        0 13px 28px
        rgba(24, 68, 103, 0.07);
}

.vcProductDeliveryIcon {
    width: 39px;
    height: 39px;
    flex: 0 0 auto;
    border-radius: 13px;
    background: #eaf4fa;
    color: #2675aa;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vcProductDeliveryIcon svg {
    width: 21px;
    height: 21px;
}

.vcProductDeliveryCard > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.vcProductDeliveryCard > div > span {
    margin-bottom: 3px;
    color: #8b9dac;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vcProductDeliveryCard strong {
    color: #244f72;
    font-size: 13px;
    line-height: 1.25;
}

.vcProductDeliveryCard small {
    margin-top: 4px;
    color: #92a3b1;
    font-size: 9px;
    line-height: 1.35;
}


/* =========================================================
   PURCHASE CONSOLE
========================================================= */

.vcProductPurchase {
    position: relative;
    margin-top: 18px;
    padding: 18px;
    border-radius: 25px;
    background:
        linear-gradient(
            145deg,
            #f3f8fb,
            #edf4f8
        );
    border:
        1px solid
        rgba(22, 77, 124, 0.07);
}

.vcProductPurchaseTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 13px;
}

.vcProductPurchaseHeading {
    display: flex;
    flex-direction: column;
}

.vcProductPurchaseHeading span {
    color: #8a9dad;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.vcProductPurchaseHeading strong {
    margin-top: 3px;
    color: #244f72;
    font-size: 14px;
}


/* =========================================================
   QUANTITY
========================================================= */

.vcProductQuantity {
    height: 47px;
    padding: 4px;
    border:
        1px solid
        rgba(22, 77, 124, 0.10);
    border-radius: 15px;
    background: #ffffff;
    display: grid;
    grid-template-columns: 38px 45px 38px;
    align-items: center;
    box-shadow:
        0 7px 20px
        rgba(24, 68, 103, 0.05);
}

.vcProductQuantity button {
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: #4f718d;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition:
        color 0.2s ease,
        background 0.2s ease,
        transform 0.2s ease;
}

.vcProductQuantity button:hover {
    color: #ffffff;
    background: #246fa5;
}

.vcProductQuantity button:active {
    transform: scale(0.92);
}

.vcProductQuantity button svg {
    width: 17px;
    height: 17px;
}

.vcProductQuantity input {
    width: 45px;
    height: 38px;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
    color: #174a74;
    text-align: center;
    font-size: 14px;
    font-weight: 800;
    appearance: textfield;
    -moz-appearance: textfield;
}

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


/* =========================================================
   ADD TO CART
========================================================= */

.vcProductAddCart {
    position: relative;
    width: 100%;
    min-height: 76px;
    padding:
        10px 14px
        10px 13px;
    overflow: hidden;
    border: 0;
    border-radius: 21px;
    background:
        linear-gradient(
            115deg,
            #123f68 0%,
            #1c5e91 55%,
            #2c82bb 100%
        );
    color: #ffffff;
    display: grid;
    grid-template-columns:
        49px
        minmax(0, 1fr)
        auto
        45px;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-align: left;
    box-shadow:
        0 19px 38px
        rgba(19, 73, 116, 0.22);
    isolation: isolate;
    transition:
        transform 0.3s
        cubic-bezier(.2,.75,.3,1),
        box-shadow 0.3s ease;
}

.vcProductAddCart::before {
    content: "";
    position: absolute;
    z-index: -1;
    width: 180px;
    height: 180px;
    top: 50%;
    right: -70px;
    transform:
        translateY(-50%);
    border-radius: 50%;
    background:
        rgba(255, 255, 255, 0.08);
    transition:
        width 0.45s ease,
        height 0.45s ease;
}

.vcProductAddCart:hover {
    transform: translateY(-3px);
    box-shadow:
        0 25px 48px
        rgba(19, 73, 116, 0.28);
}

.vcProductAddCart:hover::before {
    width: 250px;
    height: 250px;
}

.vcProductAddCart:active {
    transform: translateY(-1px);
}

.vcProductAddCartIcon {
    width: 49px;
    height: 49px;
    border-radius: 15px;
    background:
        rgba(255, 255, 255, 0.11);
    display: flex;
    align-items: center;
    justify-content: center;
}

.vcProductAddCartIcon svg {
    width: 23px;
    height: 23px;
}

.vcProductAddCartCopy {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.vcProductAddCartCopy small {
    margin-bottom: 2px;
    color: rgba(255, 255, 255, 0.63);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vcProductAddCartCopy strong {
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 17px;
    line-height: 1.15;
}

.vcProductAddCartPrice {
    color: #ffffff;
    font-size: 13px;
    font-weight: 800;
    white-space: nowrap;
}

.vcProductAddCartArrow {
    width: 45px;
    height: 45px;
    border-radius: 14px;
    background:
        rgba(255, 255, 255, 0.13);
    display: flex;
    align-items: center;
    justify-content: center;
    transition:
        transform 0.3s ease,
        background 0.3s ease;
}

.vcProductAddCartArrow svg {
    width: 19px;
    height: 19px;
}

.vcProductAddCart:hover
.vcProductAddCartArrow {
    transform: translateX(3px);
    background:
        rgba(255, 255, 255, 0.19);
}


/* =========================================================
   CART STATES
========================================================= */

.vcProductAddCart.is-loading {
    pointer-events: none;
    opacity: 0.86;
}

.vcProductAddCart.is-success {
    background:
        linear-gradient(
            115deg,
            #15795b,
            #25a77c,
            #36c897
        );
}

.vcProductAddCart.is-error {
    background:
        linear-gradient(
            115deg,
            #a93e3e,
            #d34f4f
        );
}


/* =========================================================
   BUY NOW
========================================================= */

.vcProductBuyNow {
    width: 100%;
    min-height: 53px;
    margin-top: 9px;
    padding: 8px 15px;
    border:
        1px solid
        rgba(22, 77, 124, 0.10);
    border-radius: 17px;
    background:
        rgba(255, 255, 255, 0.82);
    color: #2d5b80;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    cursor: pointer;
    text-align: left;
    transition:
        background 0.25s ease,
        border-color 0.25s ease,
        transform 0.25s ease;
}

.vcProductBuyNow:hover {
    transform: translateY(-1px);
    background: #ffffff;
    border-color:
        rgba(30, 103, 153, 0.22);
}

.vcProductBuyNow > span {
    display: flex;
    flex-direction: column;
}

.vcProductBuyNow small {
    color: #93a4b2;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vcProductBuyNow strong {
    margin-top: 1px;
    color: #285a80;
    font-size: 12px;
}

.vcProductBuyNow svg {
    width: 18px;
    height: 18px;
}


/* =========================================================
   TRUST
========================================================= */

.vcProductTrust {
    display: grid;
    grid-template-columns:
        repeat(2, minmax(0, 1fr));
    gap: 10px;
    margin-top: 15px;
}

.vcProductTrust > div {
    min-width: 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.vcProductTrust > div > span {
    width: 34px;
    height: 34px;
    flex: 0 0 auto;
    border-radius: 11px;
    background: #f0f6f9;
    color: #477694;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vcProductTrust svg {
    width: 18px;
    height: 18px;
}

.vcProductTrust > div > div {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.vcProductTrust strong {
    color: #365c78;
    font-size: 10px;
}

.vcProductTrust small {
    margin-top: 1px;
    color: #9aa9b5;
    font-size: 8px;
    line-height: 1.3;
}


/* =========================================================
   PRODUCT SECTION NAV
========================================================= */

.vcProductSectionNav {
    position: relative;
    z-index: 20;
    width: 100%;
    margin-top: 25px;
    padding: 9px;
    border:
        1px solid
        rgba(22, 77, 124, 0.08);
    border-radius: 27px;
    background:
        rgba(255, 255, 255, 0.86);
    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 7px;
    box-shadow:
        0 20px 50px
        rgba(22, 65, 99, 0.08);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}


/* =========================================================
   PRODUCT SECTION NAV
   FIXED STATE
========================================================= */

.vcProductSectionNav {
    --vc-product-nav-left: 0px;
    --vc-product-nav-width: 100%;
}


/*
|--------------------------------------------------------------------------
| Placeholder generado por JS.
|--------------------------------------------------------------------------
*/

.vcProductSectionNavPlaceholder {
    display: none;
    width: 100%;
}


/*
|--------------------------------------------------------------------------
| Cuando llega debajo del header.
|--------------------------------------------------------------------------
*/

.vcProductSectionNav.is-fixed {
    position: fixed;

    top: 92px;

    left:
        var(
            --vc-product-nav-left
        );

    width:
        var(
            --vc-product-nav-width
        );

    margin-top: 0;

    z-index: 99990;

    isolation: isolate;

    background:
        rgba(
            255,
            255,
            255,
            0.96
        );

    backdrop-filter:
        blur(24px);

    -webkit-backdrop-filter:
        blur(24px);

    box-shadow:
        0 18px 50px
        rgba(
            19,
            59,
            91,
            0.16
        );

    animation:
        vcProductNavDock
        0.3s
        cubic-bezier(.2,.75,.3,1);
}
.vcProductSectionNav {
    position: relative;
    z-index: 50;
}

.vcProductSectionNavPlaceholder {
    position: relative;
    z-index: 1;
}


/* =========================================================
   LOWER PRODUCT CONTENT STACK
========================================================= */

.vcProductDetails,
.vcProductStory,
.vcProductDNA,
.vcProductQuestions,
.vcProductReviews,
.vcProductRelated {
    position: relative;
    z-index: 1;
}

@keyframes vcProductNavDock {

    from {
        opacity: 0;
        transform:
            translateY(-8px);
    }

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

}

.vcProductSectionNav button {
    position: relative;
    min-width: 0;
    min-height: 72px;
    padding: 11px 14px;
    overflow: hidden;
    border: 0;
    border-radius: 20px;
    background: transparent;
    color: #607b91;
    display: flex;
    align-items: center;
    gap: 11px;
    cursor: pointer;
    text-align: left;
    transition:
        background 0.3s ease,
        color 0.3s ease,
        transform 0.3s ease,
        box-shadow 0.3s ease;
}

.vcProductSectionNav button:hover {
    background: #f2f7fa;
    color: #1e5a86;
}

.vcProductSectionNav button.is-active {
    color: #ffffff;
    background:
        linear-gradient(
            135deg,
            #174a74,
            #2a78ad
        );
    box-shadow:
        0 13px 27px
        rgba(21, 78, 120, 0.18);
}

.vcProductSectionNavNumber {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    border-radius: 13px;
    background:
        rgba(33, 107, 157, 0.08);
    color: #5f829d;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.05em;
    transition:
        background 0.3s ease,
        color 0.3s ease;
}

.vcProductSectionNav
button.is-active
.vcProductSectionNavNumber {
    color: #ffffff;
    background:
        rgba(255, 255, 255, 0.13);
}

.vcProductSectionNav button > span:nth-child(2) {
    min-width: 0;
    display: flex;
    flex-direction: column;
}

.vcProductSectionNav small {
    overflow: hidden;
    color: #9aabb8;
    font-size: 8px;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-overflow: ellipsis;
    white-space: nowrap;
    transition:
        color 0.3s ease;
}

.vcProductSectionNav
button.is-active small {
    color:
        rgba(255, 255, 255, 0.62);
}

.vcProductSectionNav strong {
    margin-top: 2px;
    overflow: hidden;
    font-family: "Inter", sans-serif;
    font-size: 13px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vcProductSectionCount {
    min-width: 27px;
    height: 27px;
    margin-left: auto;
    padding: 0 7px;
    border-radius: 999px;
    background: #eaf2f7;
    color: #51748f;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 9px;
    font-weight: 800;
}

.vcProductSectionNav
button.is-active
.vcProductSectionCount {
    color: #ffffff;
    background:
        rgba(255, 255, 255, 0.13);
}


/* =========================================================
   LIGHTBOX
========================================================= */

.vcProductLightbox {
    position: fixed;
    z-index: 999999;
    inset: 0;
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transition:
        opacity 0.3s ease,
        visibility 0.3s ease;
}

.vcProductLightbox.is-open {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
}

.vcProductLightboxBackdrop {
    position: absolute;
    inset: 0;
    background:
        rgba(7, 27, 43, 0.78);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
}

.vcProductLightboxPanel {
    position: absolute;
    inset:
        clamp(15px, 3vw, 42px);
    overflow: hidden;
    border:
        1px solid
        rgba(255, 255, 255, 0.15);
    border-radius:
        clamp(25px, 3vw, 45px);
    background:
        linear-gradient(
            145deg,
            #ffffff,
            #f2f7fa
        );
    box-shadow:
        0 40px 100px
        rgba(0, 0, 0, 0.25);
    transform:
        scale(0.97)
        translateY(10px);
    transition:
        transform 0.4s
        cubic-bezier(.2,.75,.3,1);
}

.vcProductLightbox.is-open
.vcProductLightboxPanel {
    transform:
        scale(1)
        translateY(0);
}

.vcProductLightboxClose {
    position: absolute;
    z-index: 10;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    padding: 0;
    border:
        1px solid
        rgba(22, 77, 124, 0.10);
    border-radius: 17px;
    background:
        rgba(255, 255, 255, 0.86);
    color: #416784;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow:
        0 10px 25px
        rgba(22, 62, 92, 0.08);
    backdrop-filter: blur(10px);
    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.vcProductLightboxClose:hover {
    color: #ffffff;
    background: #174d77;
    transform: rotate(4deg);
}

.vcProductLightboxClose svg {
    width: 22px;
    height: 22px;
}


/* =========================================================
   LIGHTBOX STAGE
========================================================= */

.vcProductLightboxStage {
    position: absolute;
    inset: 40px 95px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vcProductLightboxStage::before {
    content: "";
    position: absolute;
    width: 65%;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(52, 145, 204, 0.11),
            transparent 68%
        );
}

.vcProductLightboxStage img {
    position: relative;
    z-index: 2;
    display: block;
    width: 100%;
    height: 100%;
    max-width: 1050px;
    max-height: calc(100vh - 150px);
    object-fit: contain;
    filter:
        drop-shadow(
            0 35px 35px
            rgba(18, 50, 74, 0.12)
        );
}

.vcProductLightboxInfo {
    position: absolute;
    z-index: 5;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.vcProductLightboxInfo span {
    max-width: 70%;
    overflow: hidden;
    color: #6f8799;
    font-size: 12px;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.vcProductLightboxInfo strong {
    color: #174d77;
    font-size: 12px;
}


/* =========================================================
   LIGHTBOX ARROWS
========================================================= */

.vcProductLightboxArrow {
    position: absolute;
    z-index: 10;
    top: 50%;
    width: 56px;
    height: 56px;
    padding: 0;
    transform:
        translateY(-50%);
    border:
        1px solid
        rgba(22, 77, 124, 0.10);
    border-radius: 19px;
    background:
        rgba(255, 255, 255, 0.9);
    color: #315f82;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow:
        0 12px 30px
        rgba(18, 59, 90, 0.09);
    transition:
        color 0.25s ease,
        background 0.25s ease,
        transform 0.25s ease;
}

.vcProductLightboxArrow:hover {
    color: #ffffff;
    background: #19537f;
}

.vcProductLightboxArrow svg {
    width: 22px;
    height: 22px;
}

.vcProductLightboxPrev {
    left: 22px;
}

.vcProductLightboxNext {
    right: 22px;
}

.vcProductLightboxPrev:hover {
    transform:
        translateY(-50%)
        translateX(-3px);
}

.vcProductLightboxNext:hover {
    transform:
        translateY(-50%)
        translateX(3px);
}


/* =========================================================
   NO SCROLL WHEN LIGHTBOX IS OPEN
========================================================= */

body.vcProductLightboxOpen {
    overflow: hidden;
}


/* =========================================================
   PRODUCT NOT FOUND
========================================================= */

.vcProductNotFound {
    width: min(1200px, calc(100% - 36px));
    min-height: 65vh;
    margin: 30px auto 80px;
    padding: 50px;
    border:
        1px solid
        rgba(22, 77, 124, 0.08);
    border-radius: 42px;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    box-shadow:
        0 25px 70px
        rgba(21, 63, 98, 0.08);
}

.vcProductNotFound > div {
    max-width: 620px;
}

.vcProductNotFound span {
    color: #5790b7;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.vcProductNotFound h1 {
    margin: 12px 0;
    color: #123f68;
    font-family: "Inter", sans-serif;
    font-size:
        clamp(35px, 5vw, 62px);
    line-height: 1;
}

.vcProductNotFound p {
    color: #7c91a2;
    line-height: 1.7;
}

.vcProductNotFound a {
    min-height: 55px;
    margin-top: 20px;
    padding: 0 24px;
    border-radius: 18px;
    background:
        linear-gradient(
            135deg,
            #174d78,
            #2d80b6
        );
    color: #ffffff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-weight: 700;
}


/* =========================================================
   RESPONSIVE
   1280
========================================================= */

@media (max-width: 1280px) {

    .vcProductFocus {
        padding-left: 28px;
        padding-right: 28px;
    }

    .vcProductWorkspace {
        grid-template-columns:
            minmax(0, 1fr)
            minmax(370px, 0.85fr);
        gap: 20px;
    }

    .vcProductGallery {
        grid-template-columns:
            76px
            minmax(0, 1fr);
        gap: 12px;
    }

    .vcProductGalleryStage,
    .vcProductCommerceInner {
        min-height: 640px;
    }

    .vcProductCommerceInner {
        padding: 34px;
    }

    .vcProductTitle {
        font-size:
            clamp(31px, 3.4vw, 46px);
    }

}


/* =========================================================
   RESPONSIVE
   1100
========================================================= */
@media (max-width: 1100px) {

    .vcProductWorkspace {
        grid-template-columns: 1fr;
        width: 100%;
        max-width: 100%;
        min-width: 0;
    }

    .vcProductGallery {
        grid-template-columns:
            82px
            minmax(0, 1fr);

        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .vcProductGalleryStage {
        min-height: 680px;
        min-width: 0;
        max-width: 100%;
    }

    .vcProductCommerce {
        width: 100%;
        min-width: 0;
        max-width: 100%;
    }

    .vcProductCommerceInner {
        position: relative;
        top: auto;

        width: 100%;
        max-width: 100%;
        min-width: 0;
        min-height: 0;

        padding:
            clamp(26px, 4vw, 40px);

        display: grid;

        grid-template-columns:
            minmax(0, 1fr)
            minmax(0, 0.9fr);

        column-gap:
            clamp(20px, 3vw, 32px);

        box-sizing: border-box;
        overflow: hidden;
    }

    .vcProductMeta,
    .vcProductTitle,
    .vcProductRatingSummary,
    .vcProductIntro,
    .vcProductPriceZone,
    .vcProductDeliveryGrid,
    .vcProductPurchase,
    .vcProductTrust {
        min-width: 0;
        max-width: 100%;
    }

    .vcProductMeta,
    .vcProductTitle,
    .vcProductRatingSummary,
    .vcProductIntro,
    .vcProductPriceZone {
        grid-column: 1;
    }

    .vcProductDeliveryGrid,
    .vcProductPurchase,
    .vcProductTrust {
        grid-column: 2;
    }

    .vcProductDeliveryGrid {
        grid-row: 1 / span 3;
        align-self: start;
        margin-top: 0;
    }

    .vcProductPurchase {
        grid-row: 4 / span 2;
        align-self: start;
    }

    .vcProductTrust {
        grid-row: 6;
    }
}

    .vcProductMeta,
    .vcProductTitle,
    .vcProductRatingSummary,
    .vcProductIntro,
    .vcProductPriceZone {
        grid-column: 1;
    }

    .vcProductDeliveryGrid,
    .vcProductPurchase,
    .vcProductTrust {
        grid-column: 2;
    }

    .vcProductDeliveryGrid {
        grid-row: 1 / span 3;
        align-self: start;
        margin-top: 0;
    }

    .vcProductPurchase {
        grid-row: 4 / span 2;
        align-self: start;
    }

    .vcProductTrust {
        grid-row: 6;
    }

}


/* =========================================================
   RESPONSIVE
   850
========================================================= */

@media (max-width: 850px) {

    .vcProductFocus {
        padding:
            22px 18px
            55px;
    }

    .vcProductBreadcrumb {
        margin-bottom: 16px;
    }

    .vcProductGallery {
        display: flex;
        flex-direction: column-reverse;
    }

    .vcProductGalleryRailWrap {
        width: 100%;
        display: block;
    }

    .vcProductGalleryRail {
        width: 100%;
        max-height: none;
        display: flex;
        flex-direction: row;
        gap: 9px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x proximity;
    }

    .vcProductGalleryRailArrow {
        display: none;
    }

    .vcProductGalleryThumb {
        width: 75px;
        min-width: 75px;
        scroll-snap-align: start;
        border-radius: 17px;
    }

    .vcProductGalleryStage {
        min-height: 570px;
        border-radius: 34px;
    }

    .vcProductGalleryMain {
        inset: 75px 18px 58px;
        width: calc(100% - 36px);
        height: calc(100% - 133px);
        padding: 28px;
    }

    .vcProductCommerceInner {
        display: block;
        padding: 32px;
        border-radius: 34px;
    }

    .vcProductDeliveryGrid,
    .vcProductPurchase,
    .vcProductTrust {
        margin-top: 18px;
    }

    .vcProductSectionNav {
        overflow-x: auto;
        grid-template-columns:
            repeat(4, minmax(170px, 1fr));
        scrollbar-width: none;
    }

    .vcProductSectionNav::-webkit-scrollbar {
        display: none;
    }

}


/* =========================================================
   RESPONSIVE
   650
========================================================= */

@media (max-width: 650px) {

    .vcProductPage {
        background: #f7fafc;
    }

    .vcProductFocus {
        padding:
            16px 12px
            45px;
    }

    .vcProductBreadcrumb {
        padding: 0 5px;
        gap: 5px;
        font-size: 11px;
    }

    .vcProductBreadcrumbCurrent {
        max-width: 160px;
    }

    .vcProductWorkspace {
        gap: 13px;
    }

    .vcProductGalleryStage {
        min-height: 480px;
        border-radius: 28px;
    }

    .vcProductGalleryTop {
        top: 18px;
        left: 18px;
        right: 18px;
    }

    .vcProductGalleryEdition {
        min-height: 30px;
        padding: 0 11px;
        font-size: 8px;
    }

    .vcProductGalleryDiscount,
    .vcProductGalleryShipping {
        min-height: 30px;
        padding: 0 10px;
        font-size: 9px;
    }

    .vcProductGalleryShipping {
        display: none;
    }

    .vcProductGalleryMain {
        inset: 65px 12px 53px;
        width: calc(100% - 24px);
        height: calc(100% - 118px);
        padding: 20px;
    }

    .vcProductGalleryZoom {
        right: 6px;
        bottom: 7px;
        width: 42px;
        height: 42px;
        border-radius: 14px;
    }

    .vcProductGalleryFooter {
        left: 19px;
        right: 19px;
        bottom: 17px;
    }

    .vcProductGalleryHint {
        display: none !important;
    }

    .vcProductGalleryThumb {
        width: 67px;
        min-width: 67px;
    }

    .vcProductCommerceInner {
        padding:
            27px 20px 22px;
        border-radius: 28px;
    }

    .vcProductMeta {
        align-items: flex-start;
    }

    .vcProductMetaCategory {
        font-size: 9px;
    }

    .vcProductMetaSku {
        font-size: 8px;
    }

    .vcProductTitle {
        font-size:
            clamp(31px, 10vw, 43px);
        line-height: 1;
    }

    .vcProductRatingSummary {
        flex-wrap: wrap;
        margin-top: 16px;
    }

    .vcProductIntro {
        margin-top: 18px;
        font-size: 14px;
    }

    .vcProductPriceZone {
        margin-top: 22px;
        padding:
            20px 0;
    }

    .vcProductPriceCurrent strong {
        font-size:
            clamp(39px, 13vw, 54px);
    }

    .vcProductDeliveryGrid {
        grid-template-columns: 1fr;
    }

    .vcProductDeliveryCard {
        min-height: 83px;
    }

    .vcProductPurchase {
        padding: 14px;
        border-radius: 22px;
    }

    .vcProductPurchaseTop {
        margin-bottom: 12px;
    }

    .vcProductAddCart {
        min-height: 72px;
        grid-template-columns:
            45px
            minmax(0, 1fr)
            42px;
        gap: 10px;
        border-radius: 19px;
    }

    .vcProductAddCartPrice {
        display: none;
    }

    .vcProductAddCartIcon {
        width: 45px;
        height: 45px;
    }

    .vcProductAddCartArrow {
        width: 42px;
        height: 42px;
    }

    .vcProductTrust {
        grid-template-columns: 1fr;
        padding: 3px;
    }

    .vcProductSectionNav {
        margin-top: 14px;
        padding: 7px;
        border-radius: 22px;
        grid-template-columns:
            repeat(4, minmax(145px, 1fr));
    }

    .vcProductSectionNav button {
        min-height: 64px;
        border-radius: 17px;
    }

    .vcProductSectionNavNumber {
        width: 34px;
        height: 34px;
    }

    .vcProductLightboxPanel {
        inset: 10px;
        border-radius: 25px;
    }

    .vcProductLightboxStage {
        inset: 65px 18px 55px;
    }

    .vcProductLightboxArrow {
        top: auto;
        bottom: 15px;
        width: 46px;
        height: 46px;
        border-radius: 15px;
    }

    .vcProductLightboxPrev {
        left: calc(50% - 53px);
    }

    .vcProductLightboxNext {
        right: calc(50% - 53px);
    }

    .vcProductLightboxPrev:hover,
    .vcProductLightboxNext:hover {
        transform: none;
    }

    .vcProductLightboxClose {
        top: 14px;
        right: 14px;
        width: 45px;
        height: 45px;
    }

    .vcProductLightboxInfo {
        bottom: 5px;
    }

}


/* =========================================================
   RESPONSIVE
   430
========================================================= */

@media (max-width: 430px) {

    .vcProductFocus {
        padding-left: 8px;
        padding-right: 8px;
    }

    .vcProductBreadcrumb {
        padding-left: 8px;
        padding-right: 8px;
    }

    .vcProductGalleryStage {
        min-height: 420px;
        border-radius: 25px;
    }

    .vcProductGalleryTop {
        top: 14px;
        left: 14px;
        right: 14px;
    }

    .vcProductGalleryMain {
        inset:
            57px 8px
            49px;
        width: calc(100% - 16px);
        height: calc(100% - 106px);
        padding: 14px;
    }

    .vcProductGalleryFooter {
        left: 15px;
        right: 15px;
        bottom: 14px;
    }

    .vcProductGalleryThumb {
        width: 61px;
        min-width: 61px;
        padding: 5px;
        border-radius: 15px;
    }

    .vcProductGalleryThumbIndex {
        display: none;
    }

    .vcProductCommerceInner {
        padding:
            25px 16px 18px;
        border-radius: 25px;
    }

    .vcProductTitle {
        font-size: 34px;
    }

    .vcProductPriceCurrent strong {
        font-size: 44px;
    }

    .vcProductPurchaseTop {
        align-items: flex-end;
    }

    .vcProductPurchaseHeading strong {
        font-size: 12px;
    }

    .vcProductQuantity {
        grid-template-columns:
            34px 38px 34px;
        height: 43px;
    }

    .vcProductQuantity button {
        width: 34px;
        height: 34px;
    }

    .vcProductQuantity input {
        width: 38px;
        height: 34px;
    }

    .vcProductAddCart {
        padding:
            9px 10px;
    }

    .vcProductAddCartCopy small {
        font-size: 7px;
    }

    .vcProductAddCartCopy strong {
        font-size: 15px;
    }

}


/* =========================================================
   ACCESSIBILITY
========================================================= */

.vcProductGalleryThumb:focus-visible,
.vcProductGalleryRailArrow:focus-visible,
.vcProductGalleryMain:focus-visible,
.vcProductRatingSummary:focus-visible,
.vcProductQuantity button:focus-visible,
.vcProductQuantity input:focus-visible,
.vcProductAddCart:focus-visible,
.vcProductBuyNow:focus-visible,
.vcProductSectionNav button:focus-visible,
.vcProductLightboxClose:focus-visible,
.vcProductLightboxArrow:focus-visible {
    outline:
        3px solid
        rgba(45, 133, 192, 0.28);
    outline-offset: 3px;
}


/* =========================================================
   REDUCED MOTION
========================================================= */

@media (
    prefers-reduced-motion: reduce
) {

    .vcProductFocus *,
    .vcProductLightbox * {
        scroll-behavior: auto !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

}


/* =========================================================
   PRODUCT WIDTH SAFETY
========================================================= */

.vcProductFocus,
.vcProductFocusInner,
.vcProductWorkspace,
.vcProductGallery,
.vcProductGalleryStage,
.vcProductCommerce,
.vcProductCommerceInner,
.vcProductDeliveryGrid,
.vcProductPurchase,
.vcProductTrust {
    box-sizing: border-box;
}

.vcProductFocusInner,
.vcProductWorkspace,
.vcProductGallery,
.vcProductCommerce {
    max-width: 100%;
}

.vcProductDeliveryCard,
.vcProductPurchase,
.vcProductAddCart,
.vcProductBuyNow {
    min-width: 0;
    max-width: 100%;
}

@media (max-width: 980px) {

    .vcProductCommerceInner {
        display: block;
    }

    .vcProductDeliveryGrid,
    .vcProductPurchase,
    .vcProductTrust {
        margin-top: 18px;
    }
}

/* =========================================================
   MOBILE PRODUCT NAV
========================================================= */

.vcProductMobileNav {
    display: none;
}


/* =========================================================
   < 750
========================================================= */

@media (max-width: 750px) {

    /*
    |--------------------------------------------------------------------------
    | Ocultar las cuatro tabs normales
    |--------------------------------------------------------------------------
    */

    .vcProductSectionNav
    > button {
        display: none;
    }


    .vcProductSectionNav {
        padding: 7px;

        border-radius: 20px;

        display: block;

        overflow: visible;
    }


    /*
    |--------------------------------------------------------------------------
    | Mobile controller
    |--------------------------------------------------------------------------
    */

    .vcProductMobileNav {
        width: 100%;
        min-height: 64px;

        display: grid;

        grid-template-columns:
            minmax(82px, auto)
            minmax(0, 1fr)
            minmax(82px, auto);

        align-items: center;

        gap: 7px;
    }


    /* =====================================================
       PREV / NEXT
    ====================================================== */

    .vcProductMobileNavControl {
        min-width: 0;
        min-height: 50px;

        padding:
            0 12px;

        border: 0;

        border-radius: 15px;

        background:
            #f1f6f9;

        color:
            #416986;

        display: flex;

        align-items: center;

        justify-content: center;

        gap: 6px;

        cursor: pointer;

        font: inherit;

        font-size: 9px;

        font-weight: 850;

        transition:
            background .22s ease,
            color .22s ease,
            transform .22s ease;
    }


    .vcProductMobileNavControl:hover {
        background:
            #e7f1f7;

        color:
            #1f6695;
    }


    .vcProductMobileNavControl:active {
        transform:
            scale(.97);
    }


    .vcProductMobileNavControl:disabled {
        visibility: hidden;
        pointer-events: none;
    }


    .vcProductMobileNavControl svg {
        width: 16px;
        height: 16px;
        flex: 0 0 auto;
    }


    /* =====================================================
       CURRENT SECTION
    ====================================================== */

    .vcProductMobileNavCurrent {
        min-width: 0;
        min-height: 54px;

        padding:
            7px 11px;

        border-radius: 16px;

        background:
            linear-gradient(
                135deg,
                #174a74,
                #2a78ad
            );

        color: #ffffff;

        display: flex;

        align-items: center;

        justify-content: center;

        gap: 9px;

        box-shadow:
            0 10px 24px
            rgba(
                21,
                78,
                120,
                0.18
            );
    }


    .vcProductMobileNavCurrentNumber {
        width: 34px;
        height: 34px;

        flex: 0 0 auto;

        border-radius: 11px;

        background:
            rgba(
                255,
                255,
                255,
                0.13
            );

        display: grid;

        place-items: center;

        font-size: 8px;

        font-weight: 900;
    }


    .vcProductMobileNavCurrentCopy {
        min-width: 0;

        display: flex;

        flex-direction: column;
    }


    .vcProductMobileNavCurrentCopy small {
        overflow: hidden;

        color:
            rgba(
                255,
                255,
                255,
                0.58
            );

        font-size: 6.5px;

        font-weight: 750;

        text-overflow: ellipsis;

        white-space: nowrap;
    }


    .vcProductMobileNavCurrentCopy strong {
        margin-top: 1px;

        overflow: hidden;

        color: #ffffff;

        font-family: "Inter", sans-serif;

        font-size: 11px;

        text-overflow: ellipsis;

        white-space: nowrap;
    }

}


/* =========================================================
   VERY SMALL
========================================================= */

@media (max-width: 430px) {

    .vcProductMobileNav {
        grid-template-columns:
            68px
            minmax(0, 1fr)
            68px;

        gap: 5px;
    }


    .vcProductMobileNavControl {
        min-height: 48px;

        padding:
            0 7px;

        font-size: 0;
    }


    /*
    |--------------------------------------------------------------------------
    | En teléfonos muy pequeños dejamos solo flechas.
    |--------------------------------------------------------------------------
    */

    .vcProductMobileNavControl svg {
        width: 19px;
        height: 19px;
    }


    .vcProductMobileNavCurrent {
        min-height: 51px;

        padding:
            6px 8px;
    }


    .vcProductMobileNavCurrentNumber {
        width: 31px;
        height: 31px;
    }

}

/* =========================================================
   MOBILE PRODUCT NAV
   BETTER SIDE SPACING
========================================================= */

@media (max-width: 750px) {

    .vcProductSectionNav {
        left: 12px !important;
        width: calc(100% - 24px) !important;

        max-width: calc(100vw - 24px);

        padding: 7px;

        border-radius: 22px;

        box-sizing: border-box;
    }


    .vcProductSectionNav.is-fixed {
        left: 12px !important;
        width: calc(100% - 24px) !important;

        max-width: calc(100vw - 24px);

        right: auto;
    }


    .vcProductMobileNav {
        width: 100%;

        display: grid;

        grid-template-columns:
            minmax(82px, 0.7fr)
            minmax(0, 1.8fr)
            minmax(82px, 0.7fr);

        align-items: center;

        gap: 7px;

        box-sizing: border-box;
    }


    .vcProductMobileNavCurrent {
        width: 100%;
        min-width: 0;

        box-sizing: border-box;
    }


    .vcProductMobileNavControl {
        width: 100%;
        min-width: 0;

        box-sizing: border-box;
    }

}



/* =========================================================
   PRODUCT SECTION NAV
   FINAL ULTRA THIN VERSION
========================================================= */

.vcProductSectionNav {
    --vc-product-nav-left: 0px;
    --vc-product-nav-width: 100%;

    position: relative;
    z-index: 99990;

    width: 100%;

    margin-top: 14px;
    padding: 3px;

    display: grid;
    grid-template-columns:
        repeat(4, minmax(0, 1fr));
    gap: 3px;

    border:
        1px solid
        rgba(22, 77, 124, 0.07);

    border-radius: 15px;

    background:
        rgba(255,255,255,0.96);

    box-shadow:
        0 8px 22px
        rgba(22,65,99,0.07);

    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);

    box-sizing: border-box;
}


/* =========================================================
   BUTTONS
========================================================= */

.vcProductSectionNav > button {
    position: relative;

    width: 100%;
    min-width: 0;

    height: 34px;
    min-height: 34px;

    padding: 2px 9px;

    border: 0;
    border-radius: 10px;

    background: transparent;
    color: #607b91;

    display: flex;
    align-items: center;

    gap: 7px;

    overflow: hidden;

    cursor: pointer;
    text-align: left;

    box-sizing: border-box;

    transition:
        background .22s ease,
        color .22s ease,
        box-shadow .22s ease;
}


.vcProductSectionNav > button:hover {
    background: #f2f7fa;
    color: #1e5a86;
}


.vcProductSectionNav > button.is-active {
    color: #ffffff;

    background:
        linear-gradient(
            135deg,
            #174a74,
            #2a78ad
        );

    box-shadow:
        0 5px 12px
        rgba(21,78,120,.14);
}


/* =========================================================
   NUMBER
========================================================= */

.vcProductSectionNavNumber {
    width: 22px;
    height: 22px;

    min-width: 22px;
    min-height: 22px;

    flex: 0 0 22px;

    border-radius: 7px;

    background:
        rgba(33,107,157,.08);

    color: #5f829d;

    display: grid;
    place-items: center;

    font-size: 8px;
    font-weight: 800;

    line-height: 1;
}


.vcProductSectionNav
> button.is-active
.vcProductSectionNavNumber {
    color: #ffffff;

    background:
        rgba(255,255,255,.13);
}


/* =========================================================
   COPY
========================================================= */

.vcProductSectionNav
> button
> span:nth-child(2) {
    min-width: 0;

    display: flex;
    flex-direction: column;
    justify-content: center;

    gap: 0;
}


/*
|--------------------------------------------------------------------------
| El texto secundario se elimina completamente.
|--------------------------------------------------------------------------
*/

.vcProductSectionNav small {
    display: none !important;
}


/* =========================================================
   TITLE
========================================================= */

.vcProductSectionNav strong {
    margin: 0 !important;

    overflow: hidden;

    color: inherit;

    font-family: "Inter", sans-serif;

    font-size: 12px;
    font-weight: 700;

    line-height: 1;

    text-overflow: ellipsis;
    white-space: nowrap;
}


/* =========================================================
   OPTIONAL COUNTS
========================================================= */

.vcProductSectionCount {
    min-width: 22px;
    height: 22px;

    margin-left: auto;
    padding: 0 6px;

    border-radius: 999px;

    background: #eaf2f7;
    color: #51748f;

    display: flex;
    align-items: center;
    justify-content: center;

    font-size: 8px;
    font-weight: 800;
}


.vcProductSectionNav
> button.is-active
.vcProductSectionCount {
    color: #ffffff;

    background:
        rgba(255,255,255,.13);
}


/* =========================================================
   PLACEHOLDER
========================================================= */

.vcProductSectionNavPlaceholder {
    position: relative;

    width: 100%;

    display: none;

    z-index: 1;
}


/* =========================================================
   FIXED
========================================================= */

.vcProductSectionNav.is-fixed {
    position: fixed;

    top: 92px;

    left:
        var(
            --vc-product-nav-left
        );

    width:
        var(
            --vc-product-nav-width
        );

    margin-top: 0;

    padding: 3px;

    z-index: 99990;

    border-radius:
        0 0 15px 15px;

    background:
        rgba(255,255,255,.97);

    box-shadow:
        0 7px 20px
        rgba(19,59,91,.11);

    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);

    isolation: isolate;
}


/* =========================================================
   CONTENT BELOW NAV
========================================================= */

.vcProductDetails,
.vcProductStory,
.vcProductDNA,
.vcProductQuestions,
.vcProductReviews,
.vcProductRelated {
    position: relative;
    z-index: 1;
}


/* =========================================================
   MOBILE NAV BASE
========================================================= */

.vcProductMobileNav {
    display: none;
}


/* =========================================================
   MOBILE < 750
========================================================= */

@media (max-width: 750px) {

    .vcProductSectionNav > button {
        display: none;
    }


    .vcProductSectionNav,
    .vcProductSectionNav.is-fixed {
        left: 8px !important;

        width:
            calc(100vw - 16px) !important;

        max-width:
            calc(100vw - 16px) !important;

        padding: 3px;

        border-radius: 13px;

        display: block;

        overflow: visible;

        box-sizing: border-box;
    }


    .vcProductSectionNav.is-fixed {
        top: 92px;
    }


    .vcProductMobileNav {
        width: 100%;

        height: 36px;
        min-height: 36px;

        display: grid;

        grid-template-columns:
            64px
            minmax(0, 1fr)
            64px;

        align-items: center;

        gap: 4px;
    }


    .vcProductMobileNavControl {
        width: 100%;

        height: 30px;
        min-height: 30px;

        padding: 0 5px;

        border: 0;
        border-radius: 9px;

        background: transparent;
        color: #52748e;

        display: flex;
        align-items: center;
        justify-content: center;

        gap: 3px;

        font: inherit;
        font-size: 8px;
        font-weight: 800;

        cursor: pointer;
    }


    .vcProductMobileNavControl svg {
        width: 13px;
        height: 13px;
    }


    .vcProductMobileNavControl:disabled {
        opacity: .18;
        pointer-events: none;
    }


    .vcProductMobileNavCurrent {
        width: 100%;

        height: 30px;
        min-height: 30px;

        padding: 2px 6px;

        border-radius: 9px;

        background:
            linear-gradient(
                135deg,
                #174a74,
                #2a78ad
            );

        color: #ffffff;

        display: flex;
        align-items: center;
        justify-content: center;

        gap: 5px;

        box-sizing: border-box;

        box-shadow:
            0 4px 10px
            rgba(21,78,120,.13);
    }


    .vcProductMobileNavCurrentNumber {
        width: 19px;
        height: 19px;

        min-width: 19px;

        border-radius: 6px;

        background:
            rgba(255,255,255,.13);

        display: grid;
        place-items: center;

        font-size: 7px;
        font-weight: 900;
    }


    .vcProductMobileNavCurrentCopy {
        min-width: 0;

        display: flex;
        flex-direction: column;
        justify-content: center;
    }


    .vcProductMobileNavCurrentCopy small {
        display: none !important;
    }


    .vcProductMobileNavCurrentCopy strong {
        margin: 0;

        overflow: hidden;

        color: #ffffff;

        font-size: 10px;
        font-weight: 800;

        line-height: 1;

        text-overflow: ellipsis;
        white-space: nowrap;
    }

}


/* =========================================================
   MOBILE < 430
========================================================= */

@media (max-width: 430px) {

    .vcProductMobileNav {
        grid-template-columns:
            38px
            minmax(0, 1fr)
            38px;
    }


    .vcProductMobileNavControl {
        font-size: 0;
    }


    .vcProductMobileNavControl svg {
        width: 16px;
        height: 16px;
    }

}