/* WooFlowerShop — Greeting widget on product page */
.wfs-greeting-wrap {
    margin: 16px 0;
    border: 1.5px dashed #2d6a4f;
    border-radius: 10px;
    padding: 14px 18px;
    background: #eef5f0;
    transition: border-color .2s, background .2s;
}
.wfs-greeting-wrap:has(input:checked) {
    border-style: solid;
    background: #e4f0e8;
}
.wfs-greeting-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    user-select: none;
}
.wfs-greeting-toggle input[type="checkbox"] {
    width: 20px !important;
    height: 20px !important;
    accent-color: #2d6a4f !important;
    cursor: pointer !important;
    flex-shrink: 0;
    -webkit-appearance: checkbox !important;
    appearance: checkbox !important;
    opacity: 1 !important;
    position: relative !important;
    pointer-events: auto !important;
}
.wfs-greeting-toggle__icon { font-size: 20px; }
.wfs-greeting-toggle__label {
    font-weight: 700;
    font-size: 15px;
    color: #1a3a2a;
    flex: 1;
}
.wfs-greeting-toggle__badge {
    background: #2d6a4f;
    color: #fff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: .06em;
    padding: 3px 8px;
    border-radius: 4px;
    text-transform: uppercase;
}
.wfs-greeting-field {
    margin-top: 12px;
}
.wfs-greeting-textarea {
    width: 100%;
    min-height: 80px;
    padding: 10px 14px;
    border: 1.5px solid #b7d9c5;
    border-radius: 8px;
    font-family: inherit;
    font-size: 14px;
    resize: vertical;
    box-sizing: border-box;
    background: #fff;
    transition: border-color .2s;
}
.wfs-greeting-textarea:focus {
    outline: none;
    border-color: #2d6a4f;
    box-shadow: 0 0 0 3px rgba(45,106,79,.1);
}
.wfs-greeting-counter {
    display: block;
    text-align: right;
    font-size: 12px;
    color: #888;
    margin-top: 4px;
}

/* Admin category list */
.wfs-cat-list { display: flex; flex-direction: column; gap: 6px; max-height: 300px; overflow-y: auto; border: 1px solid #ddd; border-radius: 6px; padding: 12px; background: #fafafa; }
.wfs-cat-item { display: block; font-size: 14px; cursor: pointer; margin-bottom: 4px; }
.wfs-cat-item input { cursor: pointer; }
.wfs-greeting-preview { margin-top: 12px; }
