/*
 * Wieco Branding Instructions
 * Follows the established Phase 3/4 customer-facing Wieco UI.
 */

.wieco-branding-instructions {
    box-sizing: border-box;
    width: 100%;
    margin: 0 0 24px;
    padding: 22px;
    border: 1px solid #11C5D9;
    border-radius: 16px;
    background: #0B1020;
    color: #F9FAFB;
    box-shadow: 0 14px 36px rgba(0, 0, 0, 0.24);
}

.wieco-branding-instructions[hidden] {
    display: none !important;
}

.wieco-branding-instructions *,
.wieco-branding-instructions *::before,
.wieco-branding-instructions *::after {
    box-sizing: border-box;
}

.wieco-instructions-title {
    margin: 0 0 10px;
    color: #F9FAFB;
    font-size: 1.35rem;
    line-height: 1.25;
}

.wieco-instructions-intro {
    margin: 0 0 16px;
    color: #F9FAFB;
    opacity: 0.9;
    line-height: 1.5;
}

.wieco-instructions-selection {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
    margin-bottom: 18px;
}

.wieco-instructions-selection > div {
    min-width: 0;
    padding: 12px;
    border: 1px solid rgba(61, 217, 235, 0.38);
    border-radius: 10px;
    background: #1F2937;
}

.wieco-instructions-selection span,
.wieco-instructions-selection strong {
    display: block;
    color: #F9FAFB;
}

.wieco-instructions-selection span {
    margin-bottom: 5px;
    font-size: 0.8rem;
    opacity: 0.7;
}

.wieco-instructions-selection strong {
    overflow-wrap: anywhere;
    font-size: 0.95rem;
    line-height: 1.35;
}

.wieco-instructions-field {
    margin-top: 16px;
}

.wieco-instructions-field label,
.wieco-instructions-field label strong {
    display: block;
    margin-bottom: 7px;
    color: #F9FAFB;
}

.wieco-instructions-field textarea {
    display: block;
    width: 100%;
    max-width: 100% !important;
    min-height: 112px;
    padding: 12px;
    resize: vertical;
    border: 1px solid rgba(61, 217, 235, 0.5);
    border-radius: 8px;
    background: #F9FAFB;
    color: #0B1020;
    font: inherit;
    line-height: 1.45;
    box-shadow: none;
}

.wieco-instructions-field textarea:focus {
    outline: none;
    border-color: #3DD9EB;
    box-shadow: 0 0 0 3px rgba(61, 217, 235, 0.18);
}

.wieco-instructions-field-footer {
    display: flex;
    gap: 12px;
    margin-top: 7px;
    align-items: flex-start;
    justify-content: space-between;
}

.wieco-instructions-field-footer small {
    color: #F9FAFB;
    opacity: 0.74;
    line-height: 1.4;
}

.wieco-instructions-counter {
    flex: 0 0 auto;
    white-space: nowrap;
}

.wieco-instructions-optional {
    margin: 18px 0 0;
    padding: 9px 11px;
    border-left: 3px solid #A020F0;
    border-radius: 4px;
    background: rgba(160, 32, 240, 0.1);
    color: #F9FAFB;
    line-height: 1.45;
}

@media (max-width: 760px) {
    .wieco-instructions-selection {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .wieco-branding-instructions {
        padding: 16px;
        border-radius: 12px;
    }

    .wieco-instructions-field-footer {
        display: block;
    }

    .wieco-instructions-counter {
        display: block;
        margin-top: 5px;
        text-align: right;
    }
}
