

/* Start:/local/templates/umlight/css/uml-showcase.css?178394044911390*/
/* ===== UMLight — 3D Product Showcase ===== */

:root {
    --uml-show-navy: #07192D;
    --uml-show-navy-2: #0B2438;
    --uml-show-gold: #C9972F;
    --uml-show-gold-2: #F1C35C;
    --uml-show-ease: 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.uml-showcase-section {
    position: relative;
    background:
        radial-gradient(900px 420px at 50% 0%, rgba(201, 151, 47, 0.12), transparent 55%),
        linear-gradient(180deg, var(--uml-show-navy) 0%, var(--uml-show-navy-2) 100%);
    padding: 40px 0 52px;
    overflow: hidden;
}

.uml-showcase-section .block_categories_of_products_title .title,
.uml-showcase-section .block_categories_of_products_title .subtitle {
    color: #fff;
}

.uml-showcase-section .block_categories_of_products_title .subtitle {
    color: rgba(255, 255, 255, 0.72);
}

.uml-showcase {
    position: relative;
    width: 100%;
    margin: 28px 0 0;
    padding: 0;
    box-sizing: border-box;
    color: #fff;
    isolation: isolate;
}

.uml-showcase__glow {
    position: absolute;
    left: 50%;
    top: 42%;
    width: 520px;
    height: 220px;
    transform: translate(-50%, -50%);
    background: radial-gradient(closest-side, rgba(241, 195, 92, 0.28), transparent 70%);
    filter: blur(8px);
    pointer-events: none;
    z-index: 0;
}

.uml-showcase__lines {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0.35;
    background:
        linear-gradient(115deg, transparent 40%, rgba(201, 151, 47, 0.12) 50%, transparent 60%),
        linear-gradient(70deg, transparent 35%, rgba(241, 195, 92, 0.08) 52%, transparent 65%);
    animation: umlShowLines 14s ease-in-out infinite alternate;
    z-index: 0;
}

@keyframes umlShowLines {
    from { opacity: 0.22; transform: translateX(-1%); }
    to { opacity: 0.4; transform: translateX(1%); }
}

.uml-showcase__particles span {
    position: absolute;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: rgba(241, 195, 92, 0.75);
    box-shadow: 0 0 10px rgba(241, 195, 92, 0.65);
    pointer-events: none;
    z-index: 1;
    animation: umlShowParticle 7s ease-in-out infinite;
}
.uml-showcase__particles span:nth-child(1) { left: 18%; top: 28%; animation-delay: 0s; }
.uml-showcase__particles span:nth-child(2) { left: 72%; top: 22%; animation-delay: 1.2s; }
.uml-showcase__particles span:nth-child(3) { left: 40%; top: 18%; animation-delay: 2.1s; }
.uml-showcase__particles span:nth-child(4) { left: 58%; top: 36%; animation-delay: 3s; }
.uml-showcase__particles span:nth-child(5) { left: 30%; top: 48%; animation-delay: 4.2s; }

@keyframes umlShowParticle {
    0%, 100% { opacity: 0.15; transform: translateY(0); }
    50% { opacity: 0.8; transform: translateY(-10px); }
}

.uml-showcase__stage {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 56px 1fr 56px;
    align-items: center;
    gap: 12px;
    min-height: 480px;
}

.uml-showcase__viewport {
    position: relative;
    height: 460px;
    perspective: 1400px;
    perspective-origin: 50% 45%;
    overflow: visible;
    touch-action: pan-y;
}

.uml-showcase__ring {
    position: absolute;
    left: 50%;
    top: 46%;
    width: 280px;
    height: 460px;
    margin-left: -140px;
    margin-top: -180px;
    transform-style: preserve-3d;
    transform: translate3d(0, 0, 0) rotateY(var(--uml-show-rot, 0deg));
    will-change: transform;
}

.uml-showcase__card {
    position: absolute;
    inset: 0;
    transform-style: preserve-3d;
    transform:
        rotateY(calc(var(--i) * (360deg / var(--uml-showcase-count, 8))))
        translateZ(var(--uml-show-radius, 420px));
    transition: filter var(--uml-show-ease), opacity var(--uml-show-ease);
    opacity: 0.72;
    cursor: pointer;
}

.uml-showcase__card.is-active {
    opacity: 1;
    z-index: 3;
    filter: drop-shadow(0 0 28px rgba(241, 195, 92, 0.35));
}

.uml-showcase__card.is-focus .uml-showcase__card-glass {
    transform: translate3d(0, -8px, 24px) scale(1.05) rotateX(4deg);
    border-color: rgba(241, 195, 92, 0.75);
    box-shadow:
        0 24px 60px rgba(0, 0, 0, 0.45),
        0 0 40px rgba(241, 195, 92, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.22);
}

.uml-showcase__card-glass {
    height: 100%;
    border-radius: 24px;
    overflow: hidden;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(201, 151, 47, 0.35);
    backdrop-filter: blur(16px) saturate(1.2);
    -webkit-backdrop-filter: blur(16px) saturate(1.2);
    box-shadow:
        0 18px 48px rgba(0, 0, 0, 0.38),
        inset 0 1px 0 rgba(255, 255, 255, 0.14);
    display: flex;
    flex-direction: column;
    transition: transform var(--uml-show-ease), box-shadow var(--uml-show-ease), border-color var(--uml-show-ease);
    transform: translate3d(0, 0, 0);
    will-change: transform;
}

.uml-showcase__media {
    position: relative;
    height: 48%;
    background:
        radial-gradient(circle at 50% 30%, rgba(255, 255, 255, 0.12), transparent 55%),
        rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 16px;
}

.uml-showcase__media img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 10px 18px rgba(0, 0, 0, 0.35));
}

