/* ========================================
   SECTION HERO - DÉTAILS MARIAGE
======================================== */

.marriage-hero-section {
    padding: 4rem 0;
    background: #f1f1f1;
}

.marriage-hero-section .row {
    background: #ffffff;
    border: 2px solid #e8e8e8;
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

/* ========================================
   CONTENU GAUCHE - INFOS
======================================== */

.marriage-hero-content {
    padding-right: 2rem;
}

/* Fil d'Ariane */
.marriage-breadcrumb {
    margin-bottom: 1.5rem;
}

.marriage-breadcrumb .breadcrumb {
    background: transparent;
    padding: 0;
    margin: 0;
    font-size: 0.9rem;
}

.marriage-breadcrumb .breadcrumb-item + .breadcrumb-item::before {
    content: "›";
    color: var(--primary-color);
    font-weight: 600;
}

.marriage-breadcrumb .breadcrumb-item a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.marriage-breadcrumb .breadcrumb-item a:hover {
    color: var(--primary-color);
}

.marriage-breadcrumb .breadcrumb-item.active {
    color: var(--secondary-color);
    font-weight: 600;
}

/* Titre principal */
.marriage-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.marriage-hero-title .x-separator {
    display: inline-block;
    margin: 0 0.75rem;
    color: var(--primary-color);
    font-weight: 400;
    font-size: 2rem;
    vertical-align: middle;
}

/* Race */
.marriage-hero-breed {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--primary-color);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    border: none;
}

.marriage-hero-breed i {
    color: white;
    font-size: 1rem;
}

.marriage-hero-breed span {
    color: white;
    font-weight: 700;
    font-size: 1rem;
}

/* Badge de statut - Positionné en haut à gauche de l'image */
.marriage-status-badge-hero {
    position: absolute;
    top: 20px;
    left: 20px;
    display: inline-flex !important; 
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.1rem;
    border-radius: 50px;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 10;
    width: auto !important; 
    max-width: none !important; 
    white-space: nowrap;
}

.marriage-status-badge-hero i {
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Couleurs des statuts */
.marriage-status-badge-hero.status-planned {
    background: linear-gradient(135deg, #3a8340, #409147);
}

.marriage-status-badge-hero.status-progress {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.marriage-status-badge-hero.status-born {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.marriage-status-badge-hero.status-completed {
    background: linear-gradient(135deg, #182c0c, #223f12);
}

/* Grille d'infos */
.marriage-hero-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}
.marriage-info-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: #f8f9fa;
    border-radius: 15px;
    border: 2px solid #e8e8e8;
    transition: all 0.3s ease;
}

.marriage-info-card:hover {
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(101, 193, 120, 0.15);
}

.marriage-info-card.highlight {
    background: var(--primary-color);
    border-color: var(--primary-color);
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(101, 193, 120, 0.15);
    border-radius: 12px;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--primary-color);
    font-size: 1.3rem;
}

.marriage-info-card.highlight .info-icon {
    background: white;
}

.marriage-info-card.highlight .info-icon i {
    color: var(--primary-color);
}

.marriage-info-card.highlight .info-label {
    color: rgba(255, 255, 255, 0.9);
}

.marriage-info-card.highlight .info-value {
    color: white!important;
}

.info-content {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.info-label {
    font-size: 0.8rem;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.info-value {
    font-size: 0.85rem;
    color: var(--secondary-color);
    font-weight: 700;
}

.marriage-info-card.highlight .info-value {
    color: var(--primary-color);
}

/* ========================================
   COLONNE DROITE - IMAGE
======================================== */

.marriage-hero-image {
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    height: 500px;
}

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

.marriage-hero-image:hover img {
    transform: scale(1.05);
}

@keyframes pulse-hero-badge {
    0%, 100% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.08);
    }
}

/* ========================================
   SECTION BOUTON CONTACT
======================================== */

.marriage-contact-section {
    padding: 3rem 0;
    background: #ffffff;
}

.marriage-contact-box {
    background: linear-gradient(135deg, rgba(101, 193, 120, 0.08), rgba(126, 212, 146, 0.08));
    border: 2px solid var(--primary-color);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
}

.contact-box-content {
    max-width: 600px;
    margin: 0 auto;
}

.contact-text {
    font-size: 1rem;
    color: var(--secondary-color);
    font-weight: 600;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
}

/* Bouton contact */
.btn-marriage-contact {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.8rem;
    background: linear-gradient(135deg, var(--primary-color), #7ed492);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(101, 193, 120, 0.3);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-marriage-contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #7ed492, var(--primary-color));
    transition: left 0.4s ease;
    z-index: 0;
}

.btn-marriage-contact:hover::before {
    left: 0;
}

.btn-marriage-contact:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(101, 193, 120, 0.4);
    color: white;
}

.btn-marriage-contact i,
.btn-marriage-contact span {
    position: relative;
    z-index: 1;
}

.btn-marriage-contact i:first-child {
    font-size: 1rem;
}

.btn-marriage-contact i:last-child {
    font-size: 0.9rem;
    transition: transform 0.3s ease;
}

.btn-marriage-contact:hover i:last-child {
    transform: translateX(5px);
}

/* ========================================
   SECTION PARENTS
======================================== */

.marriage-parents-section {
    padding: 4rem 0;
    background: #f1f1f1;
}

/* En-tête de section */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1rem;
    color: #666;
    font-weight: 400;
}

/* ========================================
   CARTE PARENT
======================================== */

.parent-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border: 2px solid #e8e8e8;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.parent-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(101, 193, 120, 0.2);
    border-color: var(--primary-color);
}

