/* Minimal Brutalist Styling */
.brutalist-container {
    margin-top: 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.brutalist-button {
    background-color: #0b132b; /* Dark navy based on screenshots */
    color: #fff;
    border: none;
    padding: 15px 30px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.2s;
    width: 100%;
    display: block;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
    border-radius: 4px;
}

.brutalist-button:hover {
    background-color: #1a2a5e;
    color: #fff;
}

.brutalist-modal {
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(0,0,0,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
}

.brutalist-modal-content {
    background-color: #fff;
    margin: auto;
    padding: 0;
    width: 90%;
    max-width: 650px;
    position: relative;
    max-height: 90vh;
    display: flex;
    flex-direction: column;
    border-radius: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.brutalist-close {
    color: #999;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 24px;
    cursor: pointer;
    line-height: 1;
    z-index: 10;
}

.brutalist-close:hover {
    color: #000;
}

.brutalist-modal-content h2 {
    padding: 20px 30px;
    margin: 0;
    font-size: 20px;
    border-bottom: 1px solid #eee;
}

.brutalist-form-wrapper {
    padding: 30px;
    overflow-y: auto;
}

.brutalist-form .form-row {
    margin-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.brutalist-form .form-row-half {
    width: calc(50% - 10px);
}

.brutalist-form label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px;
    font-size: 13px;
    color: #333;
}

.brutalist-form input[type="text"],
.brutalist-form input[type="email"],
.brutalist-form input[type="date"],
.brutalist-form textarea {
    width: 100%;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: inherit;
    font-size: 14px;
    background-color: #fff;
    box-sizing: border-box;
}

.brutalist-form input:focus,
.brutalist-form textarea:focus {
    outline: none;
    border-color: #0b132b;
    box-shadow: 0 0 0 1px #0b132b;
}

.wc-quote-product-summary {
    display: flex;
    align-items: center;
    margin-bottom: 30px;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 4px;
}

.wc-quote-product-summary img {
    max-width: 120px;
    height: auto;
    margin-right: 20px;
    border-radius: 2px;
}

.wc-quote-product-summary p {
    margin: 0 0 5px 0;
}

.wc-quote-product-summary .price {
    font-weight: bold;
    color: #666;
}

.submit-row {
    margin-top: 30px;
}

#wc-quote-response {
    margin-top: 15px;
    font-weight: bold;
    padding: 10px;
    border-radius: 4px;
}

.wc-quote-success {
    background: #d4edda;
    color: #155724;
}

.wc-quote-error {
    background: #f8d7da;
    color: #721c24;
}

@media (max-width: 600px) {
    .brutalist-form .form-row-half {
        width: 100%;
    }
}
