:root {
    --pink: #e91e8c;
    --pink-dark: #c41578;
    --pink-light: #fce4f3;
    --dark: #1a1a2e;
    --gray: #6b7280;
    --light: #f3f4f6;
    --white: #ffffff;
    --border: #e5e7eb;
    --shadow: 0 1px 10px rgba(0,0,0,0.05);
    --blue: #3b82f6;
    --blue-dark: #2563eb;
}

html, body {
    max-width: 100%;
    overflow-x: hidden;
    -webkit-tap-highlight-color: transparent;
}
body {
    font-family: 'Inter', sans-serif;
    background: #fafafa;
    color: #333;
    -webkit-font-smoothing: antialiased;
    touch-action: manipulation;
}

/* NAVBAR CUSTOMIZATIONS */
.navbar {
    background: var(--white);
    border-bottom: 1px solid #eee;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: var(--shadow);
    margin-bottom: 24px;
}
body:has(.hero-bar) .navbar {
    margin-bottom: 0;
}
.navbar-brand {
    display: flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
}
.navbar-brand .logo-icon {
    font-size: 24px;
    color: var(--pink);
}
.navbar-brand .logo-text {
    font-size: 21px;
    font-weight: 800;
    color: #1e293b;
    letter-spacing: -0.5px;
}
.navbar-brand .logo-text span {
    color: var(--pink);
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}
.nav-icon-link {
    color: #64748b;
    font-size: 18px;
    text-decoration: none;
    transition: color 0.2s;
}
.nav-icon-link:hover {
    color: var(--pink);
}

.btn-post-ad {
    background: var(--pink);
    color: var(--white) !important;
    padding: 8px 18px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 13px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.3px;
    transition: background 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.btn-post-ad:hover {
    background: var(--pink-dark);
}

/* ALERTS */
.alert {
    padding: 12px 16px;
    border-radius: 8px;
    margin: 16px 0;
    font-size: 14px;
}
.alert-success {
    background: #d1fae5;
    color: #065f46;
    border-left: 4px solid #10b981;
}
.alert-danger {
    background: #fee2e2;
    color: #991b1b;
    border-left: 4px solid #ef4444;
}

/* FOOTER CUSTOMIZATIONS */
.site-footer {
    background: #27272a;
    color: #d4d4d8;
    padding: 50px 0 25px;
    margin-top: 60px;
    font-size: 13px;
    border-top: 1px solid #e4e4e7;
}
.site-footer h4 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.site-footer a:not(.btn-post-ad) {
    color: #a1a1aa;
    text-decoration: none;
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
    transition: color 0.2s;
}
.site-footer a:not(.btn-post-ad):hover {
    color: var(--pink);
}
.footer-bottom {
    border-top: 1px solid #3f3f46;
    padding-top: 25px;
    text-align: center;
    font-size: 12px;
    color: #71717a;
}
.footer-brand {
    font-size: 24px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 12px;
    letter-spacing: -0.5px;
}
.footer-brand span {
    color: var(--pink);
}
.rta-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: #3f3f46;
    color: #fff;
    font-size: 11px;
    padding: 4px 10px;
    border-radius: 4px;
    margin: 10px 0;
    font-weight: 600;
}
.social-links {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin: 20px 0;
}
.social-links a {
    color: #a1a1aa;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.2s;
}
.social-links a:hover {
    color: var(--pink);
}

.footer-boost {
    background: #3f3f46;
    padding: 20px;
    border-radius: 8px;
    margin-top: 15px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.footer-boost h5 {
    color: #fff;
    font-size: 14px;
    font-weight: 600;
}

.visa-mc-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 15px;
    font-size: 12px;
    color: #a1a1aa;
}
.visa-mc-row i {
    font-size: 24px;
    color: #fff;
}

/* ─── MEMBER AREA DROPDOWN ─────────────────────────────── */
.member-area-wrapper {
    position: relative;
}

.member-area-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    color: #374151;
    font-size: 13px;
    font-weight: 500;
    padding: 6px 10px;
    border-radius: 8px;
    transition: background 0.2s;
    font-family: 'Inter', sans-serif;
}
.member-area-btn:hover,
.member-area-wrapper.active .member-area-btn {
    background: #f3f4f6;
    color: var(--pink);
}
.member-area-btn .fa-user-circle {
    font-size: 20px;
    color: var(--pink);
}
.member-email {
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-size: 12px;
    color: #374151;
}
.member-caret {
    font-size: 10px;
    color: #9ca3af;
    transition: transform 0.2s;
}
.member-caret.rotated {
    transform: rotate(180deg);
}

