.profile-detail { display: grid; grid-template-columns: 1fr 320px; gap: 28px; padding: 28px 0; }
.profile-main {}
.profile-header { background: #fff; border-radius: 12px; padding: 24px; margin-bottom: 20px; box-shadow: 0 1px 10px rgba(0,0,0,0.07); }
.profile-images { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 20px; }
.profile-images img { width: 100%; max-width: 500px; height: 360px; object-fit: cover; border-radius: 10px; }
.thumb-strip { display: flex; gap: 8px; flex-wrap: wrap; margin-top: 8px; }
.thumb-strip img { width: 80px; height: 80px; border-radius: 8px; object-fit: cover; cursor: pointer; opacity: 0.7; transition: opacity 0.2s; }
.thumb-strip img:hover { opacity: 1; }
.profile-title-row { display: flex; align-items: flex-start; justify-content: space-between; }
.profile-title { font-size: 24px; font-weight: 700; color: #1a1a2e; }
.profile-badges { display: flex; gap: 6px; flex-wrap: wrap; margin-top: 8px; margin-bottom: 12px; }
.badge { display: inline-flex; align-items: center; gap: 4px; padding: 4px 10px; border-radius: 20px; font-size: 12px; font-weight: 600; }
.badge-green { background: #d1fae5; color: #065f46; }
.badge-pink { background: #fce4f3; color: #e91e8c; }
.badge-blue { background: #dbeafe; color: #1e40af; }
.badge-now { background: #e91e8c; color: #fff; }
.profile-meta-row { display: flex; flex-wrap: wrap; gap: 16px; font-size: 14px; color: #374151; padding: 14px 0; border-top: 1px solid #f3f4f6; border-bottom: 1px solid #f3f4f6; margin: 12px 0; }
.profile-meta-item { display: flex; flex-direction: column; }
.profile-meta-item .label { font-size: 11px; color: #9ca3af; text-transform: uppercase; font-weight: 600; letter-spacing: 0.5px; }
.profile-meta-item .value { font-size: 14px; font-weight: 500; color: #1a1a2e; margin-top: 2px; }
.profile-desc { font-size: 15px; line-height: 1.7; color: #374151; margin-bottom: 20px; }
.section-box { background: #fff; border-radius: 12px; padding: 20px; margin-bottom: 16px; box-shadow: 0 1px 10px rgba(0,0,0,0.07); }
.section-box h3 { font-size: 15px; font-weight: 600; margin-bottom: 14px; color: #1a1a2e; display: flex; align-items: center; gap: 8px; }
.section-box h3 i { color: #e91e8c; }
.tag-list { display: flex; flex-wrap: wrap; gap: 8px; }
.tag { background: #f3f4f6; color: #374151; font-size: 13px; padding: 4px 12px; border-radius: 20px; }
.attribute-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.attribute-item { background: #f9fafb; border-radius: 8px; padding: 10px 14px; }
.attribute-item .attr-label { font-size: 11px; color: #9ca3af; text-transform: uppercase; font-weight: 600; }
.attribute-item .attr-value { font-size: 14px; font-weight: 500; color: #1a1a2e; margin-top: 3px; }

/* SIDEBAR */
.contact-card { background: #fff; border-radius: 12px; padding: 20px; margin-bottom: 16px; box-shadow: 0 1px 10px rgba(0,0,0,0.07); }
.contact-card h3 { font-size: 15px; font-weight: 600; margin-bottom: 16px; color: #1a1a2e; }
.contact-price-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 16px; }
.price-box { background: #f9fafb; border-radius: 8px; padding: 12px; text-align: center; }
.price-box .p-type { font-size: 11px; color: #9ca3af; text-transform: uppercase; font-weight: 600; }
.price-box .p-amount { font-size: 18px; font-weight: 700; color: #e91e8c; }
.btn-contact { display: flex; align-items: center; justify-content: center; gap: 8px; width: 100%; padding: 12px; border-radius: 10px; font-size: 15px; font-weight: 600; margin-bottom: 10px; cursor: pointer; text-decoration: none; transition: all 0.2s; border: none; font-family: 'Inter', sans-serif; }
.btn-call { background: #e91e8c; color: #fff; }
.btn-call:hover { background: #c41578; }
.btn-whatsapp { background: #25d366; color: #fff; }
.btn-whatsapp:hover { background: #1ebe5e; }
.btn-telegram { background: #0088cc; color: #fff; }
.btn-telegram:hover { background: #0077b3; }
.related-list { display: grid; gap: 10px; }
.related-card { display: flex; gap: 10px; background: #fff; border-radius: 8px; padding: 10px; text-decoration: none; color: inherit; box-shadow: 0 1px 6px rgba(0,0,0,0.06); transition: box-shadow 0.2s; }
.related-card:hover { box-shadow: 0 4px 15px rgba(233,30,140,0.12); }
.related-card img { width: 60px; height: 60px; border-radius: 6px; object-fit: cover; flex-shrink: 0; }
.related-card .rel-info .rel-name { font-size: 13px; font-weight: 600; color: #1a1a2e; }
.related-card .rel-info .rel-meta { font-size: 11px; color: #9ca3af; margin-top: 2px; }
.related-card .rel-info .rel-price { font-size: 13px; font-weight: 600; color: #e91e8c; margin-top: 4px; }

@media (max-width: 992px) {
    .profile-detail { 
        grid-template-columns: 1fr; 
        padding: 16px 0;
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .profile-meta-row {
        gap: 12px;
    }
    .attribute-grid { 
        grid-template-columns: repeat(2, 1fr); 
        gap: 10px;
    }
    .main-img-container {
        min-height: 200px;
        max-height: 50vh;
        border-radius: 8px;
    }
    .profile-detail-main-img {
        max-height: 50vh;
    }
    .btn-contact {
        padding: 14px;
        font-size: 15px;
    }
    .share-report-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .main-img-container {
        min-height: 180px;
        max-height: 45vh;
        border-radius: 6px;
    }
    .profile-detail-main-img {
        max-height: 45vh;
    }
    .attribute-grid { 
        grid-template-columns: 1fr; 
    }
    .thumb-strip img { 
        width: 64px; 
        height: 64px; 
    }
    .all-ads-category-link a {
        font-size: 15px;
    }
}

.profile-meta-row i { color: #e91e8c; }

/* ADDITIONAL EXTERNAL STYLES EXTRACTED FROM INLINE CSS */
.main-img-container {
    display: flex;
    justify-content: center;
    align-items: center;
    background: #09090b;
    border-radius: 10px;
    width: 100%;
    overflow: hidden;
    /* Height adapts to image, with a sensible max on large screens */
    min-height: 260px;
    max-height: 80vh;
}
.profile-detail-main-img {
    width: 100%;
    height: auto;
    max-height: 80vh;
    object-fit: contain;   /* show full image, no cropping */
    display: block;
    margin: 0 auto;
}
.profile-detail-img-placeholder {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #fce4f3, #f9a8d4);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 80px;
    color: #e91e8c;
}
.related-card-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 6px;
    background: #fce4f3;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #e91e8c;
    flex-shrink: 0;
}

/* Premium Footer Sections matching Skokka */
.profile-footer-sections {
    margin-top: 40px;
    font-family: 'Inter', sans-serif;
    color: #4b5563;
}
.share-report-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    padding: 10px 0;
    border-top: 1px solid #f3f4f6;
    border-bottom: 1px solid #f3f4f6;
}
.share-box {
    display: flex;
    align-items: center;
    gap: 16px;
}
.share-title {
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}
.share-icons {
    display: flex;
    gap: 12px;
}
.share-icon-btn {
    font-size: 18px;
    color: #e91e8c;
    text-decoration: none;
    transition: transform 0.2s;
}
.share-icon-btn:hover {
    transform: scale(1.15);
}
.report-btn {
    font-size: 14px;
    font-weight: 600;
    color: #e91e8c;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.report-btn:hover {
    text-decoration: underline;
}

.all-ads-category-link {
    text-align: center;
    margin: 36px 0;
}
.all-ads-category-link a {
    font-size: 18px;
    font-weight: 700;
    color: #1a1a2e;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: color 0.2s;
}
.all-ads-category-link a span {
    color: #e91e8c;
}
.all-ads-category-link a:hover {
    color: #e91e8c;
}

.reporting-channels-box {
    border: 1px solid #fbcfe8;
    background-color: #fffdfd;
    border-radius: 8px;
    padding: 20px;
    margin-bottom: 24px;
}
.reporting-channels-box h4 {
    font-size: 15px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.reporting-channels-box h4 i {
    color: #e91e8c;
}
.reporting-channels-box ul {
    list-style-type: disc;
    padding-left: 20px;
    margin: 0;
}
.reporting-channels-box ul li {
    font-size: 13px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 8px;
}
.reporting-channels-box ul li:last-child {
    margin-bottom: 0;
}
.reporting-channels-box a {
    color: #111827;
    font-weight: 700;
    text-decoration: none;
}
.reporting-channels-box a:hover {
    text-decoration: underline;
}

.security-tips-container {
    background: #3b82f6;
    color: #fff;
    border-radius: 8px;
    padding: 16px 20px;
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}
.security-tips-badge {
    position: absolute;
    top: 0;
    left: 20px;
    background: #eab308;
    color: #1e3a8a;
    font-size: 9px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 0 0 4px 4px;
    text-transform: uppercase;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}
.security-tips-content {
    margin-top: 10px;
}
.security-tips-title {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 8px;
}
.security-tips-text {
    font-size: 13px;
    opacity: 0.95;
    line-height: 1.5;
}

.portal-disclaimer-box {
    border-top: 1px solid #e5e7eb;
    padding-top: 24px;
    margin-bottom: 50px;
}
.portal-disclaimer-box h5 {
    font-size: 14px;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 12px;
}
.portal-disclaimer-box p {
    font-size: 12px;
    line-height: 1.7;
    color: #6b7280;
    margin-bottom: 12px;
}
.portal-disclaimer-box p:last-child {
    margin-bottom: 0;
}

/* Safety Notice Card Sidebar Widget */
.safety-notice-card {
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 1px 10px rgba(0,0,0,0.05);
}
.safety-notice-card h3 {
    font-size: 15px;
    font-weight: 700;
    color: #111827;
    margin-bottom: 16px;
    margin-top: 0;
}
.safety-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
}
.safety-item:last-child {
    margin-bottom: 0;
}
.safety-icon-wrapper {
    position: relative;
    width: 38px;
    height: 38px;
    background: #fee2e2;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.safety-icon-wrapper i {
    font-size: 16px;
    color: #991b1b;
}
.safety-line-slash {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top right, transparent 46%, #b91c1c 46%, #b91c1c 54%, transparent 54%);
    pointer-events: none;
}
.safety-text {
    font-size: 13px;
    line-height: 1.5;
    color: #374151;
}

