/* ============================================================
   StreetNightGirls – DETAILS PAGE STYLES (details.css)
   Glassmorphism design — glass panels for profile layout.
   Shared/global styles are in index.css.
   ============================================================ */

/* ===== PROFILE BOX LAYOUT ===== */
.profile-box {
    max-width: 1100px;
    margin: 20px auto;
    padding: 0 16px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 850px) {
    .profile-box {
        display: block;
        padding: 0 12px;
    }
}

/* ===== MAIN PHOTO ===== */
.main-photo {
    flex: 1 1 560px;
    max-width: 560px;
    height: 700px;
    border-radius: 20px;
    overflow: hidden;
    background: rgba(10, 12, 35, 0.5);
    box-shadow:
        0 16px 48px rgba(24, 119, 242, 0.18),
        0 4px 16px rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.4);
}

@media (max-width: 850px) {
    .main-photo {
        width: 100%;
        max-width: 100%;
        height: auto;
        aspect-ratio: 4 / 5;
    }
}

.main-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.35s ease;
    cursor: pointer;
    border-radius: 20px;
}

.main-photo img:hover {
    transform: scale(1.02);
}

/* ===== THUMBNAILS – DESKTOP ===== */
.thumb-list {
    width: 180px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 850px) {
    .thumb-list {
        display: none;
    }
}

.thumb-list img {
    width: 100%;
    height: 110px;
    border-radius: 12px;
    object-fit: cover;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.1);
}

.thumb-list img:hover {
    transform: scale(1.03);
    box-shadow: 0 8px 22px rgba(24, 119, 242, 0.18);
}

.thumb-list img.active-thumb {
    border-color: var(--primary);
    box-shadow: 0 6px 18px rgba(24, 119, 242, 0.3);
}

/* ===== THUMBNAILS – MOBILE ===== */
.mobile-thumbs {
    display: none;
    margin: 10px 12px;
    gap: 10px;
    overflow-x: auto;
    white-space: nowrap;
    padding-bottom: 6px;
    -webkit-overflow-scrolling: touch;
}

@media (max-width: 850px) {
    .mobile-thumbs {
        display: flex;
    }
}

