/* ========================================
   VARIABLES
======================================== */
:root {
    --gold: #C9A84C;
    --gold-light: #e0c068;
    --dark: #0a0a0a;
    --dark-2: #0d0d0d;
    --dark-3: #1a1a1a;
    --dark-4: #222222;
    --dark-card: #111111;
    --border-gold: rgba(201, 168, 76, 0.25);
    --border-subtle: rgba(255, 255, 255, 0.06);
    --text-muted: rgba(255, 255, 255, 0.45);
    --text-secondary: rgba(255, 255, 255, 0.65);
}

/* ========================================
   SECTION INTRO
======================================== */

.page-intro-section {
    padding: 1.5rem 0;
    background: var(--dark-2);
}

.specialty-text {
    width: 100%;
}

.specialty-box-inline {
    background: var(--dark-card);
    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;
}

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

.specialty-main p {
    color: var(--text-secondary);
    font-size: 0.88rem;
    line-height: 1.8;
    margin-bottom: 0.75rem;
}

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

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

@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;
    }
}

@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;
    }
}










/* ========================================
   SECTION FILTRES
======================================== */

.puppy-filters-section {
    padding: 1.5rem 0;
    background: var(--dark-2);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

/* Desktop */
.puppy-filters-desktop {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 1.25rem;
    background: var(--dark-card);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: 10px;
}

.puppy-filter-btn {
    display: inline-flex;
    align-items: center;
    padding: 0.4rem 0.9rem;
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
}

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

.puppy-filter-btn.active {
    background: rgba(201, 168, 76, 0.12);
    border-color: rgba(201, 168, 76, 0.4);
    color: var(--gold);
    font-weight: 600;
}

.puppy-filter-btn.male:hover,
.puppy-filter-btn.male.active {
    background: rgba(59, 130, 246, 0.15);
    border-color: rgba(59, 130, 246, 0.4);
    color: #60a5fa;
}

.puppy-filter-btn.female:hover,
.puppy-filter-btn.female.active {
    background: rgba(236, 72, 153, 0.15);
    border-color: rgba(236, 72, 153, 0.4);
    color: #f472b6;
}

.puppy-filter-separator {
    width: 1px;
    height: 20px;
    background: rgba(255, 255, 255, 0.1);
    margin: 0 0.25rem;
}

.puppy-filter-count {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-left: auto;
    font-size: 0.78rem;
    color: var(--text-muted);
}

.puppy-filter-count i {
    color: var(--gold);
    font-size: 0.72rem;
}

.puppy-filter-count strong {
    color: var(--gold);
    font-weight: 700;
}

/* Mobile */
.puppy-filters-mobile {
    display: none;
    position: relative;
    z-index: 100;
}

.puppy-filters-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.85rem 1.25rem;
    background: var(--dark-card);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 10px;
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    transition: all 0.3s ease;
}

.puppy-filters-toggle:hover {
    border-color: rgba(201, 168, 76, 0.4);
    color: var(--gold);
}

.puppy-filters-toggle-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.puppy-filters-toggle-left i {
    color: var(--gold);
    font-size: 0.85rem;
}

.puppy-filters-toggle > .fa-chevron-down {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.4);
    transition: transform 0.3s ease;
}

.puppy-filters-toggle.active > .fa-chevron-down {
    transform: rotate(180deg);
}

.puppy-filters-menu {
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    background: var(--dark-card);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 10px;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 100;
}

.puppy-filters-menu.active {
    max-height: 600px;
    opacity: 1;
    visibility: visible;
}

.puppy-filter-item {
    display: flex;
    align-items: center;
    padding: 0.85rem 1.25rem;
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.83rem;
    font-weight: 500;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s ease;
}

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

.puppy-filter-item i {
    color: var(--gold);
    font-size: 0.78rem;
}

.puppy-filter-item:hover {
    background: rgba(201, 168, 76, 0.06);
    color: var(--gold);
    padding-left: 1.75rem;
}

