.animal-photo-carousel {
    width: 100%;
}

.animal-carousel-frame {
    position: relative;
}

.animal-carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    padding: 0;
    border: none;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    color: #2d3a2e;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.18);
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 2;
}

.animal-carousel-btn svg {
    width: 1.1rem;
    height: 1.1rem;
    display: block;
}

.animal-carousel-prev {
    left: 0.65rem;
}

.animal-carousel-next {
    right: 0.65rem;
}

.animal-photo-carousel:hover .animal-carousel-btn,
.pedigree-detail-carousel:hover .animal-carousel-btn {
    opacity: 1;
    pointer-events: auto;
}

.pedigree-detail-carousel {
    margin-bottom: 1rem;
}

.pedigree-detail-carousel .animal-carousel-frame {
    max-height: 280px;
    aspect-ratio: 4 / 3;
}

.pedigree-detail-shop {
    margin: 0 0 1rem;
    text-align: center;
}

.pedigree-detail-shop .animal-shop-link {
    display: inline-block;
}
