/* Honeyman Enquiry — Frontend styles */

.hme-enquiry-wrap {
    max-width: 900px;
    margin: 30px auto;
    font-family: inherit;
    color: #333;
}

.hme-cart-summary h3,
.hme-form-notice + form .hme-row label {
    color: #333;
}

.hme-cart-summary {
    background: #fdfaf3;
    border: 1px solid #e8dfc7;
    border-radius: 8px;
    padding: 22px;
    margin-bottom: 22px;
}
.hme-cart-summary h3 {
    margin-top: 0;
    margin-bottom: 14px;
    color: #b88746;
    font-size: 20px;
}

.hme-cart-table {
    width: 100%;
    border-collapse: collapse;
}
.hme-cart-table th,
.hme-cart-table td {
    padding: 10px 8px;
    text-align: left;
    border-bottom: 1px solid #ecebe6;
    vertical-align: middle;
}
.hme-cart-table thead th {
    background: #f6efdc;
    font-weight: 600;
    color: #6a4a17;
}
.hme-cart-table tfoot th {
    background: transparent;
    color: #b88746;
    font-size: 16px;
}
.hme-product-cell {
    display: flex;
    align-items: center;
    gap: 10px;
}
.hme-thumb img {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #eee;
}

.hme-form-notice {
    background: #fff7e0;
    border-left: 4px solid #b88746;
    padding: 14px 18px;
    border-radius: 4px;
    margin-bottom: 22px;
    font-size: 15px;
    line-height: 1.5;
}

.hme-enquiry-form {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 26px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.03);
}

.hme-enquiry-form .hme-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 16px;
}

.hme-field {
    flex: 1 1 calc(50% - 10px);
    min-width: 220px;
    display: flex;
    flex-direction: column;
}
.hme-field-full {
    flex-basis: 100%;
}
.hme-field label {
    font-weight: 600;
    margin-bottom: 6px;
    font-size: 14px;
    color: #444;
}
.hme-required {
    color: #c33;
    margin-left: 2px;
}

.hme-field input,
.hme-field select,
.hme-field textarea {
    padding: 10px 12px;
    border: 1px solid #d8d8d8;
    border-radius: 6px;
    font-size: 15px;
    background: #fff;
    transition: border .2s, box-shadow .2s;
    font-family: inherit;
    width: 100%;
    box-sizing: border-box;
}
.hme-field input:focus,
.hme-field select:focus,
.hme-field textarea:focus {
    outline: none;
    border-color: #b88746;
    box-shadow: 0 0 0 3px rgba(184,135,70,0.18);
}

.hme-form-actions {
    margin-top: 14px;
    text-align: right;
}
.hme-submit-btn {
    background: #b88746 !important;
    color: #fff !important;
    border: none !important;
    padding: 12px 32px !important;
    font-size: 16px !important;
    font-weight: 600 !important;
    border-radius: 6px !important;
    cursor: pointer;
    transition: background .2s, transform .1s;
}
.hme-submit-btn:hover {
    background: #9d6f33 !important;
}
.hme-submit-btn:active {
    transform: translateY(1px);
}
.hme-submit-btn[disabled] {
    opacity: .65;
    cursor: not-allowed;
}

.hme-form-message {
    margin-top: 16px;
    padding: 0;
    border-radius: 6px;
    font-size: 15px;
}
.hme-form-message.is-success {
    background: #e8f5e9;
    color: #1b5e20;
    border: 1px solid #c8e6c9;
    padding: 12px 16px;
}
.hme-form-message.is-error {
    background: #fdecea;
    color: #b71c1c;
    border: 1px solid #f5c6cb;
    padding: 12px 16px;
}

.hme-empty-cart {
    text-align: center;
    padding: 60px 20px;
    background: #fdfaf3;
    border: 1px dashed #e8dfc7;
    border-radius: 8px;
}
.hme-empty-cart h3 { color: #b88746; margin: 0 0 8px; }
.hme-shop-btn {
    display: inline-block;
    margin-top: 12px;
    background: #b88746;
    color: #fff !important;
    padding: 10px 24px;
    border-radius: 6px;
    text-decoration: none;
}

/* "Enquire Now" buttons in cart / mini-cart */
.hme-enquire-btn {
    background: #b88746 !important;
    color: #fff !important;
    border: none !important;
}
.hme-enquire-btn:hover {
    background: #9d6f33 !important;
}

@media (max-width: 600px) {
    .hme-field { flex-basis: 100%; }
    .hme-enquiry-form { padding: 18px; }
}
