
:root{
  --green:#39ff14;
  --green-soft:#8edb38;
  --dark:#020602;
  --panel:rgba(1,16,13,.88);
  --panel-soft:rgba(0,35,16,.72);
  --border:rgba(142,219,56,.68);
  --text-soft:#bcd0c0;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  min-height:100vh;
  color:#fff;
  font-family:Arial,Helvetica,sans-serif;
  background:
    linear-gradient(rgba(0,8,12,.30),rgba(0,8,12,.58)),
    url("../img/hintergrund-shop.png") center center/cover fixed no-repeat;
}
a{color:inherit}
.site-header{
  position:sticky;top:0;z-index:20;
  display:flex;align-items:center;justify-content:space-between;gap:20px;
  padding:12px 3%;
  background:rgba(0,8,9,.88);
  border-bottom:1px solid rgba(142,219,56,.30);
  backdrop-filter:blur(8px);
}
.site-logo{width:100px;max-width:30vw}
.site-logo img{display:block;width:100%;height:auto}
.site-nav{display:flex;gap:24px;flex-wrap:wrap;justify-content:flex-end}
.site-nav a{
  text-decoration:none;padding:10px 2px;border-bottom:2px solid transparent
}
.site-nav a:hover,.site-nav a.active{
  color:var(--green-soft);border-color:var(--green-soft)
}
.shop-page{width:min(1500px,95%);margin:auto}
.shop-title{text-align:center;padding:34px 10px 20px}
.shop-title h1{
  margin:0;font-family:Georgia,serif;
  font-size:clamp(40px,6vw,76px);letter-spacing:8px
}
.shop-title p{font-size:18px;color:#dbe7df}
.shop-anchor{color:var(--green-soft);font-size:28px}
.shop-toolbar{
  display:grid;grid-template-columns:minmax(260px,1fr) auto auto;
  gap:14px;align-items:center;
  padding:16px;margin:16px 0;
  border:1px solid rgba(142,219,56,.28);
  border-radius:18px;background:rgba(0,12,10,.82);
}
.shop-toolbar input,.shop-toolbar select{
  height:48px;border:1px solid var(--border);border-radius:14px;
  background:rgba(0,18,14,.90);color:#fff;
  padding:0 16px;font-size:16px;outline:none
}
.shop-toolbar input{width:100%}
.shop-toolbar select{min-width:190px}
.per-page{display:flex;align-items:center;gap:7px;white-space:nowrap}
.per-page button,.pagination button{
  border:1px solid var(--border);
  background:rgba(0,18,14,.90);color:#fff;
  border-radius:10px;height:40px;min-width:42px;cursor:pointer
}
.per-page button.active,.per-page button:hover,
.pagination button.active,.pagination button:hover{
  background:var(--green-soft);color:#041004
}
.shop-content{display:grid;grid-template-columns:220px 1fr;gap:18px}
.shop-sidebar{
  min-height:190px;padding:18px;border-radius:18px;
  border:1px dashed rgba(142,219,56,.40);
  background:rgba(0,12,10,.72)
}
.shop-sidebar h2{margin:0 0 10px;color:var(--green-soft);font-size:18px}
.shop-sidebar p,.shop-sidebar small{color:var(--text-soft);line-height:1.45}
.product-grid{
  display:grid;grid-template-columns:repeat(4,minmax(0,1fr));gap:16px
}
.product-card{
  overflow:hidden;border:1px solid var(--border);border-radius:18px;
  background:linear-gradient(145deg,rgba(0,28,18,.92),rgba(0,5,6,.94));
  transition:.2s;box-shadow:0 8px 24px rgba(0,0,0,.38)
}
.product-card:hover{
  transform:translateY(-4px);box-shadow:0 0 28px rgba(57,255,20,.30)
}
.product-image{
  height:185px;display:grid;place-items:center;
  background:radial-gradient(circle,rgba(57,255,20,.12),transparent 60%);
  overflow:hidden
}
.product-image img{width:100%;height:100%;object-fit:cover}
.product-placeholder{font-size:72px}
.product-body{padding:16px}
.product-id{color:var(--green-soft);font-weight:bold;font-size:13px}
.product-card h3{margin:10px 0 8px}
.product-card p{margin:0;min-height:38px;color:var(--text-soft)}
.product-status{margin-top:10px;color:#baff92;font-size:13px}
.product-price{margin:12px 0;font-size:24px;color:var(--green-soft);font-weight:bold}
.product-link{
  display:block;text-align:center;text-decoration:none;
  padding:10px;border:1px solid var(--border);border-radius:12px;
  background:rgba(0,28,14,.78)
}
.product-link:hover{background:var(--green-soft);color:#041004}
.empty-state{display:none;text-align:center;padding:30px;color:var(--text-soft)}
.pagination{display:flex;justify-content:center;gap:8px;flex-wrap:wrap;margin:24px 0}

.site-footer{
  display:grid;
  grid-template-columns:minmax(280px,1fr) minmax(360px,1.6fr) minmax(260px,1fr);
  align-items:center;
  gap:24px;
  padding:18px 22px;
  margin-top:28px;
  border-top:1px solid rgba(142,219,56,.55);
  background:rgba(0,7,8,.90);
  box-shadow:0 -8px 28px rgba(0,0,0,.28);
}

.footer-center{
  text-align:center;
  line-height:1.45;
  color:#eef6f0;
}

.footer-center b{
  color:var(--green-soft);
}

.footer-block{
  display:flex;
  flex-direction:column;
  gap:8px;
}

.footer-row{
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:8px 14px;
}

.footer-row-right{
  justify-content:flex-end;
}

.footer-row a,
.footer-ocean-button{
  display:inline-flex;
  align-items:center;
  gap:6px;
  min-height:30px;
  padding:4px 6px;
  border:0;
  border-radius:8px;
  background:transparent;
  color:var(--green-soft);
  text-decoration:none;
  font:inherit;
  cursor:pointer;
  white-space:nowrap;
  transition:color .18s,background .18s,text-shadow .18s,transform .18s;
}

.footer-row a:hover,
.footer-ocean-button:hover,
.footer-ocean-button.active{
  color:#fff;
  background:rgba(57,255,20,.10);
  text-shadow:0 0 12px rgba(57,255,20,.70);
  transform:translateY(-1px);
}

.footer-ocean-button{
  width:auto;
  text-align:left;
}

.product-detail{
  display:grid;grid-template-columns:minmax(320px,1fr) 1fr;
  gap:28px;margin:32px 0;padding:24px;
  border:1px solid var(--border);border-radius:20px;
  background:rgba(0,12,10,.86)
}
.product-detail-image{
  min-height:420px;display:grid;place-items:center;
  border-radius:16px;overflow:hidden;
  background:radial-gradient(circle,rgba(57,255,20,.12),transparent 60%)
}
.product-detail-image img{width:100%;height:100%;object-fit:cover}
.product-detail-image .product-placeholder{font-size:120px}
.product-detail h1{margin-top:0}
.back-link{display:inline-block;margin-top:20px;color:var(--green-soft)}

@media(max-width:1150px){
  .product-grid{
    grid-template-columns:repeat(3,1fr);
  }
}

@media(max-width:980px){
  .site-footer{
    grid-template-columns:1fr;
    text-align:center;
  }

  .footer-left,
  .footer-right{
    align-items:center;
  }

  .footer-row,
  .footer-row-right{
    justify-content:center;
  }
}

@media(max-width:900px){
  .shop-toolbar{
    grid-template-columns:1fr;
  }

  .shop-content{
    grid-template-columns:1fr;
  }

  .shop-sidebar{
    display:none;
  }

  .product-grid{
    grid-template-columns:repeat(2,1fr);
  }

  .product-detail{
    grid-template-columns:1fr;
  }
}

@media(max-width:600px){
  .product-grid{
    grid-template-columns:1fr;
  }

  .site-nav{
    gap:10px;
  }

  .site-nav a{
    font-size:14px;
  }

  .site-logo{
    width:130px;
  }

  .site-footer{
    padding:16px 12px;
  }

  .footer-row{
    gap:6px 10px;
  }
}