.member-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    right: 0;
    width: 220px;
    background: #fff;
    border: 1px solid #e5e7eb;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.2s, transform 0.2s;
    z-index: 9999;
}
.member-dropdown.open {
    opacity: 1;
    pointer-events: all;
    transform: translateY(0);
}
.member-dropdown-header {
    padding: 14px 16px 10px;
    border-bottom: 1px solid #f3f4f6;
}
.member-dropdown-title {
    font-size: 13px;
    font-weight: 700;
    color: #111827;
    text-align: center;
}
.member-dropdown-email {
    font-size: 11px;
    color: #9ca3af;
    text-align: center;
    margin-top: 2px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}
.member-dropdown-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 16px;
    color: #374151;
    text-decoration: none;
    font-size: 13px;
    font-weight: 500;
    transition: background 0.15s, color 0.15s;
}
.member-dropdown-item:hover {
    background: #fdf2f8;
    color: var(--pink);
}
.member-dropdown-item i {
    width: 16px;
    color: #6b7280;
    font-size: 14px;
}
.member-dropdown-item:hover i {
    color: var(--pink);
}
.member-dropdown-divider {
    height: 1px;
    background: #f3f4f6;
    margin: 4px 0;
}
.member-logout-item {
    color: #dc2626;
    border-radius: 0 0 12px 12px;
}
.member-logout-item i {
    color: #dc2626;
}
.member-logout-item:hover {
    background: #fef2f2;
    color: #dc2626;
}

