/* Life Partners – kártyás layout, kereső, profil űrlap és profil nézet */

.lp-grid-wrapper {
    width: 100%;
    margin: 2rem auto;
}

.lp-card-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.5rem;
}

@media (max-width: 1024px) {
    .lp-card-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .lp-card-grid {
        grid-template-columns: 1fr;
    }
}

.lp-card {
    background: #ffffff;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.08);
    padding: 1.25rem 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.3);
}

.lp-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.lp-card-header-main {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.lp-card-avatar {
    width: 56px;
    height: 56px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f97373, #fb7185, #facc15);
    flex-shrink: 0;
    position: relative;
    overflow: hidden;
}

.lp-avatar-placeholder::after {
    content: "\1F464";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    color: #ffffff;
}

.lp-card-header-text {
    display: flex;
    flex-direction: column;
}

.lp-card-title {
    margin: 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
}

.lp-card-subtitle {
    margin-top: 0.15rem;
    font-size: 0.9rem;
    color: #64748b;
}

.lp-card-body {
    font-size: 0.95rem;
    color: #0f172a;
}

.lp-card-intro {
    margin: 0 0 0.5rem 0;
    line-height: 1.4;
}

.lp-card-meta {
    list-style: none;
    padding: 0;
    margin: 0.25rem 0 0 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.25rem 0.75rem;
    font-size: 0.85rem;
    color: #475569;
}

.lp-card-hint {
    margin: 0.25rem 0 0 0;
    font-size: 0.8rem;
    color: #6b7280;
}

.lp-meta-label {
    font-weight: 600;
    color: #0f172a;
}

.lp-card-footer {
    margin-top: 0.5rem;
    display: flex;
    justify-content: flex-end;
}

.lp-card-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1.1rem;
    border-radius: 999px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    cursor: pointer;
    border: none;
    transition: transform 0.12s ease, box-shadow 0.12s ease, background 0.12s ease;
}

.lp-card-btn-primary {
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(219, 39, 119, 0.35);
}

.lp-card-btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(219, 39, 119, 0.45);
}

.lp-card-btn-primary:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(219, 39, 119, 0.35);
}

.lp-card-btn-secondary {
    background: #e2e8f0;
    color: #0f172a;
    box-shadow: 0 4px 10px rgba(148, 163, 184, 0.4);
}

.lp-card-btn-secondary:hover {
    transform: translateY(-1px);
    box-shadow: 0 7px 16px rgba(148, 163, 184, 0.55);
}

.lp-card-btn-secondary:active {
    transform: translateY(0);
    box-shadow: 0 4px 10px rgba(148, 163, 184, 0.4);
}

/* Státusz badge-ek */

.lp-status-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.2rem 0.7rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    border: 1px solid transparent;
    white-space: nowrap;
}

.lp-status-badge-large {
    font-size: 0.78rem;
    padding: 0.25rem 0.85rem;
}

.lp-status-single {
    background: #ecfdf3;
    border-color: #22c55e;
    color: #166534;
}

.lp-status-talking {
    background: #fef3c7;
    border-color: #f59e0b;
    color: #92400e;
}

.lp-status-taken {
    background: #fee2e2;
    border-color: #ef4444;
    color: #991b1b;
}

/* Keresősáv layout */

.lp-search-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    align-items: flex-end;
    padding: 1.25rem 1.5rem;
    margin: 1rem 0 1.5rem 0;
    background: #f8fafc;
    border-radius: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.4);
}

@media (max-width: 1024px) {
    .lp-search-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 640px) {
    .lp-search-grid {
        grid-template-columns: 1fr;
    }
}

.lp-search-field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
    margin-bottom: 0.3rem;
}

.lp-search-field input,
.lp-search-field select {
    width: 100%;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.8);
    padding: 0.5rem 0.9rem;
    font-size: 0.9rem;
    outline: none;
    background: #ffffff;
}

.lp-search-field input:focus,
.lp-search-field select:focus {
    border-color: #db2777;
    box-shadow: 0 0 0 1px rgba(219, 39, 119, 0.25);
}

.lp-search-age-inner {
    display: flex;
    align-items: center;
    gap: 0.35rem;
}

.lp-search-age-inner input {
    flex: 1 1 0;
    text-align: center;
}

.lp-search-age-sep {
    font-size: 0.9rem;
    color: #64748b;
}

.lp-search-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.lp-search-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    border: none;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(219, 39, 119, 0.35);
}

.lp-search-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(219, 39, 119, 0.45);
}

