﻿/*=========================================================
  ENMODÜLER YAZILIM — ÜRÜN KARTLARI (Ürünler hub sayfası)
=========================================================*/

.en-product-card {
    display: flex;
    flex-direction: column;
    height: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: #fff;
    border: 1px solid var(--gray-200);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    color: var(--text);
}

    .en-product-card:hover {
        transform: translateY(-6px);
        box-shadow: var(--shadow);
        border-color: var(--primary-light);
    }

.en-product-card-media {
    height: 220px;
    overflow: hidden;
}

    .en-product-card-media img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

.en-product-card-body {
    padding: 32px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

    .en-product-card-body h2 {
        font-size: 24px;
        margin: 6px 0 12px;
    }

    .en-product-card-body p {
        color: #666;
        font-size: 15.5px;
        line-height: 1.8;
        flex: 1;
    }