/* ─── FOOTER ENHANCEMENTS ──────────────────────────────── */
.footer-cta-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #3f3f46;
}
.btn-post-ad-footer {
    display: inline-block;
    background: var(--pink);
    color: #fff !important;
    padding: 12px 40px;
    border-radius: 6px;
    font-weight: 700;
    font-size: 14px;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: background 0.2s;
}
.btn-post-ad-footer:hover {
    background: var(--pink-dark);
}
.footer-country-dropdown {
    background: #3f3f46;
    color: #fff;
    border: 1px solid #52525b;
    border-radius: 6px;
    padding: 10px 14px;
    font-size: 14px;
    cursor: pointer;
}
.footer-payment-row {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 16px;
    padding-bottom: 10px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .navbar-actions {
        gap: 10px;
    }
    .btn-post-ad {
        padding: 6px 12px;
        font-size: 11px;
    }
    .member-email {
        display: none;
    }
    .footer-cta-row {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (max-width: 576px) {
    .btn-post-ad .btn-text {
        display: none;
    }
    .btn-post-ad {
        padding: 8px 12px;
    }
    .navbar-brand .logo-text span {
        display: none;
    }
}

/* FOOTER EXTRA CLASSES */
.footer-desc-text {
    font-size: 13px;
    line-height: 1.6;
}
.footer-payment-logo-mc {
    font-size: 32px;
    color: #eb001b;
}
.footer-payment-logo-visa {
    font-size: 32px;
    color: #1a1f71;
}
.footer-payment-info {
    font-size: 11px;
    color: #71717a;
}
.footer-social-bluesky {
    font-size: 18px;
}

/* GENERAL UTILITIES */
.text-pink {
    color: var(--pink) !important;
}

/* CONTACT PAGE CUSTOM CLASS */
.contact-icon-wrapper {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.contact-icon-wrapper.email {
    background: rgba(233, 30, 140, 0.1);
    color: #e91e8c;
}
.contact-icon-wrapper.phone {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
}
.contact-icon-wrapper.whatsapp {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
}

.bg-pink {
    background-color: var(--pink) !important;
}
.text-telegram {
    color: #0088cc !important;
}
.cursor-pointer {
    cursor: pointer;
}

/* Age Warning and Cookie Consent Modals */
.portal-modal-backdrop {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 100000;
    display: none; /* controlled by JS */
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(8px);
    font-family: 'Inter', sans-serif;
}
.portal-modal-backdrop.active {
    display: flex;
}
.portal-modal-box {
    background: #fff;
    border-radius: 24px;
    width: 90%;
    max-width: 500px;
    padding: 40px 30px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
    text-align: center;
    position: relative;
    animation: modalSlideUp 0.4s ease-out;
}
@keyframes modalSlideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

/* Age Warning Circular Icon */
.age-warning-icon-wrapper {
    position: relative;
    width: 96px;
    height: 96px;
    border: 2px solid #e5e7eb;
    border-radius: 50%;
    margin: 0 auto 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.age-warning-avatars {
    display: flex;
    gap: 8px;
    align-items: center;
}
.age-warning-avatars i {
    font-size: 28px;
}
.age-warning-avatars .avatar-female {
    color: #e91e8c; /* pink */
}
.age-warning-avatars .avatar-male {
    color: #3b82f6; /* blue */
}
.age-warning-badge {
    position: absolute;
    top: 2px;
    right: -2px;
    background: #e91e8c;
    color: #fff;
    font-size: 10px;
    font-weight: 800;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #fff;
}

.portal-modal-box h2 {
    font-size: 22px;
    font-weight: 800;
    color: #1f2937;
    line-height: 1.4;
    margin-bottom: 24px;
}
.portal-modal-box p {
    font-size: 14px;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 20px;
}
.portal-modal-box p strong {
    color: #111827;
}
.portal-modal-box .terms-text {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 30px;
}
.portal-modal-box .terms-text a {
    color: #e91e8c;
    text-decoration: none;
    font-weight: 600;
}
.portal-modal-box .terms-text a:hover {
    text-decoration: underline;
}

.btn-portal-modal-accept {
    background: #e91e8c;
    color: #fff !important;
    border: none;
    padding: 12px 36px;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    transition: background 0.2s, transform 0.1s;
    display: inline-block;
    min-width: 160px;
    text-transform: uppercase;
}
.btn-portal-modal-accept:hover {
    background: #c41578;
}
.btn-portal-modal-accept:active {
    transform: scale(0.98);
}
.btn-portal-modal-decline {
    background: none;
    border: none;
    color: #e91e8c;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    margin-top: 16px;
    display: inline-block;
    text-decoration: none;
}
.btn-portal-modal-decline:hover {
    text-decoration: underline;
}

/* Cookie Modal Styling */
.cookie-modal-box {
    max-width: 520px;
    border-radius: 12px;
    padding: 30px;
}
.cookie-modal-box h2 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 16px;
}
.cookie-modal-box p {
    font-size: 13px;
    line-height: 1.6;
    color: #555;
    margin-bottom: 24px;
}
.cookie-modal-box .btn-portal-modal-accept {
    text-transform: uppercase;
    font-size: 14px;
    padding: 12px 48px;
    border-radius: 8px;
}
.cookie-modal-box .btn-manage-cookies {
    color: #e91e8c;
    background: none;
    border: none;
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 16px;
    display: block;
    margin-left: auto;
    margin-right: auto;
}
.cookie-modal-box .btn-manage-cookies:hover {
    text-decoration: underline;
}
.cookie-modal-links {
    margin-top: 24px;
    font-size: 11px;
    color: #666;
    border-top: 1px solid #eee;
    padding-top: 16px;
}
.cookie-modal-links a {
    color: #e91e8c;
    text-decoration: none;
    font-weight: 600;
}
.cookie-modal-links a:hover {
    text-decoration: underline;
}




/* Premium Pagination Color Themes */
.pagination {
    display: flex;
    padding-left: 0;
    list-style: none;
    border-radius: 6px;
    gap: 4px;
    margin: 0;
}
.pagination .page-item {
    margin: 0;
}
.pagination .page-link {
    position: relative;
    display: block;
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--pink, #e91e8c);
    text-decoration: none;
    background-color: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 6px !important;
    transition: all 0.2s ease-in-out;
}
.pagination .page-link:hover {
    z-index: 2;
    color: #fff;
    background-color: var(--pink, #e91e8c);
    border-color: var(--pink, #e91e8c);
}
.pagination .page-item.active .page-link {
    z-index: 3;
    color: #fff;
    background-color: var(--pink, #e91e8c);
    border-color: var(--pink, #e91e8c);
}
.pagination .page-item.disabled .page-link {
    color: #94a3b8;
    pointer-events: none;
    background-color: #f8fafc;
    border-color: #e2e8f0;
}
