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

.puppy-filters-section {
    padding: 2rem 0 1.5rem 0;
    background: white;
}

/* VERSION DESKTOP - BOUTONS FINS */
.puppy-filters-desktop {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0.4rem;
    padding: 0.6rem 1rem;
    background: #f8f9fa;
    border-radius: 50px;
    border: 1px solid #e0e0e0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.puppy-stats-mini {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    padding: 0.25rem 0.6rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
}

.puppy-stats-mini i {
    font-size: 0.7rem;
}

.filter-dot {
    color: #ccc;
    font-size: 0.85rem;
    margin: 0 0.1rem;
}

.puppy-mini-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.25rem;
    padding: 0.3rem 0.7rem;
    background: white;
    color: #555;
    border: 1px solid #ddd;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
    text-decoration: none;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.puppy-mini-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-1px);
    box-shadow: 0 2px 8px rgba(101, 193, 120, 0.25);
}

.puppy-mini-btn i {
    font-size: 0.65rem;
}

.puppy-mini-btn.active {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    font-weight: 600;
}

.puppy-mini-btn.male:hover,
.puppy-mini-btn.male.active {
    background: #3498db;
    border-color: #3498db;
}

.puppy-mini-btn.female:hover,
.puppy-mini-btn.female.active {
    background: #e91e63;
    border-color: #e91e63;
}

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

/* ========================================
   SECTION GRILLE DES CHIOTS
======================================== */

.puppy-grid-section {
    padding: 3rem 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
    z-index: 1;
}

/* CARTE CHIOT */
.puppy-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
    z-index: 1;
}

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

/* IMAGE DU CHIOT */
.puppy-card-image {
    position: relative;
    height: 360px;
    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 Statut */
.puppy-status-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 0.3rem 0.75rem;
    border-radius: 50px;
    font-size: 0.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.4px;
    box-shadow: 0 3px 12px rgba(0, 0, 0, 0.2);
    z-index: 3;
    transition: transform 0.3s ease;
}

.puppy-card:hover .puppy-status-badge {
    transform: scale(1.05);
}

.puppy-status-badge.available {
    background: linear-gradient(135deg, var(--primary-color), #7ed492);
    color: white;
}

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

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

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

.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);
}

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

/* Race */
.puppy-card-race {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin-bottom: 0.85rem;
    padding-bottom: 0.85rem;
    border-bottom: 2px solid #f0f0f0;
}

.puppy-card-race i {
    color: var(--primary-color);
    font-size: 0.8rem;
}

.puppy-card-race a {
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: color 0.3s ease;
}

.puppy-card-race a:hover {
    color: #7ed492;
}

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

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

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

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

/* Prix */
.puppy-card-price {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem;
    background: linear-gradient(135deg, #f8f9fa, #e8f5e9);
    border-radius: 10px;
    margin-bottom: 1rem;
    border-left: 3px solid var(--primary-color);
}

.puppy-card-price i {
    font-size: 1rem;
    color: var(--primary-color);
}

.puppy-card-price span {
    font-family: 'Playfair Display', serif;
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--secondary-color);
}

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

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

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

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

/* MESSAGE AUCUN CHIOT */
.no-puppies-message {
    padding: 3rem 1.5rem;
}

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

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

.btn-back-puppies {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.85rem 1.75rem;
    background: linear-gradient(135deg, var(--primary-color), #7ed492);
    color: white;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 5px 18px rgba(101, 193, 120, 0.3);
}

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


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

.puppy-pagination-section {
    padding: 2.5rem 0;
    background: white;
}

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

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

/* Liens de pagination */
.puppy-pagination-link {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    min-width: 40px;
    height: 40px;
    padding: 0 0.85rem;
    background: white;
    color: var(--secondary-color);
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-weight: 600;
    font-size: 0.85rem;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
}

.puppy-pagination-link:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(101, 193, 120, 0.3);
}

/* Lien actif */
.puppy-pagination-link.active {
    background: linear-gradient(135deg, var(--primary-color), #7ed492);
    color: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(101, 193, 120, 0.35);
    pointer-events: none;
}

/* Boutons Précédent / Suivant */
.puppy-pagination-link.prev,
.puppy-pagination-link.next {
    padding: 0 1.1rem;
}

.puppy-pagination-link.prev i {
    margin-right: 0.4rem;
}

.puppy-pagination-link.next i {
    margin-left: 0.4rem;
}

/* Points de suspension */
.puppy-pagination-dots {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 40px;
    height: 40px;
    color: #999;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Info pagination */
.puppy-pagination-info {
    text-align: center;
    color: #666;
    font-size: 0.85rem;
    padding: 0.85rem;
    background: #f8f9fa;
    border-radius: 10px;
    display: inline-block;
    margin: 0 auto;
}

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

/* Centrer l'info */
.puppy-pagination-section .container {
    text-align: center;
}

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

.puppy-cta-section {
    padding: 4rem 0;
    background: white;
}

.puppy-cta-box {
    background: linear-gradient(135deg, var(--secondary-color) 0%, #1a2416 100%);
    padding: 4rem 2.5rem;
    border-radius: 25px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.2);
}

/* Animation de fond */
.puppy-cta-box::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(101, 193, 120, 0.2) 0%, transparent 70%);
    animation: pulse-puppy-cta 4s ease-in-out infinite;
}

