
/* NorthernTint - Window Tint Rolls Hub Styles (namespaced)
   Scope: Only elements inside .nt-rolls wrapper
*/
:root .nt-rolls { /* keep variables scoped via descendant selector */ }
.nt-rolls{
  --nt-bg:#ffffff;
  --nt-text:#111827;
  --nt-sub:#6b7280;
  --nt-muted:#f3f4f6;
  --nt-card:#ffffff;
  --nt-border:#e5e7eb;
  --nt-brand:#f97316;
  --nt-brand-dark:#ea580c;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji", "Segoe UI Symbol";
  color: var(--nt-text);
  background: var(--nt-bg);
}
.nt-rolls .nt-container{max-width:1200px;margin:0 auto;padding:0 16px;}
.nt-rolls .nt-hero{background:var(--nt-muted);padding:56px 0;text-align:center;}
.nt-rolls .nt-hero h1{font-size:36px;line-height:1.15;margin:0 0 12px;font-weight:800;color:var(--nt-text);}
.nt-rolls .nt-hero p{max-width:780px;margin:0 auto 20px;color:var(--nt-sub);font-size:18px;}
.nt-rolls .nt-btn{display:inline-block;background:var(--nt-brand);color:#fff;text-decoration:none;
  padding:12px 22px;border-radius:14px;font-weight:700;transition:background .2s ease}
.nt-rolls .nt-btn:hover{background:var(--nt-brand-dark)}
.nt-rolls .nt-hero-img{margin-top:28px;border-radius:16px;max-height:420px;width:100%;object-fit:cover;box-shadow:0 10px 24px rgba(0,0,0,.08)}

/* Benefits bar */
.nt-rolls .nt-benefits{background:var(--nt-bg);padding:28px 0;border-bottom:1px solid var(--nt-border)}
.nt-rolls .nt-b-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.nt-rolls .nt-b-item{text-align:center}
.nt-rolls .nt-b-title{font-weight:700;margin:6px 0;color:var(--nt-text)}
.nt-rolls .nt-b-sub{font-size:14px;color:var(--nt-sub)}
.nt-rolls .nt-icon{width:28px;height:28px;margin:0 auto;display:block;color:var(--nt-brand)}

/* Card grid */
.nt-rolls .nt-grid-wrap{background:var(--nt-muted)}
.nt-rolls .nt-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;padding:48px 0}
.nt-rolls .nt-grid h2{text-align:center;font-size:26px;margin:0 0 24px;color:var(--nt-text)}
.nt-rolls .nt-card{background:var(--nt-card);border:1px solid var(--nt-border);border-radius:16px;padding:16px;box-shadow:0 6px 16px rgba(0,0,0,.04)}
.nt-rolls .nt-card-img{width:100%;height:160px;object-fit:cover;border-radius:12px;margin-bottom:12px}
.nt-rolls .nt-card h3{font-size:18px;margin:6px 0 6px;color:var(--nt-text)}
.nt-rolls .nt-card p{font-size:14px;color:var(--nt-sub);margin:0 0 12px}
.nt-rolls .nt-card .nt-btn{font-size:14px;padding:10px 16px;border-radius:12px}

/* Final CTA */
.nt-rolls .nt-cta{padding:48px 0;text-align:center}
.nt-rolls .nt-cta h2{font-size:24px;margin:0 0 10px;color:var(--nt-text)}
.nt-rolls .nt-cta p{color:var(--nt-sub);font-size:16px;max-width:720px;margin:0 auto 16px}

/* Responsive */
@media (max-width:1024px){
  .nt-rolls .nt-grid{grid-template-columns:repeat(2,1fr)}
  .nt-rolls .nt-b-grid{grid-template-columns:repeat(2,1fr)}
}
@media (max-width:600px){
  .nt-rolls .nt-hero h1{font-size:28px}
  .nt-rolls .nt-grid{grid-template-columns:1fr}
  .nt-rolls .nt-b-grid{grid-template-columns:1fr}
}