.puppy-filter-item.active {
    background: rgba(201, 168, 76, 0.08);
    color: var(--gold);
    font-weight: 600;
    border-left: 3px solid var(--gold);
}

.puppy-filter-item.male:hover {
    color: #60a5fa;
    background: rgba(59, 130, 246, 0.08);
}

.puppy-filter-item.female:hover {
    color: #f472b6;
    background: rgba(236, 72, 153, 0.08);
}

.puppy-filter-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201, 168, 76, 0.2), transparent);
    margin: 0.25rem 0;
}

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

@media (max-width: 991px) {
    .puppy-filters-desktop {
        display: none;
    }

    .puppy-filters-mobile {
        display: block;
    }
}

@media (max-width: 575px) {
    .puppy-filters-section {
        padding: 1.25rem 0;
    }

    .puppy-filters-toggle {
        padding: 0.75rem 1rem;
    }

    .puppy-filter-item {
        font-size: 0.8rem;
        padding: 0.75rem 1rem;
    }
}














/* ========================================
   SECTION GRILLE
======================================== */

.puppy-grid-section {
    padding: 2rem 0 4rem;
    background: var(--dark-2);
}

/* 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;
}

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

.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: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.label-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 2px;
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.2);
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
}

/* Carte chiot */
.puppy-card {
    background: var(--dark-card);
    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;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    z-index: 2;
}

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

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

.puppy-status-badge.in-reservation {
    background: rgba(251, 146, 60, 0.85);
    color: #fff;
}

.puppy-status-badge.reserved {
    background: rgba(148, 163, 184, 0.85);
    color: #fff;
}

/* 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-name a {
    color: #ffffff;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

.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: var(--text-muted);
}

/* 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);
}

/* Message vide */
.no-puppies-message {
    padding: 4rem 2rem;
    background: var(--dark-card);
    border: 1px solid rgba(201, 168, 76, 0.12);
    border-radius: 12px;
}

.no-puppies-message h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    color: #ffffff;
    margin-bottom: 0.75rem;
}

.no-puppies-message p {
    color: var(--text-muted);
    font-size: 0.88rem;
}

