﻿/* ========================================
   Shohaz NEXT — Explore Page (Instagram-like)
   ======================================== */

/* ---- Section ---- */
.explore-section {
    padding: 100px 0 60px;
    background: var(--white);
    min-height: 100vh;
}

.explore-container {
    max-width: 935px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ---- Search ---- */
.explore-search {
    position: relative;
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--gray-100);
    border: 1.5px solid transparent;
    border-radius: 12px;
    padding: 11px 16px;
    margin-bottom: 14px;
    transition: all 0.2s var(--ease);
}

.explore-search:focus-within {
    background: var(--white);
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.1);
}

.explore-search-icon {
    color: var(--gray-400);
    flex-shrink: 0;
    transition: color 0.2s;
}

.explore-search:focus-within .explore-search-icon {
    color: var(--accent);
}

.explore-search input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--black);
    min-width: 0;
}

.explore-search input::placeholder {
    color: var(--gray-400);
    font-weight: 500;
}

.explore-search-clear {
    display: none;
    background: var(--gray-200);
    color: var(--gray-600);
    border: none;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    cursor: pointer;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.2s;
}

.explore-search-clear:hover {
    background: var(--black);
    color: var(--white);
}

.explore-search.has-value .explore-search-clear {
    display: flex;
}

/* ---- Tabs ---- */
.explore-tabs {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 2px 0 12px;
    margin-bottom: 16px;
    border-bottom: 1px solid var(--gray-200);
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.explore-tabs::-webkit-scrollbar {
    display: none;
}

.explore-tab {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 16px;
    background: var(--gray-100);
    border: 1.5px solid transparent;
    color: var(--gray-600);
    font-family: var(--font);
    font-size: 0.8rem;
    font-weight: 700;
    border-radius: 100px;
    cursor: pointer;
    white-space: nowrap;
    flex-shrink: 0;
    transition: all 0.2s var(--ease);
}

.explore-tab svg {
    flex-shrink: 0;
}

.explore-tab:hover {
    background: var(--gray-200);
    color: var(--black);
}

.explore-tab.active {
    background: var(--black);
    color: var(--white);
    border-color: var(--black);
}

/* ---- Empty ---- */
.explore-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 50px 20px;
    color: var(--gray-400);
    text-align: center;
}

.explore-empty svg {
    margin-bottom: 12px;
    opacity: 0.6;
}

.explore-empty h3 {
    font-size: 1rem;
    font-weight: 800;
    color: var(--gray-800);
    margin-bottom: 4px;
}

.explore-empty p {
    font-size: 0.82rem;
    color: var(--gray-600);
}

/* ---- Grid (Instagram explore) ---- */
.explore-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 1fr;
    gap: 4px;
    grid-auto-flow: dense;
}

.explore-cell {
    position: relative;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    background: var(--gray-100);
    cursor: pointer;
    border: none;
    padding: 0;
    isolation: isolate;
}

.explore-cell-media {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s var(--ease);
    display: block;
    pointer-events: none;
}

.explore-cell:hover .explore-cell-media {
    transform: scale(1.03);
}

/* Variants */
.explore-cell-tall {
    grid-row: span 2;
    aspect-ratio: 1 / 2;
}

.explore-cell-wide {
    grid-column: span 2;
    aspect-ratio: 2 / 1;
}

.explore-cell-big {
    grid-row: span 2;
    grid-column: span 2;
    aspect-ratio: 1 / 1;
}

/* Type badge (top-left) */
.explore-cell-type {
    position: absolute;
    top: 8px;
    left: 8px;
    color: var(--white);
    z-index: 2;
    filter: drop-shadow(0 1px 2px rgba(0, 0, 0, 0.5));
    pointer-events: none;
}

/* Hover overlay */
.explore-cell-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    color: var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.2s;
    z-index: 3;
}

.explore-cell:hover .explore-cell-overlay {
    opacity: 1;
}

.explore-cell-stat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--white);
}

.explore-cell-stat svg {
    fill: var(--white);
}

/* ---- Modal ---- */
.explore-modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
    animation: exFade 0.2s ease;
}

