/* =========================
   Modern Light Theme
   ========================= */

:root{
  --bg:#F8FAFC;
  --surface:#FFFFFF;
  --surfaceSoft:#F1F5F9;
  --border:#E2E8F0;

  --text:#0F172A;
  --muted:#64748B;

  --accent1:#6366F1;  /* Indigo */
  --accent2:#06B6D4;  /* Cyan */
  --accentSoft:#EEF2FF;

  --max:1120px;
  --radius:18px;
  --radius2:22px;

  --shadow:0 10px 30px rgba(0,0,0,.05);
  --shadowHover:0 18px 45px rgba(0,0,0,.08);

  --ring:0 0 0 4px rgba(99,102,241,.15);
}

*{box-sizing:border-box;}
html{scroll-behavior:smooth;}

body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial;
  background: var(--bg);
  color: var(--text);
}

a{color:inherit;text-decoration:none;}
a:focus-visible{outline:none;box-shadow:var(--ring);border-radius:12px;}

.wrap{
  max-width:var(--max);
  margin:0 auto;
}

/* ================= HEADER ================= */

header{
  position:sticky;
  top:0;
  z-index:50;
  background:rgba(255,255,255,.85);
  backdrop-filter:blur(8px);
  border-bottom:1px solid var(--border);
}

.topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}

.logo{
  height:80px;
  width:120px;
  transition:transform .2s ease;
}

.brand:hover .logo{
  transform:scale(1.05);
}

.brand strong{
  font-size:25px;
  display:block;
}

.brand span{
  font-size:15px;
  color:var(--muted);
}

.navActions{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* ================= BUTTONS ================= */

.btn{
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid var(--border);
  background: white;
  color: var(--text);
  font-weight: 500;
  font-size: 14px;
  transition: all .15s ease;
  cursor: pointer;
}

.btn:hover{
  transform:translateY(-1px);
  box-shadow:var(--shadow);
}

.btn.primary{
  background:#076FDB;
  border:1px solid #076FDB;
  color:white;
  font-weight: 600;
}

.btn.primary:hover{
  background:#065BB5;
  border-color:#065BB5;
  box-shadow:0 6px 18px rgba(7,111,219,.25);
}

.btn.primary:active{
  transform: translateY(0);
}

/* ---------------------------
   Toolbar / search (LIGHT)
   --------------------------- */

.toolbar{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  align-items:center;
  margin:18px 0 18px;
}

.toolbar .search{
  flex:1;
  min-width:240px;
}

/* Inputs */
.input,
.search,
textarea{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:var(--surface);
  color:var(--text);
  font-size:14px;
  transition:all .15s ease;
}

/* Placeholder */
.input::placeholder,
.search::placeholder,
textarea::placeholder{
  color:var(--muted);
}

/* Focus state */
.input:focus,
.search:focus,
textarea:focus{
  outline:none;
  border-color:var(--accent1);
  box-shadow:var(--ring);
  background:white;
}



/* ================= HERO ================= */

h1{margin-top:10;}
h3{margin-bottom:24px; margin-top:24px;}

ul{
  margin-top:8px;
  color:var(--muted);
  line-height:1.8;
}

.hero{
  padding:5px 0 5px;
}

.heroGrid{
  display:grid;
  grid-template-columns:1.2fr;
  gap:18px;
}

.panel{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius2);
  padding-top:10px;
  padding-bottom:10px;
  padding-left:22px;
  padding-right:22px;
  box-shadow:var(--shadow);
}

.heroCard h1{
  margin:0 0 10px;
  font-size:clamp(26px,3vw,40px);
  letter-spacing:-.5px;
}
.lead1{
   font-family: "Segoe UI Rounded", system-ui, sans-serif;
  font-weight: 500;
  letter-spacing: 0.2px;
}


.lead{
  color:var(--muted);
  line-height:1.6;
  font-size:15px;
}

.heroActions{
  margin-top:16px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* ================= META ================= */

.meta{
  display:grid;
  gap:12px;
}

.metaItem{
  background:var(--surfaceSoft);
  padding:12px 14px;
  border-radius:16px;
  font-size:13px;
  color:var(--muted);
}

.metaItem b{color:var(--text);}

/* ================= GRID ================= */

.grid{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:16px;
  margin-top:10px;
}

.card{
  background:var(--surface);
  border:1px solid var(--border);
  border-radius:var(--radius);
  overflow:hidden;
  display:flex;
  flex-direction:column;
  transition:.18s;
  box-shadow:var(--shadow);
}

.card:hover{
  transform:translateY(-4px);
  box-shadow:var(--shadowHover);
}

.thumb{
	 width:100%;
  aspect-ratio: 16 / 9;
  background:#F1F5F9;
  border-bottom:1px solid var(--border);
}
.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
  object-position:center;
  display:block;
}
.pad{padding:16px;}

.titleRow{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:10px;
}

.card h3{
  margin:0;
  font-size:16px;
}

.desc{
  margin-top:8px;
  color:var(--muted);
  line-height:1.6;
  font-size:14px;
}

.price{
  margin-top:10px;
  font-weight:700;
}

.cardActions{
  margin-top:auto;
  padding:14px;
  border-top:1px solid var(--border);
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* ================= TAGS ================= */

.tag{
  font-size:12px;
  padding:4px 10px;
  border-radius:999px;
  font-weight:600;
  background:var(--accentSoft);
  color:var(--accent1);
}

.tag.green{
  background:#DCFCE7;
  color:#166534;
}

.tag.orange{
  background:#FFEDD5;
  color:#9A3412;
}

/* ================= FORM ================= */

.formGrid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.input, textarea{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid var(--border);
  background:white;
  font-size:14px;
}

.input:focus, textarea:focus{
  outline:none;
  box-shadow:var(--ring);
  border-color:var(--accent1);
}

/* ================= FOOTER ================= */

footer{
  margin-top:40px;
  padding:20px 0;
  border-top:1px solid var(--border);
  color:var(--muted);
  font-size:13px;
}

/* ================= RESPONSIVE ================= */

@media(max-width:920px){
  .heroGrid{grid-template-columns:1fr;}
  .grid{grid-template-columns:repeat(2,1fr);}
}

@media(max-width:560px){
  .grid{grid-template-columns:1fr;}
  .formGrid2{grid-template-columns:1fr;}
  .topbar{flex-direction:column;align-items:flex-start;}
  .btn{width:100%;}
}