/* =========================================================
   PRODUCT HERO
========================================================= */

.vcProductHero {
    position: relative;
    overflow: hidden;
    padding: 34px 0 46px;
    background:
        radial-gradient(
            circle at 18% 20%,
            rgba(80, 143, 255, 0.14),
            transparent 32%
        ),
        radial-gradient(
            circle at 84% 24%,
            rgba(95, 222, 196, 0.12),
            transparent 30%
        ),
        linear-gradient(
            180deg,
            #f8fbff 0%,
            #ffffff 100%
        );
    isolation: isolate;
}

.vcProductHeroInner {
    position: relative;
    z-index: 4;
    width: min(1500px, calc(100% - 48px));
    margin: 0 auto;
}


/* =========================================================
   BACKGROUND FX
========================================================= */

.vcProductHeroGlow {
    position: absolute;
    pointer-events: none;
    border-radius: 999px;
    filter: blur(30px);
    opacity: 0.7;
}

.vcProductHeroGlowA {
    width: 460px;
    height: 460px;
    left: -180px;
    top: -170px;
    background: rgba(102, 153, 255, 0.16);
}

.vcProductHeroGlowB {
    width: 480px;
    height: 480px;
    right: -140px;
    bottom: -220px;
    background: rgba(83, 229, 191, 0.12);
}

.vcProductHeroNoise {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.22;
    background-image:
        linear-gradient(
            rgba(20, 47, 84, 0.02) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(20, 47, 84, 0.02) 1px,
            transparent 1px
        );
    background-size: 34px 34px;
    mask-image: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.8),
        transparent 88%
    );
}


/* =========================================================
   TOP BAR
========================================================= */

.vcProductHeroTop {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 36px;
}

.vcProductHeroBreadcrumb {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 7px;
    min-width: 0;
    color: #748198;
    font-size: 13px;
    line-height: 1;
}

.vcProductHeroBreadcrumb a,
.vcProductHeroBreadcrumb span {
    color: inherit;
}

.vcProductHeroBreadcrumb a {
    text-decoration: none;
    transition:
        color 0.2s ease,
        transform 0.2s ease;
}

.vcProductHeroBreadcrumb a:hover {
    color: #163860;
}

.vcProductHeroBreadcrumb > span:not(.is-current) {
    width: 16px;
    height: 16px;
    display: inline-grid;
    place-items: center;
    flex: 0 0 auto;
}

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

.vcProductHeroBreadcrumb .is-current {
    color: #18395d;
    font-weight: 700;
}

.vcProductHeroCount {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 14px;
    border: 1px solid rgba(22, 62, 102, 0.08);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.7);
    box-shadow:
        0 8px 24px rgba(19, 47, 78, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(14px);
    color: #6e7f91;
    font-size: 12px;
    white-space: nowrap;
}

.vcProductHeroCount strong {
    color: #17395d;
    font-size: 13px;
}

.vcProductHeroCountDot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: #2bc997;
    box-shadow:
        0 0 0 4px rgba(43, 201, 151, 0.11),
        0 0 18px rgba(43, 201, 151, 0.38);
}


/* =========================================================
   CORE LAYOUT
========================================================= */

.vcProductHeroCore {
    display: grid;
    grid-template-columns:
        minmax(0, 0.9fr)
        minmax(520px, 1.1fr);
    align-items: center;
    gap: 42px;
    min-height: 520px;
}


/* =========================================================
   CONTENT
========================================================= */

.vcProductHeroContent {
    position: relative;
    z-index: 6;
}

.vcProductHeroEyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    margin-bottom: 20px;
    color: #5680a7;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.vcProductHeroEyebrowIcon {
    width: 30px;
    height: 30px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    color: #2f7fda;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.95),
            rgba(230, 241, 255, 0.8)
        );
    box-shadow:
        0 8px 22px rgba(41, 104, 166, 0.11),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.vcProductHeroEyebrowIcon svg {
    width: 17px;
    height: 17px;
}

.vcProductHeroTitle {
    margin: 0;
    max-width: 760px;
    color: #15385d;
    font-size: clamp(48px, 6vw, 92px);
    font-weight: 900;
    line-height: 0.92;
    letter-spacing: -0.055em;
    text-wrap: balance;
}

