/*
 Theme Name:   Hello Elementor child
 Theme URI:    https://exemple.com/mon-theme-enfant
 Description:  Thème enfant pour le thème Hello Elementor
 Author:       lebonflair
 Author URI:   https://exemple.com
 Template:     hello-elementor
 Version:      1.0.0
*/
/* ------------------------------------------------------------------*/
    /* --- CARD AFFILIATION --- */
    .product-card {
      width: 180px;
      display: block;
      text-decoration: none;
      color: inherit;
      background: #fff;
      border-radius: 20px;
      overflow: hidden;
      /* Petit ombrage par défaut */
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.05);
      transition: box-shadow 0.3s ease;
    }

    .product-card:hover {
      /* Double ombre : 1- couche "bordure" + 1- couche décalée plus lointaine */
      box-shadow:
        0 0 0 2px #FF6F61,      /* ligne de 2 px autour -> équivalent bordure */
        8px 8px 0 0 #FF6F61;    /* relief plus lointain (bottom-right) */
      cursor: pointer;
    }

    .product-card img {
      width: 100%;
      height: 220px;
      object-fit: cover;
      display: block;
    }

    .product-info {
      padding: 1rem;
    }

    .product-name {
      margin: 0 0 0.5rem 0;
      font-size: 1rem;
      line-height: 1.25;
    }

    .product-description {
      margin: 0;
      font-size: 0.875rem;
      color: #6b7280;
      display: flex;
      align-items: center;
      gap: 0.25rem;
    }

    .product-description .icon {
      font-size: 1rem;
      line-height: 1;
    }

    /* --- BUTTON --- */
    .product-btn {
      width: 100%;
      margin-top: 0.75rem;
      padding: 0.5rem 0.75rem;
      border: none;
      border-radius: 8px;
      background: #FF6F61;
      color: #fff;
      font-weight: 600;
      font-size: 0.875rem;
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 0.5rem;
      transition: background 0.2s ease;
    }

    .product-btn:hover,
    .product-btn:focus {
      background: #e96254;
		}
    .product-body-card {
      margin: 0;
      padding: 2rem;
      display: flex;
      justify-content: center;
      font-family: var(--font-stack);
      background: #f5f5f5;
    }
		
/* ------------------------------------------------------------------*/