.lp-search-btn:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(219, 39, 119, 0.35);
}

/* Tagsági információs sáv */

.lp-membership-bar {
    margin: 1.5rem 0;
    padding: 1.5rem 1.75rem;
    border-radius: 1rem;
    background: linear-gradient(135deg, #fef2f8, #eef2ff);
    border: 1px solid rgba(244, 114, 182, 0.4);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.lp-membership-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.2rem;
    font-weight: 700;
    color: #9d174d;
}

.lp-membership-text {
    margin: 0.2rem 0;
    font-size: 0.95rem;
    color: #4b5563;
}

.lp-membership-text strong {
    font-weight: 700;
    color: #be123c;
}.lp-membership-actions {
    margin-top: 0.75rem;
}

.lp-membership-rules-btn {
    display: inline-block;
    padding: 0.45rem 0.9rem;
    border-radius: 0.75rem;
    background: #ffffff;
    border: 1px solid rgba(190, 18, 60, 0.25);
    color: #9d174d;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.15s ease;
}

.lp-membership-rules-btn:hover {
    border-color: rgba(190, 18, 60, 0.5);
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
}


/* Profil űrlap */

.lp-profile-form {
    margin: 2rem 0;
    padding: 1.5rem 1.75rem;
    border-radius: 1rem;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 10px 25px rgba(15, 23, 42, 0.06);
}

.lp-profile-form-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.25rem;
    font-weight: 700;
    color: #0f172a;
}

.lp-profile-form-intro {
    margin: 0 0 1rem 0;
    font-size: 0.95rem;
    color: #4b5563;
}

.lp-profile-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem 1.5rem;
    margin-bottom: 1rem;
}

@media (max-width: 640px) {
    .lp-profile-grid {
        grid-template-columns: 1fr;
    }
}

.lp-profile-field {
    display: flex;
    flex-direction: column;
}

.lp-profile-field-full {
    margin-top: 0.75rem;
}

.lp-profile-field label {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: #64748b;
    margin-bottom: 0.25rem;
}

.lp-profile-field input,
.lp-profile-field select,
.lp-profile-field textarea {
    border-radius: 0.75rem;
    border: 1px solid rgba(148, 163, 184, 0.9);
    padding: 0.55rem 0.8rem;
    font-size: 0.95rem;
    outline: none;
    font-family: inherit;
    resize: vertical;
}

.lp-profile-field input:focus,
.lp-profile-field select:focus,
.lp-profile-field textarea:focus {
    border-color: #db2777;
    box-shadow: 0 0 0 1px rgba(219, 39, 119, 0.25);
}

.lp-profile-actions {
    margin-top: 1rem;
    display: flex;
    justify-content: flex-end;
}

.lp-profile-submit {
    border-radius: 999px;
    border: none;
    padding: 0.6rem 1.6rem;
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    cursor: pointer;
    background: linear-gradient(135deg, #ec4899, #db2777);
    color: #ffffff;
    box-shadow: 0 10px 20px rgba(219, 39, 119, 0.35);
}

.lp-profile-submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 28px rgba(219, 39, 119, 0.45);
}

.lp-profile-submit:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(219, 39, 119, 0.35);
}

.lp-profile-notice {
    margin: 0.5rem 0 1rem 0;
    padding: 0.75rem 1rem;
    border-radius: 0.75rem;
    font-size: 0.9rem;
}

.lp-profile-notice-success {
    background: #ecfdf3;
    border: 1px solid #22c55e;
    color: #166534;
}

.lp-profile-notice-error {
    background: #fef2f2;
    border: 1px solid #ef4444;
    color: #991b1b;
}

/* Profil megtekintés layout */

.lp-profile-view {
    margin: 2rem 0;
    padding: 1.75rem 2rem;
    border-radius: 1.25rem;
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.4);
    box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

@media (max-width: 640px) {
    .lp-profile-view {
        padding: 1.25rem 1.25rem;
    }
}

.lp-profile-view-header {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1rem;
    margin-bottom: 1.25rem;
    align-items: center;
}

@media (max-width: 640px) {
    .lp-profile-view-header {
        grid-template-columns: 1fr;
        align-items: flex-start;
    }
}

.lp-profile-view-avatar {
    width: 80px;
    height: 80px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f97373, #fb7185, #facc15);
    position: relative;
    overflow: hidden;
    flex-shrink: 0;
}

.lp-profile-view-header-top {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: flex-start;
}

