/* Kestrel Mobile UK - E-Commerce Storefront Theme */
:root {
    --primary: #0d9488;
    --dark: #115e59;
    --bg-tint: #f0fdfa;
    --border: #e2e8f0;
}
* { box-sizing: border-box; margin: 0; padding: 0; font-family: 'Inter', -apple-system, sans-serif; }
body { background: #f8fafc; color: #1e293b; font-size: 14px; }
.top-notice { background: var(--dark); color: #fff; text-align: center; padding: 7px; font-size: 12px; font-weight: 600; letter-spacing: 0.3px; }
header { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 50; box-shadow: 0 2px 4px rgba(0,0,0,0.02); }
.nav-wrap { max-width: 1320px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; padding: 14px 20px; }
.logo { font-size: 22px; font-weight: 900; color: var(--dark); display: flex; align-items: center; gap: 8px; }
.nav-links { display: flex; gap: 16px; }
.nav-links a { text-decoration: none; color: #334155; font-weight: 600; padding: 8px 14px; border-radius: 6px; transition: all 0.2s; }
.nav-links a.active, .nav-links a:hover { background: var(--bg-tint); color: var(--primary); }
.layout-container { max-width: 1320px; margin: 24px auto; padding: 0 20px; display: grid; grid-template-columns: 240px 1fr; gap: 24px; }
.sidebar { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 20px; height: fit-content; }
.sidebar-title { font-size: 14px; font-weight: 800; text-transform: uppercase; color: #475569; margin-bottom: 14px; letter-spacing: 0.5px; }
.filter-group { margin-bottom: 20px; }
.filter-item { display: flex; justify-content: space-between; padding: 8px 0; border-bottom: 1px solid #f1f5f9; font-size: 13px; color: #334155; font-weight: 500; cursor: pointer; }
.filter-item.active { color: var(--primary); font-weight: 700; }
.content-area { display: flex; flex-direction: column; gap: 20px; }
.hero-banner { background: linear-gradient(135deg, var(--dark), var(--primary)); color: #fff; padding: 28px; border-radius: 8px; display: flex; justify-content: space-between; align-items: center; }
.hero-badge { background: rgba(255,255,255,0.2); padding: 4px 10px; border-radius: 9999px; font-size: 12px; font-weight: 700; display: inline-block; margin-bottom: 8px; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.prod-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; overflow: hidden; display: flex; flex-direction: column; transition: box-shadow 0.2s; }
.prod-card:hover { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.prod-img-box { height: 210px; background: #fff; display: flex; align-items: center; justify-content: center; padding: 16px; border-bottom: 1px solid #f1f5f9; position: relative; }
.prod-img-box img { max-height: 100%; max-width: 100%; object-fit: contain; }
.condition-tag { position: absolute; top: 12px; left: 12px; background: #ecfdf5; color: #065f46; font-size: 11px; font-weight: 700; padding: 3px 8px; border-radius: 4px; border: 1px solid #a7f3d0; }
.prod-details { padding: 16px; display: flex; flex-direction: column; flex-grow: 1; }
.prod-name { font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.spec-row { font-size: 12px; color: #64748b; margin-bottom: 12px; display: flex; gap: 8px; }
.price-box { margin-top: auto; display: flex; justify-content: space-between; align-items: center; padding-top: 12px; border-top: 1px solid #f1f5f9; }
.price-curr { font-size: 20px; font-weight: 800; color: var(--dark); }
.price-was { font-size: 12px; color: #94a3b8; text-decoration: line-through; }
.btn-reserve { background: var(--primary); color: #fff; border: none; padding: 8px 14px; border-radius: 6px; font-weight: 700; cursor: pointer; font-size: 12px; }
.kpi-strip { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.kpi-card { background: #fff; border: 1px solid var(--border); border-radius: 8px; padding: 16px; text-align: center; }
.kpi-val { font-size: 24px; font-weight: 900; color: var(--primary); }
.kpi-lbl { font-size: 12px; color: #64748b; font-weight: 600; text-transform: uppercase; margin-top: 2px; }
footer { background: #0f172a; color: #94a3b8; padding: 32px 20px; margin-top: 40px; font-size: 12px; }
.footer-grid { max-width: 1320px; margin: 0 auto; display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; }