.vcProductHeroTitle span {
    display: block;
    margin-top: 18px;
    max-width: 680px;
    color: #7a8da3;
    font-size: clamp(24px, 2.7vw, 38px);
    font-weight: 500;
    line-height: 1.08;
    letter-spacing: -0.035em;
}


/* =========================================================
   ACTIONS
========================================================= */

.vcProductHeroActions {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 30px;
}

.vcProductHeroPrimary,
.vcProductHeroSecondary {
    appearance: none;
    border: 0;
    cursor: pointer;
    font: inherit;
    transition:
        transform 0.22s ease,
        box-shadow 0.22s ease,
        background 0.22s ease,
        border-color 0.22s ease;
}

.vcProductHeroPrimary {
    min-height: 52px;
    padding: 8px 9px 8px 22px;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    border-radius: 16px;
    background:
        linear-gradient(
            135deg,
            #183b61,
            #245f99
        );
    color: #ffffff;
    box-shadow:
        0 16px 34px rgba(26, 71, 113, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.13);
    font-size: 14px;
    font-weight: 800;
}

.vcProductHeroPrimary > span {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: rgba(255, 255, 255, 0.13);
}

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

.vcProductHeroPrimary:hover {
    transform: translateY(-2px);
    box-shadow:
        0 22px 42px rgba(26, 71, 113, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.vcProductHeroSecondary {
    min-height: 52px;
    padding: 0 18px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    border: 1px solid rgba(22, 57, 93, 0.09);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.72);
    color: #315473;
    box-shadow:
        0 10px 26px rgba(25, 57, 91, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(14px);
    font-size: 14px;
    font-weight: 800;
}

.vcProductHeroSecondary > span {
    width: 21px;
    height: 21px;
}

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

.vcProductHeroSecondary:hover {
    transform: translateY(-2px);
    border-color: rgba(22, 57, 93, 0.15);
    background: rgba(255, 255, 255, 0.9);
}


/* =========================================================
   SUBCATEGORY EXPLORER
========================================================= */

.vcProductHeroExplorer {
    margin-top: 34px;
    max-width: 760px;
}

.vcProductHeroExplorerHead {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 12px;
    color: #8998a8;
    font-size: 12px;
}

.vcProductHeroExplorerHead strong {
    color: #314f6e;
}

.vcProductHeroExplorerHead a {
    color: #2d75bd;
    font-weight: 800;
    text-decoration: none;
}

.vcProductHeroChips {
    display: flex;
    align-items: center;
    gap: 9px;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 4px 4px 9px;
    margin: 0 -4px;
    scrollbar-width: none;
    overscroll-behavior-inline: contain;
}

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

.vcProductHeroChip {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-height: 42px;
    padding: 6px 7px 6px 14px;
    border: 1px solid rgba(28, 64, 99, 0.07);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.7);
    color: #45627d;
    box-shadow:
        0 8px 24px rgba(26, 59, 90, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(12px);
    text-decoration: none;
    transition:
        transform 0.2s ease,
        background 0.2s ease,
        border-color 0.2s ease,
        box-shadow 0.2s ease;
}

.vcProductHeroChip:hover {
    transform: translateY(-2px);
    border-color: rgba(43, 116, 187, 0.13);
    background: rgba(255, 255, 255, 0.92);
    box-shadow:
        0 13px 28px rgba(26, 59, 90, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.vcProductHeroChipText {
    font-size: 12px;
    font-weight: 800;
    white-space: nowrap;
}

.vcProductHeroChipCount {
    min-width: 28px;
    height: 28px;
    padding: 0 7px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: #eef4fa;
    color: #7990a5;
    font-size: 10px;
    font-weight: 900;
}

.vcProductHeroChip.is-active {
    border-color: rgba(40, 112, 182, 0.18);
    background:
        linear-gradient(
            135deg,
            #17395e,
            #2468a8
        );
    color: #ffffff;
    box-shadow:
        0 12px 28px rgba(31, 87, 139, 0.19);
}

.vcProductHeroChip.is-active .vcProductHeroChipCount {
    background: rgba(255, 255, 255, 0.13);
    color: #ffffff;
}


/* =========================================================
   PRODUCT STAGE
========================================================= */

.vcProductHeroStage {
    position: relative;
    min-height: 520px;
    perspective: 1400px;
    transform-style: preserve-3d;
}

.vcProductHeroStage::before {
    content: "";
    position: absolute;
    width: 390px;
    height: 390px;
    left: 50%;
    top: 50%;
    transform:
        translate(-50%, -50%)
        rotate(-10deg);
    border-radius: 50%;
    background:
        radial-gradient(
            circle,
            rgba(255, 255, 255, 0.95) 0%,
            rgba(235, 244, 253, 0.74) 43%,
            rgba(218, 236, 251, 0.12) 68%,
            transparent 72%
        );
    filter: blur(0.2px);
}

.vcProductHeroStageRing {
    position: absolute;
    left: 50%;
    top: 50%;
    border: 1px solid rgba(33, 92, 146, 0.08);
    border-radius: 999px;
    pointer-events: none;
}

.vcRingOne {
    width: 410px;
    height: 410px;
    transform:
        translate(-50%, -50%)
        rotate(-18deg);
}

.vcRingTwo {
    width: 510px;
    height: 330px;
    transform:
        translate(-50%, -50%)
        rotate(26deg);
    border-style: dashed;
    opacity: 0.62;
}

.vcProductHeroStageCenter {
    position: absolute;
    z-index: 2;
    width: 146px;
    height: 146px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(37, 88, 137, 0.08);
    border-radius: 50%;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.94),
            rgba(239, 247, 254, 0.88)
        );
    box-shadow:
        0 24px 60px rgba(35, 83, 126, 0.13),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    backdrop-filter: blur(18px);
    text-align: center;
}

.vcProductHeroStageCenter::after {
    content: "";
    position: absolute;
    inset: -8px;
    border: 1px solid rgba(43, 114, 183, 0.07);
    border-radius: 50%;
}

.vcProductHeroStageTiny {
    margin-bottom: 3px;
    color: #6d89a2;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

.vcProductHeroStageCenter strong {
    color: #173b61;
    font-size: 42px;
    line-height: 1;
    letter-spacing: -0.06em;
}

.vcProductHeroStageCenter > span:last-child {
    width: 90px;
    margin-top: 5px;
    color: #8294a7;
    font-size: 9px;
    line-height: 1.3;
}


/* =========================================================
   HERO PRODUCT CARDS
========================================================= */

.vcProductHeroCard {
    position: absolute;
    z-index: 5;
    width: 220px;
    padding: 8px;
    border: 1px solid rgba(28, 65, 102, 0.08);
    border-radius: 26px;
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.96),
            rgba(248, 251, 254, 0.92)
        );
    box-shadow:
        0 24px 56px rgba(27, 69, 109, 0.12),
        0 5px 14px rgba(27, 69, 109, 0.05),
        inset 0 1px 0 rgba(255, 255, 255, 1);
    backdrop-filter: blur(18px);
    transform-style: preserve-3d;
    will-change: transform;
    transition:
        box-shadow 0.28s ease,
        border-color 0.28s ease;
}

.vcProductHeroCard:hover {
    z-index: 9;
    border-color: rgba(35, 102, 164, 0.14);
    box-shadow:
        0 34px 76px rgba(27, 69, 109, 0.18),
        0 7px 18px rgba(27, 69, 109, 0.06),
        inset 0 1px 0 rgba(255, 255, 255, 1);
}

.vcProductHeroCard1 {
    left: 4%;
    top: 5%;
    transform:
        rotate(-7deg)
        translateZ(15px);
}

.vcProductHeroCard2 {
    right: 0;
    top: 7%;
    transform:
        rotate(7deg)
        translateZ(24px);
}

.vcProductHeroCard3 {
    left: 1%;
    bottom: 4%;
    transform:
        rotate(5deg)
        translateZ(8px);
}

.vcProductHeroCard4 {
    right: 2%;
    bottom: 3%;
    transform:
        rotate(-6deg)
        translateZ(30px);
}

.vcProductHeroCardVisual {
    position: relative;
    height: 180px;
    display: block;
    overflow: hidden;
    border-radius: 20px;
    background:
        radial-gradient(
            circle at 50% 42%,
            #ffffff,
            #eef4f9
        );
    text-decoration: none;
}

.vcProductHeroCardVisual img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    padding: 13px;
    transform: scale(0.96);
    transition:
        transform 0.38s cubic-bezier(.2,.75,.3,1),
        filter 0.38s ease;
}

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

