/* Main Section */
.profile-container {
    min-height: 100vh;
    background-image: url('https://d15v7gz4sgnote.cloudfront.net/backgrounds/new-bg-landscape.jpg');
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-attachment: fixed;
    padding-bottom: 20px;
}

/* ══════════ COVER SECTION ══════════ */
.fp-cover-wrap {
    position: relative;
    width: 100%; height: 280px;
    overflow: hidden;
}
.fp-cover-img {
    width: 100%; height: 100%;
    object-fit: cover; object-position: center;
    border-radius: var(--radius);
    display: block;
}
.fp-cover-overlay {
    position: absolute; inset: 0;
    pointer-events: none;
}
.fp-cover-edit-btn {
    position: absolute; bottom: 14px; right: 16px;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(6px);
    border: 1.5px solid rgba(255,255,255,.25);
    color: #fff; border-radius: 50px;
    padding: 7px 14px; font-size: 12px; font-weight: 600;
    cursor: pointer; transition: var(--transition);
    display: flex; align-items: center; gap: 6px;
}
.fp-cover-edit-btn:hover { background: var(--primary); border-color: var(--primary); }
.fp-suspended-badge {
    position: absolute; top: 14px; left: 14px;
    background: #dc2626; color: #fff;
    font-size: 11px; font-weight: 700; letter-spacing: .8px;
    text-transform: uppercase; padding: 4px 10px; border-radius: 6px;
}
@media (max-width: 768px) { .fp-cover-wrap { height: 190px; } }

/* ══════════ PAGE WRAPPER ══════════ */
.fp-page-wrap {
    margin: 0 auto;
    padding: 0 20px 20px;
}
@media (max-width: 576px) { .fp-page-wrap { padding: 0 12px 20px; } }

/* ══════════ LAYOUT GRID ══════════ */
.fp-grid {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: 20px;
    margin-top: 20px;
    align-items: stretch;
}
@media (max-width: 900px) {
    .fp-grid { grid-template-columns: 1fr; }
}

/* ══════════ CARD ══════════ */
.fp-card {
    background: var(--bg-dark);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: visible;
    height: 100%;
}

.fp-right .fp-card {
    flex: 1 1 auto; /* Allow cards to grow/shrink as needed */
}