.uml-showcase__body {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 14px 16px 16px;
}

.uml-showcase__category {
    font-family: Montserrat, sans-serif;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--uml-show-gold-2);
    opacity: 0.9;
}

.uml-showcase__title {
    margin: 0;
    font-family: Montserrat, sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1.3;
    color: #fff;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.uml-showcase__article {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.55);
}

.uml-showcase__specs {
    list-style: none;
    margin: 6px 0 0;
    padding: 0;
    display: grid;
    gap: 4px;
}

.uml-showcase__specs li {
    display: flex;
    justify-content: space-between;
    gap: 10px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.7);
}

.uml-showcase__specs strong {
    color: #fff;
    font-weight: 600;
}

.uml-showcase__price {
    margin-top: auto;
    font-size: 18px;
    font-weight: 700;
    color: var(--uml-show-gold-2);
}

.uml-showcase__btn {
    margin-top: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 38px;
    border-radius: 999px;
    text-decoration: none;
    color: #07192D !important;
    font-family: Montserrat, sans-serif;
    font-size: 13px;
    font-weight: 600;
    background: linear-gradient(145deg, #C9972F 0%, #E0B34A 48%, #F1C35C 100%);
    box-shadow: 0 8px 20px rgba(201, 151, 47, 0.35);
    transition: transform 200ms ease, box-shadow 200ms ease, filter 200ms ease;
}

.uml-showcase__btn:hover {
    transform: translateY(-1px) scale(1.02);
    filter: brightness(1.06);
    box-shadow: 0 12px 28px rgba(241, 195, 92, 0.45);
}

.uml-showcase__floor {
    position: absolute;
    left: 50%;
    bottom: 18px;
    width: 340px;
    height: 70px;
    transform: translateX(-50%);
    pointer-events: none;
}

.uml-showcase__spot {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    background: radial-gradient(closest-side, rgba(241, 195, 92, 0.45), transparent 72%);
    filter: blur(2px);
}

.uml-showcase__reflection {
    position: absolute;
    left: 18%;
    right: 18%;
    top: 20%;
    height: 40%;
    border-radius: 50%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), transparent);
    opacity: 0.35;
}