.lp-profile-view-header-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.lp-profile-view-name {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 800;
    color: #0f172a;
}

.lp-profile-view-subtitle {
    font-size: 0.95rem;
    color: #64748b;
}

.lp-profile-view-meta-line {
    font-size: 0.9rem;
    color: #4b5563;
}

.lp-profile-view-label {
    font-weight: 600;
    margin-right: 0.3rem;
}

.lp-profile-view-body {
    margin-top: 0.75rem;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.lp-profile-view-grid {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(0, 1.2fr);
    gap: 1.25rem;
}

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

.lp-profile-view-section h2,
.lp-profile-view-section h3 {
    margin: 0 0 0.35rem 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #0f172a;
}

.lp-profile-view-section p {
    margin: 0;
    font-size: 0.95rem;
    color: #4b5563;
    line-height: 1.6;
}

.lp-profile-view-section-muted {
    background: #f9fafb;
    padding: 0.75rem 0.9rem;
    border-radius: 0.9rem;
    border: 1px dashed rgba(148, 163, 184, 0.6);
}

.lp-profile-facts {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    font-size: 0.9rem;
    color: #4b5563;
}

.lp-profile-facts li span:first-child {
    font-weight: 600;
    margin-right: 0.25rem;
}

/* Beszélgetés / státusz sáv az adatlap tetején */

.lp-conversation-bar {
    margin: 0 0 1.25rem 0;
    padding: 0.9rem 1rem;
    border-radius: 0.9rem;
    background: #f8fafc;
    border: 1px solid rgba(148, 163, 184, 0.5);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lp-conversation-text {
    margin: 0;
    font-size: 0.9rem;
    color: #4b5563;
}

.lp-conversation-actions {
    margin: 0;
    display: flex;
    justify-content: flex-end;
}

.lp-conversation-btn {
    border-radius: 999px;
    border: none;
    padding: 0.45rem 1.3rem;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.lp-conversation-btn-start {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: #ffffff;
}

.lp-conversation-btn-start:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(34, 197, 94, 0.35);
}

.lp-conversation-btn-start:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(34, 197, 94, 0.35);
}

.lp-conversation-btn-end {
    background: #fee2e2;
    color: #991b1b;
}

.lp-conversation-btn-end:hover {
    transform: translateY(-1px);
    box-shadow: 0 12px 24px rgba(248, 113, 113, 0.35);
}

.lp-conversation-btn-end:active {
    transform: translateY(0);
    box-shadow: 0 6px 14px rgba(248, 113, 113, 0.35);
}

.lp-conversation-notice {
    padding: 0.55rem 0.85rem;
    border-radius: 0.75rem;
    font-size: 0.88rem;
}

.lp-conversation-success {
    background: #ecfdf3;
    border: 1px solid #22c55e;
    color: #166534;
}

.lp-conversation-error {
    background: #fef2f2;
    border: 1px solid #ef4444;
    color: #991b1b;
}

.lp-conversation-warning {
    background: #fffbeb;
    border: 1px solid #facc15;
    color: #92400e;
}


/* Új: profil részletes adatok rács + galéria */

.lp-profile-details-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.75rem 1.5rem;
    margin-top: 0.75rem;
}

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

.lp-profile-detail .lp-label {
    font-size: 0.8rem;
    font-weight: 600;
    color: #6b7280;
    display: block;
    margin-bottom: 0.1rem;
}

.lp-profile-detail .lp-value {
    font-size: 0.95rem;
    color: #111827;
}

.lp-profile-view-section.lp-profile-view-details h2 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

/* Avatar képek */

.lp-card-avatar, .lp-profile-view-avatar {
    overflow: hidden;
}

.lp-card-avatar-img,
.lp-profile-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: inherit;
}

/* Képgaléria a profil nézeten */

.lp-profile-view-photos {
    margin-top: 1.5rem;
}

.lp-profile-view-photos h2 {
    font-size: 1rem;
    margin-bottom: 0.75rem;
}

.lp-profile-photos-main {
    width: 100%;
    max-width: 420px;
    border-radius: 1rem;
    overflow: hidden;
    margin-bottom: 0.75rem;
}

.lp-profile-photos-main img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
}

