/* ========================================
   BLOC INTRO SPECIALTY
======================================== */

.page-intro-section {
    padding: 1.5rem 0;
    background: #0d0d0d;
}

.specialty-text {
    width: 100%;
}

.specialty-box-inline {
    background: #111111;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    width: 100%;
    box-sizing: border-box;
}

.specialty-top-bar {
    height: 3px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
    margin-bottom: 1.5rem;
}

.specialty-grid {
    display: flex;
    gap: 3rem;
    align-items: flex-start;
}

.specialty-main {
    flex: 1;
    min-width: 0;
}

.specialty-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 1rem;
}

.specialty-main p {
    color: rgba(255,255,255,0.65);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

.specialty-main p:last-child {
    margin-bottom: 0;
}

.specialty-stats {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    flex-shrink: 0;
}

.specialty-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    min-width: 80px;
}

.specialty-stat i {
    color: var(--gold);
    font-size: 1.3rem;
}

.specialty-stat .stat-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1;
}

.specialty-stat .stat-label {
    font-size: 0.7rem;
    color: rgba(255,255,255,0.45);
    text-align: center;
}

.text-gold {
    color: var(--gold);
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 991px) {
    .page-intro-section { padding: 3rem 0; }
    .specialty-box-inline { padding: 2rem; }
    .specialty-grid { gap: 2rem; }
}

@media (max-width: 767px) {
    .page-intro-section { padding: 2.5rem 0; }
    .specialty-box-inline { padding: 1.5rem; }

    .specialty-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .specialty-stats {
        flex-direction: row;
        justify-content: center;
        gap: 2rem;
    }
}

@media (max-width: 575px) {
    .page-intro-section { padding: 2rem 0; }
    .specialty-box-inline { padding: 1.25rem; }
    .specialty-title { font-size: 1.3rem; }
    .specialty-main p { font-size: 0.83rem; }
}

/* ========================================
   GRILLE DES RACES
======================================== */

.races-grid-section {
    padding: 3rem 0 5rem;
    background: #0d0d0d;
}

/* Carte */
.race-card-detail {
    background: #111111;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.race-card-detail:hover {
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(201, 168, 76, 0.08);
}

/* Image */
.race-card-detail-image {
    position: relative;
    height: 380px;
    overflow: hidden;
}

.race-card-detail-image a {
    display: block;
    height: 100%;
}

.race-card-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.7s ease;
}

.race-card-detail:hover .race-card-detail-image img {
    transform: scale(1.06);
}

.race-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 50%);
}

/* Numéro */
.race-position-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    z-index: 2;
}

.race-number {
    font-family: 'Playfair Display', serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.12);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 0.25rem 0.65rem;
    border-radius: 50px;
    backdrop-filter: blur(10px);
}

/* Nom sur image */
.race-name-overlay {
    position: absolute;
    bottom: 14px;
    left: 14px;
    z-index: 2;
}

.race-name-overlay h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-shadow: 0 2px 8px rgba(0,0,0,0.5);
}

/* Corps */
.race-card-detail-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.race-card-detail-description {
    color: rgba(255,255,255,0.6);
    font-size: 0.83rem;
    line-height: 1.7;
    margin: 0;
    flex: 1;
}

/* Séparateur */
.race-card-divider {
    height: 1px;
    background: linear-gradient(90deg, rgba(201,168,76,0.3), transparent);
}

/* Actions */
.race-card-detail-actions {
    display: flex;
    gap: 0.75rem;
}

.btn-race-detail-primary,
.btn-race-detail-secondary {
    flex: 1;
    padding: 0.6rem 1rem;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.8rem;
    text-align: center;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.btn-race-detail-primary {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
}

.btn-race-detail-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
    color: #000;
}

.btn-race-detail-secondary {
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.15);
}

.btn-race-detail-secondary:hover {
    border-color: rgba(201, 168, 76, 0.4);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

/* Message vide */
.no-races-message h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 0.5rem;
}

.no-races-message p {
    color: rgba(255,255,255,0.35);
    font-size: 0.85rem;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 991px) {
    .races-grid-section { padding: 2.5rem 0 4rem; }
    .race-card-detail-image { height: 350px; }
}

@media (max-width: 767px) {
    .races-grid-section { padding: 2rem 0 3rem; }
    .race-card-detail-image { height: 330px; }
    .race-name-overlay h3 { font-size: 1.15rem; }
    .race-card-detail-actions { flex-direction: column; }
    .btn-race-detail-primary,
    .btn-race-detail-secondary { width: 100%; }
}