.btn-back-puppies {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.75rem;
    background: transparent;
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: 6px;
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

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

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

@media (max-width: 991px) {
    .puppy-grid-section {
        padding: 1.5rem 0 3rem;
    }

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

    .breed-section-title {
        font-size: 1.4rem;
    }

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

@media (max-width: 767px) {
    .puppy-grid-section {
        padding: 1.5rem 0 2.5rem;
    }

    .breed-section-title {
        font-size: 1.25rem;
    }

    .counter-number {
        font-size: 1.6rem;
    }

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

@media (max-width: 575px) {
    .puppy-grid-section {
        padding: 1.25rem 0 2rem;
    }

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

    .puppy-name {
        font-size: 0.95rem;
    }

    .puppy-info-item span {
        font-size: 0.75rem;
    }
}

@media (max-width: 399px) {
    .puppy-card-image {
        height: 280px;
    }

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












/* ========================================
   SECTION PAGINATION
======================================== */

.puppy-pagination-section {
    padding: 2rem 0 3rem;
    background: var(--dark-2);
}

.puppy-pagination-section .container {
    text-align: center;
}

.puppy-pagination {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem 0;
}

.puppy-pagination-item {
    display: inline-block;
}

.puppy-pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 42px;
    height: 42px;
    padding: 0 1rem;
    background: var(--dark-card);
    color: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.88rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.puppy-pagination-link:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: rgba(201, 168, 76, 0.35);
    color: var(--gold);
    transform: translateY(-2px);
}

.puppy-pagination-link.active {
    background: rgba(201, 168, 76, 0.15);
    border-color: rgba(201, 168, 76, 0.5);
    color: var(--gold);
    font-weight: 700;
    pointer-events: none;
}

.puppy-pagination-link.prev,
.puppy-pagination-link.next {
    padding: 0 1.1rem;
    border-color: rgba(201, 168, 76, 0.2);
    color: var(--gold);
}

.puppy-pagination-link.prev:hover,
.puppy-pagination-link.next:hover {
    background: rgba(201, 168, 76, 0.1);
    border-color: var(--gold);
}

.puppy-pagination-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 42px;
    height: 42px;
    color: rgba(255, 255, 255, 0.3);
    font-size: 1rem;
}

.puppy-pagination-info {
    display: inline-block;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.82rem;
    padding: 0.6rem 1.25rem;
    background: var(--dark-card);
    border: 1px solid rgba(255, 255, 255, 0.07);
    border-radius: 50px;
}

.puppy-pagination-info strong {
    color: var(--gold);
    font-weight: 700;
}

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

@media (max-width: 767px) {
    .puppy-pagination-section {
        padding: 1.5rem 0 2.5rem;
    }

    .puppy-pagination {
        gap: 0.4rem;
    }

    .puppy-pagination-link {
        min-width: 38px;
        height: 38px;
        font-size: 0.82rem;
        padding: 0 0.75rem;
    }

    .puppy-pagination-link.prev span,
    .puppy-pagination-link.next span {
        display: none;
    }

    .puppy-pagination-link.prev,
    .puppy-pagination-link.next {
        min-width: 38px;
        padding: 0 0.75rem;
    }

    .puppy-pagination-dots {
        min-width: 38px;
        height: 38px;
    }
}

@media (max-width: 575px) {
    .puppy-pagination-section {
        padding: 1.25rem 0 2rem;
    }

    .puppy-pagination-link {
        min-width: 34px;
        height: 34px;
        font-size: 0.78rem;
        padding: 0 0.6rem;
    }

    .puppy-pagination-info {
        font-size: 0.75rem;
        padding: 0.5rem 1rem;
    }
}











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

.puppy-cta-section {
    padding: 0 0 4rem;
    background: var(--dark-2);
}

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

.dog-cta-left {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex: 1;
    align-items: flex-start;
}

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

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

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

.btn-dog-cta-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 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;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

.btn-dog-cta-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.75rem 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;
    transition: all 0.3s ease;
    white-space: nowrap;
}

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

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

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

    .dog-cta-title {
        font-size: 1.4rem;
    }
}

@media (max-width: 767px) {
    .dog-cta-box {
        flex-direction: column;
        align-items: flex-start;
        padding: 2rem;
    }

    .dog-cta-left {
        align-items: center;
        width: 100%;
    }

    .dog-cta-title {
        text-align: center;
        font-size: 1.25rem;
    }

    .dog-cta-text {
        text-align: center;
        max-width: 100%;
    }

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

    .btn-dog-cta-primary,
    .btn-dog-cta-secondary {
        flex: 1;
    }
}

@media (max-width: 575px) {
    .puppy-cta-section {
        padding: 0 0 2.5rem;
    }

    .dog-cta-box {
        padding: 1.5rem;
    }

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

    .dog-cta-title {
        font-size: 1.15rem;
    }

    .dog-cta-text {
        font-size: 0.83rem;
    }
}



/* ========================================
   BREADCRUMB
======================================== */

.breed-breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.85rem;
    flex-wrap: wrap;
}

.breed-breadcrumb a {
    color: var(--text-muted);
    font-size: 0.78rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

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

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

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

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

@media (max-width: 575px) {
    .breed-breadcrumb {
        gap: 0.35rem;
    }

    .breed-breadcrumb a,
    .breed-breadcrumb span {
        font-size: 0.72rem;
    }
}


.puppy-sold-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.65rem;
    background: rgba(148, 163, 184, 0.1);
    border: 1px solid rgba(148, 163, 184, 0.25);
    border-radius: 50px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #94a3b8;
    flex-shrink: 0;
    white-space: nowrap;
}