@keyframes exFade {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

body.explore-modal-open {
    overflow: hidden;
}

.explore-modal-close {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(255, 255, 255, 0.12);
    border: none;
    color: var(--white);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(10px);
    transition: background 0.2s;
    z-index: 10;
}

.explore-modal-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.explore-modal-inner {
    display: grid;
    grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
    width: 100%;
    max-width: 1080px;
    height: min(85vh, 700px);
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    animation: exSlide 0.25s var(--ease);
}

@keyframes exSlide {
    from {
        opacity: 0;
        transform: translateY(8px) scale(0.98);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

/* Media */
.explore-modal-media {
    position: relative;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.explore-modal-media img,
.explore-modal-media video {
    max-width: 100%;
    max-height: 100%;
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.explore-modal-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 34px;
    height: 34px;
    border: none;
    background: rgba(255, 255, 255, 0.85);
    color: var(--black);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s;
    z-index: 5;
}

.explore-modal-nav:hover {
    background: var(--white);
}

.explore-modal-prev {
    right: 12px;
}

.explore-modal-next {
    left: 12px;
}

/* ── فلش‌های ناوبری پست — بیرون از پاپ‌اپ ── */
.modal-post-prev,
.modal-post-next {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    z-index: 2100;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: rgba(255, 255, 255, .85);
    filter: drop-shadow(0 2px 6px rgba(0, 0, 0, .8));
    transition: color .15s, filter .15s, transform .15s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-post-prev {
    right: 12px;
}

.modal-post-next {
    left: 12px;
}

.modal-post-prev:hover,
.modal-post-next:hover {
    color: #fff;
    filter: drop-shadow(0 2px 10px rgba(0, 0, 0, 1));
    transform: translateY(-50%) scale(1.15);
}

/* Content side */
.explore-modal-content {
    display: flex;
    flex-direction: column;
    background: var(--white);
    min-width: 0;
}

/* Author */
.modal-author {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-bottom: 1px solid var(--gray-200);
    flex-shrink: 0;
}

.modal-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: var(--white);
    font-weight: 900;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    border: 2px solid var(--white);
    box-shadow: 0 0 0 1.5px var(--accent);
}

.modal-avatar-sm {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    box-shadow: 0 0 0 1px var(--gray-200);
}

.modal-author-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
    gap: 1px;
}

.modal-author-name {
    font-size: 0.82rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1.2;
}

.modal-author-meta {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--gray-400);
    line-height: 1.2;
}

/* Body */
.modal-body {
    flex: 1;
    overflow-y: auto;
    padding: 12px 14px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-height: 0;
}

.modal-caption {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.modal-caption>div {
    min-width: 0;
}

.modal-caption p {
    font-size: 0.83rem;
    line-height: 1.6;
    color: var(--gray-800);
    margin: 0;
    word-wrap: break-word;
}

.modal-caption strong {
    font-weight: 800;
    color: var(--black);
    margin-left: 4px;
}

.modal-time {
    font-size: 0.65rem;
    color: var(--gray-400);
    margin-top: 3px;
    display: inline-block;
}

/* Comments */
.modal-comments {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.modal-comments>p {
    color: var(--gray-400);
    font-size: 0.8rem;
    text-align: center;
    padding: 12px 0;
    margin: 0;
}

.modal-comment {
    display: flex;
    gap: 8px;
    align-items: flex-start;
}

.modal-comment-body {
    flex: 1;
    min-width: 0;
}

.modal-comment-body p {
    font-size: 0.83rem;
    line-height: 1.5;
    color: var(--gray-800);
    margin: 0;
    word-wrap: break-word;
}

.modal-comment-body strong {
    font-weight: 800;
    color: var(--black);
    margin-left: 4px;
}

.modal-comment-mention {
    color: var(--accent, #6366f1);
    font-weight: 700;
    font-size: 0.8rem;
}

.modal-comment-meta {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 2px;
    font-size: 0.65rem;
    color: var(--gray-400);
    font-weight: 700;
}

.modal-comment-meta button {
    background: none;
    border: none;
    color: var(--gray-400);
    font-size: 0.65rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    font-family: var(--font);
    transition: color 0.2s;
}

.modal-comment-meta button:hover {
    color: var(--black);
}

.modal-comment-like {
    flex-shrink: 0;
    margin-top: 3px;
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    padding: 2px;
    transition: color 0.2s, transform 0.15s;
    display: none;
}

.modal-comment-like:hover {
    color: var(--red);
    transform: scale(1.1);
}

.modal-comment-like.liked {
    color: var(--red);
}

.modal-comment-like.liked svg {
    fill: var(--red);
    stroke: var(--red);
}

.modal-comment-like-wrap {
    display: none;
}

.modal-comment-like-count {
    display: none;
}

/* Action bar */
.modal-actions {
    border-top: 1px solid var(--gray-200);
    padding: 8px 14px 12px;
    flex-shrink: 0;
    background: var(--white);
}

.modal-actions-row {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 4px;
}

.modal-action-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    color: var(--black);
    transition: transform 0.15s, color 0.2s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.modal-action-btn:hover {
    color: var(--gray-600);
}

.modal-action-btn:active {
    transform: scale(0.92);
}

.modal-action-save {
    margin-right: auto;
}

.modal-action-btn.liked svg {
    fill: var(--red);
    stroke: var(--red);
    animation: likePop 0.4s var(--ease);
}

@keyframes likePop {
    0% {
        transform: scale(1);
    }

    40% {
        transform: scale(1.25);
    }

    100% {
        transform: scale(1);
    }
}

.modal-likes-count {
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--black);
    margin: 2px 0 6px;
}

.modal-likes-count strong {
    font-weight: 900;
}

/* Comment form */
.modal-comment-form {
    display: flex;
    align-items: center;
    gap: 8px;
    border-top: 1px solid var(--gray-200);
    padding-top: 8px;
    margin-top: 6px;
}

.modal-comment-form input {
    flex: 1;
    border: none;
    outline: none;
    background: transparent;
    font-size: 0.85rem;
    font-family: var(--font);
    color: var(--black);
    padding: 4px 0;
    min-width: 0;
}

.modal-comment-form input::placeholder {
    color: var(--gray-400);
}

.modal-comment-form button {
    background: none;
    border: none;
    color: var(--accent);
    font-weight: 800;
    font-size: 0.85rem;
    cursor: pointer;
    font-family: var(--font);
    padding: 4px 6px;
    border-radius: 6px;
    transition: all 0.2s;
}

.modal-comment-form button:disabled {
    color: var(--gray-200);
    cursor: not-allowed;
}

.modal-comment-form button:not(:disabled):hover {
    background: var(--accent-light);
}

/* Heart pop overlay */
.explore-heart-pop {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0);
    color: rgba(255, 255, 255, 0.95);
    pointer-events: none;
    z-index: 10;
}

.explore-heart-pop.show {
    animation: heartPop 0.9s ease forwards;
}

@keyframes heartPop {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 0;
    }

    20% {
        transform: translate(-50%, -50%) scale(1.2);
        opacity: 1;
    }

    50% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(0.9);
        opacity: 0;
    }
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
    .explore-modal-inner {
        grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
        height: min(85vh, 620px);
    }
}

@media (max-width: 768px) {
    .explore-section {
        padding: 80px 0 50px;
    }

    .explore-container {
        padding: 0 12px;
    }

    .explore-search {
        padding: 10px 14px;
    }

    .explore-tabs {
        gap: 6px;
        padding-bottom: 10px;
    }

    .explore-tab {
        padding: 7px 14px;
        font-size: 0.76rem;
    }

    .explore-grid {
        gap: 3px;
    }

    .explore-cell-wide,
    .explore-cell-big {
        grid-row: span 1;
        grid-column: span 1;
        aspect-ratio: 1 / 1;
    }

    /* Mobile modal — fullscreen */
    .explore-modal {
        padding: 0;
    }

    .explore-modal-close {
        top: 10px;
        left: 10px;
        width: 34px;
        height: 34px;
        background: rgba(0, 0, 0, 0.55);
    }

    .explore-modal-inner {
        grid-template-columns: 1fr;
        grid-template-rows: auto 1fr;
        max-width: 100%;
        height: 100vh;
        height: 100dvh;
        border-radius: 0;
    }

    .explore-modal-media {
        max-height: 50vh;
        min-height: 260px;
    }

    .explore-modal-nav {
        width: 30px;
        height: 30px;
    }

    .modal-actions {
        padding-bottom: max(12px, env(safe-area-inset-bottom));
    }
}

@media (max-width: 480px) {
    .explore-tab span {
        font-size: 0.74rem;
    }

    .modal-author-name {
        font-size: 0.8rem;
    }

    .modal-caption p,
    .modal-comment-body p {
        font-size: 0.8rem;
    }
}


/* ========================================
   Modal Slider (multi-media)
   ======================================== */

/* کانتینر اسلایدر */
.modal-slider {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000;
}

/* هر اسلاید */
.modal-slide {
    display: none;
    width: 100%;
    height: 100%;
    align-items: center;
    justify-content: center;
    background: #000;
}

.modal-slide.active {
    display: flex;
    animation: slideIn .22s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: scale(.97);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

/*
 * تصویر — object-fit: contain
 * تصویر کامل نشون داده می‌شه، هیچ بخشی crop نمی‌شه
 * فضای خالی با رنگ پس‌زمینه (#000) پر می‌شه
 */
.modal-slide img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
}

/* ویدیو */
.modal-slide video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* دکمه‌های prev/next اسلایدر — مینیمال، بدون background */
.modal-slide-prev,
.modal-slide-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 6;
    padding: 0;
    color: #fff;
    filter: drop-shadow(0 1px 4px rgba(0, 0, 0, .7));
    transition: filter .15s, transform .15s;
}

