:root{
  --s365-green:#C3D629;
  --s365-green-dark:#7A8614;
  --s365-dark:#111827;
  --s365-text:#253040;
  --s365-muted:#667085;
  --s365-border:#D0D5DD;
  --s365-hero:#D8D8D8;
  --s365-white:#FFFFFF;
}

.s365-shop-page,
.s365-shop-page *{
  box-sizing:border-box;
}

.s365-shop-page{
  width:100%;
  max-width:none;
  margin:0;
  padding:0;
  font-family:Arial, Helvetica, sans-serif;
  color:var(--s365-dark);
  background:#fff;
}

.s365-shop-page a{
  color:inherit;
  text-decoration:none;
}

.s365-shop-hero{
  width:100%;
  background:linear-gradient(90deg,#D8D8D8 0%,#E5E5E5 48%,#D8D8D8 100%);
  overflow:hidden;
}

.s365-shop-hero__inner{
  max-width:1240px;
  min-height:470px;
  margin:0 auto;
  padding:54px 32px 34px;
  display:grid;
  grid-template-columns:minmax(420px, 44%) minmax(0, 56%);
  gap:42px;
  align-items:center;
}

.s365-shop-kicker{
  display:flex;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
  color:var(--s365-green-dark);
  font-size:14px;
  font-weight:800;
  letter-spacing:.04em;
  text-transform:uppercase;
}

.s365-shop-kicker img{
  width:48px;
  height:auto;
  display:block;
}

.s365-shop-hero h1{
  max-width:560px;
  margin:0 0 18px;
  font-size:40px;
  line-height:1.12;
  font-weight:800;
  letter-spacing:-.02em;
  color:var(--s365-dark);
}

.s365-shop-hero p{
  max-width:560px;
  margin:0 0 26px;
  font-size:17px;
  line-height:1.55;
  color:var(--s365-text);
}

.s365-shop-actions{
  display:flex;
  gap:14px;
  flex-wrap:wrap;
  margin-bottom:28px;
}

.s365-shop-btn{
  min-height:48px;
  padding:0 28px;
  border-radius:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:14px;
  font-weight:800;
  transition:transform .2s ease, box-shadow .2s ease;
}

.s365-shop-btn:hover{
  transform:translateY(-2px);
}

.s365-shop-btn--primary{
  background:var(--s365-green);
  border:1px solid var(--s365-green);
  color:#111;
  box-shadow:0 10px 24px rgba(195,214,41,.25);
}

.s365-shop-btn--secondary{
  background:#fff;
  border:1px solid var(--s365-dark);
  color:#111;
}

.s365-shop-trust{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  max-width:650px;
  border-top:1px solid rgba(17,24,39,.12);
  padding-top:18px;
}

.s365-shop-trust div{
  min-height:58px;
  padding:0 16px;
  border-right:1px solid rgba(17,24,39,.16);
  display:grid;
  grid-template-columns:40px 1fr;
  grid-template-rows:auto auto;
  column-gap:10px;
  align-items:center;
}

.s365-shop-trust div:first-child{padding-left:0;}
.s365-shop-trust div:last-child{border-right:0;}

.s365-shop-trust img,
.s365-shop-trust .s365-icon{
  grid-row:1 / span 2;
  grid-column:1;
  width:34px;
  height:34px;
  display:block;
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
}

.s365-shop-trust strong{
  grid-column:2;
  font-size:12px;
  line-height:1.15;
  font-weight:800;
  color:var(--s365-dark);
}

.s365-shop-trust small{
  grid-column:2;
  font-size:10.5px;
  line-height:1.25;
  color:var(--s365-dark);
}

.s365-shop-hero__image{
  display:flex;
  align-items:center;
  justify-content:flex-end;
}

.s365-shop-hero__image img{
  width:100%;
  max-width:700px;
  height:auto;
  display:block;
}

.s365-shop-products{
  padding:42px 28px 64px;
  background:#fff;
}

.s365-shop-sectionhead{
  max-width:780px;
  margin:0 auto 28px;
  text-align:center;
}

.s365-shop-sectionhead h2{
  margin:0 0 8px;
  font-size:28px;
  line-height:1.25;
  font-weight:800;
}

.s365-shop-sectionhead p{
  margin:0;
  font-size:16px;
  line-height:1.5;
  color:var(--s365-muted);
}

.s365-shop-cardgrid{
  max-width:980px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}

.s365-shop-card{
  min-height:220px;
  padding:28px 18px 18px;
  border:1px solid var(--s365-border);
  border-radius:10px;
  background:#fff;
  text-align:center;
  display:flex;
  flex-direction:column;
  align-items:center;
  transition:transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}

.s365-shop-card:hover{
  transform:translateY(-4px);
  border-color:var(--s365-green);
  box-shadow:0 14px 30px rgba(0,0,0,.08);
}

.s365-card-icon{
  width:74px;
  height:74px;
  margin:0 auto 16px;
  display:block;
  background-size:contain;
  background-repeat:no-repeat;
  background-position:center;
}

.s365-shop-card h3{
  margin:0 0 10px;
  font-size:18px;
  line-height:1.25;
  font-weight:800;
}

.s365-shop-card p{
  margin:0;
  font-size:14px;
  line-height:1.45;
  color:#111827;
  font-weight:600;
}

.s365-shop-card em{
  margin-top:auto;
  font-style:normal;
  font-size:34px;
  line-height:1;
  color:#111827;
  font-weight:800;
}

/* Icons passend zur Homepage */
.s365-icon--key,
.s365-card-icon--key{
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" fill="none" stroke="%23111827" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><circle cx="22" cy="32" r="10"/><path d="M32 32h22M43 32v8M50 32v6"/></svg>');
}

.s365-icon--germany{
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" fill="none" stroke="%23111827" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M20 11h24l6 13-8 29H22l-8-29z"/></svg>');
}

.s365-icon--support{
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" fill="none" stroke="%23111827" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M18 36v-7a14 14 0 0 1 28 0v7"/><path d="M18 36h-5v10h8V36zM46 36h5v10h-8V36z"/></svg>');
}

.s365-card-icon--cylinder{
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 96 128" fill="none" stroke="%23111827" stroke-width="6" stroke-linecap="round" stroke-linejoin="round"><circle cx="48" cy="42" r="34"/><circle cx="48" cy="42" r="24"/><path d="M50 20c-8 6-9 13-2 20 5 5 2 13-5 18"/><path d="M30 76v34c0 8 6 14 14 14h8c8 0 14-6 14-14V76"/></svg>');
}

.s365-card-icon--building{
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" fill="none" stroke="%23111827" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><path d="M13 54h38"/><path d="M18 54V17h28v37"/><path d="M25 25h5M35 25h5M25 34h5M35 34h5M25 43h5M35 43h5"/></svg>');
}

.s365-card-icon--electronics{
  background-image:url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 64 64" fill="none" stroke="%23111827" stroke-width="3" stroke-linecap="round" stroke-linejoin="round"><rect x="18" y="10" width="28" height="44" rx="4"/><path d="M25 20h3M36 20h3M25 30h3M36 30h3M25 40h3M36 40h3"/></svg>');
}

/* Tablet */
@media (max-width:1024px){
  .s365-shop-hero__inner{
    grid-template-columns:1fr;
    gap:26px;
    min-height:auto;
    padding:42px 28px 38px;
  }
  .s365-shop-hero__image{
    justify-content:center;
  }
  .s365-shop-hero__image img{
    max-width:680px;
  }
  .s365-shop-trust{
    grid-template-columns:repeat(2,1fr);
    gap:12px 0;
  }
  .s365-shop-trust div{
    border-right:0;
    padding:0 12px 0 0;
  }
  .s365-shop-cardgrid{
    grid-template-columns:repeat(2,1fr);
    max-width:700px;
  }
}

/* Handy */
@media (max-width:600px){
  .s365-shop-hero{
    background:#D8D8D8;
  }
  .s365-shop-hero__inner{
    padding:32px 22px 30px;
  }
  .s365-shop-kicker{
    font-size:12px;
    align-items:center;
  }
  .s365-shop-kicker img{
    width:42px;
  }
  .s365-shop-hero h1{
    font-size:28px;
    line-height:1.16;
  }
  .s365-shop-hero p{
    font-size:16px;
  }
  .s365-shop-actions{
    flex-direction:column;
  }
  .s365-shop-btn{
    width:100%;
  }
  .s365-shop-trust{
    grid-template-columns:repeat(2,1fr);
    border-top:0;
    gap:14px;
  }
  .s365-shop-trust div{
    display:block;
    padding:0;
    text-align:center;
  }
  .s365-shop-trust img,
  .s365-shop-trust .s365-icon{
    margin:0 auto 6px;
  }
  .s365-shop-trust small{
    display:none;
  }
  .s365-shop-products{
    padding:34px 18px 48px;
  }
  .s365-shop-sectionhead h2{
    font-size:24px;
  }
  .s365-shop-cardgrid{
    grid-template-columns:1fr;
    max-width:360px;
  }
  .s365-shop-card{
    min-height:185px;
  }
}
