/* ====================================================
   product-list.css - Ortak Ürün Kartı Tasarımı
   ==================================================== */

.clean-product-card {
    background: #ffffff;
    border-radius: 2px;
    border: 1px solid #e2e8f0;
    display: flex;
    flex-direction: column;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
    overflow: hidden;
    height: 100%;
}

.clean-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.06);
    border-color: #cbd5e1;
}

/* Resim Alanı */
.clean-img-box {
    width: 100%;
    aspect-ratio: 1 / 1;
    background-color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-bottom: 1px solid #f1f5f9;
    overflow: hidden;
}

/* Kategori Rozeti (Resmin Üzerinde) */
.category-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background-color: rgba(15, 23, 42, 0.05);
    color: #475569;
    font-size: 0.65rem;
    font-weight: 700;
    text-transform: uppercase;
    padding: 4px 8px;
    border-radius: 4px;
    letter-spacing: 0.5px;
    z-index: 2;
    transition: all 0.3s ease;
}

.clean-product-card:hover .category-badge {
    background-color: #05a0d4;
    color: #ffffff;
}

.clean-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: transform 0.4s ease;
    z-index: 1;
}

.clean-product-card:hover .clean-img-box img {
    transform: scale(1.08);
}

.fallback-logo-product {
    opacity: 0.08;
    filter: grayscale(100%);
    max-width: 50%;
}

/* Bilgi Alanı */
.clean-info-box {
    padding: 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
    background-color: #fcfcfd;
}

/* Ürün Adı */
.clean-product-name {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.3;
    margin-bottom: 15px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    height: 2.6em;
    transition: color 0.3s;
}

.clean-product-card:hover .clean-product-name {
    color: #05a0d4;
}

/* Yan Yana Kod Kutuları */
.product-codes-row {
    margin-top: auto;
    display: flex;
    gap: 8px;
}

.code-box {
    flex: 1;
    background-color: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 6px 8px;
    border-radius: 6px;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.code-label {
    font-size: 0.6rem;
    color: #94a3b8;
    text-transform: uppercase;
    font-weight: 700;
    margin-bottom: 2px;
}

.code-value {
    font-size: 0.8rem;
    color: #1e293b;
    font-weight: 700;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}