:root{
  --bg:#03110c;
  --card:#0f2a1f;
  --card2:#163626;
  --line:rgba(255,255,255,.08);
  --text:#ffffff;
  --muted:rgba(255,255,255,.72);
  --dark:#ff9348;
  --dark-hover:#ff9f5e;
  }
  
  *{
  box-sizing:border-box;
  }
  
  body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  background:
  radial-gradient(circle at top left, rgba(17,98,57,.35), transparent 40%),
  radial-gradient(circle at top right, rgba(255,147,72,.16), transparent 35%),
  linear-gradient(180deg,#03110c 0%, #071b14 100%);
  color:var(--text);
  }
  
  .wrap{
  max-width:1240px;
  margin:0 auto;
  padding:22px;
  }
  
  .hero{
  background:linear-gradient(135deg,#0d241b,#123626);
  border:1px solid var(--line);
  border-radius:24px;
  padding:28px;
  margin-bottom:20px;
  box-shadow:0 18px 34px rgba(0,0,0,.24);
  }
  
  .hero h1{
  margin:0 0 10px;
  font-size:42px;
  line-height:1.05;
  color:#fff;
  }
  
  .hero p{
  margin:0;
  font-size:18px;
  color:var(--muted);
  }
  
  .filters{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-bottom:22px;
  }
  
  .chip{
  padding:11px 16px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.04);
  color:#fff;
  text-decoration:none;
  font-size:14px;
  font-weight:800;
  transition:.2s ease;
  }
  
  .chip:hover{
  transform:translateY(-1px);
  background:rgba(255,255,255,.08);
  }
  
  .chip.active{
  background:var(--dark);
  border-color:var(--dark);
  color:#fff;
  }
  
  .grid{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
  }
  
  .card{
  background:linear-gradient(135deg,#102a20,#173928);
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  display:grid;
  grid-template-columns:240px 1fr;
  box-shadow:0 16px 34px rgba(0,0,0,.24);
  transition:.22s ease;
  }
  
  .card:hover{
  transform:translateY(-4px);
  box-shadow:0 24px 44px rgba(0,0,0,.32);
  }
  
  .img{
    width:100%;
    aspect-ratio:1/1;
    object-fit:contain;
    padding:22px;
    display:block;
    background:#ffffff;
    border-right:1px solid rgba(255,255,255,.06);
    }
  
  .content{
  padding:20px;
  display:flex;
  flex-direction:column;
  gap:12px;
  justify-content:center;
  }
  
  .badge{
  display:inline-flex;
  align-self:flex-start;
  padding:6px 12px;
  border-radius:999px;
  background:rgba(255,255,255,.05);
  border:1px solid var(--line);
  font-size:12px;
  font-weight:900;
  text-transform:uppercase;
  color:#fff;
  }
  
  .title{
  margin:0;
  font-size:30px;
  line-height:1.08;
  font-weight:900;
  letter-spacing:-0.02em;
  color:#fff;
  }
  
  .desc{
  font-size:15px;
  line-height:1.55;
  color:var(--muted);
  max-width:560px;
  }
  
  .price{
  font-size:42px;
  font-weight:900;
  line-height:1;
  margin-top:6px;
  color:#fff;
  }
  
  .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 18px;
  border-radius:14px;
  background:var(--dark);
  color:#fff;
  text-decoration:none;
  font-weight:900;
  font-size:15px;
  width:220px;
  margin-top:8px;
  transition:.18s ease;
  box-shadow:0 10px 18px rgba(255,147,72,.24);
  }
  
  .btn:hover{
  background:var(--dark-hover);
  transform:translateY(-1px);
  }
  
  .empty{
  background:#0f2a1f;
  border:1px solid var(--line);
  border-radius:24px;
  padding:34px;
  text-align:center;
  font-size:18px;
  color:var(--muted);
  }
  
  /* Tablet */
  @media (max-width:980px){
  
  .card{
  grid-template-columns:200px 1fr;
  }
  
  .title{
  font-size:26px;
  }
  
  .price{
  font-size:36px;
  }
  
  }
  
  /* Mobile */
  @media (max-width:700px){
  
  .wrap{
  padding:14px;
  }
  
  .hero{
  padding:18px;
  border-radius:18px;
  }
  
  .hero h1{
  font-size:28px;
  }
  
  .hero p{
  font-size:16px;
  }
  
  .grid{
  gap:14px;
  }
  
  .card{
  grid-template-columns:1fr;
  }
  
  .img{
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.06);
    padding:18px;
    }
  
  .content{
  padding:16px;
  }
  
  .title{
  font-size:24px;
  }
  
  .price{
  font-size:34px;
  }
  
  .btn{
  width:100%;
  }
  
  }