/* ══════════ LEFT SIDEBAR ══════════ */
/* Avatar block */
.fp-avatar-block {
    display: flex; flex-direction: column; align-items: center;
    padding: 28px 20px 16px;
    position: relative;
}
.fp-avatar-ring {
    position: absolute;
    display: inline-block;
    top: -80px;
}
.fp-avatar-ring.verified::before {
    content: '';
    position: absolute; inset: -4px;
    border-radius: 50%;
    background: conic-gradient(var(--gold) 0%, #f9d977 35%, var(--gold) 65%, #e8c050 100%);
    z-index: 0;
    animation: goldSpin 4s linear infinite;
}
@keyframes goldSpin { to { transform: rotate(360deg); } }
.fp-avatar-ring::after {
    content: '';
    position: absolute; inset: -2px;
    border-radius: 50%;
    background: var(--bg-dark);
    z-index: 1;
}
.fp-avatar {
    width: 150px; height: 150px; border-radius: 50%;
    object-fit: cover; display: block;
    position: relative; z-index: 2;
    cursor: pointer; transition: var(--transition);
}
.fp-avatar:hover { opacity: .85; }
.suspended-badge {
    position: absolute;
    z-index: 1000;
}
.suspended-badge .suspended-text {
    color: #fff;
    background: #ff1744;
    font-size: 13px;
    padding: 8px;
    font-weight: bold;
}
.suspended-badge .suspended-text::before {
    content: " ";
    position: absolute;
    bottom: -7px;
    left: 0;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 0 solid transparent;
    border-top: 7px solid #420909;
}
.suspended-badge .suspended-text span {
    display: block;
    font-size: 16px;
}
.fp-avatar-edit-btn {
    position: absolute; bottom: 0; right: 10px;
    width: 28px; height: 28px; border-radius: 50%;
    background: var(--primary); color: #fff;
    border: 2px solid var(--bg-dark);
    display: flex; align-items: center; justify-content: center;
    font-size: 11px; cursor: pointer; z-index: 3;
    transition: var(--transition);
}
.fp-avatar-edit-btn:hover { background: var(--primary-hover); }
.fp-verified-star {
    position: absolute; bottom: 2px; right: 7px;
    width: 26px; height: 26px; border-radius: 50%;
    background: var(--bg-dark); z-index: 4;
    display: flex; align-items: center; justify-content: center;
}
.fp-verified-star img { width: 22px; }

.fp-views-pill {
    position: absolute; top: 22px; left: 18px;
    background: linear-gradient(90deg, var(--primary) 0%, #a0440e 100%);
    color: #fff; font-size: 11px; font-weight: 600;
    padding: 4px 10px; border-radius: 20px;
    display: flex; align-items: center; gap: 4px;
}
.fp-views-pill i { font-size: 12px; }

.fp-handle {
    font-size: 15px; font-weight: 700;
    color: var(--text-muted);
    margin-top: 10px;
    padding-top: 40px;
    display: flex; align-items: center; gap: 6px;
}
.fp-new-tag {
    background: var(--primary); color: #fff;
    font-size: 9px; font-weight: 800; letter-spacing: .5px;
    text-transform: uppercase; padding: 2px 6px; border-radius: 4px;
    animation: pulse 1.5s ease-in-out infinite;
}
@keyframes pulse { 0%,100%{opacity:1} 50%{opacity:.5} }

.fp-profession {
    font-size: 12px; color: var(--primary); font-weight: 600;
    margin-top: 2px; text-align: center;
}

/* Stats row */
.fp-stats-row {
    display: flex;
    justify-content: center;
    gap: 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    margin: 12px 0 0;
}

/* base stat */
.fp-stat {
    flex: 1;
    text-align: center;
    padding: 12px 8px;
    border-right: 1px solid var(--border);
    cursor: default;
    transition: var(--transition);
    text-decoration: none;
    color: inherit;
}

/* remove border last */
.fp-stat:last-child {
    border-right: none;
}

/* hover */
.fp-stat:hover {
    background: var(--primary-light);
}

/* clickable stat */
.fp-stat-link {
    cursor: pointer;
    display: block;
}

/* text */
.fp-stat-num {
    font-size: 18px;
    font-weight: 800;
    display: block;
    color: var(--text);
}

.fp-stat-label {
    font-size: 10px;
    color: var(--text-muted);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: .5px;
}

/* Action buttons */
.fp-actions {
    padding: 14px 16px;
    display: flex; flex-wrap: wrap; gap: 8px; justify-content: center;
}

/* Buttons */
.fp-btn-primary {
    background: var(--gradient);
    color: var(--white) !important;
}
.fp-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(220,114,40,.45);
    color: var(--white);
}
.fp-btn-outline {
    background: transparent;
    border: 1.5px solid var(--border);
    color: var(--text);
}
.fp-btn-outline:hover { border-color: var(--primary); color: var(--primary); }
.fp-btn-ghost {
    /* background: var(--bg); color: var(--text-muted); */
    background: var(--gradient); color: var(--white);
}
.fp-btn-ghost:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 18px rgba(220,114,40,.45);
}
.fp-btn-danger {
    background: #fee2e2; color: #dc2626;
}
.fp-btn-sm { padding: 5px 12px; font-size: 12px; }
.fp-btn-icon {
    width: 34px; height: 34px; padding: 0;
    border-radius: 50%; justify-content: center;
}

/* Divider */
.fp-divider { height: 1px; background: var(--border); margin: 0 16px; }

/* Social icons */
.fp-socials {
    display: flex; justify-content: center; gap: 8px;
    padding: 14px 16px; flex-wrap: wrap;
}
.fp-social-icon {
    width: 34px; height: 34px; border-radius: 50%;
    background: var(--black); color: #fff !important;
    display: flex; align-items: center; justify-content: center;
    font-size: 14px; text-decoration: none;
    transition: var(--transition);
}
.fp-social-icon:hover {
    transform: translateY(-3px);
    background: var(--primary); color: #fff;
    box-shadow: 0 4px 12px rgba(220,114,40,.4);
}

