/* =====================================================
   PRODUKT TOPBAR – breadcrumb + title + rating + share v3
===================================================== */

.produkt-topbar{
  background:linear-gradient(180deg,#065f6c,#064e5e);
  color:#fff;
  padding:20px 0;
}

.produkt-topbar-in{
  max-width:1200px;
}

/* BREADCRUMB */
.produkt-breadcrumb{
  font-size:13px;
  margin-bottom:10px;
  display:flex;
  align-items:center;
  flex-wrap:wrap;
  gap:4px;
}

.produkt-breadcrumb a{
  color:rgba(255,255,255,.75);
  text-decoration:none;
  transition:color .2s;
}

.produkt-breadcrumb a:hover{
  color:#fff;
  text-decoration:underline;
}

.produkt-breadcrumb .sep{
  opacity:.4;
  margin:0 2px;
}

/* TITLE LINE */
.produkt-topline{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
}

.produkt-topline-left{
  flex:1;
  min-width:0;
}

.produkt-title{
  margin:0 0 8px 0;
  font-size:30px;
  line-height:1.15;
  font-weight:800;
}

/* META ROW: rating + badges */
.produkt-meta{
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;
}

/* RATING STARS */
.produkt-rating{
  display:flex;
  align-items:center;
  gap:8px;
}

.produkt-stars{
  display:inline-flex;
  gap:2px;
}

.produkt-stars .star{
  font-size:18px;
  color:rgba(255,255,255,.3);
  line-height:1;
}

.produkt-stars .star.filled{
  color:#f5c518;
}

.produkt-stars .star.half{
  background:linear-gradient(90deg,#f5c518 50%,rgba(255,255,255,.3) 50%);
  -webkit-background-clip:text;
  -webkit-text-fill-color:transparent;
}

.produkt-rating-text{
  font-size:13px;
  opacity:.85;
  font-weight:600;
}

/* BADGES */
.produkt-meta .badge{
  display:inline-flex;
  align-items:center;
  gap:6px;
  padding:5px 12px;
  border-radius:999px;
  font-weight:600;
  font-size:12px;
  white-space:nowrap;
}

.produkt-meta .badge.light{
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.2);
}

.produkt-meta .badge.light svg{
  opacity:.85;
}

.produkt-meta .badge.promo-badge{
  background:rgba(46,125,50,.85);
  border:1px solid rgba(255,255,255,.2);
}

/* =====================================================
   SHARE BUTTONS (right side)
===================================================== */
.produkt-topline-right{
  flex-shrink:0;
  display:flex;
  align-items:center;
}

.prd-share-bar{
  display:flex;
  align-items:center;
  gap:8px;
}

.prd-share-label-top{
  font-size:12px;
  color:rgba(255,255,255,.65);
  font-weight:600;
  margin-right:4px;
}

.prd-share-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:6px;
  width:36px;
  height:36px;
  border-radius:50%;
  background:rgba(255,255,255,.12);
  border:1px solid rgba(255,255,255,.15);
  color:#fff;
  cursor:pointer;
  transition:all .2s;
  padding:0;
  font-family:inherit;
}

.prd-share-btn:hover{
  background:rgba(255,255,255,.25);
  border-color:rgba(255,255,255,.3);
  transform:scale(1.08);
}

.prd-share-btn svg{
  fill:currentColor;
  flex-shrink:0;
}

/* Copy button – wider with label */
.prd-share-copy-btn{
  width:auto;
  border-radius:18px;
  padding:0 14px;
  gap:8px;
}

.prd-share-copy-btn svg{
  fill:none;
  stroke:currentColor;
}

.prd-share-copy-btn .prd-share-label{
  font-size:12px;
  font-weight:600;
  white-space:nowrap;
}

.prd-share-btn.copied{
  background:rgba(46,125,50,.6);
  border-color:rgba(46,125,50,.8);
}

/* RESPONSIVE */
@media (max-width:900px){
  .produkt-title{
    font-size:24px;
  }
  .produkt-topline{
    flex-direction:column;
    gap:12px;
  }
}

@media (max-width:550px){
  .produkt-topbar{
    padding:14px 0;
  }
  .produkt-title{
    font-size:20px;
  }
  .produkt-breadcrumb{
    font-size:11px;
  }
  .produkt-meta .badge{
    font-size:11px;
    padding:4px 8px;
  }
  .prd-share-copy-btn .prd-share-label{
    display:none;
  }
  .prd-share-copy-btn{
    width:36px;
    padding:0;
  }
}