/* Image du parent */
.parent-card-header {
    position: relative;
    height: 450px;
    overflow: hidden;
}

.parent-image {
    position: relative;
    width: 100%;
    height: 100%;
}

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

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

/* Badge genre */
.parent-gender-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.3rem;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.25);
    z-index: 2;
    transition: transform 0.3s ease;
    border: 3px solid white;
}

.parent-card:hover .parent-gender-badge {
    transform: scale(1.1) rotate(10deg);
}

.parent-gender-badge.male {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.parent-gender-badge.female {
    background: linear-gradient(135deg, #e91e63, #c2185b);
}

/* Corps de la carte */
.parent-card-body {
    padding: 1.8rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Nom du parent */
.parent-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.parent-name a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.parent-name a:hover {
    color: var(--primary-color);
}

/* Badge rôle (Père/Mère) */
.parent-role {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(101, 193, 120, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    margin-bottom: 1.5rem;
    width: fit-content;
}

.parent-role i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

.parent-role span {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 0.9rem;
}

/* Grille d'infos */
.parent-info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.85rem;
    margin-bottom: 1.5rem;
}

.parent-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.75rem;
    background: #f8f9fa;
    border-radius: 10px;
    border: 1px solid #e8e8e8;
    transition: all 0.3s ease;
}

.parent-info-item:hover {
    background: rgba(101, 193, 120, 0.08);
    border-color: var(--primary-color);
}


/* Description */
.parent-description {
    flex: 1;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: rgba(101, 193, 120, 0.05);
    border-left: 3px solid var(--primary-color);
    border-radius: 8px;
}

.parent-description p {
    font-size: 0.9rem;
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Bouton profil */
.btn-parent-profile {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color), #7ed492);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(101, 193, 120, 0.2);
    margin-top: auto;
}

.btn-parent-profile:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(101, 193, 120, 0.35);
    color: white;
}

.btn-parent-profile i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

.btn-parent-profile:hover i {
    transform: translateX(5px);
}

/* ========================================
   SECTION CHIOTS
======================================== */

.marriage-puppies-section {
    padding: 4rem 0;
    background: #ffffff;
}

/* ========================================
   CARTE CHIOT
======================================== */

.puppy-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    border: 2px solid #e8e8e8;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.puppy-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 50px rgba(101, 193, 120, 0.25);
    border-color: var(--primary-color);
}

/* Image du chiot */
.puppy-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.puppy-card-image a {
    display: block;
    width: 100%;
    height: 100%;
}

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

.puppy-card:hover .puppy-card-image img {
    transform: scale(1.15) rotate(2deg);
}

/* Badge genre */
.puppy-gender-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
    transition: transform 0.3s ease;
    border: 3px solid white;
}