.modal-slide-prev:hover,
.modal-slide-next:hover {
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, .9));
    transform: translateY(-50%) scale(1.15);
}

.modal-slide-prev {
    left: 10px;
}

.modal-slide-next {
    right: 10px;
}

/* dots */
.modal-slide-dots {
    position: absolute;
    bottom: 12px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
    z-index: 7;
    padding: 4px 8px;
    background: rgba(0, 0, 0, .25);
    border-radius: 20px;
    backdrop-filter: blur(4px);
}

.modal-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .45);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: background .2s, transform .2s, width .2s;
    flex-shrink: 0;
}

.modal-dot.active {
    background: #fff;
    width: 18px;
    border-radius: 3px;
    transform: none;
}


/* ── پاسخ مدیر در مودال ── */
.modal-admin-reply {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    background: #f0fdf4;
    border-right: 2px solid #22c55e;
    border-radius: 6px;
    padding: 6px 10px;
    margin-top: 6px;
    font-size: 0.8rem;
    color: #166534;
    line-height: 1.5;
}

.modal-admin-badge {
    font-size: 0.7rem;
    font-weight: 800;
    color: #16a34a;
    white-space: nowrap;
    flex-shrink: 0;
}


/* ── پاسخ‌ها (replies) در مودال ── */
.modal-reply {
    display: flex;
    align-items: flex-start;
    gap: 6px;
    margin-top: 8px;
    padding-right: 10px;
    border-right: 2px solid var(--gray-200);
    position: relative;
}

