/* Admire Modal Popup Styles */

/* Trigger Button */
.admire-modal-trigger-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    /* Space between icon and text */
    padding: 12px 24px;
    background-color: #7442cb;
    color: #fff;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    transition: all 0.3s ease;
}

.admire-modal-trigger-btn:hover {
    background-color: #5d32a8;
}

.admire-modal-trigger-btn i {
    font-size: 1.1em;
}

/* Modal Overlay */
.admire-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    backdrop-filter: blur(2px);
    /* Modern blur effect */
}

/* Modal Content Box */
.admire-modal-content {
    background-color: #fff;
    width: 600px;
    max-width: 90%;
    border-radius: 8px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    position: relative;
    transform: scale(0.8);
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    /* Bouncy effect */
    display: flex;
    flex-direction: column;
}

/* Active State */
.admire-modal-overlay.show-modal {
    opacity: 1;
    visibility: visible;
}

.admire-modal-overlay.show-modal .admire-modal-content {
    transform: scale(1);
}

/* Header & Close Button */
.admire-modal-header {
    padding: 10px;
    display: flex;
    justify-content: flex-end;
}

.admire-modal-close {
    font-size: 28px;
    font-weight: bold;
    color: #aaa;
    cursor: pointer;
    line-height: 1;
}

.admire-modal-close:hover {
    color: #333;
}

/* Body */
.admire-modal-body {
    padding: 20px 30px 40px;
    color: #333;
    overflow-y: auto;
    max-height: 80vh;
}