/* ══════════════════════════════════════════════════════════
   WISHAS — Info Zoom + Konfirmasi + Komentar
   ══════════════════════════════════════════════════════════ */

.wishas {
    width: 100%; min-height: 100vh;
    padding: 5rem 1.6rem 6rem;
    background: var(--grad-cream);
    position: relative; text-align: center;
    overflow: hidden;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    gap: 2rem;
}

/* Dekorasi */
.wishas::before {
    content: '';
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 5% 95%, rgba(201,168,76,0.08), transparent 50%),
        radial-gradient(ellipse at 95% 5%, rgba(26,107,90,0.06), transparent 45%);
    pointer-events: none;
}

.wishas svg { display: none; }

/* ── Judul umum ── */
.wishas div h2 {
    font-family: var(--font-display); font-weight: 700;
    position: relative; z-index: 1;
}

/* (Div Zoom info sudah dihapus dari HTML — form adalah elemen pertama) */

/* ══ DIV 1: Form Konfirmasi ══ */
.wishas > div:nth-of-type(1) {
    position: relative; z-index: 1;
    width: 100%; max-width: 480px;
    background: var(--white);
    border: 1px solid rgba(201,168,76,0.18);
    border-radius: var(--r-xl);
    padding: 2rem 1.8rem;
    box-shadow: var(--shadow-md);
    text-align: left;
    overflow: hidden;
}

.wishas > div:nth-of-type(1)::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: var(--grad-gold);
}

.wishas > div:nth-of-type(1) > h2 {
    font-size: 1.4rem; color: var(--primary-dark);
    text-align: center; margin-bottom: 0.1rem;
    font-family: var(--font-display);
}

.wishas > div:nth-of-type(1) > form {
    margin-top: 1rem;
    display: flex; flex-direction: column;
}

.wishas > div:nth-of-type(1) > form label {
    display: block; margin-top: 0.9rem; margin-bottom: 4px;
    font-size: 0.74rem; font-weight: 700;
    letter-spacing: 0.08em; text-transform: uppercase;
    color: var(--primary);
}

.wishas > div:nth-of-type(1) > form input,
.wishas > div:nth-of-type(1) > form select,
.wishas > div:nth-of-type(1) > form textarea {
    width: 100%;
    padding: 0.65rem 0.9rem;
    border-radius: var(--r-sm);
    border: 1.5px solid rgba(201,168,76,0.2);
    background: var(--cream);
    color: var(--text-main); font-family: var(--font-body);
    font-size: 0.86rem; transition: var(--ease);
}

.wishas > div:nth-of-type(1) > form select option {
    background: var(--white); color: var(--text-main);
}

.wishas > div:nth-of-type(1) > form input:focus,
.wishas > div:nth-of-type(1) > form select:focus,
.wishas > div:nth-of-type(1) > form textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.15);
}

.wishas > div:nth-of-type(1) > form input::placeholder,
.wishas > div:nth-of-type(1) > form textarea::placeholder {
    color: rgba(90,112,102,0.5);
}

.wishas > div:nth-of-type(1) > form textarea {
    min-height: 6rem; resize: vertical;
}

.wishas > div:nth-of-type(1) > form button {
    width: 100%;
    background: var(--grad-primary); color: var(--white);
    font-weight: 700; font-size: 0.88rem;
    padding: 0.78rem; border-radius: var(--r-md);
    border: none; cursor: pointer;
    margin-top: 1.2rem; transition: var(--ease-spring);
    letter-spacing: 0.05em;
    display: flex; align-items: center;
    justify-content: center; gap: 0.5rem;
    font-family: var(--font-body);
}

.wishas > div:nth-of-type(1) > form button:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

/* ══ DIV 3: Komentar ══ */
.wishas > div:nth-of-type(2) {
    position: relative; z-index: 1;
    width: 100%; max-width: 480px;
    background: var(--white);
    border: 1px solid rgba(201,168,76,0.15);
    border-radius: var(--r-xl);
    padding: 1.6rem 1.4rem;
    box-shadow: var(--shadow-sm);
    text-align: left;
    overflow: hidden;
}

.wishas > div:nth-of-type(2)::before {
    content: ''; position: absolute;
    top: 0; left: 0; right: 0; height: 3px;
    background: linear-gradient(90deg, var(--primary-light), var(--primary));
}

.wishas > div:nth-of-type(2) > p {
    font-size: 0.76rem; color: var(--primary);
    font-weight: 600; text-align: center;
    margin-bottom: 0;
}

.wishas > div:nth-of-type(2) ul {
    margin-top: 0.8rem;
    display: flex; flex-direction: column; gap: 0.6rem;
    min-height: 14rem; max-height: 22rem;
    overflow-y: auto;
    scrollbar-width: thin;
    scrollbar-color: rgba(201,168,76,0.3) transparent;
}

.wishas > div:nth-of-type(2) ul::-webkit-scrollbar { width: 3px; }
.wishas > div:nth-of-type(2) ul::-webkit-scrollbar-thumb {
    background: rgba(201,168,76,0.3); border-radius: 99px;
}

.wishas > div:nth-of-type(2) ul li {
    display: flex; align-items: flex-start; gap: 0.7rem;
    background: var(--cream); border-radius: var(--r-md);
    padding: 0.7rem 0.9rem;
    border: 1px solid rgba(201,168,76,0.1);
    transition: var(--ease);
}

.wishas > div:nth-of-type(2) ul li:hover {
    border-color: rgba(201,168,76,0.3);
    background: rgba(253,249,240,0.8);
}

/* Avatar inisial */
.wishas > div:nth-of-type(2) ul li div:nth-of-type(1) {
    width: 2rem; height: 2rem; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0; color: var(--white);
    font-weight: 700; font-size: 0.85rem;
    border: 1.5px solid rgba(255,255,255,0.3);
}

.wishas > div:nth-of-type(2) ul li div:nth-of-type(2) { flex: 1; }

.wishas > div:nth-of-type(2) ul li div:nth-of-type(2) h4 {
    font-size: 0.84rem; font-weight: 700;
    color: var(--text-main);
}

.wishas > div:nth-of-type(2) ul li div:nth-of-type(2) p:nth-of-type(1) {
    font-size: 0.62rem; color: var(--text-muted);
    line-height: 1.4; margin: 0.15rem 0;
}

.wishas > div:nth-of-type(2) ul li div:nth-of-type(2) p:nth-of-type(2) {
    font-size: 0.8rem; color: var(--text-main); line-height: 1.65;
}

/* ── Pagination ── */
.wishas .button-grup {
    margin: 0.8rem auto 0;
    display: flex; align-items: center;
    justify-content: center; gap: 0;
    background: var(--cream-dark);
    border: 1px solid rgba(201,168,76,0.2);
    border-radius: var(--r-pill);
    width: fit-content; overflow: hidden;
}

.wishas .button-grup > span {
    background: rgba(201,168,76,0.18);
    min-width: 2.4rem; height: 2rem;
    display: flex; align-items: center; justify-content: center;
    font-size: 0.78rem; color: var(--primary);
    font-weight: 700;
}

.wishas .button-grup button {
    padding: 0.35rem 0.9rem;
    border: none; background: none; cursor: pointer;
    display: flex; align-items: center; justify-content: center;
    gap: 0.3rem; color: var(--text-muted);
    font-size: 0.75rem; transition: var(--ease);
    font-family: var(--font-body);
}

.wishas .button-grup button:hover { color: var(--primary); }

/* HR */
.wishas hr {
    border: none;
    border-top: 1px solid rgba(201,168,76,0.15);
    margin: 0.6rem 0;
}