/* Aurora Dark Gradient Theme (tema3) */
:root{
  --bg-1:#0a0f1e;
  --bg-2:#1d0842;
  --bg-3:#0b2a3a;
  --grad: radial-gradient(1200px 800px at 10% 0%, rgba(45,0,80,.35), transparent 60%),
          radial-gradient(1000px 600px at 90% 10%, rgba(0,140,180,.25), transparent 60%),
          linear-gradient(135deg, #0a0f1e, #1d0842 50%, #0b2a3a);
  --card: rgba(16,18,38,.6);
  --stroke: rgba(255,255,255,.08);
  --text: #eef2ff;
  --muted: #b9c2d0;
  --accent:#7dd3fc;  /* cyan */
  --accent-2:#a78bfa; /* violet */
  --badge:#0EA5E9;
}

*{margin:0;padding:0;box-sizing:border-box;font-family: 'Montserrat', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;}
html,body{min-height:100%;}

body{
  background:var(--grad);
  color:var(--text);
}

.eclipse-container{
  max-width:100%;
  min-height:100vh;
  display:flex;
  flex-direction:column;
}

/* Header */
.eclipse-header{
  backdrop-filter: blur(8px);
  background:linear-gradient(180deg, rgba(10,15,30,.75), rgba(10,15,30,.35));
  border-bottom:1px solid var(--stroke);
  padding:16px 20px;
  display:flex;align-items:center;justify-content:space-between;gap:10px;
}
.eclipse-header h1{
  font-size:1.2rem;font-weight:700;letter-spacing:.5px;text-transform:uppercase;
}
.eclipse-iconbtn{
  width:42px;height:42px;border-radius:12px;border:1px solid var(--stroke);
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  color:var(--text);display:flex;align-items:center;justify-content:center;
  cursor:pointer;transition:.25s;
}
.eclipse-iconbtn:hover{transform: translateY(-1px); box-shadow:0 6px 18px rgba(0,0,0,.35);}

/* Main */
.eclipse-main{
  flex:1;
  width:100%;
  max-width:1200px;
  margin:0 auto;
  padding:24px 20px 40px;
}

/* Logo + slogan */
.eclipse-hero{
  text-align:center;margin:24px 0 10px;
}
.eclipse-logo{
  width:110px;height:110px;object-fit:contain;filter: drop-shadow(0 0 18px rgba(167,139,250,.25));
}
.eclipse-slogan{color:var(--muted);font-style:italic;margin-top:10px;font-size:.95rem}

/* Kategoriler (resimli) */
.eclipse-cats{
  display:grid;gap:22px;margin:28px 0;
  grid-template-columns:1fr;
}
.eclipse-cat{
  position:relative;height:180px;overflow:hidden;border-radius:14px;
  background:var(--card);border:1px solid var(--stroke);
  display:block;text-decoration:none;color:inherit;
  transition:.3s;box-shadow:0 8px 24px rgba(0,0,0,.25);
}
.eclipse-cat:hover{transform: translateY(-4px);box-shadow:0 14px 30px rgba(0,0,0,.35);}
.eclipse-cat img{width:100%;height:100%;object-fit:cover;transition: transform .6s ease;}
.eclipse-cat:hover img{transform: scale(1.06);}
.eclipse-cat::after{
  content:"";position:absolute;inset:0;
  background:linear-gradient(to top, rgba(10,15,30,.9), rgba(13,5,50,.35));
}
.eclipse-cat h3{
  position:absolute;left:18px;bottom:16px;z-index:2;
  font-size:1.15rem;font-weight:700;text-shadow:0 2px 10px rgba(0,0,0,.55);
}

/* Ürün liste (kategori) */
.eclipse-list{display:flex;flex-direction:column;gap:18px;margin:6px 0 30px;}
.eclipse-card{
  border:1px solid var(--stroke);background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-radius:14px;overflow:hidden;backdrop-filter: blur(5px);
  box-shadow: 0 10px 26px rgba(0,0,0,.28);
}
.eclipse-card-img{height:180px;background-size:cover;background-position:center;}
.eclipse-card-body{padding:18px;}
.eclipse-card h3{font-size:1.15rem;margin-bottom:8px;color:var(--accent);font-weight:700;}
.eclipse-desc{color:var(--muted);font-size:.95rem;line-height:1.55;margin-bottom:12px}
.eclipse-price{font-weight:700}

/* Opsiyon listesi */
.option-box{
  margin-top:10px;border-top:1px dashed var(--stroke);padding-top:12px;
}
.option-title{font-size:.9rem;color:var(--muted);margin-bottom:8px;letter-spacing:.3px}
.option-grid{
  display:grid;grid-template-columns:repeat(2, minmax(0,1fr));gap:10px;
}
.option-pill{
  border:1px solid var(--stroke);border-radius:12px;
  background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  padding:10px 12px;
}
.option-name{font-weight:600}
.option-sub{
  font-size:.92rem;margin-top:4px;color:#e2f3ff;
}
.badge-inline{
  display:inline-block;margin-left:6px;padding:2px 8px;border-radius:999px;
  font-size:.75rem;background:rgba(14,165,233,.15);border:1px solid rgba(125,211,252,.25);color:#c8e9ff;
}

/* Ürün detay */
.detail-wrap{margin:10px 0 36px;}
.detail-img{
  height:260px;border-radius:14px;margin-bottom:16px;background-size:cover;background-position:center;
  box-shadow: 0 12px 28px rgba(0,0,0,.35);
}
.detail-head h2{font-size:1.4rem;color:var(--accent-2);margin-bottom:6px}
.detail-price{font-size:1.25rem;font-weight:800;margin:10px 0 16px}
.detail-desc{color:var(--muted);line-height:1.7}

/* Footer + info */
.eclipse-info{
  text-align:center;margin-top:26px;padding-top:18px;border-top:1px solid var(--stroke);
  color:var(--muted);
}
.eclipse-info a{color:inherit;text-decoration:none}
.eclipse-info i{color:var(--accent);margin-right:8px}
.eclipse-footer{
  margin-top:auto;text-align:center;padding:18px;
  background:linear-gradient(180deg, rgba(255,255,255,.03), rgba(255,255,255,.02));
  border-top:1px solid var(--stroke);color:var(--muted);font-size:.85rem;
}

/* Links */
a{color:inherit;text-decoration:none;transition:.25s}
a:hover{color:var(--accent)}

/* Responsive */
@media(min-width:768px){
  .eclipse-cats{grid-template-columns: repeat(2, minmax(0,1fr));}
  .eclipse-cat{height:200px}
}
@media(min-width:1024px){
  .eclipse-cats{grid-template-columns: repeat(3, minmax(0,1fr));}
}
@media(max-width:480px){
  .eclipse-card-img,.detail-img{height:180px}
}
