/* =========================================================
   PRODUSE - VARIANTA CU IMAGINI REALE
========================================================= */

.products-real {
    background: #fcfaf5;
    padding: 90px 20px 105px;
}

.products-real .section-header {
    max-width: 860px;
    margin: 0 auto 55px;
    text-align: center;
}

.products-real .section-header h2 {
    margin: 12px 0 12px;
    color: #40513b;
    font-size: clamp(42px, 5vw, 64px);
    font-weight: 500;
}

.products-real .section-header p {
    margin: auto;
    max-width: 700px;
    color: #727268;
    font-family: Arial, sans-serif;
    font-size: 16px;
    line-height: 1.7;
}

.product-grid-real {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    max-width: 1200px;
    margin: auto;
}

.product-card-real {
    background: linear-gradient(180deg, #fffdf8 0%, #f4ede2 100%);
    border: 1px solid rgba(96, 88, 70, .18);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(67, 60, 45, .05);
    transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}

.product-card-real:hover {
    transform: translateY(-4px);
    border-color: rgba(70, 85, 62, .28);
    box-shadow: 0 18px 34px rgba(67, 60, 45, .10);
}

.product-photo-wrap {
    position: relative;
    height: 255px;
    margin: 16px;
    border-radius: 18px;
    overflow: hidden;
    background:
        radial-gradient(circle at 35% 18%, rgba(255,255,255,.82), transparent 35%),
        linear-gradient(180deg, #fbf8f1 0%, #efe7d8 100%);
}

.product-photo-wrap::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 12px;
    width: 120px;
    height: 18px;
    transform: translateX(-50%);
    border-radius: 50%;
    background: rgba(80, 67, 48, .12);
    filter: blur(7px);
    pointer-events: none;
}

.product-photo {
    position: absolute;
    inset: 18px 18px 26px 18px;
    width: calc(100% - 36px);
    height: calc(100% - 44px);
    object-fit: contain;
    display: block;
    z-index: 2;
}

.product-photo-wrap.missing::before {
    content: "Pune imaginea în /site/assets/products/";
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    text-align: center;
    padding: 20px;
    color: #8b7d67;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.5;
}

.product-body-real {
    text-align: center;
    padding: 4px 18px 24px;
}

.product-body-real h3 {
    margin: 0 0 9px;
    color: #44583e;
    font-size: 26px;
    line-height: 1.1;
    font-weight: 500;
}

.product-body-real p {
    margin: 0;
    color: #6d6b62;
    font-family: Arial, sans-serif;
    font-size: 14px;
    line-height: 1.55;
}

.product-meta-real {
    margin-top: 14px;
    display: inline-block;
    padding: 8px 12px;
    border-radius: 999px;
    background: rgba(166, 97, 72, .08);
    color: #8f5a46;
    font-family: Arial, sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .2px;
}

@media (max-width: 950px) {
    .product-grid-real {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .products-real {
        padding-top: 70px;
    }

    .product-grid-real {
        grid-template-columns: 1fr;
        max-width: 390px;
    }

    .product-photo-wrap {
        height: 235px;
    }

    .product-body-real h3 {
        font-size: 24px;
    }
}
