/* ============================================
   WICTE FEEDBACK MODAL
   ============================================ */

   .wicte-feedback-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
    padding: 1rem;
}
.wicte-feedback-overlay.active {
    opacity: 1;
    visibility: visible;
}

.wicte-feedback-card {
    background: #fff;
    border-radius: 16px;
    max-width: 440px;
    width: 100%;
    padding: 2rem;
    position: relative;
    transform: translateY(20px) scale(.97);
    transition: transform .3s ease;
    box-shadow: 0 25px 50px -12px rgba(0,0,0,.25);
}
.wicte-feedback-overlay.active .wicte-feedback-card {
    transform: translateY(0) scale(1);
}

.wicte-feedback-close {
    position: absolute;
    top: .75rem;
    right: .75rem;
    background: none;
    border: none;
    font-size: 1.4rem;
    cursor: pointer;
    color: #9ca3af;
    transition: color .2s;
    line-height: 1;
}
.wicte-feedback-close:hover { color: #374151; }

.wicte-feedback-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 .25rem 0;
}
.wicte-feedback-subtitle {
    font-size: .875rem;
    color: #6b7280;
    margin: 0 0 1.25rem 0;
}

/* Star rating */
.wicte-fb-stars {
    display: flex;
    gap: 6px;
    margin-bottom: 1.25rem;
}
.wicte-fb-star {
    font-size: 2rem;
    cursor: pointer;
    color: #d1d5db;
    transition: color .15s, transform .15s;
    user-select: none;
    line-height: 1;
}
.wicte-fb-star:hover,
.wicte-fb-star.active {
    color: #f59e0b;
    transform: scale(1.15);
}
.wicte-fb-star.hovered {
    color: #fbbf24;
}

/* Ease-of-use pills */
.wicte-fb-ease-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 1.25rem;
}
.wicte-fb-ease-label {
    font-size: .8rem;
    font-weight: 600;
    color: #374151;
    margin-bottom: .4rem;
}
.wicte-fb-ease-btn {
    padding: .4rem .9rem;
    border-radius: 999px;
    border: 1.5px solid #e5e7eb;
    background: #fff;
    font-size: .8rem;
    font-weight: 500;
    color: #374151;
    cursor: pointer;
    transition: all .15s;
}
.wicte-fb-ease-btn:hover {
    border-color: #0d9488;
    color: #0d9488;
}
.wicte-fb-ease-btn.selected {
    background: #0d9488;
    color: #fff;
    border-color: #0d9488;
}

/* Comment box */
.wicte-fb-comment {
    width: 100%;
    min-height: 70px;
    border-radius: 10px;
    border: 1.5px solid #e5e7eb;
    padding: .65rem .85rem;
    font-family: inherit;
    font-size: .875rem;
    resize: vertical;
    transition: border-color .2s;
    margin-bottom: 1.25rem;
}
.wicte-fb-comment:focus {
    outline: none;
    border-color: #0d9488;
}
.wicte-fb-comment::placeholder { color: #9ca3af; }

/* Submit button */
.wicte-fb-submit {
    width: 100%;
    padding: .7rem;
    background: #0d9488;
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: .95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background .2s, transform .1s;
}
.wicte-fb-submit:hover { background: #0f766e; }
.wicte-fb-submit:active { transform: scale(.98); }
.wicte-fb-submit:disabled {
    opacity: .5;
    cursor: not-allowed;
}

/* Skip link */
.wicte-fb-skip {
    display: block;
    text-align: center;
    margin-top: .75rem;
    font-size: .8rem;
    color: #9ca3af;
    cursor: pointer;
    background: none;
    border: none;
    font-family: inherit;
}
.wicte-fb-skip:hover { color: #6b7280; }

/* Thank-you state */
.wicte-fb-thankyou {
    text-align: center;
    padding: 1.5rem 0;
}
.wicte-fb-thankyou-icon {
    font-size: 3rem;
    margin-bottom: .75rem;
    display: block;
}
.wicte-fb-thankyou h3 {
    font-size: 1.1rem;
    color: #111827;
    margin: 0 0 .35rem;
}
.wicte-fb-thankyou p {
    font-size: .85rem;
    color: #6b7280;
    margin: 0;
}

@media (max-width: 480px) {
    .wicte-feedback-card { padding: 1.5rem 1.25rem; }
    .wicte-fb-star { font-size: 1.7rem; }
}