/* =======================
   WISH SECTION
======================= */
.wish-section {
    position: relative;
    background: linear-gradient(to bottom, var(--serenity-light), #ffffff);
    padding: 80px 20px;
    overflow: hidden;
}

.wish-wrapper {
    max-width: 800px;
    margin: auto;
    position: relative;
}

/* =======================
   FLORAL ORNAMENT
======================= */
.floral-ornament {
    position: absolute;
    top: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0.15;
    font-size: 18px;
}

.wish-left {
    left: -10px;
}

.wish-right {
    right: -10px;
}

.floral-ornament i {
    color: var(--serenity-accent);
}

/* =======================
   TITLE
======================= */
.wish-title {
    text-align: center;
    margin-bottom: 35px;
}

.wish-title .section-title {
    font-size: 32px;
    font-weight: 600;
    color: var(--serenity-dark);
}

.wish-title .section-subtitle {
    font-size: 14px;
    color: var(--serenity-accent);
    margin-top: 6px;
}

/* =======================
   CARD
======================= */
.wish-card {
    background: #ffffff;
    border-radius: 18px;
    box-shadow: 0 20px 45px rgba(138, 127, 141, 0.08);
    padding: 30px;
    border: 1px solid var(--serenity-medium);
}

/* Header */
.wish-header {
    text-align: center;
    font-weight: 500;
    margin-bottom: 20px;
    color: var(--serenity-accent);
}

/* =======================
   FORM
======================= */
.wish-form {
    display: grid;
    gap: 14px;
    margin-bottom: 30px;
}

.wish-form input,
.wish-form select,
.wish-form textarea {
    width: 100%;
    padding: 12px 14px;
    border-radius: 10px;
    border: 1px solid var(--serenity-medium);
    font-size: 14px;
    transition: all .25s ease;
    color: var(--text-dark);
}

.wish-form textarea {
    resize: vertical;
    min-height: 90px;
}

.wish-form input:focus,
.wish-form select:focus,
.wish-form textarea:focus {
    border-color: var(--serenity-dark);
    outline: none;
    box-shadow: 0 0 0 2px rgba(138, 127, 141, .15);
}

/* Button */
.wish-form button {
    background: var(--bt-btn-1);
    color: #fff;
    border: none;
    padding: 13px;
    border-radius: 12px;
    font-weight: 600;
    cursor: pointer;
    transition: transform .2s ease, box-shadow .2s ease;
}

.wish-form button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(138, 127, 141, .35);
}

/* =======================
   COMMENTS
======================= */
.wish-comments {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.wish-comment-item {
    background: var(--serenity-light);
    border-radius: 14px;
    padding: 14px 16px;
    animation: fadeUp .4s ease;
    border: 1px solid var(--serenity-medium);
}

.wish-comment-sosmed {
    font-size: 13px;
    font-weight: 600;
    color: var(--serenity-deep);
    margin-bottom: 6px;
}

.wish-comment-sosmed i {
    color: var(--serenity-dark);
    margin-right: 4px;
}

.comment-time {
    font-weight: 400;
    font-size: 12px;
    color: var(--serenity-accent);
}

.wish-comment-message {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Empty state */
.wish-comments .text-center {
    text-align: center;
    color: var(--serenity-accent);
    font-size: 14px;
}

/* =======================
   ANIMATION
======================= */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* =======================
   RESPONSIVE
======================= */
@media (max-width: 600px) {
    .wish-card {
        padding: 22px;
    }

    .wish-title .section-title {
        font-size: 26px;
    }
}