@media (max-width: 575px) {
    .race-card-detail-image { height: 310px; }
    .race-name-overlay h3 { font-size: 1.05rem; }
    .race-card-detail-body { padding: 1rem; }
    .race-card-detail-description { font-size: 0.8rem; }
    .btn-race-detail-primary,
    .btn-race-detail-secondary { font-size: 0.78rem; padding: 0.55rem 0.85rem; }
}

/* ========================================
   SECTION CTA
======================================== */

.races-cta-section {
    padding: 0 0 5rem;
    background: #0d0d0d;
}

.races-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    background: #111111;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-top: 3px solid var(--gold);
    border-radius: 12px;
    padding: 2.5rem;
}

.races-cta-left {
    flex: 1;
}

.races-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0.5rem 0 0.75rem;
    line-height: 1.3;
}

.races-cta-text {
    color: rgba(255,255,255,0.6);
    font-size: 0.87rem;
    line-height: 1.7;
    margin: 0;
}

.races-cta-right {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-shrink: 0;
}

.btn-races-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.75rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-races-cta-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.3);
    color: #000;
}

.btn-races-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.7rem 1.75rem;
    background: transparent;
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.3s ease;
}

.btn-races-cta-secondary:hover {
    border-color: rgba(201, 168, 76, 0.4);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.05);
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 991px) {
    .races-cta-section { padding: 0 0 3.5rem; }
    .races-cta-box { padding: 2rem; }
    .races-cta-title { font-size: 1.3rem; }
}

@media (max-width: 767px) {
    .races-cta-section { padding: 0 0 3rem; }

    .races-cta-box {
        flex-direction: column;
        text-align: center;
        padding: 1.75rem;
        gap: 1.5rem;
    }

    .races-cta-right {
        flex-direction: row;
        width: 100%;
    }

    .btn-races-cta-primary,
    .btn-races-cta-secondary {
        flex: 1;
        font-size: 0.82rem;
        padding: 0.65rem 1rem;
    }
}

@media (max-width: 575px) {
    .races-cta-title { font-size: 1.2rem; }
    .races-cta-text { font-size: 0.83rem; }

    .races-cta-right {
        flex-direction: column;
    }

    .btn-races-cta-primary,
    .btn-races-cta-secondary {
        width: 100%;
    }
}

/* ========================================
   HERO BREED DETAIL - OPTION A
======================================== */

.breed-hero-section {
    position: relative;
    height: 750px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
    margin-bottom: -1px;
}

.breed-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 0.7s ease;
}

.breed-hero-section:hover .breed-hero-bg {
    transform: scale(1.04);
}

.breed-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.2) 0%,
        rgba(0,0,0,0.5) 40%,
        #0d0d0d 85%,
        #0d0d0d 100%
    );
    z-index: 1;
}

.breed-hero-content {
    position: relative;
    z-index: 2;
    padding-bottom: 3rem;
    width: 100%;
}

/* Breadcrumb */
.breed-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.breed-breadcrumb a {
    color: rgba(255,255,255,0.5);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 500;
    transition: color 0.3s ease;
}

.breed-breadcrumb a:hover {
    color: var(--gold);
}

.breed-breadcrumb span {
    color: var(--gold);
    font-size: 0.78rem;
    font-weight: 600;
}

.breed-breadcrumb i {
    color: rgba(255,255,255,0.25);
    font-size: 0.6rem;
}

