/* ==========================================
   WISH SECTION
========================================== */

.wish-section {
    padding: 100px 20px;
    position: relative;
    overflow: hidden;
    z-index: 2;
    overflow: hidden;
    color: var(--primary-color);
}

.wish-section::before {
    content: '';
    position: absolute;
    background: var(--primary-color);
    opacity: var(--primary-opacity);
    inset: 0;
    z-index: 0;
}

.wish-wrapper {
    border-radius: 15px;
    max-width: 750px;
    margin: auto;
    position: relative;
}

/* ==========================================
   FLORAL ORNAMENT
========================================== */

.floral-ornament {
    position: absolute;
    top: 30px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0.08;
    font-size: 26px;
    color: var(--secondary-color);
}

.wish-left {
    left: -30px;
}

.wish-right {
    right: -30px;
}

/* ==========================================
   TITLE
========================================== */

.wish-title {
    text-align: center;
    margin-bottom: 40px;
}

.wish-title .section-title {
    font-family: var(--heading-font);
    font-size: 48px;
    color: var(--text-color);
    margin-bottom: 5px;
}

.wish-title .section-subtitle {
    font-size: 14px;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-color);
}

/* ==========================================
   CARD
========================================== */

.wish-card {
    background: #ffffff;
    padding: 40px 30px;
    border-radius: var(--border-radius);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
}

/* ==========================================
   HEADER
========================================== */

.wish-header {
    text-align: center;
    margin-bottom: 25px;
    font-size: 14px;
    color: var(--text-color);
}

.wish-header i {
    margin-right: 6px;
    color: var(--secondary-color);
}

/* ==========================================
   FORM
========================================== */

.wish-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.wish-form input,
.wish-form select,
.wish-form textarea {
    width: 100%;
    padding: 12px 15px;
    border-radius: 8px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    font-size: 14px;
    font-family: var(--body-font);
    transition: 0.3s ease;
}

.wish-form input:focus,
.wish-form select:focus,
.wish-form textarea:focus {
    outline: none;
    border-color: var(--secondary-color);
}

.wish-form textarea {
    min-height: 100px;
    resize: none;
}

.wish-form button {
    margin-top: 10px;
    background: var(--secondary-color);
    color: var(--text-color);
    padding: 12px;
    border-radius: 30px;
    border: none;
    cursor: pointer;
    font-size: 14px;
    transition: 0.3s ease;
}

.wish-form button:hover {
    background: var(--primary-color);
    transform: translateY(-2px);
}

.wish-form button i {
    margin-right: 6px;
}

/* ==========================================
   COMMENTS LIST
========================================== */

.wish-comments {
    max-height: 350px;
    overflow-y: auto;
    padding-right: 5px;
}

/* Scrollbar subtle */
.wish-comments::-webkit-scrollbar {
    width: 4px;
}

.wish-comments::-webkit-scrollbar-thumb {
    background: var(--secondary-color);
    border-radius: 4px;
}

/* ==========================================
   COMMENT ITEM
========================================== */

.wish-comment-item {
    padding: 15px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.wish-comment-item:last-child {
    border-bottom: none;
}

.wish-comment-sosmed {
    font-size: 14px;
    font-weight: 500;
    color: var(--primary-color);
    margin-bottom: 6px;
}

.wish-comment-sosmed i {
    margin-right: 6px;
    color: var(--secondary-color);
}

.comment-time {
    font-size: 12px;
    font-weight: 400;
    opacity: 0.6;
}

.wish-comment-message {
    font-size: 14px;
    line-height: 1.6;
    color: var(--primary-color);
}

/* ==========================================
   EMPTY STATE
========================================== */

.wish-comment-item.text-center {
    text-align: center;
    font-style: italic;
    opacity: 0.7;
}

.wish-comment-item.text-center i {
    margin-right: 6px;
    color: var(--secondary-color);
}

/* ==========================================
   RESPONSIVE
========================================== */

@media (max-width: 600px) {
    .wish-card {
        padding: 30px 20px;
    }

    .floral-ornament {
        display: none;
    }
}