@keyframes pulse-puppy-cta {
    0%, 100% { 
        transform: scale(1); 
        opacity: 0.5; 
    }
    50% { 
        transform: scale(1.1); 
        opacity: 0.8; 
    }
}

/* Icône flottante */
.puppy-cta-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem auto;
    border-radius: 50%;
    background: linear-gradient(135deg, #e74c3c, #c0392b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    box-shadow: 0 10px 30px rgba(231, 76, 60, 0.4);
    position: relative;
    z-index: 2;
    animation: float-icon 3s ease-in-out infinite;
}

@keyframes float-icon {
    0%, 100% { 
        transform: translateY(0); 
    }
    50% { 
        transform: translateY(-10px); 
    }
}

.puppy-cta-content {
    position: relative;
    z-index: 2;
}

.puppy-cta-title {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1.25rem;
    line-height: 1.3;
}

.puppy-cta-text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    max-width: 650px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.btn-puppy-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 1.1rem 2.5rem;
    background: var(--primary-color);
    color: white;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    text-decoration: none;
    box-shadow: 0 8px 25px rgba(101, 193, 120, 0.4);
    transition: all 0.4s ease;
    position: relative;
    z-index: 3;
}

.btn-puppy-cta:hover {
    background: #7ed492;
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(101, 193, 120, 0.5);
    color: white;
}

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

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

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

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

    .puppy-pagination-link.prev,
    .puppy-pagination-link.next {
        padding: 0 1rem;
    }

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

    .puppy-pagination-info {
        font-size: 0.7rem;
    }

    .puppy-cta-section {
        padding: 3.5rem 0;
    }

    .puppy-cta-box {
        padding: 3.5rem 2rem;
        border-radius: 22px;
    }

    .puppy-cta-icon {
        width: 70px;
        height: 70px;
        font-size: 1.6rem;
        margin-bottom: 1.75rem;
    }

    .puppy-cta-title {
        font-size: 1.6rem;
    }

    .puppy-cta-text {
        font-size: 0.9rem;
    }

    .btn-puppy-cta {
        font-size: 0.9rem;
        padding: 1rem 2.25rem;
    }
}

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

    .puppy-pagination {
        gap: 0.35rem;
        margin-bottom: 1rem;
    }

    .puppy-pagination-link {
        min-width: 36px;
        height: 36px;
        font-size: 0.7rem;
        padding: 0 0.65rem;
    }

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

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

    .puppy-pagination-dots {
        min-width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

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

    .puppy-cta-section {
        padding: 3rem 0;
    }

    .puppy-cta-box {
        padding: 3rem 1.75rem;
        border-radius: 20px;
    }

    .puppy-cta-icon {
        width: 55px;
        height: 55px;
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .puppy-cta-title {
        font-size: 1.1rem;
        margin-bottom: 1rem;
    }

    .puppy-cta-text {
        font-size: 0.75rem;
        margin-bottom: 1.75rem;
    }

    .btn-puppy-cta {
        font-size: 0.9rem;
        padding: 0.9rem 2rem;
    }
}

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

    .puppy-pagination {
        gap: 0.3rem;
        margin-bottom: 0.85rem;
    }

    .puppy-pagination-link {
        min-width: 34px;
        height: 34px;
        font-size: 0.7rem;
        padding: 0 0.55rem;
        border-radius: 8px;
    }

    .puppy-pagination-link.prev,
    .puppy-pagination-link.next {
        min-width: 34px;
    }

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

    .puppy-pagination-info {
        font-size: 0.7rem;
        padding: 0.65rem;
        border-radius: 8px;
    }

    .puppy-cta-section {
        padding: 2.5rem 0;
    }

    .puppy-cta-box {
        padding: 2.5rem 1.5rem;
        border-radius: 18px;
    }

    .puppy-cta-icon {
        width: 60px;
        height: 60px;
        font-size: 1.4rem;
        margin-bottom: 1.25rem;
    }

    .puppy-cta-title {
        font-size: 1rem;
        margin-bottom: 0.85rem;
    }

    .puppy-cta-text {
        font-size: 0.7rem;
        margin-bottom: 1.5rem;
    }

    .btn-puppy-cta {
        width: 100%;
        justify-content: center;
        font-size: 0.9rem;
        padding: 0.85rem 1.75rem;
    }
}

