.hm-ebike-form,
.hm-ebike-dashboard {
    max-width: 960px;
    margin: 0 auto;
}

.hm-ebike-section {
    margin: 0 0 28px;
    padding: 22px;
    border: 1px solid #d9ded8;
    border-radius: 8px;
    background: #fff;
}

.hm-ebike-section h2,
.hm-ebike-dashboard h2 {
    margin: 0 0 18px;
    font-size: 1.35rem;
}

.hm-ebike-form label {
    display: block;
    margin: 0 0 16px;
    font-weight: 600;
}

.hm-ebike-form label span {
    display: block;
    margin-bottom: 6px;
}

.hm-ebike-form input[type="text"],
.hm-ebike-form input[type="email"],
.hm-ebike-form input[type="number"],
.hm-ebike-form input[type="file"],
.hm-ebike-form select,
.hm-ebike-form textarea {
    width: 100%;
    min-height: 44px;
    border: 1px solid #b9c2b7;
    border-radius: 6px;
    padding: 9px 11px;
    background: #fff;
    font: inherit;
}

.hm-ebike-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
}

.hm-ebike-checks {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.hm-ebike-checks label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin: 0;
}

.hm-ebike-submit {
    min-height: 48px;
    padding: 0 22px;
    border: 0;
    border-radius: 6px;
    background: #23422f;
    color: #fff;
    font-weight: 700;
    cursor: pointer;
}

.hm-ebike-submit:hover,
.hm-ebike-submit:focus {
    background: #162d20;
}

.hm-ebike-notice {
    max-width: 960px;
    margin: 0 auto 18px;
    padding: 12px 14px;
    border-radius: 6px;
    border: 1px solid #d9ded8;
}

.hm-ebike-notice--success {
    border-color: #7aa66d;
    background: #eef7ec;
}

.hm-ebike-notice--error {
    border-color: #c36d64;
    background: #fff0ee;
}

.hm-ebike-notice--info {
    border-color: #7d9eb8;
    background: #eef6fb;
}

.hm-ebike-preview {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
    gap: 10px;
}

.hm-ebike-preview img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    border-radius: 6px;
    border: 1px solid #d9ded8;
}

.hm-ebike-spec-table {
    width: 100%;
    border-collapse: collapse;
}

.hm-ebike-spec-table th,
.hm-ebike-spec-table td {
    padding: 10px 12px;
    border-bottom: 1px solid #e4e8e2;
    text-align: left;
}

.hm-ebike-spec-table th {
    width: 34%;
}

.hm-ebike-seller-box {
    margin: 20px 0;
    padding: 14px;
    border: 1px solid #d9ded8;
    border-radius: 8px;
}

.hm-ebike-seller-box p {
    margin: 5px 0 0;
}

.hm-ebike-dashboard table {
    width: 100%;
    border-collapse: collapse;
}

.hm-ebike-dashboard th,
.hm-ebike-dashboard td {
    padding: 11px 10px;
    border-bottom: 1px solid #e4e8e2;
    text-align: left;
}

@media (max-width: 720px) {
    .hm-ebike-grid {
        grid-template-columns: 1fr;
    }

    .hm-ebike-section {
        padding: 16px;
    }

    .hm-ebike-dashboard {
        overflow-x: auto;
    }
}
