/* ============================================================
   products-home.css — Ana sayfa ürün slider stilleri
   (Kart tasarımı products.php ile birebir aynı)
   ============================================================ */

/* ── PRODUCT CARD ───────────────────────────────────────── */
.lvn-product-card {
    background: #fff;
    border: 1px solid #f2f2f2;
    padding: 15px;
    border-radius: 8px;
    transition: 0.3s;
    position: relative;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    height: calc(100% - 30px);
}

.lvn-product-card:hover {
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    border-color: #eaeaea;
}

.lvn-product-img-wrap {
    position: relative;
    overflow: hidden;
    margin-bottom: 3px;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    padding: 0px;
    aspect-ratio: 1 / 1;
}

.lvn-product-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    transition: 0.5s;
    mix-blend-mode: multiply;
}

.lvn-product-img-wrap .img-hover {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    opacity: 0;
}

.lvn-product-card:hover .img-hover {
    opacity: 1;
}

.lvn-product-card:hover .img-product {
    opacity: 0;
}

.lvn-badge-new {
    position: absolute;
    top: 0px;
    left: 0px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    background: #faeaea;
    color: #8c1a35;
    font-size: 10.5px;
    font-weight: 600;
    padding: 5px 10px;
    border-radius: 4px;
    z-index: 2;
    white-space: nowrap;
}

.lvn-badge-new i {
    font-size: 10px;
}

.lvn-badge-popular {
    background: #fdf1de;
    color: #b8791a;
}

.lvn-badge-season {
    background: #e6f4ea;
    color: #2e7d4f;
}

.lvn-badge-special {
    background: #8c1a35;
    color: #fff;
}

/* ── ÜRÜN PUANLAMASI ────────────────────────────────────── */
.lvn-product-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.lvn-product-rating .stars {
    color: #f0a93a;
    font-size: 11px;
    letter-spacing: 1px;
}

.lvn-product-rating .count {
    font-size: 11px;
    color: #999;
}

.lvn-wishlist-btn {
    position: absolute;
    top: 0px;
    right: 0px;
    color: #999;
    font-size: 18px;
    cursor: pointer;
    z-index: 2;
    background: transparent;
    border: none;
    padding: 0;
}

.lvn-wishlist-btn:hover {
    color: #8c1a35;
}

.lvn-product-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    width: 100%;
    padding: 5px 10px;
}

.lvn-product-specs {
    font-size: 10px;
    color: #888;
    letter-spacing: 0.5px;
    margin-bottom: 6px;
    text-transform: uppercase;
}

.lvn-product-title-link {
    text-decoration: none;
    color: inherit;
}

.lvn-product-title {
    font-size: 13px;
    color: #111;
    font-weight: 600;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    text-transform: uppercase;
}

.lvn-product-price {
    font-size: 16px;
    color: #8c1a35;
    font-weight: 700;
    margin-top: auto;
}

.lvn-card-footer {
    margin-top: auto;
    width: 100%;
}

.lvn-btn-cart {
    background: #8c1a35;
    color: #fff;
    border: none;
    padding: 12px 15px;
    font-size: 12px;
    font-weight: 600;
    border-radius: 4px;
    width: 100% !important;
    transition: 0.3s;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.lvn-btn-cart:hover {
    background: #6a1327;
}

.lvn-btn-disabled {
    background: #999;
    cursor: not-allowed;
}

.lvn-btn-disabled:hover {
    background: #999;
}