/* Website pill */
.fp-website-pill {
    display: flex; align-items: center; gap: 8px;
    justify-content: center;
    margin: 0 16px 16px;
    padding: 10px 14px;
    background: var(--primary-light); border: 1px solid var(--primary); color: var(--primary);
    border-radius: 12px;
    cursor: pointer; text-decoration: none;
    color: var(--primary); font-size: 13px; font-weight: 600;
    transition: var(--transition);
}
.fp-website-pill:hover {  background: var(--bg); border: 1px solid var(--border); color: var(--primary); }
.fp-website-pill img { width: 28px; height: 28px; border-radius: 6px; object-fit: cover; }
.fp-website-pill i { font-size: 16px; }

/* RIGHT COLUMN */
.fp-right { display: flex; flex-direction: column; gap: 18px; }

/* Bio card */
.fp-bio-card { padding: 22px 24px; }
.fp-bio-header {
    display: flex; align-items: flex-start; justify-content: space-between;
    margin-bottom: 14px;
}
.fp-fullname {
    font-size: 22px; font-weight: 800; line-height: 1.2;
}
.fp-meta-list {
    list-style: none;
    display: flex; flex-direction: column; gap: 8px;
    margin-bottom: 14px;
}
.fp-meta-list li {
    display: flex; align-items: center; gap: 10px;
    font-size: 13.5px; color: var(--text-muted);
}
.fp-meta-list li i { width: 16px; color: var(--primary); }
.fp-meta-list li a { color: var(--primary) !important; text-decoration: none; }
.fp-meta-list li a:hover { text-decoration: underline; }

.fp-bio-text {
    font-size: 14px; line-height: 1.75;
    color: var(--text);
    border-top: 1px solid var(--border);
    padding-top: 14px;
    transition: all 0.3s ease;
}
.fp-bio-text.collapsed {
    display: -webkit-box; -webkit-line-clamp: 1;
    -webkit-box-orient: vertical; overflow: hidden;
}
.fp-read-more {
    color: var(--primary); font-size: 13px; font-weight: 600;
    cursor: pointer; margin-top: 6px; display: none;
}

/* 3-dot menu */
.fp-menu-wrap { position: relative; }
.fp-menu-btn {
    width: 36px; height: 36px; border-radius: 50%;
    background: var(--bg); border: none;
    display: flex; align-items: center; justify-content: center;
    font-size: 16px; color: var(--text-muted);
    cursor: pointer; transition: var(--transition);
}
.fp-menu-btn:hover { background: var(--border); }
.fp-dropdown {
    display: none; position: absolute;
    right: 0; top: 42px;
    background: var(--bg-dark);
    border-radius: 14px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    min-width: 180px; z-index: 200;
    overflow: hidden;
}
.fp-dropdown.open { display: block; animation: dropIn .15s ease; }
@keyframes dropIn { from{opacity:0;transform:translateY(-6px)} to{opacity:1;transform:translateY(0)} }
.fp-dropdown a, .fp-dropdown button {
    display: flex; align-items: center; gap: 10px;
    padding: 11px 16px; font-size: 13px;
    color: var(--text); text-decoration: none;
    background: none; border: none; width: 100%;
    cursor: pointer;
    transition: var(--transition);
}
.fp-dropdown a:hover, .fp-dropdown button:hover {
    background: var(--bg); color: var(--primary);
}
.fp-dropdown i { width: 16px; color: var(--primary); }
.fp-dropdown-divider { height: 1px; background: var(--border); margin: 4px 0; }

