/**
 * WM School Photos – Order form styles.
 *
 * Migrated from: Student Order Forms.css (order form section only).
 *
 * Removed from this file:
 * - Family search styles (now in family-search.css)
 * - Secure download button styles (now in secure-download.css)
 * - Page-specific .elementor-element-aa8ed05 selector (move to theme/Elementor custom CSS)
 * - Image display classes (.student_portrait_cls, .class_photo_cls, .teacher_portrait_cls)
 *   — those are presentation concerns that belong in theme CSS, not plugin CSS.
 * - WooCommerce block button overrides (.wc-block-components-button) — theme CSS.
 */

/* ── Order form container ─────────────────────────────────────────────────── */
.sowc-order {
    border: 1px solid #e5e5e5;
    border-radius: 12px;
    padding: 16px;
    margin: 12px 0;
}

.sowc-group {
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 12px;
    margin: 12px 0;
}

.sowc-group label {
    font-size: 13px;
}

.sowc-legend {
    font-size: 12pt;
    font-weight: 600;
    margin-bottom: 4px;
}

.sowc-order .sowc-sublegend {
    margin: 0.5rem 0 0;
    font-weight: 600;
    font-size: 10pt;
}

/* ── Row layout (label + qty input) ───────────────────────────────────────── */
.sowc-row {
    display: grid;
    grid-template-columns: 1fr 55px;
    gap: 0.75rem;
    align-items: center;
    margin: 0.15rem 0;
}

@media (max-width: 720px) {
    .sowc-row {
        grid-template-columns: 1fr 45px;
    }
}

/* ── Checkbox items ───────────────────────────────────────────────────────── */
.sowc-check {
    display: flex;
    gap: 0.2rem;
    align-items: center;
    margin: 0.35rem 0;
}

/* ── Subtotal ─────────────────────────────────────────────────────────────── */
.sowc-subtotal {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    align-items: center;
    border-top: 1px dashed #ddd;
    margin-top: 10px;
    padding-top: 10px;
}

.sowc-order .sowc-subtotal .val,
.sowc-subtotal-only {
    font-weight: bold;
}

/* ── Buttons ──────────────────────────────────────────────────────────────── */
.sowc-btn {
    cursor: pointer;
    border: 0;
    border-radius: 10px;
    padding: 0.7rem 1rem;
    font-weight: 600;
}

.sowc-btn.add {
    background: #3d3b39;
    color: #fff;
}

.sowc-btn.add:hover {
    background: #8C8C8C;
    color: #fff;
}

/* ── Quantity inputs ──────────────────────────────────────────────────────── */
input[type=number].sowc-qty {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 0.1rem 0.5rem;
    text-align: center;
    line-height: 17px;
    font-size: 11pt;
}

/* ── Notes / descriptions ─────────────────────────────────────────────────── */
.sowc-note {
    font-size: 0.9rem;
    color: #666;
}

.sowc-description {
    font-size: 9pt;
}

.sowc-note-field {
    border: 1px solid #ccc;
    border-radius: 8px;
    padding: 0.6rem 0.7rem;
    font-size: 1rem;
    width: 100%;
}

/* ── Per-item prices ──────────────────────────────────────────────────────── */
.sowc-order .sowc-price {
    font-size: 9pt;
    font-weight: 400;
    color: #3f5563;
    margin-left: 0.1rem;
}

/* ── Loading overlay: see common.css ───────────────────────────────────── */

/* ── Student info in cart ─────────────────────────────────────────────────── */
.wm-student {
    color: #666;
}