.vcProductHeroCardDiscount {
    position: absolute;
    z-index: 3;
    left: 11px;
    top: 11px;
    padding: 6px 9px;
    border-radius: 999px;
    background: #193d63;
    color: #ffffff;
    box-shadow: 0 6px 16px rgba(27, 68, 108, 0.17);
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 0.03em;
}

.vcProductHeroCardPlaceholder {
    width: 100%;
    height: 100%;
    display: grid;
    place-items: center;
    color: #a9bbcb;
}

.vcProductHeroCardPlaceholder svg {
    width: 62px;
    height: 62px;
}

.vcProductHeroCardInfo {
    min-height: 69px;
    padding: 10px 7px 3px 9px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

.vcProductHeroCardCopy {
    min-width: 0;
    flex: 1;
}

.vcProductHeroCardCopy > span {
    display: -webkit-box;
    overflow: hidden;
    color: #344f69;
    font-size: 11px;
    font-weight: 800;
    line-height: 1.28;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.vcProductHeroCardPrice {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-top: 5px;
}

.vcProductHeroCardPrice small {
    color: #9aa9b7;
    font-size: 9px;
    text-decoration: line-through;
}

.vcProductHeroCardPrice strong {
    color: #143a60;
    font-size: 14px;
    line-height: 1;
}

.vcProductHeroAdd {
    width: 38px;
    height: 38px;
    flex: 0 0 auto;
    display: grid;
    place-items: center;
    border: 0;
    border-radius: 13px;
    background:
        linear-gradient(
            135deg,
            #183b61,
            #2d73b6
        );
    color: #ffffff;
    box-shadow:
        0 9px 20px rgba(30, 82, 131, 0.19);
    cursor: pointer;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.vcProductHeroAdd:hover {
    transform:
        translateY(-2px)
        scale(1.04);
    box-shadow:
        0 13px 25px rgba(30, 82, 131, 0.25);
}

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


/* =========================================================
   POINTER HINT
========================================================= */

.vcProductHeroHint {
    position: absolute;
    left: 50%;
    bottom: 3px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 7px;
    color: #93a3b2;
    font-size: 9px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.vcProductHeroHintMouse {
    position: relative;
    width: 18px;
    height: 27px;
    border: 1px solid rgba(53, 92, 127, 0.22);
    border-radius: 999px;
}

.vcProductHeroHintMouse > span {
    position: absolute;
    width: 3px;
    height: 5px;
    left: 50%;
    top: 5px;
    transform: translateX(-50%);
    border-radius: 999px;
    background: #7191ad;
    animation: vcHeroMouse 1.7s ease-in-out infinite;
}

@keyframes vcHeroMouse {
    0% {
        opacity: 0;
        transform: translate(-50%, 0);
    }

    30% {
        opacity: 1;
    }

    100% {
        opacity: 0;
        transform: translate(-50%, 7px);
    }
}


/* =========================================================
   MOBILE RAIL
========================================================= */

.vcProductHeroMobileRail {
    display: none;
}


/* =========================================================
   ENTRANCE ANIMATIONS
========================================================= */

@keyframes vcHeroFloatOne {
    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            rotate(-7deg);
    }

    50% {
        transform:
            translate3d(0, -8px, 0)
            rotate(-5.5deg);
    }
}

@keyframes vcHeroFloatTwo {
    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            rotate(7deg);
    }

    50% {
        transform:
            translate3d(0, 8px, 0)
            rotate(5.8deg);
    }
}

@keyframes vcHeroFloatThree {
    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            rotate(5deg);
    }

    50% {
        transform:
            translate3d(-4px, -7px, 0)
            rotate(3.5deg);
    }
}

@keyframes vcHeroFloatFour {
    0%,
    100% {
        transform:
            translate3d(0, 0, 0)
            rotate(-6deg);
    }

    50% {
        transform:
            translate3d(4px, 7px, 0)
            rotate(-4.7deg);
    }
}

.vcProductHeroCard1 {
    animation: vcHeroFloatOne 6.8s ease-in-out infinite;
}

.vcProductHeroCard2 {
    animation: vcHeroFloatTwo 7.4s ease-in-out infinite;
}

.vcProductHeroCard3 {
    animation: vcHeroFloatThree 7.1s ease-in-out infinite;
}

.vcProductHeroCard4 {
    animation: vcHeroFloatFour 7.8s ease-in-out infinite;
}


/* =========================================================
   LARGE SCREENS
========================================================= */

@media (min-width: 1500px) {

    .vcProductHeroInner {
        width: min(1580px, calc(100% - 70px));
    }

    .vcProductHeroCore {
        grid-template-columns:
            minmax(0, 0.92fr)
            minmax(600px, 1.08fr);
        gap: 54px;
    }

    .vcProductHeroStage {
        min-height: 570px;
    }

    .vcProductHeroCard {
        width: 232px;
    }

    .vcProductHeroCardVisual {
        height: 190px;
    }
}


/* =========================================================
   LAPTOP
========================================================= */

@media (max-width: 1280px) {

    .vcProductHeroCore {
        grid-template-columns:
            minmax(0, 0.96fr)
            minmax(470px, 1.04fr);
        gap: 26px;
    }

    .vcProductHeroStage {
        min-height: 500px;
    }

    .vcProductHeroCard {
        width: 198px;
    }

    .vcProductHeroCardVisual {
        height: 158px;
    }

    .vcProductHeroStageCenter {
        width: 132px;
        height: 132px;
    }

    .vcProductHeroStageCenter strong {
        font-size: 36px;
    }
}


/* =========================================================
   TABLET
========================================================= */

@media (max-width: 1024px) {

    .vcProductHero {
        padding-top: 28px;
    }

    .vcProductHeroInner {
        width: min(100% - 34px, 1100px);
    }

    .vcProductHeroTop {
        margin-bottom: 28px;
    }

    .vcProductHeroCore {
        grid-template-columns: 1fr;
        gap: 18px;
        min-height: 0;
    }

    .vcProductHeroContent {
        max-width: 820px;
    }

    .vcProductHeroTitle {
        max-width: 720px;
        font-size: clamp(46px, 8vw, 76px);
    }

    .vcProductHeroStage {
        min-height: 460px;
        margin-top: 10px;
    }

    .vcProductHeroCard1 {
        left: 5%;
    }

    .vcProductHeroCard2 {
        right: 5%;
    }

    .vcProductHeroCard3 {
        left: 8%;
    }

    .vcProductHeroCard4 {
        right: 7%;
    }
}


/* =========================================================
   MOBILE
========================================================= */

@media (max-width: 760px) {

    .vcProductHero {
        padding:
            22px 0
            28px;
    }

    .vcProductHeroInner {
        width: calc(100% - 24px);
    }

    .vcProductHeroTop {
        align-items: flex-start;
        margin-bottom: 22px;
    }

    .vcProductHeroBreadcrumb {
        max-width: calc(100% - 92px);
        font-size: 11px;
    }

    .vcProductHeroCount {
        padding: 8px 10px;
    }

    .vcProductHeroCount span:last-child {
        display: none;
    }

    .vcProductHeroCore {
        display: block;
    }

    .vcProductHeroEyebrow {
        margin-bottom: 14px;
        font-size: 10px;
    }

    .vcProductHeroEyebrowIcon {
        width: 27px;
        height: 27px;
    }

    .vcProductHeroTitle {
        max-width: 100%;
        font-size: clamp(42px, 13vw, 64px);
        line-height: 0.93;
    }

    .vcProductHeroTitle span {
        margin-top: 14px;
        max-width: 96%;
        font-size: clamp(21px, 6.2vw, 30px);
        line-height: 1.06;
    }

    .vcProductHeroActions {
        margin-top: 24px;
        gap: 9px;
    }

    .vcProductHeroPrimary {
        min-height: 48px;
        padding:
            7px 7px
            7px 17px;
        border-radius: 14px;
    }

    .vcProductHeroPrimary > span {
        width: 34px;
        height: 34px;
    }

    .vcProductHeroSecondary {
        min-height: 48px;
        padding: 0 15px;
        border-radius: 14px;
    }

    .vcProductHeroExplorer {
        margin-top: 26px;
    }

    .vcProductHeroExplorerHead {
        margin-bottom: 9px;
    }

    .vcProductHeroChips {
        width: calc(100vw - 12px);
        padding-right: 30px;
    }

    .vcProductHeroChip {
        min-height: 39px;
        border-radius: 13px;
    }

    .vcProductHeroStage {
        display: none;
    }

    .vcProductHeroMobileRail {
        display: block;
        margin-top: 30px;
    }

    .vcProductHeroMobileRailHead {
        display: flex;
        align-items: center;
        justify-content: space-between;
        margin-bottom: 11px;
        color: #7e91a3;
        font-size: 10px;
        font-weight: 800;
        letter-spacing: 0.08em;
        text-transform: uppercase;
    }

    .vcProductHeroMobileRailHead > span:last-child {
        display: inline-flex;
        align-items: center;
        gap: 5px;
    }

    .vcProductHeroMobileRailHead svg {
        width: 15px;
        height: 15px;
    }

    .vcProductHeroMobileProducts {
        display: flex;
        gap: 11px;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scrollbar-width: none;
        margin-right: -12px;
        padding:
            2px 24px
            10px 1px;
    }

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

    .vcProductHeroMobileCard {
        flex: 0 0 152px;
        scroll-snap-align: start;
    }

    .vcProductHeroMobileCard > a {
        display: block;
        padding: 7px;
        border: 1px solid rgba(27, 62, 97, 0.07);
        border-radius: 18px;
        background: rgba(255, 255, 255, 0.8);
        box-shadow:
            0 12px 28px rgba(29, 65, 99, 0.07),
            inset 0 1px 0 rgba(255, 255, 255, 1);
        color: inherit;
        text-decoration: none;
    }

    .vcProductHeroMobileImage {
        height: 126px;
        overflow: hidden;
        border-radius: 14px;
        background:
            radial-gradient(
                circle at 50% 45%,
                #ffffff,
                #eef4f8
            );
    }

    .vcProductHeroMobileImage img {
        width: 100%;
        height: 100%;
        display: block;
        object-fit: contain;
        padding: 9px;
    }

    .vcProductHeroMobileCopy {
        padding: 9px 5px 4px;
    }

    .vcProductHeroMobileCopy span {
        display: -webkit-box;
        overflow: hidden;
        min-height: 28px;
        color: #49647d;
        font-size: 10px;
        font-weight: 800;
        line-height: 1.35;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }

    .vcProductHeroMobileCopy strong {
        display: block;
        margin-top: 6px;
        color: #163b61;
        font-size: 14px;
    }
}


/* =========================================================
   SMALL MOBILE
========================================================= */

@media (max-width: 430px) {

    .vcProductHeroInner {
        width: calc(100% - 20px);
    }

    .vcProductHeroTop {
        gap: 10px;
    }

    .vcProductHeroTitle {
        font-size: clamp(39px, 12.3vw, 53px);
    }

    .vcProductHeroTitle span {
        font-size: 21px;
    }

    .vcProductHeroActions {
        align-items: stretch;
    }

    .vcProductHeroPrimary {
        flex: 1;
        justify-content: space-between;
    }

    .vcProductHeroSecondary {
        flex: 0 0 auto;
    }

    .vcProductHeroExplorerHead > span {
        max-width: 74%;
    }
}


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

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

    .vcProductHeroCard1,
    .vcProductHeroCard2,
    .vcProductHeroCard3,
    .vcProductHeroCard4,
    .vcProductHeroHintMouse > span {
        animation: none !important;
    }

    .vcProductHeroCard,
    .vcProductHeroCardVisual img,
    .vcProductHeroPrimary,
    .vcProductHeroSecondary,
    .vcProductHeroChip,
    .vcProductHeroAdd {
        transition: none !important;
    }
}


