.product-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.product-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 16px;
    object-fit: contain;
    max-height: 350px;
    background: white;
}
.product-name {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 12px;
    color: #333;
}
.price-box {
    background: #f1f8e9;
    border: 1px solid #c8e6c9;
    border-radius: 8px;
    padding: 12px;
}
.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}
.price-row:last-child { margin-bottom: 0; }
.price-label { font-size: 13px; color: #666; }
.price-retail { color: #999; font-size: 15px; text-decoration: line-through; }
.price-support { color: #c62828; font-size: 22px; font-weight: bold; }
.no-image {
    width: 100%;
    height: 200px;
    background: #f0f0f0;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #aaa;
    margin-bottom: 16px;
    font-size: 14px;
}
.form-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}
.form-card h3 { margin-bottom: 16px; color: #333; font-size: 17px; }
.form-group { margin-bottom: 14px; }
label { display: block; font-size: 14px; color: #555; margin-bottom: 6px; }
input, select {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 15px;
}
input:focus, select:focus { outline: none; border-color: #1b5e20; }
.btn-order {
    width: 100%;
    padding: 14px;
    background: #1b5e20;
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    margin-top: 8px;
}
.btn-order:hover { background: #154a19; }
.message {
    padding: 12px;
    border-radius: 8px;
    text-align: center;
    margin-top: 12px;
    display: none;
}
.message.success { background: #e8f5e9; color: #2e7d32; display: block; }
.message.error { background: #f1f8e9; color: #1b5e20; display: block; }