/* --- Wishes Section --- */
.wishes-section {
    padding: 80px 20px;
    /* background-image set dynamically via data-field-bg */
    background-size: cover;
    background-position: center;
    background-color: #111;
    text-align: center;
    position: relative;
    min-height: 100vh;
}

.wishes-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    z-index: 1;
}

.wishes-section .container {
    position: relative;
    z-index: 2;
}

.wishes-section h2 {
    font-family: var(--font-primary);
    font-size: 36px;
    color: #fff;
    margin-bottom: 10px;
}

.wishes-section p {
    font-family: var(--font-legan);
    color: #aaa;
    margin-bottom: 40px;
}

.wishes-container {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 5px;
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;

}

.wish-item {
    background: rgba(0, 0, 0, 0.2);
    padding: 10px 15px;
    border-radius: 4px;
    text-align: left;
    margin-bottom: 10px;
}

.wish-name {
    font-family: var(--font-body);
    font-weight: 700;
    color: #fff;
    margin-bottom: 5px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.verified-badge {
    color: #2ecc71;
    /* Green color for checkmark */
    font-size: 12px;
}

.wish-message {
    font-family: var(--font-legan);
    font-size: 15px;
    color: #fff;
    word-wrap: break-word;
    overflow-wrap: break-word;
    word-break: break-word;
    margin-bottom: 5px;
    line-height: 1.4;
}

.wish-date {
    font-family: var(--font-body);
    font-size: 11px;
    color: #aaa;
    display: block;
}