.puppies-page {
    max-width: 1100px;
    margin: auto;
    padding: 2rem;
}

.puppies-page h1 {
    text-align: center;
    margin-bottom: 2rem;
    color: #333;
}

.puppy-row {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.puppy-row.reverse {
    flex-direction: row-reverse;
}

.puppy-gallery {
    width: 100%;
    max-width: 500px; /* omezení šířky galerie */
}

.puppy-gallery img {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Měkčí stín */
}

.puppy-info h2 {
    font-size: 1.8rem;
    margin-bottom: 1rem;
    color: #333;
}

.status {
    font-size: 0.9rem;
    padding: 0.3rem 0.7rem;
    border-radius: 6px;
    margin-left: 0.5rem;
}

.status.available {
    background: #28a745;
    color: white;
}

.status.reserved {
    background: #ffc107;
    color: #333;
}

.status.sold {
    background: #dc3545;
    color: white;
}

.puppy-info p {
    color: #555;
    line-height: 1.6;
}

/* Mobilní úpravy */
@media (max-width: 768px) {
    .puppy-row,
    .puppy-row.reverse {
        flex-direction: column;
    }
}

.puppy-section {
    margin-bottom: 40px; /* defaultní mezera mezi štěňaty */
}

@media (max-width: 768px) {
    .puppy-section {
        margin-bottom: 70px; /* přehledná, ale ne obrovská mezera */
        padding-bottom: 20px;
        border-bottom: 2px solid rgba(0, 0, 0, 0.08); /* jemná oddělovací čára */
    }
}