.puppy-card:hover .puppy-gender-badge {
    transform: scale(1.1);
}

.puppy-gender-badge.male {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.puppy-gender-badge.female {
    background: linear-gradient(135deg, #e91e63, #c2185b);
}

/* Badge statut */
.puppy-status-badge {
    position: absolute;
    bottom: 15px;
    left: 15px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0.9rem;
    border-radius: 25px;
    color: white;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.puppy-status-badge span {
    font-size: 0.6rem;
}

.puppy-status-badge i {
    font-size: 0.85rem;
}

/* Couleurs des statuts */
.puppy-status-badge.status-available {
    background: linear-gradient(135deg, #27ae60, #229954);
}

.puppy-status-badge.status-pending {
    background: linear-gradient(135deg, #f39c12, #e67e22);
}

.puppy-status-badge.status-reserved {
    background: linear-gradient(135deg, #3498db, #2980b9);
}

.puppy-status-badge.status-sold {
    background: linear-gradient(135deg, #95a5a6, #7f8c8d);
}

/* Corps de la carte */
.puppy-card-body {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* Nom du chiot */
.puppy-card-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.puppy-card-name a {
    color: var(--secondary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.puppy-card-name a:hover {
    color: var(--primary-color);
}

/* Informations */
.puppy-card-info {
    flex: 1;
    margin-bottom: 1.25rem;
}

.puppy-info-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 0;
    color: #666;
    font-size: 0.85rem;
}

.puppy-info-item i {
    color: var(--primary-color);
    font-size: 0.85rem;
    width: 16px;
    text-align: center;
}

.puppy-info-item span {
    color: #555;
}

/* Bouton */
.puppy-card-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.7rem 1.3rem;
    background: linear-gradient(135deg, var(--primary-color), #7ed492);
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(101, 193, 120, 0.2);
}

.puppy-card-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(101, 193, 120, 0.35);
    color: white;
}

.puppy-card-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s ease;
}

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

/* ========================================
   MESSAGE AUCUN CHIOT
======================================== */

.no-puppies-message {
    padding: 4rem 2rem;
}

.no-puppies-message h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.no-puppies-message p {
    font-size: 1.1rem;
}

.btn-contact-puppies {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, var(--primary-color), #7ed492);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1.05rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 6px 20px rgba(101, 193, 120, 0.3);
}

.btn-contact-puppies:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(101, 193, 120, 0.4);
    color: white;
}

/* ========================================
   RESPONSIVE PREMIERE SECTION - TABLETTES
======================================== */
@media (max-width: 991px) {
    .marriage-hero-section {
        padding: 3rem 0;
    }

    .marriage-hero-content {
        padding-right: 0;
        margin-bottom: 2rem;
    }

    .marriage-hero-title {
        font-size: 1.4rem;
    }

    .marriage-hero-title .x-separator {
        font-size: 1.6rem;
        margin: 0 0.5rem;
    }

    .marriage-hero-image {
        height: 500px;
    }

    .marriage-hero-info-grid {
        grid-template-columns: 1fr;
    }
}

/* ========================================
   RESPONSIVE - MOBILES
======================================== */
@media (max-width: 767px) {
    .marriage-hero-section {
        padding: 2.5rem 0;
    }

    .marriage-status-badge-hero {
        font-size: 0.6rem;
        padding: 0.45rem 0.95rem;
        top: 15px;
        left: 15px;
        width: auto !important;
    }
    
    .marriage-status-badge-hero i {
        font-size: 0.7rem;
    }

    .marriage-hero-title {
        font-size: 1.2rem;
    }

    .marriage-hero-title .x-separator {
        font-size: 1.4rem;
        margin: 0 0.4rem;
    }

    .marriage-hero-breed {
        padding: 0.3rem 0.9rem;
        font-size: 0.7rem;
    }

    .marriage-info-card {
        padding: 1rem;
    }

    .info-icon {
        width: 45px;
        height: 45px;
    }

    .info-icon i {
        font-size: 0.9rem;
    }

    .info-label {
        font-size: 0.55rem;
    }

    .info-value {
        font-size: 0.7rem;
    }
}

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

    .marriage-hero-title {
        font-size: 1.05rem;
    }

    .marriage-hero-title .x-separator {
        font-size: 1.2rem;
        margin: 0 0.3rem;
    }

    .marriage-breadcrumb .breadcrumb {
        font-size: 0.7rem;
    }

    .marriage-hero-breed {
        padding: 0.2rem 0.7rem;
        font-size: 0.65rem;
    }

        .marriage-hero-breed span {
        font-size: 0.75rem;
    }

    .marriage-info-card {
        padding: 0.85rem;
    }

    .info-icon {
        width: 40px;
        height: 40px;
    }

    .info-icon i {
        font-size: 0.8rem;
    }
}

@media (max-width: 991px) {
    .marriage-hero-section .row {
        padding: 2rem;
        border-radius: 20px;
    }
}

@media (max-width: 767px) {
    .marriage-hero-section .row {
        padding: 1.5rem;
        border-radius: 18px;
        border: 1.5px solid #e8e8e8;
    }
}

@media (max-width: 575px) {
    .marriage-hero-section .row {
        padding: 1.25rem;
        border-radius: 15px;
    }
}

/* ========================================
   RESPONSIVE SECTION BOUTON DE CONTACT - TABLETTES
======================================== */
@media (max-width: 991px) {
    .marriage-contact-section {
        padding: 2rem 0;
    }

    .marriage-contact-box {
        padding: 1.8rem 1.3rem;
        border-radius: 18px;
    }

    .contact-text {
        font-size: 0.9rem;
    }

    .btn-marriage-contact {
        font-size: 0.9rem;
        padding: 0.75rem 1.8rem;
    }
}

/* ========================================
   RESPONSIVE - MOBILES
======================================== */
@media (max-width: 767px) {
    .marriage-contact-section {
        padding: 1rem 0;
    }

    .marriage-contact-box {
        padding: 1.75rem 1.25rem;
        border-radius: 16px;
    }

    .contact-text {
        font-size: 0.75rem;
        flex-direction: column;
        gap: 0.5rem;
    }

    .btn-marriage-contact {
        font-size: 0.7rem;
        padding: 0.6rem 1.45rem;
    }
}

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

    .marriage-contact-box {
        padding: 1.3rem 0.9rem;
        border-radius: 15px;
    }

    .contact-text {
        font-size: 0.75rem;
    }

    .btn-marriage-contact {
        width: 100%;
        justify-content: center;
        font-size: 0.75rem;
        padding: 0.7rem 1.3rem;
    }
}

/* ========================================
   RESPONSIVE SECTION DES PARENTS - TABLETTES
======================================== */
@media (max-width: 991px) {
    .marriage-parents-section {
        padding: 3rem 0;
    }

    .section-header {
        margin-bottom: 2.5rem;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .section-subtitle {
        font-size: 0.9rem;
    }

    .parent-card-header {
        height: 400px;
    }

    .parent-card-body {
        padding: 1.75rem;
    }

    .parent-name {
        font-size: 1.4rem;
    }

    .parent-gender-badge {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

/* ========================================
   RESPONSIVE - MOBILES
======================================== */
@media (max-width: 767px) {
    .marriage-parents-section {
        padding: 2.5rem 0;
    }

    .section-header {
        margin-bottom: 2rem;
    }

    .section-title {
        font-size: 1.3rem;
    }

    .section-subtitle {
        font-size: 0.8rem;
    }

    .parent-card {
        margin-bottom: 1.5rem;
    }

    .parent-card-header {
        height: 400px;
    }

    .parent-card-body {
        padding: 1.5rem;
    }

    .parent-name {
        font-size: 1.3rem;
        margin-bottom: 0.65rem;
    }

    .parent-role {
        padding: 0.45rem 0.85rem;
        font-size: 0.8rem;
        margin-bottom: 1.25rem;
    }

    .parent-info-grid {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        margin-bottom: 1.25rem;
    }

    .parent-info-item {
        padding: 0.65rem;
    }

    .info-label {
        font-size: 0.65rem;
    }

    .info-value {
        font-size: 0.65rem;
    }

    .parent-description {
        padding: 0.85rem;
        margin-bottom: 1.25rem;
    }

    .parent-description p {
        font-size: 0.85rem;
    }

    .btn-parent-profile {
        font-size: 0.85rem;
        padding: 0.8rem 1.35rem;
    }

    .parent-gender-badge {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
        top: 15px;
        right: 15px;
    }
}

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

    .section-header {
        margin-bottom: 1.75rem;
    }

    .section-title {
        font-size: 1.2rem;
    }

    .parent-description p {
        font-size: 0.75rem;
    }

    .section-subtitle {
        font-size: 0.75rem;
    }

    .parent-card-header {
        height: 340px;
    }

    .parent-card-body {
        padding: 1.1rem;
    }

    .parent-name {
        font-size: 1.2rem;
    }

    .parent-role {
        padding: 0.05rem 0.5rem;
        font-size: 0.6rem;
        margin-bottom: 1rem;
    }

    .parent-gender-badge {
        width: 42px;
        height: 42px;
        font-size: 1rem;
        border: 2px solid white;
    }

    .btn-parent-profile {
        font-size: 0.75rem;
        padding: 0.75rem 1.25rem;
    }
}


/* ========================================
   RESPONSIVE SECTION CHIOTS - TABLETTES
======================================== */
@media (max-width: 991px) {
    .marriage-puppies-section {
        padding: 3rem 0;
    }

    .puppy-card-image {
        height: 360px;
    }

    .puppy-card-body {
        padding: 1.35rem;
    }

    .puppy-card-name {
        font-size: 1.3rem;
    }

    .puppy-info-item {
        font-size: 0.8rem;
        padding: 0.4rem 0;
    }

    .puppy-card-btn {
        font-size: 0.9rem;
        padding: 0.75rem 1.25rem;
    }
}

/* ========================================
   RESPONSIVE - MOBILES
======================================== */
@media (max-width: 767px) {
    .marriage-puppies-section {
        padding: 2.5rem 0;
    }

    .puppy-card-image {
        height: 360px;
    }

    .puppy-card-body {
        padding: 1.25rem;
    }

    .puppy-card-name {
        font-size: 1.2rem;
        margin-bottom: 0.85rem;
    }

    .puppy-info-item {
        font-size: 0.75rem;
        padding: 0.35rem 0;
    }

    .puppy-card-btn {
        font-size: 0.85rem;
        padding: 0.7rem 1.15rem;
    }

    .puppy-gender-badge {
        width: 40px;
        height: 40px;
        font-size: 1.1rem;
        top: 12px;
        right: 12px;
        border: 2px solid white;
    }

    .puppy-status-badge {
        font-size: 0.7rem;
        padding: 0.5rem 0.85rem;
        bottom: 12px;
        left: 12px;
    }

    .puppy-status-badge i {
        font-size: 0.8rem;
    }

    .no-puppies-message {
        padding: 3rem 1.5rem;
    }

    .no-puppies-message h3 {
        font-size: 1.5rem;
    }

    .no-puppies-message p {
        font-size: 1rem;
    }

    .btn-contact-puppies {
        font-size: 0.95rem;
        padding: 0.85rem 1.75rem;
    }
}

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

    .puppy-card-image {
        height: 380px;
    }

    .puppy-card-body {
        padding: 1.15rem;
    }

    .puppy-card-name {
        font-size: 1.15rem;
        margin-bottom: 0.75rem;
    }

    .puppy-info-item {
        font-size: 0.7rem;
        padding: 0.3rem 0;
    }

    .puppy-card-btn {
        font-size: 0.8rem;
        padding: 0.65rem 1rem;
    }

    .puppy-gender-badge {
        width: 38px;
        height: 38px;
        font-size: 1rem;
        top: 10px;
        right: 10px;
    }

    .puppy-status-badge {
        font-size: 0.65rem;
        padding: 0.45rem 0.75rem;
        bottom: 10px;
        left: 10px;
    }

    .no-puppies-message {
        padding: 2.5rem 1rem;
    }

    .no-puppies-message h3 {
        font-size: 1.4rem;
    }

    .btn-contact-puppies {
        font-size: 0.9rem;
        padding: 0.75rem 1.5rem;
        width: 100%;
        justify-content: center;
    }
}