/* Designawall Core Plugin CSS — supplements theme styles */

/* Calculator on product page */
.dw-product-dimensions .calc-field label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 0.4rem;
    color: #1a1a1a;
}
.dw-product-dimensions .form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid #e0e0e0;
    border-radius: 4px;
    font-size: 1rem;
    background: #fafafa;
    transition: border-color 0.25s;
    font-family: inherit;
}
.dw-product-dimensions .form-control:focus {
    outline: none;
    border-color: #E8192C;
    background: #fff;
}

/* Sample form page layout */
.dw-sample-page { display: grid; grid-template-columns: 1fr 360px; gap: 4rem; align-items: start; }
@media (max-width: 900px) { .dw-sample-page { grid-template-columns: 1fr; } }

/* Admin notices */
.dw-admin-notice {
    background: #fff3cd;
    border-left: 4px solid #E8192C;
    padding: 1rem;
    margin: 1rem 0;
    border-radius: 4px;
}

/* Gallery admin */
.dw-gallery-grid-admin {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

/* Dimension required field marker */
.dw-product-dimensions .required { color: #E8192C; }

/* Custom order notes in admin */
.dw-order-artwork-link { color: #E8192C; font-weight: 600; }
