
:root {
    --ls-gold: #ffcc00;
    --ls-silver: #a5a5a5;
    --ls-velvet-red: rgba(139, 0, 0, 0.85);
    --ls-turquoise: rgba(0, 206, 209, 0.85);
}

.ls-pro-container {
    padding: 5px;
    width: 100%;
}

.ls-card {
    position: relative;
    background: #2d2d2dbd;
    border-radius: 25px;
    border: 3px solid var(--ls-silver);
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.2, 1, 0.3, 1);
    box-shadow: 1px 1px 3px 0px rgba(0, 0, 0, 0.3);
    aspect-ratio: 0.88;
}

.ls-abs-link { position: absolute; inset: 0; z-index: 15; }

/* Images */
.ls-visual { position: relative; width: 100%; height: 100%; }
.ls-m-img, .ls-s-img {
    width: 100%; height: 100%; object-fit: cover !important;
    position: absolute; inset: 0; transition: all 0.7s ease;
}
.ls-s-img { opacity: 0; transform: translateY(30px); filter: blur(10px); }

/* Info Area */
.ls-info {
    position: absolute;
    bottom: 0; width: 100%; padding: 6px;
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0.5) 60%, transparent 100%);
    backdrop-filter: blur(10px);
    z-index: 5; text-align: center;
}

.ls-name {
    color: #ffffffd9;
    font-size: 12px;
    margin: 0 0 53px 0 !important;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    text-shadow: 20px 9px 22px #000;
}

/* Pricing Section */
.ls-pricing {
    position: absolute;
    bottom: 12px; left: 0; width: 100%;
    display: flex; flex-direction: column; align-items: center; justify-content: flex-end;
}

.ls-new {
    background: linear-gradient(135deg, #d4af37, #f1c40f, #996515);
    border: 1px solid rgba(255,255,255,0.4);
    border-radius: 14px;
    padding: 6px 13px;
    width: auto;
    color: #000 !important;
    font-weight: 900;
    font-size: 15px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.5);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    z-index: 3;
}
.ls-new-inner bdi, .ls-new-inner span { color: #000 !important; }

.ls-old {
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    text-decoration: line-through;
    position: absolute;
    bottom: 45px;
    transition: all 0.5s ease;
    z-index: 2;
}

/* Slide Badge (Red Velvet & Turquoise) */
.ls-glass-badge {
    position: absolute;
    top: 10px;
    left: -5px; /* Slightly out of card */
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0 12px 12px 0;
    width: 90px;
    height: 35px;
    overflow: hidden;
    z-index: 20;
    box-shadow: 3px 3px 10px rgba(0,0,0,0.3);
}

.ls-badge-slider {
    display: flex;
    flex-direction: column;
    animation: badgeSlideDown 4s infinite;
}

.ls-b-special { background: var(--ls-velvet-red); color: #fff; height: 35px; display: flex; align-items: center; justify-content: center; font-size: 11px; }
.ls-b-percent { background: var(--ls-turquoise); color: #000; height: 35px; display: flex; align-items: center; justify-content: center; font-size: 14px; font-weight: bold; }

@keyframes badgeSlideDown {
    0%, 40% { transform: translateY(0); }
    50%, 90% { transform: translateY(-35px); }
    100% { transform: translateY(0); }
}

/* Hover States */
.ls-card:hover { border-color: var(--ls-gold); box-shadow: 0 0 20px rgba(212, 175, 55, 0.4); }
.ls-card:hover .ls-s-img { opacity: 1; transform: translateY(0); filter: blur(0); }
.ls-card:hover .ls-new { transform: perspective(500px) rotateX(10deg) scale(1.1); box-shadow: 0 10px 20px rgba(0,0,0,0.5), 0 0 15px var(--ls-gold); }
.ls-card:hover .ls-old { transform: translateY(-20px) scale(1.4); filter: blur(4px); opacity: 0.5; }

/* Adjust title if no discount */
.ls-pricing:not(.is-sale) ~ .ls-name { margin-bottom: 25px !important; }