.lp-profile-photos-thumbs {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.lp-profile-photos-thumbs img {
    width: 70px;
    height: 70px;
    object-fit: cover;
    border-radius: 0.75rem;
    border: 2px solid #f472b6;
}

/* Profil űrlap – extra blokkok közti távolság */

.lp-profile-grid-extra {
    margin-top: 1rem;
}

/* --- Profil fotó galéria – extra stílusok --- */

.lp-photo-thumb {
    cursor: pointer;
    transition: transform 0.15s ease, box-shadow 0.15s ease, border-color 0.15s ease;
}

.lp-photo-thumb.is-active {
    border: 2px solid #fb7185;
    box-shadow: 0 0 0 2px rgba(251, 113, 133, 0.3);
    transform: scale(1.03);
}

.lp-photo-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.lp-photo-lightbox-inner {
    position: relative;
    max-width: 60vw;
    max-height: 60vh;
}

.lp-photo-lightbox-inner img {
    max-width: 100%;
    max-height: 100%;
    border-radius: 1rem;
}

.lp-photo-lightbox-close {
    position: absolute;
    top: -0.75rem;
    right: -0.75rem;
    background: rgba(15,23,42,0.9);
    color: #fff;
    border-radius: 999px;
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    cursor: pointer;
}



/* ---------------------------------
   Life Partners – fejléc shortcutok
---------------------------------- */
.lp-header-bar {
    display: inline-flex;
    gap: 8px;
    align-items: center;
    flex-wrap: wrap;
}

.lp-header-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 12px;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    line-height: 1;
}

.lp-header-btn-primary {
    background: #111;
    color: #fff;
}

.lp-header-btn-secondary {
    background: #f0f0f0;
    color: #111;
}

.lp-header-btn:hover {
    opacity: 0.9;
}


/* ---------------------------------
   Life Partners – online státusz badge
---------------------------------- */
.lp-card-presence {
    margin-top: 6px;
}

.lp-presence {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 8px;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.2px;
}

.lp-presence-online {
    background: #eaf7ee;
    color: #0f6b2f;
}

.lp-presence-offline {
    background: #f3f3f3;
    color: #444;
}

.lp-presence-online::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #17b34a;
    display: inline-block;
}

.lp-presence-offline::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #9a9a9a;
    display: inline-block;
}


/* ---------------------------------
   Life Partners – chat extra (fotó, smiley, typing)
---------------------------------- */
.lp-chat-form {
    margin-top: 10px;
}

.lp-chat-input-row {
    display: flex;
    gap: 8px;
    align-items: flex-end;
}

.lp-chat-emoji-btn {
    border: 0;
    background: #f3f3f3;
    padding: 6px 8px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.lp-chat-image-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: #f3f3f3;
    padding: 6px 8px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.lp-chat-image-btn input[type="file"] {
    display: none;
}

.lp-chat-form textarea[name="lp_chat_message"] {
    flex: 1;
    min-height: 44px;
    resize: vertical;
}

.lp-chat-send {
    padding: 8px 12px;
    border-radius: 8px;
}

.lp-chat-emoji-panel {
    margin-top: 8px;
    padding: 8px;
    background: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    max-width: 260px;
}

.lp-emoji-item {
    border: 0;
    background: #f6f6f6;
    padding: 6px;
    border-radius: 8px;
    cursor: pointer;
    font-size: 18px;
    line-height: 1;
}

.lp-chat-bubble .lp-chat-text {
    margin-bottom: 6px;
}

.lp-chat-image {
    max-width: 160px; /* sokkal kisebb az eredetinél */
    height: auto;
    border-radius: 10px;
    display: block;
}

.lp-chat-image-link {
    display: inline-block;
}

/* Typing indicator – 3 pötty */
.lp-chat-typing-indicator {
    margin-top: 6px;
    padding-left: 6px;
}

.lp-chat-typing-indicator .lp-dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 4px;
    border-radius: 50%;
    background: #999;
    animation: lp-dot-bounce 1.2s infinite ease-in-out;
}

.lp-chat-typing-indicator .lp-dot:nth-child(2) {
    animation-delay: 0.2s;
}
.lp-chat-typing-indicator .lp-dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes lp-dot-bounce {
    0%, 80%, 100% { transform: translateY(0); opacity: 0.4; }
    40% { transform: translateY(-4px); opacity: 1; }
}



/* ---------------------------------
   Life Partners – emoji + sticker panel
---------------------------------- */
.lp-emoji-tabs {
    display: flex;
    gap: 6px;
    margin-bottom: 8px;
}

.lp-emoji-tab {
    border: 0;
    background: #f3f3f3;
    padding: 6px 10px;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    font-size: 0.85rem;
}

.lp-emoji-tab.is-active {
    background: #111;
    color: #fff;
}

