:root{
  --glass: rgba(15, 18, 25, .55);
  --stroke: rgba(255,255,255,.12);
  --txt: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--txt);

  /* Image de fond sympa */
  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.75)),
    url("https://images.unsplash.com/photo-1523275335684-37898b6baf30?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

/* Header fixe */
.header{
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 14px 14px 10px;
  backdrop-filter: blur(10px);
  background: rgba(10, 12, 18, .65);
  border-bottom: 1px solid var(--stroke);
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  letter-spacing:.2px;
}

.logo-dot{
  width:12px;height:12px;border-radius:999px;
  background: linear-gradient(135deg, #7c3aed, #22c55e);
  box-shadow: 0 0 18px rgba(124,58,237,.45);
}

.tabs{
  display:flex;
  gap:10px;
  margin-top:10px;
}

.tab{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  color: var(--txt);
  padding:10px 12px;
  border-radius: 12px;
  cursor:pointer;
  transition:.15s;
}
.tab:hover{ background: rgba(255,255,255,.10); }
.tab.active{
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.22);
}

.content{
  padding: 16px 14px 24px;
  max-width: 980px;
  margin: 0 auto;
}

h1{ margin: 10px 0 8px; font-size: 22px; }
.muted{ color: var(--muted); margin-top:0; }

.page{ display:none; }
.page.show{ display:block; }

.grid{
  margin-top: 12px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.card{
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 14px;
}

.product{
  display:flex;
  flex-direction:column;
  gap:10px;
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 14px;
}

.product .title{
  font-weight: 700;
  font-size: 16px;
}
.price{
  font-weight: 700;
  opacity: .95;
}

.actions{
  display:flex;
  gap:10px;
  margin-top: 4px;
}

button.primary{
  width:100%;
  border:0;
  border-radius: 14px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #7c3aed, #22c55e);
  color:white;
  font-weight: 800;
  cursor:pointer;
}
button.secondary{
  flex:1;
  border: 1px solid var(--stroke);
  border-radius: 14px;
  padding: 12px 14px;
  background: rgba(255,255,255,.06);
  color: var(--txt);
  font-weight: 700;
  cursor:pointer;
}

.cart{
  margin-top: 14px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 12px;
  padding: 12px 14px;
  background: rgba(10, 12, 18, .55);
  border: 1px solid var(--stroke);
  border-radius: 16px;
}

.label{ display:block; margin: 10px 0 6px; color: var(--muted); }
textarea{
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  color: var(--txt);
  padding: 12px;
  outline: none;
}
.sep{
  border:0;
  border-top:1px solid var(--stroke);
  margin: 14px 0;
}
a{ color: #a5b4fc; }
.media{
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.04);
}

.media img, .media video{
  width: 100%;
  display: block;
  object-fit: cover;
}

.prices{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-top: 6px;
}

.pill{
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 700;
  color: var(--txt);
  font-size: 14px;
}

.primary-link{
  display:block;
  text-align:center;
  text-decoration:none;
  border-radius: 14px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #7c3aed, #22c55e);
  color:white;
  font-weight: 800;
}

.tiny-muted{
  margin-top:10px;
  color: var(--muted);
  font-size: 12px;
}
:root{
  --glass: rgba(15, 18, 25, .55);
  --stroke: rgba(255,255,255,.12);
  --txt: rgba(255,255,255,.92);
  --muted: rgba(255,255,255,.70);
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
body{
  margin:0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Arial;
  color: var(--txt);

  background:
    linear-gradient(180deg, rgba(0,0,0,.55), rgba(0,0,0,.75)),
    url("bg.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}

.header{
  position: sticky;
  top: 0;
  z-index: 10;
  padding: 14px 14px 10px;
  backdrop-filter: blur(10px);
  background: rgba(10, 12, 18, .65);
  border-bottom: 1px solid var(--stroke);
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
}

.logo-dot{
  width:12px;height:12px;border-radius:999px;
  background: linear-gradient(135deg, #7c3aed, #22c55e);
  box-shadow: 0 0 18px rgba(124,58,237,.45);
}

.tabs{ display:flex; gap:10px; margin-top:10px; }
.tab{
  border:1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  color: var(--txt);
  padding:10px 12px;
  border-radius: 12px;
  cursor:pointer;
  transition:.15s;
}
.tab:hover{ background: rgba(255,255,255,.10); }
.tab.active{
  background: rgba(255,255,255,.16);
  border-color: rgba(255,255,255,.22);
}

.content{
  padding: 16px 14px 24px;
  max-width: 980px;
  margin: 0 auto;
}

h1{ margin: 10px 0 8px; font-size: 22px; }
.muted{ color: var(--muted); margin-top:0; }

.page{ display:none; }
.page.show{ display:block; }

.card{
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 14px;
}

.filters{ margin-top: 12px; }
.label{ display:block; margin: 10px 0 6px; color: var(--muted); }

select{
  width: 100%;
  border-radius: 14px;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  color: var(--txt);
  padding: 12px;
  outline: none;
}
option{ background: #0b0e14; color: white; }

.grid{
  margin-top: 12px;
  display:grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.product{
  display:flex;
  flex-direction:column;
  gap:10px;
  background: var(--glass);
  border: 1px solid var(--stroke);
  border-radius: 16px;
  padding: 14px;
}

.product .title{ font-weight: 800; font-size: 16px; }

.media{
  width: 100%;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.04);
}
.media img, .media video{
  width: 100%;
  display: block;
  object-fit: cover;
}

.prices{
  display:flex;
  flex-wrap:wrap;
  gap: 8px;
  margin-top: 2px;
}

.pill{
  border: 1px solid var(--stroke);
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 800;
  color: var(--txt);
  font-size: 14px;
}

.primary-link{
  display:block;
  text-align:center;
  text-decoration:none;
  border-radius: 14px;
  padding: 12px 14px;
  background: linear-gradient(135deg, #7c3aed, #22c55e);
  color:white;
  font-weight: 900;
}