/* =========================================================
   HERO PREMIUM INTERACTION STATES
========================================================= */

.vcProductHeroCard {
    --vc-hero-pointer-x: 0px;
    --vc-hero-pointer-y: 0px;
}


/* =========================================================
   ADD BUTTON
========================================================= */

.vcProductHeroAdd {
    position: relative;
    overflow: hidden;
}

.vcProductHeroAdd::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0;
    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(255,255,255,0.25),
            transparent 68%
        );
    transition: opacity 0.2s ease;
}

.vcProductHeroAdd:hover::before {
    opacity: 1;
}

.vcProductHeroAdd.is-loading {
    pointer-events: none;
    opacity: 0.88;
}

.vcProductHeroAdd.is-success {
    background:
        linear-gradient(
            135deg,
            #159b70,
            #35c999
        );
    box-shadow:
        0 12px 28px
        rgba(27, 173, 124, 0.26);
}

.vcProductHeroAdd.is-error {
    background:
        linear-gradient(
            135deg,
            #c84747,
            #ef6b6b
        );
    box-shadow:
        0 12px 28px
        rgba(201, 71, 71, 0.22);
}


/* =========================================================
   CART SUCCESS CARD
========================================================= */

.vcProductHeroCard.is-cart-added {
    border-color:
        rgba(
            39,
            189,
            143,
            0.32
        );

    box-shadow:
        0 30px 72px
            rgba(
                26,
                116,
                88,
                0.18
            ),
        0 0 0 3px
            rgba(
                52,
                201,
                154,
                0.08
            ),
        inset 0 1px 0
            rgba(
                255,
                255,
                255,
                1
            );
}