.mobile-thumbs img {
    width: 85px;
    height: 112px;
    object-fit: cover;
    border-radius: 12px;
    cursor: pointer;
    border: 2px solid rgba(255, 255, 255, 0.4);
    flex-shrink: 0;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

.mobile-thumbs img.active-thumb {
    border-color: var(--primary);
    box-shadow: 0 4px 14px rgba(24, 119, 242, 0.28);
}

/* ===== PROFILE SUMMARY ===== */
.profile-summary {
    max-width: 1100px;
    margin: 22px auto 10px;
    padding: 0 16px;
}

.profile-title {
    font-size: 26px;
    font-weight: 800;
    color: var(--text);
    line-height: 1.3;
    margin: 0 0 10px;
}

.profile-title span {
    font-size: 17px;
    font-weight: 500;
    color: var(--text-meta);
    margin-left: 6px;
}

.profile-meta {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 15px;
    color: var(--text-meta);
    margin-top: 6px;
}

.profile-meta .price {
    font-size: 20px;
    font-weight: 800;
    color: var(--primary);
}

.profile-meta .dot {
    color: rgba(24, 119, 242, 0.3);
    font-size: 18px;
}

.profile-meta .status {
    background: rgba(66, 183, 42, 0.12);
    color: #2e7d32;
    padding: 4px 12px;
    border-radius: 999px;
    font-weight: 700;
    font-size: 13px;
    border: 1px solid rgba(66, 183, 42, 0.25);
}

@media (max-width: 768px) {
    .profile-summary {
        margin: 14px auto 8px;
        padding: 0 12px;
    }

    .profile-title {
        font-size: 20px;
    }

    .profile-title span {
        font-size: 14px;
        display: block;
        margin: 4px 0 0 0;
    }

    .profile-meta {
        font-size: 14px;
        gap: 6px;
    }
}

@media (max-width: 420px) {
    .profile-title { font-size: 18px; }
    .profile-meta  { font-size: 13px; }
}

/* ===== CONTACT CARD ===== */
.contact-card {
    max-width: 1100px;
    margin: 14px auto;
    padding: 0 16px;
}

.contact-actions {
    display: flex;
    gap: 12px;
}

.contact-actions button {
    flex: 1;
    padding: 15px 20px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 14px;
    border: none;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    color: #fff;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.call-btn {
    background: rgba(240, 40, 73, 0.9);
    box-shadow: 0 6px 20px rgba(240, 40, 73, 0.32);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.call-btn:hover {
    background: var(--danger-hover);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(240, 40, 73, 0.42);
}

.wa-btn {
    background: rgba(37, 211, 102, 0.88);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.wa-btn:hover {
    background: #20b558;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(37, 211, 102, 0.38);
}

@media (max-width: 500px) {
    .contact-actions {
        flex-direction: column;
    }
}

/* ===== ABOUT PROFILE ===== */
.about-profile {
    max-width: 1100px;
    margin: 18px auto;
    padding: 0 16px;
}

.about-profile > h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text);
}

.about-inner {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 22px;
    border-radius: 18px;
    box-shadow: 0 8px 28px rgba(24, 119, 242, 0.09);
}

.about-text {
    font-size: 15px;
    line-height: 1.9;
    color: var(--text);
    white-space: normal;
}

.read-toggle {
    margin-top: 12px;
    background: none;
    border: none;
    color: var(--primary);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    transition: color 0.2s ease;
}

.read-toggle:hover {
    color: var(--primary-hover);
    text-decoration: underline;
}

/* ===== REPORT SAFETY ===== */
.report-safety {
    max-width: 1100px;
    margin: 28px auto;
    padding: 0 16px;
}

.report-safety-inner {
    background: rgba(255, 240, 242, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(240, 40, 73, 0.18);
    border-radius: 20px;
    padding: 24px;
    box-shadow: 0 8px 28px rgba(240, 40, 73, 0.08);
}

.report-top {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.report-icon {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(240, 40, 73, 0.12);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
    border: 1px solid rgba(240, 40, 73, 0.2);
}

.report-text h3 {
    margin: 0;
    font-size: 17px;
    font-weight: 800;
    color: #b5001e;
}

.report-text p {
    margin: 4px 0 0;
    font-size: 14px;
    color: var(--text-meta);
}

.report-badge {
    margin-left: auto;
    background: rgba(240, 40, 73, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 5px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.report-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

@media (max-width: 768px) {
    .report-grid {
        grid-template-columns: 1fr;
    }
}

.report-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 12px;
}

.report-info li {
    font-size: 14px;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(240, 40, 73, 0.2);
    color: var(--text);
}

.report-info small {
    display: block;
    margin-top: 8px;
    font-size: 12px;
    color: var(--text-meta);
}

.report-actions {
    margin-top: 10px;
}

.check-report-btn {
    background: rgba(24, 119, 242, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 7px 16px;
    border-radius: 999px;
    font-size: 13px;
    text-decoration: none;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 6px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: background 0.2s ease, transform 0.15s ease;
}

.check-report-btn:hover {
    background: var(--primary-hover);
    color: #fff;
    transform: translateY(-1px);
}

/* REPORT FORM */
.report-form {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.report-form select,
.report-form textarea {
    width: 100%;
    padding: 11px 13px;
    border-radius: 12px;
    border: 1px solid rgba(240, 40, 73, 0.22);
    font-size: 14px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: var(--text);
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    box-sizing: border-box;
}

.report-form select:focus,
.report-form textarea:focus {
    border-color: var(--primary);
    outline: none;
    box-shadow: 0 0 0 3px rgba(24, 119, 242, 0.12);
    background: rgba(255, 255, 255, 0.92);
}

.report-form textarea {
    min-height: 90px;
    resize: vertical;
}

.upload-title {
    font-size: 14px;
    font-weight: 700;
    color: var(--text);
    display: block;
}

.upload-group {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.upload-box {
    position: relative;
    flex: 1;
    min-width: 130px;
    border: 2px dashed rgba(24, 119, 242, 0.3);
    border-radius: 12px;
    padding: 16px;
    text-align: center;
    background: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    cursor: pointer;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.upload-box:hover {
    border-color: var(--primary);
    background: rgba(255, 255, 255, 0.75);
}

.upload-box input {
    position: absolute;
    inset: 0;
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.upload-box span {
    font-size: 13px;
    color: var(--text-meta);
    font-weight: 500;
}

.report-form button[type="submit"] {
    background: rgba(240, 40, 73, 0.9);
    color: #fff;
    padding: 13px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-weight: 700;
    font-size: 15px;
    cursor: pointer;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
    box-shadow: 0 4px 14px rgba(240, 40, 73, 0.3);
}

.report-form button[type="submit"]:hover {
    background: var(--danger-hover);
    transform: translateY(-1px);
    box-shadow: 0 8px 22px rgba(240, 40, 73, 0.4);
}

/* REPORT ALERTS */
.report-alert {
    padding: 12px 16px;
    border-radius: 12px;
    font-size: 14px;
    margin-bottom: 14px;
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.report-alert.success {
    background: rgba(232, 247, 238, 0.8);
    color: #14532d;
    border: 1px solid rgba(66, 183, 42, 0.25);
}

.report-alert.error {
    background: rgba(255, 243, 205, 0.8);
    color: #7a4a00;
    border: 1px solid rgba(252, 192, 10, 0.3);
}

/* COMPLAINT BOX */
.complaint-box {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    flex-wrap: wrap;
}

#complaintID {
    font-size: 17px;
    font-weight: 700;
    color: var(--danger);
    background: rgba(255, 255, 255, 0.7);
    padding: 6px 12px;
    border-radius: 8px;
    border: 1px solid rgba(240, 40, 73, 0.2);
}

.complaint-box button {
    background: var(--primary);
    border: none;
    color: #fff;
    padding: 6px 14px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 13px;
    transition: background 0.2s ease;
    box-shadow: 0 3px 10px rgba(24, 119, 242, 0.3);
}

.complaint-box button:hover {
    background: var(--primary-hover);
}

/* ===== RELATED ESCORTS ===== */
.related-box {
    max-width: 1100px;
    margin: 28px auto;
    padding: 0 16px;
}

.related-box h2 {
    font-size: 20px;
    font-weight: 800;
    color: var(--text);
    margin-bottom: 16px;
}

.related-slider {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
}

@media (min-width: 600px) {
    .related-slider {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .related-slider {
        grid-template-columns: repeat(4, 1fr);
        gap: 14px;
    }
}

.related-card {
    background: rgba(255, 255, 255, 0.65);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 6px 20px rgba(24, 119, 242, 0.09);
    text-decoration: none;
    color: var(--text);
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    display: block;
}

.related-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 36px rgba(24, 119, 242, 0.18);
    color: var(--text);
}

.related-card img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    object-position: top;
    display: block;
    transition: transform 0.45s ease;
}

.related-card:hover img {
    transform: scale(1.05);
}

.related-card .info {
    padding: 10px 12px 12px;
}

.related-card .name {
    font-size: 13px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 4px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.related-card .meta {
    font-size: 12px;
    color: var(--text-meta);
    margin-bottom: 8px;
    line-height: 1.5;
}

.related-card .view-btn {
    display: block;
    background: rgba(24, 119, 242, 0.88);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #fff;
    padding: 7px 10px;
    text-align: center;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: background 0.2s ease;
}

.related-card:hover .view-btn {
    background: var(--primary-hover);
}

@media (max-width: 480px) {
    .related-card img {
        height: 175px;
    }
}