/* Backup of styles.css before merging user CSS */
/* Original content saved for recovery */

/* Basic reset and variables */
:root{
  --bg: #0b0f14;
  --muted: #9095A1;
  --accent: #3892E5;
  --white: #ffffff;
}
*{box-sizing:border-box}
html,body{height:100%}
body{margin:0;font-family:Inter,system-ui,Arial,sans-serif;background:var(--bg);color:var(--white)}

.site-header{padding:12px 16px;background:linear-gradient(180deg, rgba(0,0,0,0.9), rgba(0,0,0,0.7));display:flex;flex-direction:column}
.status-bar{display:flex;justify-content:space-between;align-items:center;opacity:0.9}
.header-main{display:flex;justify-content:space-between;align-items:center;margin-top:8px}
.site-title{font-family:Outfit,system-ui,Arial,sans-serif;font-weight:700;font-size:20px;margin:0}
.header-actions{display:flex;align-items:center;gap:12px}
.icon-btn{background:transparent;border:0;padding:6px;cursor:pointer}
.avatar img{width:36px;height:36px;border-radius:50%;display:block}

.hero{display:flex;gap:16px;padding:24px;align-items:center}
.hero-content{flex:1}
.hero-title{font-size:28px;margin:0 0 12px;color:var(--muted)}
.hero-lead{margin:0 0 18px;color:var(--muted)}
.btn{display:inline-block;padding:10px 18px;border-radius:999px;text-decoration:none;color:var(--white)}
.btn.primary{background:var(--accent)}
.hero-image img{width:240px;max-width:40vw;border-radius:8px}

.brands{padding:24px}
.brand-grid{display:flex;gap:12px}
.brand-item img{width:160px;height:100px;object-fit:cover;border-radius:8px}
.brand-item figcaption{text-align:center;color:var(--muted);margin-top:6px}

.reviews{padding:24px;background:linear-gradient(180deg, transparent, rgba(255,255,255,0.02))}
.reviews-list{display:grid;gap:12px}
.review{background:rgba(255,255,255,0.03);padding:12px;border-radius:8px}
.review-meta{display:flex;align-items:center;gap:8px;margin-top:8px}
.review-avatar{width:40px;height:40px;border-radius:50%;object-fit:cover}
.review-author{color:var(--muted)}

.site-footer{padding:16px;display:flex;justify-content:space-between;align-items:center;gap:12px}
.menu-tab{display:flex;gap:8px}
.menu-btn{background:transparent;border:0;padding:8px;border-radius:8px}
.menu-btn img{width:20px;height:20px}

/* Responsive breakpoints (later we'll refine) */
@media (max-width:600px){
  .hero{flex-direction:column;align-items:flex-start}
  .hero-image img{width:100%;max-width:100%}
  .brand-grid{flex-direction:row;overflow:auto}
}

/* Helper classes for combined mobile/desktop pages (e.g. index.html) */
.only-mobile{}
.only-desktop{display:none;}

@media (min-width:1024px){
  .only-mobile{display:none !important;}
  .only-desktop{display:block;}
}