/* Verify CTA */
.fp-verify-cta {
    background: linear-gradient(135deg, var(--gold-light) 0%, #fdf6e0 100%);
    border: 1.5px solid #e8d07a;
    border-radius: 12px; padding: 12px 16px;
    display: flex; align-items: center; gap: 10px;
    margin-top: 14px;
}
.fp-verify-cta .fp-btn-primary{background: linear-gradient(90deg, #dc7228 50%, #000 100%) !important;}
.fp-verify-cta span { font-size: 13px; color: var(--text-muted); flex: 1; }

/* Members strip */
.fp-members-wrap { padding: 16px 8px 0; }
.fp-members-label {
    font-size: 10px; letter-spacing: 1.2px;
    text-transform: uppercase; color: var(--text-muted);
    font-weight: 700; margin-bottom: 10px;
}
.fp-members-scroll {
    display: flex; gap: 10px; overflow-x: auto;
    padding-top: 8px; padding-bottom: 16px;
    padding-left: 12px; scrollbar-width: thin;
    scrollbar-color: var(--border) transparent;
}
.fp-members-scroll p {
    font-size: 13px; color: var(--text-muted);
    padding: 12px 0; flex-shrink: 0;
}
.fp-member {
    position: relative; flex-shrink: 0;
    cursor: pointer;
}
a.fp-member {
    text-decoration: none;
    display: block;       /* keeps it same as div */
}
a.fp-member:hover img {
    border-color: var(--primary);
    transform: scale(1.08);
    box-shadow: 0 4px 12px rgba(220,114,40,.35);
}
.fp-member img {
    width: 46px; height: 46px; border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border);
    transition: var(--transition); display: block;
}
.fp-member:hover img { border-color: var(--primary); transform: scale(1.05); }
.fp-member-dot {
    position: absolute; bottom: 1px; right: 1px;
    width: 11px; height: 11px; border-radius: 50%;
    background: #22c55e; border: 2px solid var(--bg-dark);
}
.fp-see-all-btn {
    flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%;
    background: var(--black); color: #fff !important;
    display: flex; align-items: center; justify-content: center;
    font-size: 10px; font-weight: 800; text-decoration: none;
    transition: var(--transition);
}
.fp-see-all-btn:hover { background: var(--primary); color: #fff; }

/* ═══════════════════════════════════════════
    CONTENT CATEGORIES — SWIPER CAROUSEL
═══════════════════════════════════════════ */
.fp-carousel-card { padding: 20px 0 20px 24px; overflow: hidden; }
.fp-carousel-header {
    display: flex; align-items: center; justify-content: space-between;
    padding-right: 24px; margin-bottom: 14px;
}
.fp-section-title {
    font-size: 14px; font-weight: 800; letter-spacing: .3px;
}
.fp-swiper-nav {
    display: flex; gap: 6px;
}
.fp-swiper-btn {
    width: 30px; height: 30px; border-radius: 50%;
    background: var(--primary); border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: 13px; cursor: pointer; transition: var(--transition);
    color: var(--text);
}
.fp-swiper-btn:hover { background: var(--primary-hover); color: #fff; border-color: var(--primary-dark); }

.fp-categories-swiper { width: 100%; overflow: visible; }
.fp-cat-tile {
    background: linear-gradient(140deg, var(--primary) 0%, #7a2c0b 100%);
    border-radius: 14px; padding: 18px 16px;
    color: #fff; cursor: pointer;
    text-decoration: none; display: block;
    position: relative; overflow: hidden;
    transition: var(--transition);
    user-select: none;
}
.fp-cat-tile::before {
    content: '';
    position: absolute; top: -24px; right: -24px;
    width: 70px; height: 70px;
    background: rgba(255,255,255,.12);
    border-radius: 50%;
}
.fp-cat-tile::after {
    content: '';
    position: absolute; bottom: -16px; left: 10px;
    width: 45px; height: 45px;
    background: rgba(255,255,255,.07);
    border-radius: 50%;
}
.fp-cat-tile:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 28px rgba(220,114,40,.4);
    color: #fff;
}
.fp-cat-tile:active { transform: scale(.97); }
.fp-cat-emoji { font-size: 22px; display: block; margin-bottom: 8px; }
.fp-cat-name {
    font-size: 13px; font-weight: 700; line-height: 1.3;
}
.fp-cat-count {
    font-size: 12px; opacity: .8; margin-top: 2px;
}

/*  POSTS GRID  */
.fp-posts-card { padding: 22px 24px; }
.fp-posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
    gap: 14px;
}
@media (max-width: 576px) { .fp-posts-grid { grid-template-columns: repeat(2, 1fr); } }

.fp-search-wrapper {
    position: relative;
    display: inline-block;
}

.fp-search-icon {
    position: absolute;
    left: 10px;
    top: 50%;
    transform: translateY(-50%);
    font-size: 12px;
    color: var(--text-muted);
    pointer-events: none;
}

.fp-search-input {
    padding: 5px 10px 5px 28px;
    border: 1px solid var(--border);
    border-radius: 50px;
    font-size: 12px;
    outline: none;
    width: 160px;
    background: var(--bg);
    color: var(--text-secondary);
    transition: var(--transition);
}

/* Optional hover/focus improvement */
.fp-search-input:focus {
    border-color: var(--primary, #4a90e2);
    box-shadow: 0 0 0 2px rgba(74,144,226,0.15);
}

@media (max-width: 768px) {
    .fp-search-input {
        width: 120px;
    }
}

.fp-post-item {
    border-radius: 14px; overflow: hidden;
    border: 1px solid var(--border);
    background: var(--bg-dark);
    transition: var(--transition);
    position: relative;
}
.fp-post-item:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}
.fp-post-thumb {
    height: 148px; overflow: hidden;
    background: var(--bg);
    position: relative;
}
.fp-post-thumb img, .fp-post-thumb video {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .4s ease;
}
.fp-post-item:hover .fp-post-thumb img { transform: scale(1.05); }
.fp-post-type-badge {
    position: absolute; top: 8px; left: 8px;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(4px);
    color: #fff; font-size: 10px; font-weight: 600;
    padding: 3px 8px; border-radius: 6px;
}
.fp-new-badge {
    position: absolute;
    top: 8px;
    right: 8px;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(4px);
}
.fp-post-body { padding: 10px 12px 12px; }
.fp-post-title {
    font-size: 13px; font-weight: 600;
    white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
    color: var(--text); display: block; text-decoration: none;
    margin-bottom: 8px;
}
.fp-post-title:hover { color: var(--primary); }
.fp-post-actions {
    display: flex; gap: 6px; flex-wrap: wrap;
}
.fp-post-action-btn {
    font-size: 11px; padding: 4px 8px;
    border-radius: 50px; border: 1px solid var(--primary);
    background: var(--gradient); color: var(--bg-dark) !important;
    /* background: var(--bg); color: var(--text-muted); */
    cursor: pointer; text-decoration: none;
    transition: var(--transition);
    display: flex; align-items: center; gap: 4px;
}
.fp-post-action-btn:hover { border-color: var(--primary); color: var(--primary) !important; background: var(--bg); }
.fp-post-action-btn.danger:hover { border-color: #dc2626; color: #dc2626; }

/* ═══════════════════════════════════════════
   BUMP / FEATURE BANNER
═══════════════════════════════════════════ */
.fp-payment-banner {
  background: var(--black); color: #fff;
  border-radius: var(--radius); padding: 16px 22px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 12px; flex-wrap: wrap; margin-bottom: 2px;
}
.fp-payment-banner p { font-size: 13px; margin: 0; opacity: .8; }

/* ═══════════════════════════════════════════
   TOAST (custom)
═══════════════════════════════════════════ */
.fp-toast-wrap {
  position: fixed; bottom: 24px; right: 24px;
  z-index: 9999; display: flex; flex-direction: column; gap: 8px;
}
.fp-toast {
  background: var(--black); color: #fff;
  padding: 12px 18px; border-radius: 12px;
  font-size: 13px; font-weight: 500;
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-lg);
  animation: toastIn .25s ease;
  min-width: 220px;
}
@keyframes toastIn { from{opacity:0;transform:translateY(12px)} to{opacity:1;transform:translateY(0)} }
.fp-toast.success .fp-toast-dot { background: #22c55e; }
.fp-toast.error   .fp-toast-dot { background: #ef4444; }
.fp-toast.info    .fp-toast-dot { background: var(--primary); }
.fp-toast-dot { width: 8px; height: 8px; border-radius: 50%; flex-shrink: 0; }


/* ═══════════════════════════════════════════
   MODAL STYLES
═══════════════════════════════════════════ */
.fp-modal .modal-content {
    border: none;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    background: var(--bg-dark);
    backdrop-filter: blur(18px);
    transition: 0.3s ease;
}
.fp-modal .btn-close {
    filter: var(--filter);
}
.fp-modal .modal-header {
    border-bottom: 1px solid var(--border);
    padding: 18px 22px;
}
.fp-modal .modal-title {
    font-weight: 800;
    color: var(--text);
}
.fp-modal .modal-body { scrollbar-width: thin; padding: 22px; }
.fp-modal .modal-footer {
    border-top: 1px solid var(--border);
    padding: 14px 22px;
}

/* Cropper modal */
.fp-crop-container {
    width: 100%; height: 320px;
    background: var(--black); border-radius: 10px;
    overflow: hidden;
}
.fp-crop-container img { max-width: 100%; display: block; }

/* Share modal */
.fp-share-qr { text-align: center; margin-bottom: 18px; }
.fp-share-input-row {
    display: flex; gap: 8px; margin-bottom: 10px;
}
.fp-share-input-row input {
    flex: 1; padding: 9px 14px;
    border: 1px solid var(--border); border-radius: 10px;
    font-size: 13px; background: var(--glass);
    outline: none;
    color: var(--text-secondary);
}
/* Wrapper */
.fp-share-platforms {
    display: flex; justify-content: center; gap: 8px; flex-wrap: wrap; margin-top: 14px;
}
.fp-share-platform {
    width: 42px; height: 42px; border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px; text-decoration: none; color: #fff;
    transition: var(--transition);
}
.fp-share-platform:hover { transform: translateY(-3px); color: #fff; }

/* Remove default ul/li styling */
#social-links ul {
    display: flex;
    gap: 8px;
    padding: 0;
    margin: 0;
    list-style: none;
}

/* Make social-button look like fp-share-platform */
#social-links ul li a.social-button {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    text-decoration: none;
    color: #fff;
    transition: 0.3s ease;
}

/* Hover */
#social-links ul li a.social-button:hover {
    transform: translateY(-3px);
    color: #fff;
}

/* Platform Colors (target by icon inside span) */
#social-links a .fa-facebook-square,
#social-links a .fa-facebook {
    background: #1877f2;
}

#social-links a .fa-twitter {
    background: #1da1f2;
}

#social-links a .fa-linkedin {
    background: #0077b5;
}

