section.wedding-wish {
    position: relative;
    padding: 6rem 1rem;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #faece3;
    overflow: hidden;
    box-sizing: border-box;
    width: 100%;
}

.wedding-wish .bg-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}
.wedding-wish .bg-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.wedding-wish .bg-image-wrapper .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(253, 248, 243, 0.8);
}

.wedding-wish .content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 500px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.wedding-wish .title-container {
    margin-bottom: 2rem;
    text-align: center;
}

.wedding-wish .title-wish {
    font-family: var(--satisfy, "Great Vibes", cursive);
    font-size: 55px;
    font-weight: normal;
    color: #713135;
    margin: 0;
}

/* Kartu Ucapan Bersudut Melengkung */
.wedding-wish .wish-card-wrapper {
    width: 100%;
    background-color: #ffffff;
    border-radius: 35px;
    padding: 2.5rem 1.5rem;
    box-sizing: border-box;
    box-shadow: 0 15px 40px rgba(184, 134, 85, 0.25);
    border: 1px solid rgba(184, 134, 85, 0.1);
}

.wedding-wish .wish-content {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 10px;
    scrollbar-width: thin;
    scrollbar-color: #b88655 transparent;
}

.wedding-wish .wish-content::-webkit-scrollbar {
    width: 5px;
}
.wedding-wish .wish-content::-webkit-scrollbar-thumb {
    background-color: #713135;
    border-radius: 10px;
}

.wedding-wish .list-comment {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 24px;
}

.wedding-wish .avatar-emoji {
    width: 35px;
    height: 35px;
    flex-shrink: 0;
    object-fit: contain;
    margin-top: 2px;
}

.wedding-wish .details-comment {
    display: flex;
    flex-direction: column;
}

.wedding-wish .sender-name {
    font-family: var(--montserrat, sans-serif);
    font-size: 15px;
    font-weight: 700;
    color: #333333;
    margin: 0 0 2px 0;
}

.wedding-wish .timestamp {
    font-family: var(--montserrat, sans-serif);
    font-size: 11px;
    font-weight: 500;
    color: #999999;
    margin: 0 0 10px 0;
}

.wedding-wish .message-text {
    font-family: var(--montserrat, sans-serif);
    font-size: 13px;
    font-weight: 500;
    color: #666666;
    line-height: 1.5;
    margin: 0;
}

.wedding-wish .my-btn {
    display: inline-block;
    background-color: #713135;
    color: #ffffff;
    border: none;
    padding: 12px 30px;
    font-family: var(--montserrat, sans-serif);
    font-size: 13px;
    font-weight: 700;
    border-radius: 20px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 10px rgba(184, 134, 85, 0.2);
}

.wedding-wish .my-btn:hover {
    background-color: #5a272a;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(184, 134, 85, 0.3);
}

/* --- ORNAMEN --- */
.wedding-wish .ornaments {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.wedding-wish .ornaments img {
    position: absolute;
    width: 60%;
    max-width: 280px;
    object-fit: cover;
    opacity: 0.85;
}

.wedding-wish .ornaments img:nth-child(1) {
    top: -7%;
    width: 100% !important;
    max-width: none !important;
}

.wedding-wish .ornaments img:nth-child(2) {
    top: -1%;
    right: 0;
    z-index: 1;
    animation: rotateRight 3s ease-in-out infinite alternate;
}

.wedding-wish .ornaments img:nth-child(3) {
    top: -1%;
    left: 0;
    z-index: 1;
    animation: rotateLeft 3s ease-in-out infinite alternate;
}

.wedding-wish .ornaments img:nth-child(4) {
    bottom: -1%;
    right: 0;
    animation: rotateLeft 3s ease-in-out infinite alternate;
}

.wedding-wish .ornaments img:nth-child(5) {
    bottom: -1%;
    left: 0;
    animation: rotateRight 3s ease-in-out infinite alternate;
}
/* Responsif Mobile */
@media (max-width: 360px) {
    .wedding-wish .title-wish {
        font-size: 45px;
    }
    .wedding-wish .wish-card-wrapper {
        padding: 2rem 1rem;
        border-radius: 25px;
    }
    .wedding-wish .avatar-circle {
        width: 35px;
        height: 35px;
    }
    .wedding-wish .sender-name {
        font-size: 14px;
    }
    .wedding-wish .message-text {
        font-size: 12px;
    }
}
