/* ================================
   LOOP / ARCHIVE
   ================================ */

.lp-sku-box {
  margin: 6px 0 8px;
  font-size: 12px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.lp-sku-box .product-meta {
  color: #666;
  display: flex;
  align-items: center;
  gap: 6px;
}

.lp-sku-val,
.lp-man-val,
.lp-sku-val--single,
.lp-man-val--single {
  color: #333;
}

.lp-sku-label {
  opacity: .85;
}

.lp-sku-val,
.lp-man-val,
.lp-sku-val--single,
.lp-man-val--single {
  direction: rtl;
}

.lp-copy-btn {
  border: 1px solid rgba(0,0,0,.25) !important;
  background: #fff !important;
  color: #000 !important; /* ← ВАЖНО */
  border-radius: 6px;
  width: 26px;
  height: 26px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}

.lp-copy-btn:hover {
  background: #000 !important; /* или твой синий */
  color: #fff !important;
}

.lp-copy-btn.copied {
  border-color: rgba(0,0,0,.6);
}

/* SVG иконка "копировать" */
.lp-copy-ico {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor; /* цвет берётся из color кнопки */
}

/* ================================
   SINGLE PRODUCT – SKU BOX
   ================================ */

.lp-sku-box.lp-sku-box--single {
  display: flex !important;
  flex-direction: row !important;
  align-items: center !important;
  gap: 16px !important;
  flex-wrap: wrap !important;
}

.lp-sku-box.lp-sku-box--single .lp-sku-row--single,
.lp-sku-box.lp-sku-box--single .lp-man-row--single {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  white-space: nowrap;
}

.lp-sku-row--single,
.lp-man-row--single {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 8px;
  min-height: 24px;
  white-space: nowrap;
  background: #f7f7f7;
  border: 1px solid rgba(0,0,0,.15);
  border-radius: 6px;
}

.lp-sku-label--single {
  opacity: .75;
  font-weight: 500;
}

.lp-sku-val--single,
.lp-man-val--single {
  font-weight: 600;
}

.lp-copy-ico--single {
  width: 16px;
  height: 16px;
  display: block;
  fill: currentColor;
}

.lp-copy-btn--single {
  width: 24px;
  height: 24px;
  border-radius: 5px;
}

.lp-copy-btn--single:hover {
  background: #000 !important;
  color: #fff !important;
}

@media (max-width: 480px) {
  .lp-sku-box--single {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}