/* SEXYHOUSE GIRL DETAIL CSS */
#sh-detail-container {
    max-width: 920px; margin: 30px auto; padding: 0 16px 40px; color: #f0f0f0;
}
#sh-girl-name { color: #c0607a; font-size: 3rem; text-align: center; margin-bottom: 10px; }
.sh-divider { border-color: #c0607a; opacity: 0.6; margin-bottom: 24px; }
#sh-slideshow {
    position: relative; max-width: 380px; margin: 0 auto 30px; background: #111;
}
.sh-slide { display: none; }
.sh-slide.active { display: block; }
.sh-slide img { width: 100%; aspect-ratio: 3/4; object-fit: cover; object-position: top; display: block; }
.sh-slide-num {
    position: absolute; top: 8px; left: 10px;
    background: rgba(0,0,0,0.55); color: #fff; font-size: 14px;
    padding: 2px 6px; border-radius: 3px; z-index: 2;
}
.sh-slide-btn {
    position: absolute; top: 50%; transform: translateY(-50%);
    background: rgba(0,0,0,0.5); color: #fff; border: none;
    font-size: 28px; padding: 10px 14px; cursor: pointer; z-index: 2; line-height: 1;
}
.sh-slide-btn:hover { background: rgba(192,96,122,0.7); }
.sh-prev { left: 0; }
.sh-next { right: 0; }
.sh-info-row { margin-bottom: 28px; }
.sh-section-title {
    color: #c0607a; font-size: 1.5rem; font-weight: 600;
    margin-bottom: 10px; border-bottom: 1px solid #3a1a25; padding-bottom: 4px;
}
.sh-info-table { width: 100%; border-collapse: collapse; }
.sh-info-table td {
    padding: 7px 10px; border-bottom: 1px solid #2e2e2e;
    font-size: 16px; vertical-align: top;
}
.sh-info-table td:first-child { color: #aaa; width: 38%; white-space: nowrap; }
.sh-info-table td:last-child { color: #f0f0f0; }
#sh-desc { color: #e0c0c8; font-size: 18px; line-height: 1.8; white-space: pre-line; }
.sh-gallery {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 6px; margin-top: 24px; margin-bottom: 24px;
}
@media (max-width: 576px) { .sh-gallery { grid-template-columns: repeat(2, 1fr); } }
.sh-gallery-item { overflow: hidden; aspect-ratio: 3/4; }
.sh-gallery-item img {
    width: 100%; height: 100%; object-fit: cover; object-position: top;
    cursor: pointer; transition: transform 0.25s, box-shadow 0.25s; display: block;
}
.sh-gallery-item img:hover { transform: scale(1.04); box-shadow: 0 0 12px rgba(192,96,122,0.5); }
.sh-back-wrap { text-align: center; margin-top: 28px; }
.sh-back-btn {
    display: inline-block; padding: 10px 28px;
    background-color: #333; color: #f0f0f0;
    border: 1px solid #c0607a; text-decoration: none;
    font-size: 16px; letter-spacing: 1px; transition: background 0.2s;
}
.sh-back-btn:hover { background-color: #c0607a; color: #fff; text-decoration: none; }
.sh-modal-overlay {
    display: none; position: fixed; inset: 0;
    background: rgba(0,0,0,0.92); z-index: 9999;
    justify-content: center; align-items: center;
}
.sh-modal-img { max-width: 88vw; max-height: 82vh; object-fit: contain; display: block; margin: auto; }
.sh-modal-close {
    position: fixed; top: 14px; right: 22px;
    color: #fff; font-size: 44px; cursor: pointer; line-height: 1; z-index: 10000;
}
.sh-modal-close:hover { color: #c0607a; }
.sh-modal-counter {
    position: fixed; top: 18px; left: 50%; transform: translateX(-50%);
    color: #ddd; font-size: 17px; z-index: 10000;
}
.sh-modal-overlay .sh-prev { left: 10px; }
.sh-modal-overlay .sh-next { right: 10px; }