.vcProductHeroCard.is-cart-added
.vcProductHeroCardVisual::after {
    content: "Agregado al carrito";
    position: absolute;
    z-index: 8;
    left: 50%;
    bottom: 12px;
    min-height: 30px;
    padding: 0 11px;
    display: inline-flex;
    align-items: center;
    transform: translateX(-50%);
    border-radius: 999px;
    background:
        rgba(
            19,
            128,
            92,
            0.92
        );
    color: #ffffff;
    box-shadow:
        0 9px 22px
        rgba(
            16,
            104,
            75,
            0.22
        );
    backdrop-filter: blur(10px);
    font-size: 8px;
    font-weight: 900;
    white-space: nowrap;
}


/* =========================================================
   HERO ACTION FEEDBACK
========================================================= */

.vcProductHeroPrimary,
.vcProductHeroSecondary {
    position: relative;
    overflow: hidden;
}

.vcProductHeroPrimary::before,
.vcProductHeroSecondary::before {
    content: "";
    position: absolute;
    width: 100px;
    height: 100px;
    left: -100px;
    top: 50%;
    transform: translateY(-50%);
    border-radius: 50%;
    pointer-events: none;
    opacity: 0;
    transition:
        left 0.45s ease,
        opacity 0.3s ease;
}

.vcProductHeroPrimary::before {
    background:
        radial-gradient(
            circle,
            rgba(255,255,255,0.2),
            transparent 70%
        );
}

