/* =============================================
   Cartes produit — Georgio Glacier
   ============================================= */

ul.products .georgio-product-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
    display: flex;
    flex-direction: column;
    list-style: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
}

ul.products .georgio-product-card:hover {
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
    transform: translateY(-2px);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

/* Image */
.georgio-product-card .gpc-image-wrap {
    display: block;
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: #f8f5f0;
}

.georgio-product-card .gpc-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.georgio-product-card .gpc-no-image {
    width: 100%;
    height: 100%;
    background: #f0ece6;
}

/* Corps */
.georgio-product-card .gpc-body {
    padding: 16px 18px 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

/* Catégorie */
.georgio-product-card .gpc-category {
    font-family: 'DM Sans', sans-serif;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    color: #1D355A;
    text-transform: uppercase;
    margin-bottom: 6px;
    display: block;
}

/* Titre */
.georgio-product-card .gpc-title {
    font-family: 'DM Serif Display', serif;
    font-size: 20px;
    font-weight: 400;
    color: #0D345B;
    margin: 0 0 8px;
    line-height: 1.3;
}

/* Surcharge Elementor kit sur les liens du titre */
.georgio-product-card .gpc-title a {
    font-family: 'DM Serif Display', serif !important;
    font-size: 20px !important;
    font-weight: 400 !important;
    line-height: 1.3 !important;
    color: #0D345B !important;
    text-decoration: none !important;
}

/* Description */
.georgio-product-card .gpc-desc {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px !important;
    color: #6b6b6b;
    line-height: 1.5;
    margin: 0 0 14px;
    flex: 1;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Footer */
.georgio-product-card .gpc-footer {
    margin-top: auto;
}

.georgio-product-card .gpc-price-wrap {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.georgio-product-card .gpc-price {
    font-family: 'DM Sans', sans-serif;
    font-size: 16px;
    font-weight: 700;
    color: #1a1a1a;
}

.georgio-product-card .gpc-price .woocommerce-Price-amount {
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
}

.georgio-product-card .gpc-format {
    font-family: 'DM Sans', sans-serif;
    font-size: 12px;
    color: #999;
}

/* Responsive */
@media (max-width: 767px) {
    .georgio-product-card .gpc-title { font-size: 18px; }
    .georgio-product-card .gpc-title a { font-size: 18px !important; }
    .georgio-product-card .gpc-price  { font-size: 15px; }
}