/* Titre */
.breed-hero-title {
    font-family: 'Playfair Display', serif;
    font-size: 3.5rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Navigation */
.breed-hero-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.breed-nav-btn {
    padding: 0.45rem 1rem;
    background: rgba(255,255,255,0.07);
    color: rgba(255,255,255,0.7);
    border: 1px solid rgba(255,255,255,0.15);
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.78rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.breed-nav-btn:hover {
    background: rgba(201, 168, 76, 0.15);
    border-color: rgba(201, 168, 76, 0.5);
    color: var(--gold);
}

.breed-nav-btn i { font-size: 0.72rem; }

/* Offset ancres */
#description,
#photos,
#reproducteurs,
#chiots {
    scroll-margin-top: 100px;
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 991px) {
    .breed-hero-section { height: 680px; }
    .breed-hero-title { font-size: 2.8rem; }
}

@media (max-width: 767px) {
    .breed-hero-section {
        height: 440px;
        overflow: visible;
        background-color: #0d0d0d;
    }

    .breed-hero-bg { bottom: -4px; }

    .breed-hero-overlay {
        bottom: -8px;
        background: linear-gradient(
            to bottom,
            rgba(0,0,0,0.2) 0%,
            rgba(0,0,0,0.5) 35%,
            #0d0d0d 78%,
            #0d0d0d 100%
        );
    }

    .breed-hero-title { font-size: 2.2rem; letter-spacing: 1px; }
    .breed-hero-content { padding-bottom: 1.5rem; }
    .breed-hero-nav { gap: 0.4rem; }
    .breed-nav-btn { font-size: 0.73rem; padding: 0.4rem 0.85rem; }

    #description,
    #photos,
    #reproducteurs,
    #chiots { scroll-margin-top: 80px; }
}

@media (max-width: 575px) {
    .breed-hero-section { height: 400px; }
    .breed-hero-title { font-size: 1.8rem; }
    .breed-breadcrumb { display: none; }
}

/* ========================================
   SECTION INTRO DESCRIPTION - OPTION C
======================================== */

.breed-intro-section {
    padding: 0 0 4rem;
    background: #0d0d0d;
    margin-top: 10px;
}

.breed-intro-box {
    display: flex;
    align-items: stretch;
    gap: 0;
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 12px;
    overflow: hidden;
    background: #111111;
}

/* Grande lettre gauche */
.breed-intro-letter {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 120px;
    flex-shrink: 0;
    background: rgba(201, 168, 76, 0.06);
    border-right: 1px solid rgba(201, 168, 76, 0.15);
    font-family: 'Playfair Display', serif;
    font-size: 7rem;
    font-weight: 700;
    color: rgba(201, 168, 76, 0.25);
    line-height: 1;
    user-select: none;
}

/* Contenu droite */
.breed-intro-content {
    flex: 1;
    padding: 2rem 2.5rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.5rem;
}

.breed-intro-text {
    color: rgba(255,255,255,0.7);
    font-size: 0.9rem;
    line-height: 1.9;
    margin: 0;
    white-space: pre-line;
}

.breed-intro-footer {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.breed-intro-footer .gold-divider {
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 2px;
}

.breed-intro-name {
    font-family: 'Playfair Display', serif;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    white-space: nowrap;
    flex-shrink: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .breed-intro-letter { width: 90px; font-size: 5rem; }
    .breed-intro-content { padding: 1.75rem 2rem; }
}

@media (max-width: 767px) {
    .breed-intro-section { padding: 0 0 3rem; }
    .breed-intro-letter { width: 70px; font-size: 4rem; }
    .breed-intro-content { padding: 1.5rem; }
    .breed-intro-text { font-size: 0.85rem; }
}

@media (max-width: 575px) {
    .breed-intro-box { flex-direction: column; }
    .breed-intro-letter {
        width: 100%;
        height: 70px;
        font-size: 3.5rem;
        border-right: none;
        border-bottom: 1px solid rgba(201, 168, 76, 0.15);
    }
    .breed-intro-content { padding: 1.25rem; }
    .breed-intro-text { font-size: 0.83rem; }
    .breed-intro-name { font-size: 0.75rem; letter-spacing: 2px; }
}

/* ========================================
   SECTION PARAGRAPHES - ACCORDÉON
======================================== */

.breed-content-section {
    padding: 0 0 4rem;
    background: #0d0d0d;
}

.breed-accordion {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.breed-accordion-item {
    background: #111111;
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 10px;
    overflow: hidden;
    transition: border-color 0.3s ease;
}

.breed-accordion-item.active {
    border-color: rgba(201, 168, 76, 0.35);
}

/* Header */
.breed-accordion-header {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    background: transparent;
    border: none;
    cursor: pointer;
    gap: 1rem;
    transition: background 0.3s ease;
}

.breed-accordion-header:hover {
    background: rgba(201, 168, 76, 0.04);
}

.breed-accordion-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.breed-accordion-number {
    font-family: 'Playfair Display', serif;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 0.2rem 0.6rem;
    border-radius: 50px;
    flex-shrink: 0;
}

.breed-accordion-title {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: rgba(255,255,255,0.85);
    text-align: left;
    line-height: 1.3;
}

.breed-accordion-item.active .breed-accordion-title {
    color: #ffffff;
}

/* Icône */
.breed-accordion-icon {
    width: 28px;
    height: 28px;
    background: rgba(201, 168, 76, 0.08);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.breed-accordion-icon i {
    color: var(--gold);
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.breed-accordion-item.active .breed-accordion-icon {
    background: rgba(201, 168, 76, 0.15);
}

.breed-accordion-item.active .breed-accordion-icon i {
    transform: rotate(45deg);
}

/* Body */
.breed-accordion-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
}

.breed-accordion-item.active .breed-accordion-body {
    max-height: 2000px;
}

.breed-content-text {
    padding: 0 1.5rem 1.5rem;
    color: rgba(255,255,255,0.65);
    font-size: 0.87rem;
    line-height: 1.9;
    white-space: pre-line;
}

.breed-content-text a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 600;
    transition: opacity 0.3s ease;
}

.breed-content-text a:hover {
    opacity: 0.8;
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 767px) {
    .breed-content-section { padding: 0 0 3rem; }
    .breed-accordion-header { padding: 1rem 1.25rem; }
    .breed-accordion-title { font-size: 0.88rem; }
    .breed-content-text { padding: 0 1.25rem 1.25rem; font-size: 0.83rem; }
}

@media (max-width: 575px) {
    .breed-accordion-header { padding: 0.9rem 1rem; }
    .breed-content-text { padding: 0 1rem 1rem; }
    .breed-accordion-title { font-size: 0.83rem; }
}

/* ========================================
   SECTION GALERIE PHOTOS
======================================== */

.breed-gallery-section {
    padding: 0 0 4rem;
    background: #0d0d0d;
}

/* Header */
.breed-section-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid rgba(201, 168, 76, 0.15);
}

.breed-section-header-left {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.breed-section-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.6rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    line-height: 1.2;
}

.breed-gallery-counter {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.1rem;
    flex-shrink: 0;
}

.counter-number {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.counter-label {
    font-size: 0.72rem;
    color: rgba(255,255,255,0.35);
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* Grille */
.breed-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

/* Item */
.breed-gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(201, 168, 76, 0.1);
    aspect-ratio: 1 / 1;
    cursor: pointer;
}

.breed-gallery-item a {
    display: block;
    width: 100%;
    height: 100%;
}

.breed-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.breed-gallery-item:hover img {
    transform: scale(1.08);
}

/* Hover overlay */
.breed-gallery-hover {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        transparent 40%,
        rgba(0,0,0,0.85) 100%
    );
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    padding: 0.85rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.breed-gallery-item:hover .breed-gallery-hover {
    opacity: 1;
}

.gallery-item-number {
    font-family: 'Playfair Display', serif;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--gold);
    background: rgba(201, 168, 76, 0.15);
    border: 1px solid rgba(201, 168, 76, 0.3);
    padding: 0.2rem 0.55rem;
    border-radius: 50px;
}

.breed-gallery-hover i {
    color: rgba(255,255,255,0.8);
    font-size: 0.85rem;
}

/* Responsive */
@media (max-width: 991px) {
    .breed-gallery-section { padding: 0 0 3rem; }
    .breed-gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 0.6rem; }
    .breed-section-title { font-size: 1.4rem; }
}

@media (max-width: 767px) {
    .breed-gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .breed-section-title { font-size: 1.25rem; }
    .counter-number { font-size: 1.6rem; }
}

@media (max-width: 575px) {
    .breed-gallery-section { padding: 0 0 2.5rem; }
    .breed-gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 0.5rem; }
    .breed-section-title { font-size: 1.15rem; }
    .breed-gallery-hover { padding: 0.6rem; }
    .gallery-item-number { font-size: 0.7rem; }
}

