/* ========================================
   SECTION 2 BLOCS CHIOTS
======================================== */

.puppy-cards-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

/* Grosse carte */
.puppy-big-card {
    display: block;
    position: relative;
    height: 550px;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
}

.puppy-big-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 70px rgba(101, 193, 120, 0.3);
}

.puppy-big-card.produced:hover {
    box-shadow: 0 25px 70px rgba(231, 76, 60, 0.3);
}

/* Image */
.puppy-card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.puppy-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.puppy-big-card:hover .puppy-card-image img {
    transform: scale(1.1);
}

/* Overlay */
.puppy-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, 
        rgba(51, 80, 44, 0.3) 0%, 
        rgba(44, 62, 80, 0.8) 100%);
    transition: background 0.4s ease;
}

.puppy-big-card:hover .puppy-card-overlay {
    background: linear-gradient(180deg, 
        rgba(44, 62, 80, 0.4) 0%, 
        rgba(44, 62, 80, 0.9) 100%);
}

/* Contenu */
.puppy-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    z-index: 2;
    color: white;
}

/* Icône */
.puppy-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), #7ed492);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.8rem;
    box-shadow: 0 8px 25px rgba(101, 193, 120, 0.4);
    transition: transform 0.4s ease;
}

.puppy-big-card.produced .puppy-card-icon {
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    box-shadow: 0 8px 25px rgba(231, 76, 60, 0.4);
}

.puppy-big-card:hover .puppy-card-icon {
    transform: scale(1.15);
}

/* Titre */
.puppy-card-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

/* Compteur */
.puppy-card-count {
    font-size: 1.1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5rem;
}

/* Bouton */
.puppy-card-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.9rem;
    background: white;
    color: var(--secondary-color);
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.puppy-big-card:hover .puppy-card-btn {
    background: var(--primary-color);
    color: white;
    transform: translateX(5px);
}

.puppy-big-card.produced:hover .puppy-card-btn {
    background: #e74c3c;
}

.puppy-card-btn i {
    transition: transform 0.3s ease;
}

.puppy-big-card:hover .puppy-card-btn i {
    transform: translateX(5px);
}

/* ========================================
   RESPONSIVE - TABLETTES
======================================== */
@media (max-width: 991px) {
    .puppy-cards-section {
        padding: 4rem 0;
    }

    .puppy-big-card {
        height: 500px;
    }

    .puppy-card-content {
        padding: 2.5rem;
    }

    .puppy-card-icon {
        width: 65px;
        height: 65px;
        font-size: 1.6rem;
        margin-bottom: 1.25rem;
    }

    .puppy-card-title {
        font-size: 2rem;
    }

    .puppy-card-count {
        font-size: 0.9rem;
        margin-bottom: 1.25rem;
    }

    .puppy-card-btn {
        font-size: 1rem;
        padding: 0.75rem 1.75rem;
    }
}

/* ========================================
   RESPONSIVE - MOBILES
======================================== */
@media (max-width: 767px) {
    .puppy-cards-section {
        padding: 3rem 0;
    }

    .puppy-big-card {
        height: 450px;
        border-radius: 20px;
    }

    .puppy-card-content {
        padding: 2rem;
    }

    .puppy-card-icon {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
        margin-bottom: 1rem;
    }

    .puppy-card-title {
        font-size: 1.8rem;
        margin-bottom: 0.65rem;
    }

    .puppy-card-count {
        font-size: 0.95rem;
        margin-bottom: 1.15rem;
    }

    .puppy-card-btn {
        font-size: 0.75rem;
        padding: 0.7rem 1.5rem;
    }
}

/* ========================================
   RESPONSIVE - PETITS MOBILES
======================================== */
@media (max-width: 575px) {
    .puppy-cards-section {
        padding: 2.5rem 0;
    }

    .puppy-big-card {
        height: 400px;
        border-radius: 18px;
    }

    .puppy-card-content {
        padding: 1.75rem;
    }

    .puppy-card-icon {
        width: 55px;
        height: 55px;
        font-size: 1.1rem;
        margin-bottom: 0.85rem;
    }

    .puppy-card-title {
        font-size: 1.5rem;
        margin-bottom: 0.6rem;
    }

    .puppy-card-count {
        font-size: 0.85rem;
        margin-bottom: 1rem;
    }

    .puppy-card-btn {
        font-size: 0.7rem;
        padding: 0.65rem 1.35rem;
    }
}