:root{
  --bg: #f6f8fc;
  --card: #ffffff;
  --text: #0f172a;     /* slate-900 */
  --muted: #64748b;    /* slate-500 */
  --line: #e2e8f0;     /* slate-200 */
  --accent: #2563eb;   /* blue-600 */
  --accent2:#06b6d4;   /* cyan-500 */

  --radius: 18px;
  --shadow: 0 14px 40px rgba(15, 23, 42, .08);
  --shadow2: 0 10px 24px rgba(15, 23, 42, .10);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--text);
  background:
    radial-gradient(900px 500px at 15% 0%, rgba(37,99,235,.10), transparent 55%),
    radial-gradient(700px 480px at 85% 10%, rgba(6,182,212,.10), transparent 55%),
    var(--bg);
}

a{ color:inherit; text-decoration:none; }
img{ max-width:100%; display:block; }

.container{
  width:min(1120px, calc(100% - 40px));
  margin-inline:auto;
}


/* Language dropdown */
.lang-dropdown{
  position: relative;
}

.lang-toggle{
  display:flex;
  align-items:center;
  gap:6px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow2);
  font-weight:900;
  font-size:13px;
  cursor:pointer;
}

.lang-toggle:hover{
  box-shadow: var(--shadow);
}

.chevron{
  font-size:12px;
  opacity:.7;
}

.lang-menu{
 
  padding:6px;
  border-radius:14px;
  border:1px solid var(--line);
  background:#fff;
  box-shadow: var(--shadow);
  z-index:100;
  width:70px;
  height:40px;
}



/* Topbar */
.topbar{
  position:sticky;
  top:0;
  z-index:50;
  background: rgba(246,248,252,.75);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.brand__logo{
  width:184px;
 
  padding:6px;

}
.brand__text{ display:flex; flex-direction:column; line-height:1.05; }
.brand__small{ font-size:12px; color: var(--muted); letter-spacing:.08em; }
.brand__name{ font-size:20px; font-weight:800; }

.actions{
  display:flex;
  align-items:center;
  gap:10px;
}
.action{
  position:relative;
  display:flex;
  align-items:center;
  gap:10px;
  padding: 10px 12px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow2);
}
.action__icon{ font-size:18px; }
.action__text{ color: var(--muted); font-weight:700; font-size:14px; }

.badge{
  position:absolute;
  top:-8px;
  left:-8px;
  min-width:22px;
  height:22px;
  padding: 0 6px;
  display:grid;
  place-items:center;
  border-radius:999px;
  background: linear-gradient(135deg, #fb7185, #f97316);
  color:white;
  font-weight:800;
  font-size:12px;
  border: 2px solid var(--bg);
}

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 10px 14px;
  border-radius: 14px;
  font-weight:800;
  border: 1px solid var(--line);
  transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
}

.btn--ghost{
  background: #ffffff;
  box-shadow: var(--shadow2);
}

.btn--ghost:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow);
}

/* Main */
.main{ padding: 26px 0 40px; }

/* Hero */
.hero{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap: 18px;
  padding: 22px 22px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow);
}
.hero h1{
  margin:0 0 6px;
  font-size: 34px;
  letter-spacing:-0.03em;
}
.hero p{
  margin:0;
  color: var(--muted);
  max-width: 58ch;
}
.hero__right{
  min-width: 280px;
  display:flex;
  flex-direction:column;
  gap:10px;
}

/* Progress */
.progress{
  height: 10px;
  border-radius: 999px;
  background: #eef2ff; /* light indigo */
  border: 1px solid var(--line);
  overflow:hidden;
}
.progress__bar{
  height:100%;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
}
.progress__meta{
  display:flex;
  justify-content:space-between;
  font-size: 13px;
  color: var(--muted);
}

/* Grid cards */
.grid{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.card{
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow2);
  overflow:hidden;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
}
.card:hover{
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: rgba(37,99,235,.25);
}

.card__media{
  aspect-ratio: 16/10;
  display:grid;
  place-items:center;
  padding: 14px;
  background:
    radial-gradient(500px 220px at 50% 15%, rgba(37,99,235,.10), transparent 60%),
    radial-gradient(420px 240px at 60% 95%, rgba(6,182,212,.10), transparent 60%),
    #f8fafc; /* slate-50 */
  border-bottom: 1px solid var(--line);
}
.card__media img{
  max-height: 160px;
  filter: drop-shadow(0 10px 18px rgba(15,23,42,.18));
}

.card__body{ padding: 14px 14px 16px; }
.card__body h3{
  margin:0 0 6px;
  font-size: 16px;
  font-weight: 900;
  letter-spacing: -0.01em;
}
.card__body p{
  margin:0;
  font-size: 13px;
  color: var(--muted);
}

/* Footer */
.footer{
  border-top: 1px solid var(--line);
  background: rgba(246,248,252,.75);
  backdrop-filter: blur(10px);
}
.footer__inner{
  padding: 16px 0;
  display:flex;
  justify-content:space-between;
  color: var(--muted);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 980px){
  .grid{ grid-template-columns: repeat(2, 1fr); }
  .hero{ flex-direction:column; align-items:flex-start; }
  .hero__right{ width:100%; min-width:auto; }
}
@media (max-width: 520px){
  .grid{ grid-template-columns: 1fr; }
  .action__text{ display:none; }
}



#cart1{width:22px; height:22px;}