/* ========================================
   SECTION REPRODUCTEURS
======================================== */

.breed-animals-section {
    padding: 0 0 4rem;
    background: #0d0d0d;
}

/* Carte chien */
.dog-card {
    background: #0d0d0d;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.dog-card:hover {
    border-color: rgba(201, 168, 76, 0.5);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(201, 168, 76, 0.08);
}

/* Image */
.dog-card-image {
    position: relative;
    overflow: hidden;
    height: 350px;
}

.dog-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.6s ease;
    display: block;
}

.dog-card:hover .dog-card-image img {
    transform: scale(1.06);
}

/* Badge genre */
.dog-gender-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: white;
    z-index: 2;
}

.dog-gender-badge.male {
    background: linear-gradient(135deg, #3B82F6, #2563EB);
}

.dog-gender-badge.female {
    background: linear-gradient(135deg, #EC4899, #DB2777);
}

/* Overlay hover */
.dog-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.75);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.dog-card:hover .dog-card-overlay {
    opacity: 1;
}

.btn-view-dog {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
    padding: 0.7rem 1.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.dog-card:hover .btn-view-dog {
    transform: translateY(0);
}

.btn-view-dog:hover {
    color: #000;
    box-shadow: 0 6px 20px rgba(201, 168, 76, 0.4);
}

/* Corps carte */
.dog-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: #0d0d0d;
}

.dog-card-top-bar {
    height: 2px;
    background: linear-gradient(90deg, var(--gold), transparent);
    margin-bottom: 1rem;
    border-radius: 2px;
}

.dog-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 0.85rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Infos */
.dog-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.dog-info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.dog-info-item:last-child {
    border-bottom: none;
}

.dog-info-item i {
    color: var(--gold);
    font-size: 0.8rem;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.dog-info-item span {
    color: rgba(255,255,255,0.65);
    font-size: 0.82rem;
    font-weight: 500;
}

/* Bouton voir tous */
.btn-see-all-dogs {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2.5rem;
    background: transparent;
    color: var(--gold);
    border: 1px solid rgba(201, 168, 76, 0.4);
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-see-all-dogs:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

/* Responsive */
@media (max-width: 991px) {
    .our-dogs-section { padding: 3.5rem 0; }
    .dog-card-image { aspect-ratio: 4/5; }
}

@media (max-width: 767px) {
    .our-dogs-section { padding: 3rem 0; }
    .dog-card-image { aspect-ratio: 1/1; }
    .dog-card-overlay { opacity: 1; background: linear-gradient(to bottom, transparent 50%, rgba(0,0,0,0.85) 100%); }
    .btn-view-dog { transform: translateY(0); }
}

@media (max-width: 575px) {
    .dog-name { font-size: 1.1rem; }
    .dog-info-item span { font-size: 0.78rem; }
}

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

.breed-puppies-section {
    padding: 1rem 0;
    background: #0d0d0d;
}

/* Carte chiot */
.puppy-card {
    background: #111111;
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.4s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.puppy-card:hover {
    border-color: rgba(201, 168, 76, 0.45);
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(201, 168, 76, 0.08);
}

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

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

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

/* Badge statut */
.puppy-status-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    width: fit-content;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 700;
    z-index: 2;
}

.puppy-status-badge.available {
    background: rgba(34,197,94,0.85);
    color: #fff;
}

.puppy-status-badge.for-sale {
    background: rgba(201, 168, 76, 0.9);
    color: #000;
}

/* Badge genre */
.puppy-gender-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    color: white;
    z-index: 2;
}

.puppy-gender-badge.male { background: rgba(59,130,246,0.9); }
.puppy-gender-badge.female { background: rgba(236,72,153,0.9); }

/* Overlay hover */
.puppy-card-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 3;
}

.puppy-card:hover .puppy-card-overlay {
    opacity: 1;
}

.btn-view-puppy {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: #000;
    padding: 0.65rem 1.5rem;
    border-radius: 6px;
    font-weight: 700;
    font-size: 0.85rem;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    transform: translateY(10px);
    transition: all 0.3s ease;
}

.puppy-card:hover .btn-view-puppy {
    transform: translateY(0);
}

/* Corps carte */
.puppy-card-body {
    padding: 1.25rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

/* Header nom + prix */
.puppy-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.5rem;
    padding-bottom: 0.85rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.puppy-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.puppy-price-tag {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--gold);
    white-space: nowrap;
    flex-shrink: 0;
}

.puppy-price-tag.consult {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.5);
}