.uml-showcase__arrow {
    width: 56px;
    height: 56px;
    border: 0;
    border-radius: 50%;
    background: #fff;
    color: var(--uml-show-gold);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow:
        0 14px 40px rgba(7, 25, 45, 0.35),
        0 0 0 1px rgba(201, 151, 47, 0.15);
    transition: transform 200ms ease, box-shadow 200ms ease, color 200ms ease;
}

.uml-showcase__arrow svg {
    width: 22px;
    height: 22px;
    fill: none;
    stroke: currentColor;
    stroke-width: 2.5;
    stroke-linecap: round;
    stroke-linejoin: round;
}

.uml-showcase__arrow:hover {
    transform: scale(1.08) rotate(3deg);
    color: #E8B84A;
    box-shadow:
        0 16px 44px rgba(201, 151, 47, 0.45),
        0 0 28px rgba(241, 195, 92, 0.4);
}

.uml-showcase__info {
    position: relative;
    z-index: 2;
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 18px 22px;
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 151, 47, 0.28);
    backdrop-filter: blur(10px);
}

.uml-showcase__info-title {
    margin: 0 0 6px;
    font-family: Playfair Display, Georgia, serif;
    font-size: 24px;
    font-weight: 500;
    color: #fff;
}

.uml-showcase__info-count {
    margin: 0;
    font-family: Montserrat, sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.65);
}

.uml-showcase__info-count strong {
    color: var(--uml-show-gold-2);
}

.uml-showcase__info-btn {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    padding: 0 22px;
    border-radius: 999px;
    text-decoration: none;
    color: #fff !important;
    font-family: Montserrat, sans-serif;
    font-size: 13px;
    font-weight: 600;
    border: 1px solid rgba(241, 195, 92, 0.55);
    background: rgba(201, 151, 47, 0.12);
    transition: transform 200ms ease, background 200ms ease, box-shadow 200ms ease;
}

.uml-showcase__info-btn:hover {
    transform: translateY(-1px);
    background: rgba(201, 151, 47, 0.22);
    box-shadow: 0 10px 28px rgba(201, 151, 47, 0.28);
}

/* Tablet */
@media (max-width: 1199px) {
    .uml-showcase__viewport { height: 420px; }
    .uml-showcase__ring {
        width: 240px;
        height: 320px;
        margin-left: -120px;
        margin-top: -160px;
        --uml-show-radius: 340px;
    }
    .uml-showcase__info-title { font-size: 24px; }
}

@media (max-width: 991px) {
    .uml-showcase__stage {
        grid-template-columns: 48px 1fr 48px;
        min-height: 400px;
    }
    .uml-showcase__viewport { height: 380px; }
    .uml-showcase__ring { --uml-show-radius: 280px; }
    .uml-showcase__arrow { width: 48px; height: 48px; }
}

/* Mobile: swipe coverflow-ish, flatter radius */
@media (max-width: 767px) {
    .uml-showcase-section { padding: 32px 0 48px; }
    .uml-showcase__stage {
        grid-template-columns: 1fr;
        min-height: 360px;
    }
    .uml-showcase__arrow { display: none; }
    .uml-showcase__viewport {
        height: 300px;
        touch-action: pan-x;
    }
    .uml-showcase__ring {
        width: 220px;
        height: 300px;
        margin-left: -110px;
        margin-top: -150px;
        --uml-show-radius: 220px;
    }
    .uml-showcase__info {
        flex-direction: column;
        align-items: stretch;
        text-align: center;
    }
    .uml-showcase__info-btn { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
    .uml-showcase__lines,
    .uml-showcase__particles span {
        animation: none;
    }
}

/* End */
/* /local/templates/umlight/css/uml-showcase.css?178394044911390 */