#social-links a .fa-telegram {
    background: #2ca5e0;
}

#social-links a .fa-whatsapp {
    background: #25d366;
}

#social-links a .fa-reddit {
    background: #ff4500;
}

/* Make icon fill button properly */
#social-links ul li a.social-button span {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
}

.sp-email    { background: var(--primary); }
.sp-copy     { background: var(--black); }

/* ═══════════════════════════════════════════
   OFFCANVAS HIDDEN USERS
═══════════════════════════════════════════ */
.fp-offcanvas-item {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.fp-offcanvas-item:last-child { border-bottom: none; }
.fp-offcanvas-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  object-fit: cover;
}

/* ═══════════════════════════════════════════
   REPORT FORM
═══════════════════════════════════════════ */
.fp-report-item {
  display: flex; align-items: center; gap: 10px;
  padding: 10px 14px; border-radius: 10px;
  cursor: pointer; transition: var(--transition);
  border: 1px solid transparent;
}
.fp-report-item:hover { background: var(--bg); border-color: var(--border); }
.fp-report-item input[type="checkbox"] {
  width: 16px; height: 16px; accent-color: var(--primary);
  cursor: pointer;
}
.fp-report-item label { font-size: 13.5px; cursor: pointer; }

/* ═══════════════════════════════════════════
   HEAR ABOUT US MODAL
═══════════════════════════════════════════ */
.fp-radio-card {
  display: flex; align-items: center; gap: 10px;
  padding: 11px 16px; border-radius: 12px;
  border: 1.5px solid var(--border); margin-bottom: 8px;
  cursor: pointer; transition: var(--transition);
}
.fp-radio-card:hover { border-color: var(--primary); background: var(--primary-light); }
.fp-radio-card input[type="radio"] { accent-color: var(--primary); }
.fp-radio-card.checked { border-color: var(--primary); background: var(--primary-light); }