/* Infos */
.puppy-info {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    flex: 1;
}

.puppy-info-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.35rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.04);
}

.puppy-info-item:last-child {
    border-bottom: none;
}

.puppy-info-item i {
    color: var(--gold);
    font-size: 0.78rem;
    width: 14px;
    text-align: center;
    flex-shrink: 0;
}

.puppy-info-item span {
    color: rgba(255,255,255,0.65);
    font-size: 0.8rem;
    font-weight: 500;
}

/* Bouton fiche */
.btn-puppy-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem;
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 6px;
    color: var(--gold);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: auto;
}

.btn-puppy-cta:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
    color: var(--gold);
}

/* ========================================
   RESPONSIVE
======================================== */

@media (max-width: 991px) {
    .breed-puppies-section { padding: 3.5rem 0; }

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

    .puppy-card-overlay {
    display: none;
    }
}

@media (max-width: 767px) {
    .breed-puppies-section { padding: 3rem 0; }
    .puppy-card-image { height: 310px; }

    .puppy-card-overlay {
    display: none;
    }

    /* Overlay visible sur mobile */
    .puppy-card-overlay {
        opacity: 1;
        background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, transparent 50%);
        align-items: flex-end;
        padding-bottom: 1rem;
    }

    .btn-view-puppy { transform: translateY(0); }
}

@media (max-width: 575px) {
    .puppy-card-image { height: 300px; }
    .puppy-name { font-size: 1rem; }
    .puppy-info-item span { font-size: 0.78rem; }

    .puppy-card-overlay {
    display: none;
    }
}