﻿.product-body {
    padding: 10px;
}

.product-card {
    border-radius: 0;
    border: 1px solid #e1e6ec;
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.05);
}

.product-image-wrap {
    position: relative;
    margin-bottom: 0.9rem;
}

.product-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    display: block;
    border: 1px solid #e3e7ec;
}

.product-image-badge {
    position: absolute;
    left: 10px;
    bottom: 10px;
    background: rgba(255, 255, 255, 0.92);
    border: 1px solid #d8dee6;
    min-width: 44px;
    padding: 0.3rem 0.55rem;
    font-weight: 800;
    color: #4a5768;
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
}

.product-model-number {
    font-size: 0.85rem;
    font-weight: 700;
    color: #6b7787;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.35rem;
}

.product-title {
    font-size: 1.15rem;
    font-weight: 800;
    color: #1c4d90;
    margin-bottom: 0.55rem;
}

.product-pricing {
    margin-bottom: 0.8rem;
}

.product-price-discounted {
    font-size: 1.2rem;
    font-weight: 900;
    color: #131f31;
}

.product-meta {
    display: flex;
    gap: 0.75rem;
    flex-wrap: wrap;
    margin-bottom: 0.9rem;
}

.meta-item {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    background: #f4f7fb;
    border: 1px solid #e1e6ec;
    padding: 0.35rem 0.6rem;
    font-size: 0.9rem;
    color: #2f3f55;
    font-weight: 700;
    border-radius: 2px;
}

    .meta-item i {
        font-size: 0.9rem;
        color: #0f5bb7;
    }

    .meta-item strong {
        font-weight: 900;
        color: #131f31;
    }

.btn-details {
    background: linear-gradient(180deg, #0f63c9 0%, #0053b0 100%);
    color: #fff;
    border-radius: 2px;
    font-weight: 800;
    border: none;
    padding: 0.8rem 1.2rem;
    min-width: 145px;
}

    .btn-details:hover {
        color: #fff;
        background: var(--cs-blue-dark);
    }

/* Responsive */
@media (max-width: 767.98px) {
    .product-image {
        height: 220px;
    }
}

@media (max-width: 575.98px) {
    .product-card {
        padding: 1rem;
    }
}