.vcProductHeroSecondary::before {
    background:
        radial-gradient(
            circle,
            rgba(50,125,190,0.1),
            transparent 70%
        );
}

.vcProductHeroPrimary:hover::before,
.vcProductHeroSecondary:hover::before {
    left: calc(100% - 30px);
    opacity: 1;
}


/* =========================================================
   CATALOG ARRIVAL
========================================================= */

#vcProductsCatalog.vcCatalogArrival
.vcStoreCommand {
    animation:
        vcHeroCatalogArrival
        0.8s
        cubic-bezier(.2,.75,.3,1);
}

@keyframes vcHeroCatalogArrival {

    0% {
        transform:
            translateY(8px)
            scale(0.992);
        box-shadow:
            0 18px 48px
            rgba(
                25,
                61,
                94,
                0.09
            );
    }

    45% {
        transform:
            translateY(-2px)
            scale(1.004);
        box-shadow:
            0 24px 64px
            rgba(
                38,
                105,
                165,
                0.16
            );
    }

    100% {
        transform:
            translateY(0)
            scale(1);
    }

}


/* =========================================================
   LOADER
========================================================= */

.vcHeroAddLoader {
    width: 17px;
    height: 17px;
    display: block;
    border:
        2px solid
        rgba(
            255,
            255,
            255,
            0.32
        );
    border-top-color:
        #ffffff;
    border-radius: 50%;
    animation:
        vcHeroLoader
        0.65s
        linear
        infinite;
}

@keyframes vcHeroLoader {

    to {
        transform:
            rotate(
                360deg
            );
    }

}