/* =========================================
   PRODUCT CARD COMPONENT
========================================= */

.product-card-wrapper {
    width: 100%;
}

/* =========================================
   LINK
========================================= */

.product-card-link {
    display: block;

    height: 100%;

    color: inherit;
    text-decoration: none;
}


/* =========================================
   CARD
========================================= */

.product-card {
    display: flex;
    flex-direction: column;

    height: 100%;

    background: #fff;

    border: 1px solid #e5e7eb;
    border-radius: 12px;

    overflow: hidden;

    transition:
        transform 0.15s ease,
        box-shadow 0.15s ease;
}

.product-card:hover {
    transform: translateY(-3px);

    box-shadow: 0 4px 14px rgba(0,0,0,0.08);
}


/* =========================================
   IMAGE AREA
========================================= */

.product-image-wrapper {
    position: relative;

    width: 100%;
    height: 260px;

    background: #f8f8f8;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 8px;
}

.product-image {
    width: 100%;
    height: 100%;

    object-fit: cover;

    transform: scale(1.12);

    transition: transform 0.25s ease;
}
.product-card:hover .product-image {
    transform: scale(1.18);
}
/* =========================================
   SOLD OUT
========================================= */

.sold-out-badge {
    position: absolute;

    top: 10px;
    left: 10px;

    background: #dc2626;
    color: white;

    font-size: 0.75rem;
    font-weight: 700;

    padding: 4px 8px;

    border-radius: 6px;

    z-index: 2;
}

.sold-out-image {
    opacity: 0.45;

    filter: grayscale(100%);
}


/* =========================================
   CARD BODY
========================================= */

.product-card-body {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    flex-grow: 1;

    padding: 16px;
}


/* =========================================
   TITLE
========================================= */

.product-title {
    font-size: 0.95rem;
    font-weight: 600;

    line-height: 1.3;

    margin-bottom: 12px;

    color: #111827;
}


/* =========================================
   PRICE
========================================= */

.product-price {
    font-size: 1rem;
    font-weight: 700;

    color: #000;
}