.lp-emoji-tab-content {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.lp-sticker-item {
    border: 0;
    background: #f6f6f6;
    padding: 6px;
    border-radius: 10px;
    cursor: pointer;
}

.lp-sticker-thumb {
    width: 30px;
    height: 30px;
    display: block;
}

.lp-chat-sticker {
    width: 56px;
    height: 56px;
    display: block;
}



.lp-chat-emoji-panel {
    max-width: 320px;
}


/* ---------------------------------
   Life Partners – dinamikus profil mezők UI
   (egyedi, nem konkurens-másolat)
---------------------------------- */
.lp-dyn-form {
    display: block;
    margin-top: 14px;
}

.lp-dyn-section-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin: 18px 0 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eaeaea;
}

.lp-dyn-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 6px;
    padding: 10px 0;
    border-bottom: 1px dashed #efefef;
}

.lp-dyn-label {
    font-weight: 600;
    font-size: 0.92rem;
    color: #222;
}

.lp-dyn-row input[type="text"],
.lp-dyn-row input[type="number"],
.lp-dyn-row input[type="date"],
.lp-dyn-row select,
.lp-dyn-row textarea {
    width: 100%;
    border: 1px solid #e2e2e2;
    border-radius: 10px;
    padding: 10px 12px;
    background: #fff;
}

.lp-dyn-row select[multiple] {
    min-height: 100px;
}



/* ---------------------------------
   Life Partners – dinamikus adatlap nézet (read-only)
---------------------------------- */
.lp-dyn-view {
    display: block;
    margin-top: 10px;
}

.lp-dyn-view-row {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid #f0f0f0;
}

.lp-dyn-view-label {
    font-weight: 600;
    color: #222;
    font-size: 0.92rem;
}

.lp-dyn-view-value {
    color: #111;
    font-size: 0.95rem;
}

/* Mobilon egy oszlopos */
@media (max-width: 640px) {
    .lp-dyn-view-row {
        grid-template-columns: 1fr;
    }
}

/* Kibővített “Ideális jelölt” blokk finom jelölése */
.lp-dyn-view-pref .lp-dyn-view-row {
    border-bottom-style: dashed;
}



/* ---------------------------------
   Life Partners – in-feed banner / videó blokkok a kártyák között
---------------------------------- */
.lp-card-grid-banners {
    grid-auto-flow: row dense;
}

.lp-grid-banner {
    background: #f7f7f7;
    border: 1px dashed #e5e5e5;
    border-radius: 16px;
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    padding: 12px;
}

.lp-grid-banner iframe,
.lp-grid-banner video,
.lp-grid-banner img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
}

/* Grid span / column helpers */
.lp-span-2 { grid-column: span 2; }
.lp-col-2  { grid-column-start: 2; }
.lp-col-3  { grid-column-start: 3; }

/* Tablet: 2 oszlopos layout */
@media (max-width: 1024px) {
    .lp-span-2 { grid-column: span 2; }
    .lp-col-2,
    .lp-col-3 { grid-column-start: auto; }
}

/* Mobil: 1 oszlop */
@media (max-width: 640px) {
    .lp-span-2 { grid-column: span 1; }
}

.lp-cards-pagination {
    margin-top: 18px;
    display: flex;
    justify-content: center;
}

.lp-cards-pagination-links .page-numbers {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 36px;
    height: 36px;
    margin: 0 4px;
    padding: 0 10px;
    border-radius: 10px;
    border: 1px solid #e6e6e6;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.92rem;
}

.lp-cards-pagination-links .page-numbers.current {
    background: #111;
    color: #fff;
    border-color: #111;
}


/* Chat drag & drop vizuális jelzés */
.lp-chat-input-row.is-dragover,
.lp-chat-form.is-dragover {
    outline: 2px dashed rgba(0,0,0,0.2);
    outline-offset: 4px;
}

/* ---------------------------------
   UI FIX 2025-12-09 – státusz + elérhetőség és vendég gomb méretek
---------------------------------- */

.lp-card-header {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.5rem 0.75rem;
}

.lp-card-header-main {
    flex: 1 1 auto;
    min-width: 0;
}

.lp-card-presence {
    margin-top: 0;
    flex: 0 0 auto;
}

.lp-status-badge {
    flex: 0 0 auto;
}

@media (max-width: 480px) {
    .lp-card-header {
        justify-content: flex-start;
    }

    .lp-card-presence,
    .lp-status-badge {
        margin-left: 0;
    }
}