/* ═══════════════════════════════════════════
   MOBILE ADJUSTMENTS
═══════════════════════════════════════════ */
@media (max-width: 900px) {
  .fp-sidebar { position: static; }
}
@media (max-width: 480px) {
  .fp-bio-card { padding: 16px; }
  .fp-fullname { font-size: 18px; }
  .fp-carousel-card { padding: 16px 0 16px 14px; }
  .fp-posts-card { padding: 16px; }
  .fp-payment-banner { flex-direction: column; align-items: flex-start; }
}

/* Fade-in entrance */
.fp-fade-in {
  opacity: 0; transform: translateY(20px);
  animation: fadeUp .5s ease forwards;
}
.fp-fade-in:nth-child(1) { animation-delay: .05s; }
.fp-fade-in:nth-child(2) { animation-delay: .12s; }
.fp-fade-in:nth-child(3) { animation-delay: .19s; }
.fp-fade-in:nth-child(4) { animation-delay: .26s; }
@keyframes fadeUp { to { opacity: 1; transform: translateY(0); } }

/* Active category tile */
.fp-cat-tile.active {
    /* background: linear-gradient(140deg, #a0440e 0%, #5a1c04 100%); */
    background: linear-gradient(140deg, #dc7228 0%, #000000 100%);
    box-shadow: 0 8px 24px rgba(220,114,40,.45);
    transform: translateY(-2px);
}

/* Video play overlay */
.fp-video-play-icon {
    position: absolute; inset: 0;
    display: flex; align-items: center; justify-content: center;
    background: rgba(0,0,0,.25);
    font-size: 36px; color: rgba(255,255,255,.9);
    pointer-events: none;
    transition: var(--transition);
}

/* default: show pause, hide play */
.fp-video-play-icon .fp-icon-pause { display: block; }
.fp-video-play-icon .fp-icon-play  { display: none;  }

/* on hover: hide pause, show play */
.fp-post-item:hover .fp-video-play-icon .fp-icon-pause { display: none;  }
.fp-post-item:hover .fp-video-play-icon .fp-icon-play  { display: block; }

.fp-post-item:hover .fp-video-play-icon { background: rgba(0,0,0,.15); }

/* Post meta row (likes, comments, date) */
.fp-post-meta {
    display: flex; align-items: center; gap: 8px;
    margin-bottom: 8px; flex-wrap: wrap;
}
.fp-post-stat {
    display: flex; align-items: center; gap: 3px;
    font-size: 12px; color: var(--text-muted);
}
.fp-post-stat i { font-size: 10px; color: var(--primary); }
.fp-post-date {
    font-size: 10px; color: var(--text-muted);
    margin-left: auto; white-space: nowrap;
}

/* Search input focus */
#postSearchInput:focus {
    border-color: var(--primary);
    background: #fff;
    width: 180px;
}

/* Shimmer animation */
@keyframes shimmer {
    0%   { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* QR modal */
.fp-qr-wrap {
    background: var(--glass);
    border-radius: var(--radius);
    padding: 16px;
    display: inline-block;
    box-shadow: var(--shadow);
    margin-bottom: 12px;
}
.fp-share-qr {
    text-align: center;
    margin-bottom: 18px;
}
.fp-qr-hint {
    font-size: 12px;
    color: var(--text-muted);
    margin: 0 0 12px;
    line-height: 1.5;
}
.fp-qr-dl-btn {
    background: var(--bg);
    border: 1.5px solid var(--border);
    color: var(--text);
    padding: 8px 20px;
    font-size: 13px;
}
.fp-qr-dl-btn:hover {
    border-color: var(--primary);
    color: var(--primary);
    background: var(--primary-light);
}
