/**
 * WooCommerce Design Details - Frontend Styles
 * Matches the visual style of woo-files-uploads
 */

.wdd-design-details-container {
    width: 100%;
    margin: 0 0 20px 0;
    background: #ffffff;
}

.wdd-label {
    display: block;
    font-weight: 700;
    font-size: 1em;
    line-height: 42px;
    white-space: nowrap;
    padding: 0;
    margin: 0;
    color: var(--porto-heading-color, #1d2327);
    text-transform: uppercase;
}

.wdd-description {
    margin: 0 0 12px 0;
    font-size: 14px;
    line-height: 1.5;
}

.wdd-textarea {
    width: 100%;
    padding: 15px;
    font-size: 14px;
    line-height: 1.5;
    font-family: inherit;
    border: 1px solid var(--porto-input-bc, rgba(0, 0, 0, 0.08));
    border-radius: 0;
    resize: vertical;
    min-height: 100px;
    box-sizing: border-box;
}

.wdd-textarea:focus {
    outline: none;
    border-color: #999;
}

.wdd-textarea::placeholder {
    color: #646970;
    font-size: 13px;
}

/* Mobile responsive */
@media (max-width: 768px) {
    .wdd-design-details-container {
        margin: 1.25rem 0;
        padding: 0;
    }

    .wdd-textarea {
        padding: 12px;
    }
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    .wdd-textarea {
        transition: none;
    }
}
