.priplatek-cards {
  display: flex;
  flex-direction: column;
  gap: 7px;
  margin: 8px 0 12px;
}

.priplatek-label {
  font-size: 11px;
  font-weight: 600;
  color: #3B6D11;
  letter-spacing: .07em;
  text-transform: uppercase;
  margin: 0 0 7px;
  display: flex;
  align-items: center;
  gap: 6px;
}

.priplatek-label:before {
  content: "";
  display: inline-block;
  width: 14px;
  height: 2px;
  background: #3B6D11;
  border-radius: 2px;
}

.priplatek-card {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border: 1.5px solid #e0e0e0;
  border-radius: 10px;
  cursor: pointer;
  background: #fff;
  transition: border-color 0.15s, background 0.15s, opacity 0.15s;
}

.priplatek-card:hover { border-color: #aaa; }

.priplatek-card.active {
  border-color: #3B6D11;
  background: #EAF3DE;
}

.priplatek-radio {
  width: 17px;
  height: 17px;
  border-radius: 50%;
  border: 1.5px solid #ccc;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
}

.priplatek-card.active .priplatek-radio {
  background: #3B6D11;
  border-color: #3B6D11;
}

.priplatek-radio svg { display: none; }
.priplatek-card.active .priplatek-radio svg { display: block; }

.priplatek-name {
  font-size: 13px;
  font-weight: 500;
  color: #111;
  margin: 0 0 1px;
}

.priplatek-card.active .priplatek-name { color: #27500A; }

.priplatek-desc {
  font-size: 11px;
  color: #888;
  margin: 0;
}

.priplatek-card.active .priplatek-desc { color: #3B6D11; }

.priplatek-price {
  margin-left: auto;
  font-size: 13px;
  font-weight: 600;
  color: #3B6D11;
  white-space: nowrap;
}

.priplatek-card.active .priplatek-price { color: #27500A; }

.priplatek-thumb {
  width: 44px;
  height: 44px;
  object-fit: cover;
  border-radius: 8px;
  border: 1px solid #e0e0e0;
  cursor: zoom-in;
  flex-shrink: 0;
  transition: transform 0.15s;
}

.priplatek-thumb:hover {
  transform: scale(1.08);
  border-color: #3B6D11;
}