/* پاسخ‌های تو در تو */
.modal-reply .modal-reply {
    margin-right: 6px;
    border-right-color: var(--gray-100);
}

.modal-reply .modal-reply .modal-reply {
    border-right-color: var(--gray-50, #f9fafb);
}

.modal-avatar-xs {
    width: 40px;
    height: 40px;
    font-size: 0.9rem;
    box-shadow: none;
    flex-shrink: 0;
}

.modal-reply-body p {
    font-size: 0.78rem;
    line-height: 1.5;
    color: var(--gray-700);
    margin: 0;
}

.modal-reply-body strong {
    font-weight: 800;
    color: var(--black);
    margin-left: 3px;
}

.modal-reply-badge {
    display: inline-flex;
    align-items: center;
    gap: 2px;
    font-size: 0.62rem;
    font-weight: 700;
    color: var(--green, #22c55e);
    background: rgba(34, 197, 94, 0.08);
    padding: 1px 5px;
    border-radius: 4px;
    margin-left: 4px;
    vertical-align: middle;
}

.modal-reply-badge svg {
    flex-shrink: 0;
}

.modal-reply-time {
    font-size: 0.6rem;
    color: var(--gray-400);
}

/* دکمه پاسخ */
.modal-reply-btn {
    background: none;
    border: none;
    color: var(--gray-400);
    font-size: 0.65rem;
    font-weight: 700;
    cursor: pointer;
    padding: 0;
    margin-right: 10px;
    font-family: var(--font);
    transition: color 0.2s;
}

.modal-reply-btn:hover {
    color: var(--black);
}

/* بنر reply */
.modal-reply-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: var(--gray-100);
    border-radius: 8px;
    padding: 6px 12px;
    margin-bottom: 6px;
    font-size: 0.75rem;
    color: var(--gray-600);
}

.modal-reply-bar strong {
    color: var(--black);
    margin: 0 3px;
}

.modal-reply-bar button {
    background: none;
    border: none;
    color: var(--gray-400);
    cursor: pointer;
    font-size: 14px;
    padding: 2px 4px;
    line-height: 1;
}

.modal-reply-bar button:hover {
    color: var(--black);
}


/* ── Share Menu ── */
.explore-share-menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    z-index: 3000;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    animation: exFade 0.15s ease;
}

.explore-share-inner {
    background: var(--white);
    border-radius: 16px 16px 0 0;
    padding: 20px 16px 24px;
    width: 100%;
    max-width: 400px;
    animation: shareSlideUp 0.25s var(--ease);
}

@keyframes shareSlideUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.explore-share-inner h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: var(--black);
    margin: 0 0 16px;
    text-align: center;
}

.explore-share-options {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
}

.explore-share-opt {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px 4px;
    border-radius: 12px;
    transition: background 0.2s;
    color: var(--gray-700);
}

.explore-share-opt:hover {
    background: var(--gray-100);
}

.explore-share-opt svg {
    flex-shrink: 0;
}

.explore-share-opt span {
    font-size: 0.7rem;
    font-weight: 700;
    font-family: var(--font);
}

.explore-share-opt[data-share="whatsapp"] svg {
    color: #25d366;
}

.explore-share-opt[data-share="telegram"] svg {
    color: #0088cc;
}

.explore-share-opt[data-share="copy"] svg {
    color: var(--gray-600);
}

.explore-share-opt[data-share="sms"] svg {
    color: var(--accent);
}

.explore-share-toast {
    text-align: center;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--accent);
    margin: 12px 0 0;
    padding: 6px;
    background: rgba(34, 197, 94, 0.08);
    border-radius: 8px;
}

/* Share button in actions */
.modal-action-share {
    margin-right: auto;
}