/* Price row + inline design code */
.ie-product-price-row {
  align-items: center;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  justify-content: space-between;
}

.ie-product-price-main {
  align-items: baseline;
  display: flex;
  flex-wrap: wrap;
  gap: 4px 10px;
  min-width: 0;
}

.ie-product-price-main h2 {
  margin: 0;
}

.ie-product-price-main .price-old {
  line-height: 1.4;
}

/* Compact design code — sits right of price */
.ie-product-code--inline {
  align-items: center;
  background: #fafbfc;
  border: 1px solid #eceef2;
  border-radius: 999px;
  display: inline-flex;
  flex-shrink: 0;
  gap: 8px;
  margin: 0;
  max-width: 100%;
  padding: 5px 6px 5px 12px;
}

.ie-product-code-label {
  color: #868e96;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.ie-product-code-value {
  color: #212529;
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", Menlo, monospace;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
  max-width: 140px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ie-product-code-copy {
  align-items: center;
  background: #fff;
  border: 1px solid #e2e6ea;
  border-radius: 50%;
  color: #6c757d;
  cursor: pointer;
  display: flex;
  flex-shrink: 0;
  font-size: 11px;
  height: 28px;
  justify-content: center;
  padding: 0;
  transition: background 0.15s, border-color 0.15s, color 0.15s, transform 0.15s;
  width: 28px;
}

.ie-product-code-copy:hover,
.ie-product-code-copy.ie-copied {
  background: #fff0f2;
  border-color: #f12a43;
  color: #f12a43;
  transform: scale(1.05);
}

.ie-product-code-copy.ie-copied {
  background: #e8f5e9;
  border-color: #81c784;
  color: #2e7d32;
}

/* Share row — theme-matched, not loud brand colors */
.ie-product-share {
  background: linear-gradient(135deg, #fafbfc 0%, #f5f6f8 100%);
  border: 1px solid #eceef2;
  border-radius: 10px;
  margin-top: 14px;
  padding: 12px 14px;
  width: 100%;
}

.ie-product-share-head {
  margin-bottom: 10px;
}

.ie-product-share-label {
  color: #495057;
  display: block;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ie-product-share-label::before {
  color: #f12a43;
  content: "\f064";
  font-family: FontAwesome;
  margin-right: 7px;
}

.ie-product-share-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.ie-share-btn {
  align-items: center;
  background: #fff;
  border: 1px solid #e2e6ea;
  border-radius: 8px;
  color: #495057;
  display: inline-flex;
  font-size: 14px;
  height: 34px;
  justify-content: center;
  text-decoration: none !important;
  transition: background 0.15s, border-color 0.15s, color 0.15s, box-shadow 0.15s, transform 0.15s;
  width: 34px;
}

.ie-share-btn:hover {
  background: #fff5f6;
  border-color: #f12a43;
  box-shadow: 0 2px 8px rgba(241, 42, 67, 0.12);
  color: #f12a43;
  transform: translateY(-1px);
}

.ie-share-copy {
  cursor: pointer;
  padding: 0;
}

.ie-share-copy:hover {
  color: #f12a43;
}

.ie-share-copy.ie-copied {
  background: #e8f5e9;
  border-color: #81c784;
  box-shadow: none;
  color: #2e7d32;
  transform: none;
}

.product-buy-actions {
  margin-bottom: 0;
}

.product-buy-actions .ie-product-buy {
  margin-top: 0;
}

.product-product .product-details .addthis_toolbox {
  display: none !important;
}

/* Collapsible product description */
.ie-product-description-wrap {
  position: relative;
}

.ie-product-description-wrap.is-collapsed {
  max-height: 300px;
  overflow: hidden;
}

.ie-product-description-wrap.is-collapsed .ie-product-description-fade {
  display: block;
}

.ie-product-description-wrap.is-expanded {
  max-height: none;
  overflow: visible;
}

.ie-product-description-wrap.is-expanded .ie-product-description-fade {
  display: none;
}

.ie-product-description-fade {
  display: none;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 72px;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0), #fff 88%);
  pointer-events: none;
}

.ie-product-description-toggle {
  background: none;
  border: none;
  color: #f12a43;
  cursor: pointer;
  font-size: 14px;
  font-weight: 600;
  margin-top: 10px;
  padding: 0;
}

.ie-product-description-toggle:hover {
  color: #c91e3a;
  text-decoration: underline;
}

.ie-product-description-toggle .ie-product-description-toggle-less {
  display: none;
}

.ie-product-description-wrap.is-expanded + .ie-product-description-toggle .ie-product-description-toggle-more {
  display: none;
}

.ie-product-description-wrap.is-expanded + .ie-product-description-toggle .ie-product-description-toggle-less {
  display: inline;
}

@media (max-width: 479px) {
  .ie-product-price-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .ie-product-code--inline {
    max-width: 100%;
  }

  .ie-product-code-value {
    max-width: none;
  }
}
