/* FitLineReviews.com - minimal responsive styles */
:root{
  --brand:#c1272d;
  --text:#222;
  --muted:#5c5c5c;
  --bg:#f9f9f9;
  --card:#ffffff;
  --shadow:0 2px 10px rgba(0,0,0,.10);
  --radius:10px;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  font-family: Arial, system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  margin:0; padding:0;
  line-height:1.6;
  color:var(--text);
  background:var(--bg);
}
a{color:var(--brand); text-decoration:none}
a:hover{text-decoration:underline}
header{
  background:var(--brand);
  color:#fff;
  padding:22px 16px;
  text-align:center;
}
header h1{margin:0; font-size:28px; line-height:1.2}
header p{margin:6px 0 0; opacity:.95}
.container{
  max-width:980px;
  margin:0 auto;
  padding:20px 16px 60px;
}
.btn-main{
  display:inline-block;
  margin:12px 0;
  padding:12px 18px;
  background:var(--brand);
  color:#fff;
  border-radius:10px;
  font-size:16px;
  font-weight:700;
  border:0;
}
.btn-main:hover{filter:brightness(.95); text-decoration:none}
.notice{
  background:#fff;
  border-left:4px solid var(--brand);
  border-radius:10px;
  padding:12px 14px;
  box-shadow:var(--shadow);
  margin:16px 0 22px;
  font-size:14px;
  color:var(--muted);
}
.notice strong{color:var(--text)}
.grid{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
  justify-content:center;
}
.card{
  background:var(--card);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  padding:14px;
  flex:0 1 calc(50% - 14px);
  text-align:center;
}
.card h3{margin:10px 0 6px; font-size:18px}
.stars{letter-spacing:1px}
.card img{
  width:100%;
  height:200px;
  object-fit:cover;
  border-radius:10px;
}
section{margin-bottom:28px}
ul{padding-left:20px}
footer{
  background:#222;
  color:#cfcfcf;
  padding:18px 16px;
  text-align:center;
  font-size:12px;
}
footer a{color:#fff; text-decoration:underline}
.sticky-btn{
  position:fixed;
  bottom:14px;
  left:50%;
  transform:translateX(-50%);
  background:var(--brand);
  color:#fff;
  padding:12px 18px;
  border-radius:999px;
  text-decoration:none;
  font-weight:800;
  box-shadow:var(--shadow);
  z-index:1000;
}
@media (max-width:720px){
  .card{flex:0 1 100%}
  header h1{font-size:24px}
}