/* Vendég gomb kisebb – "Belépés a részletekhez" */
.lp-card-footer .lp-card-btn-secondary {
    padding: 0.4rem 0.9rem;
    font-size: 0.8rem;
    font-weight: 600;
}

/* ---------------------------------
   UI FIX 2025-12-09 – státusz + elérhetőség és vendég gomb méretek
---------------------------------- */

.lp-card-header {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.5rem 0.75rem;
}

.lp-card-header-main {
    flex: 1 1 auto;
    min-width: 0;
}

.lp-card-presence,
.lp-status-badge {
    flex: 0 0 auto;
}

/* Kis képernyőn a badge-ek törjenek új sorba */
@media (max-width: 520px) {
    .lp-card-header {
        justify-content: flex-start;
    }
    .lp-card-presence {
        order: 2;
    }
    .lp-status-badge {
        order: 3;
    }
}

/* Vendég gomb finomítása */
.lp-card-footer .lp-card-btn-secondary {
    padding: 0.4rem 0.85rem;
    font-size: 0.82rem;
}

/* ---------------------------------
   UI FIX 2025-12-09 – státusz + elérhetőség és vendég gomb méretek
---------------------------------- */

.lp-card-header {
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 0.5rem 0.75rem;
}

.lp-card-header-main {
    flex: 1 1 auto;
    min-width: 0;
}

.lp-card-presence,
.lp-status-badge {
    flex: 0 0 auto;
    white-space: nowrap;
}

@media (max-width: 520px) {
    .lp-card-header {
        justify-content: flex-start;
    }

    .lp-card-presence,
    .lp-status-badge {
        margin-top: 0.15rem;
    }
}

/* Vendég gomb finomítás */
.lp-card-footer .lp-card-btn-secondary {
    padding: 0.4rem 0.85rem;
    font-size: 0.82rem;
    font-weight: 600;
}

.lp-card-presence,
.lp-status-badge {
    flex: 0 0 auto;
    white-space: nowrap;
}

@media (max-width: 520px) {
    .lp-card-header {
        justify-content: flex-start;
    }

    .lp-card-presence,
    .lp-status-badge {
        margin-top: 0.15rem;
    }
}

/* Vendég gomb finomítás */
.lp-card-footer .lp-card-btn-secondary {
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
}

.lp-card-presence,
.lp-status-badge {
    flex: 0 0 auto;
    white-space: nowrap;
}

@media (max-width: 520px) {
    .lp-card-header {
        justify-content: flex-start;
    }

    .lp-card-presence,
    .lp-status-badge {
        margin-top: 0.15rem;
    }
}

/* VendÃ©g gomb finomÃ­tÃ¡s */
.lp-card-footer .lp-card-btn-secondary {
    padding: 0.4rem 0.85rem;
    font-size: 0.8rem;
}


/* Fizetési lehetőségek (lenyíló fülek) */
.lp-payment-options {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px dashed rgba(190, 18, 60, 0.25);
}

.lp-payment-title {
    margin: 0 0 0.5rem 0;
    font-size: 1.05rem;
    font-weight: 700;
    color: #9d174d;
}

.lp-payment-form {
    display: block;
}

.lp-payment-accordion {
    display: grid;
    gap: 0.5rem;
}

.lp-payment-item {
    background: #ffffff;
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 0.85rem;
    padding: 0.25rem 0.5rem;
}

.lp-payment-item summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.5rem 0.25rem;
    font-weight: 600;
    color: #0f172a;
}

.lp-payment-item summary::-webkit-details-marker {
    display: none;
}

.lp-payment-label {
    font-size: 0.95rem;
}

.lp-payment-price {
    font-size: 0.95rem;
    font-weight: 700;
    color: #be123c;
    white-space: nowrap;
}

.lp-payment-body {
    padding: 0.25rem 0.25rem 0.75rem 0.25rem;
    font-size: 0.9rem;
    color: #475569;
}

.lp-payment-select {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 0.25rem;
    font-weight: 600;
    color: #0f172a;
}

.lp-payment-cart-btn {
    margin-top: 0.75rem;
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 0.85rem;
    background: #ffffff;
    border: 1px solid rgba(190, 18, 60, 0.35);
    color: #9d174d;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.15s ease;
}

.lp-payment-cart-btn:hover {
    border-color: rgba(190, 18, 60, 0.55);
    box-shadow: 0 6px 14px rgba(15, 23, 42, 0.08);
    transform: translateY(-1px);
}

.lp-payment-cart-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
