/* .productTab {
    padding: 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all .35s ease;
    text-align: left;
}

.productTab h3 {
    font-size: 22px;
    font-weight: 600;
}

.productTab p {
    color: #9ca3af;
    margin-top: 6px;
}

.productTab:hover {
    transform: translateX(8px);
    background: rgba(255, 255, 255, 0.06);
}

.productTab.active {
    border-color: rgba(34, 211, 238, .6);
    box-shadow: 0 0 40px rgba(34, 211, 238, .25);
}

.perspective {
    perspective: 1400px;
}

.productStage {
    position: relative;
}

.productCard {
    position: absolute;
    inset: 0;
    border-radius: 24px;
    overflow: hidden;
    background: linear-gradient(180deg, #0f172a, #020617);
    box-shadow: 0 40px 80px rgba(0, 0, 0, .55);

    display: flex;
    flex-direction: column;

    transform: translateZ(-120px) scale(.85);
    opacity: .35;
    transition: all .65s cubic-bezier(.22, 1, .36, 1);
}

.productMedia {
    height: 55%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 28px;
}

.productMedia img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    filter: drop-shadow(0 30px 40px rgba(0, 0, 0, .5));
}

.productInfo {
    height: 100%;
    padding: 26px;
    overflow-y: hidden;
}

.productInfo h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
}

.productInfo p {
    color: #cbd5e1;
    line-height: 1.6;
    font-size: 15px;
}

.productCard.active {
    transform: translateZ(0) scale(1);
    opacity: 1;
    z-index: 3;
}

.productCard.prev {
    transform: translateX(-60%) translateZ(-200px) rotateY(18deg) scale(.85);
    z-index: 2;
}

.productCard.next {
    transform: translateX(60%) translateZ(-200px) rotateY(-18deg) scale(.85);
    z-index: 2;
}

 */





/* .productDetails {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 20px;
} */

.productItem {
    padding: 24px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all .35s ease;
    cursor: pointer;
    height: 100%;
    min-height: fit-content;
    display: block;
    position: relative;
}

.productItem * {
    pointer-events: none;
}

.productItem:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateX(6px);
}

.productItem.active {
    border-color: rgba(34, 211, 238, .6);
    box-shadow: 0 0 40px rgba(34, 211, 238, .18);
}

.productItem h3 {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 8px;
}

.productItem p {
    color: #e5edfa;
}


.productFrame img {
    max-height: 260px;
    object-fit: contain;
    margin: auto;
}

.productFrame img {
    max-width: 75%;
    transition: transform .6s ease;
}

.ctaBtn {
    padding: 12px 32px;
    border-radius: 12px;
    background: #22d3ee;
    color: black;
    font-weight: 600;
    transition: .3s;
}

.ctaBtn:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 40px rgba(34, 211, 238, .35);
}

#bgGlow {
    background: radial-gradient(circle at center, rgba(34, 211, 238, 0.15), transparent 60%);
}

.mobileProductContent {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s ease;
    margin-top: 12px;
    color: #9ca3af;
}

.mobileProductContent.open {
    max-height: 280px;
}

.mobileProductContent p {
    font-size: 14px;
    color: #bfc6d1;
    font-weight: 400;
}

@media(min-width:1024px) {
    .mobileProductContent {
        display: none;
    }
}