/* ========================================
   RESPONSIVE - TRÈS PETITS MOBILES
======================================== */
@media (max-width: 400px) {
    .puppy-pagination-link {
        min-width: 32px;
        height: 32px;
        font-size: 0.65rem;
    }

    .puppy-pagination-link.prev,
    .puppy-pagination-link.next {
        min-width: 32px;
    }

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

    .puppy-cta-box {
        padding: 2rem 1.25rem;
    }

    .puppy-cta-icon {
        width: 55px;
        height: 55px;
        font-size: 1.3rem;
    }

    .puppy-cta-title {
        font-size: 1.1rem;
    }

    .puppy-cta-text {
        font-size: 0.7rem;
    }

    .btn-puppy-cta {
        font-size: 0.8rem;
        padding: 0.7rem 1.4rem;
    }
}

















/* -------------------------------------------------------------------------------------------------------------------------- */


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



/* VERSION MOBILE MENU - BOUTON TOGGLE + MENU */
@media (max-width: 991px) {
    .puppy-filters-desktop {
        display: none;
    }

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

    .puppy-filters-toggle {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0.65rem 1.05rem;
        background: linear-gradient(135deg, var(--primary-color), #7ed492);
        color: white;
        border: none;
        border-radius: 12px;
        font-size: 0.8rem;
        font-weight: 700;
        cursor: pointer;
        transition: all 0.3s ease;
        box-shadow: 0 4px 15px rgba(101, 193, 120, 0.3);
    }

    .puppy-filters-toggle:hover {
        transform: translateY(-2px);
        box-shadow: 0 6px 20px rgba(101, 193, 120, 0.4);
    }

    .puppy-filters-toggle i {
        font-size: 0.9rem;
        transition: transform 0.3s ease;
    }

    .puppy-filters-toggle.active i {
        transform: rotate(180deg);
    }

    .puppy-filters-menu {
        position: absolute;
        top: calc(100% + 0.5rem);
        left: 0;
        right: 0;
        background: white;
        border-radius: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
        overflow: hidden;
        max-height: 0;
        opacity: 0;
        visibility: hidden;
        transition: all 0.3s ease;
        z-index: 200;
    }

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

    .puppy-filter-item {
        display: block;
        padding: 0.85rem 1.25rem;
        color: var(--secondary-color);
        text-decoration: none;
        font-size: 0.75rem;
        font-weight: 500;
        border-bottom: 1px solid #f0f0f0;
        transition: all 0.2s ease;
    }

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

    .puppy-filter-item:hover {
        background: #f8f9fa;
        padding-left: 1.75rem;
    }

    .puppy-filter-item.active {
        background: linear-gradient(90deg, rgba(101, 193, 120, 0.1), transparent);
        color: var(--primary-color);
        font-weight: 700;
        border-left: 4px solid var(--primary-color);
    }

    .puppy-filter-divider {
        height: 2px;
        background: linear-gradient(90deg, transparent, var(--primary-color), transparent);
        margin: 0.4rem 0;
    }
}


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

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

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

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

    .puppy-card-race {
        font-size: 0.85rem;
        margin-bottom: 0.75rem;
        padding-bottom: 0.75rem;
    }

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

    .puppy-card-price {
        padding: 0.75rem;
        margin-bottom: 0.95rem;
    }

    .puppy-card-price span {
        font-size: 1.15rem;
    }

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

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

    .puppy-grid-section {
        padding: 2rem 0;
    }

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

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

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

    .puppy-card-race {
        font-size: 0.8rem;
        margin-bottom: 0.65rem;
        padding-bottom: 0.65rem;
    }

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

    .puppy-card-price {
        padding: 0.65rem;
        margin-bottom: 0.85rem;
    }

    .puppy-card-price i {
        font-size: 0.95rem;
    }

    .puppy-card-price span {
        font-size: 1.1rem;
    }

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

    .puppy-status-badge {
        font-size: 0.55rem;
        padding: 0.35rem 0.75rem;
        top: 10px;
        left: 10px;
    }

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

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

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

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

    .btn-back-puppies {
        font-size: 0.85rem;
        padding: 0.75rem 1.5rem;
    }
}

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

    .puppy-grid-section {
        padding: 1.75rem 0;
    }

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

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

    .puppy-card-name {
        font-size: 1.05rem;
        margin-bottom: 0.5rem;
    }

    .puppy-card-race {
        font-size: 0.75rem;
        margin-bottom: 0.6rem;
        padding-bottom: 0.6rem;
    }

    .puppy-info-item {
        font-size: 0.65rem;
        padding: 0.2rem 0;
    }

    .puppy-card-price {
        padding: 0.6rem;
        margin-bottom: 0.8rem;
    }

    .puppy-card-price i {
        font-size: 0.85rem;
    }

    .puppy-card-price span {
        font-size: 1rem;
    }

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

    .puppy-status-badge {
        font-size: 0.5rem;
        padding: 0.3rem 0.65rem;
        top: 8px;
        left: 8px;
    }

    .puppy-gender-badge {
        width: 34px;
        height: 34px;
        font-size: 0.95rem;
        top: 8px;
        right: 8px;
    }

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

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

    .btn-back-puppies {
        font-size: 0.8rem;
        padding: 0.65rem 1.35rem;
    }
}