:root {
    --green: #0f8a5f;
    --yellow: #ffca28;
    --navy: #0b1d3a;
    --light: #f5f7fb;
}
* { box-sizing: border-box; }
body { margin: 0; font-family: Arial, sans-serif; background: var(--light); color: #1d2430; }
.container { width: min(1120px, 92%); margin: 0 auto; }
.top-header { background: #fff; border-bottom: 1px solid #e5e8ef; }
.top-bar { display: flex; gap: 16px; padding: 8px 0; font-size: 13px; color: #5e6572; }
.main-header { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 14px 0; flex-wrap: wrap; }
.logo { font-weight: 700; font-size: 24px; text-decoration: none; color: var(--green); }
.search-form { display: flex; flex: 1; min-width: 240px; }
.search-form input { flex: 1; padding: 10px; border: 1px solid #c9d2e1; border-radius: 6px 0 0 6px; }
.search-form button { background: var(--yellow); border: 0; padding: 10px 14px; border-radius: 0 6px 6px 0; cursor: pointer; }
.account-nav { display: flex; gap: 10px; flex-wrap: wrap; }
.account-nav a { text-decoration: none; color: var(--navy); font-weight: 600; font-size: 14px; }
.content { padding: 20px 0 30px; min-height: calc(100vh - 240px); }
.hero { background: linear-gradient(120deg, var(--navy), var(--green)); color: #fff; border-radius: 10px; padding: 24px; margin-bottom: 16px; }
.section-title { margin: 24px 0 10px; color: var(--navy); }
.cards { display: grid; grid-template-columns: repeat(auto-fill, minmax(210px, 1fr)); gap: 14px; }
.card { background: #fff; border: 1px solid #e3e8f2; border-radius: 8px; padding: 14px; }
.price { color: var(--green); font-weight: 700; }
.badge { display: inline-block; background: #edf7f2; color: var(--green); padding: 4px 8px; border-radius: 999px; font-size: 12px; }
.btn, button { background: var(--green); color: #fff; border: 0; padding: 10px 12px; border-radius: 6px; cursor: pointer; text-decoration: none; display: inline-block; }
.btn-outline { background: transparent; border: 1px solid var(--green); color: var(--green); }
.flash { padding: 10px 12px; margin-bottom: 12px; border-radius: 6px; }
.flash.success { background: #ecfdf3; color: #0f7d52; }
.flash.error { background: #fff1f2; color: #b42318; }
table { width: 100%; border-collapse: collapse; background: #fff; }
th, td { border-bottom: 1px solid #e7ebf3; padding: 10px; text-align: left; font-size: 14px; }
form input, form select, form textarea { width: 100%; padding: 10px; border: 1px solid #cdd5e4; border-radius: 6px; margin-bottom: 10px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); gap: 16px; }
.site-footer { background: var(--navy); color: #fff; padding: 30px 0; }
.footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 16px; }
.footer-grid a { color: #fff; display: block; margin-bottom: 6px; text-decoration: none; }
