.bc-product-block {
  margin: 15px 0;
  padding: 15px;
  background: #f9f9f9;
  border-radius: 8px;
  border: 1px solid #eee;
}
.bc-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #e63946;
  margin-bottom: 10px;
}
.bc-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.bc-btn {
  padding: 10px 20px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.2s ease;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bc-read-more {
  background: #f1faee;
  color: #1d3557;
  border: 1px solid #1d3557;
}
.bc-buy-now {
  background: #e63946;
  color: #fff;
}
.bc-share-btn {
  background: #457b9d;
  color: #fff;
}
.bc-btn:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

.bc-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99999;
  align-items: center;
  justify-content: center;
}
.bc-modal.is-active {
  display: flex;
}
.bc-modal-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.bc-modal-content {
  position: relative;
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  width: 90%;
  max-width: 500px;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}
.bc-modal-close {
  position: absolute;
  top: 10px;
  right: 15px;
  background: none;
  border: none;
  font-size: 2rem;
  cursor: pointer;
  color: #666;
  line-height: 1;
}
.bc-field {
  margin-bottom: 15px;
}
.bc-field label {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: 0.9rem;
}
.bc-field input,
.bc-field textarea,
.bc-field select {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 1rem;
  box-sizing: border-box;
}
.bc-courier-info {
  background: #e8f5e9;
  padding: 12px;
  border-radius: 5px;
  margin: 15px 0;
  font-size: 0.95rem;
}
.bc-notice {
  background: #fff3cd;
  color: #856404;
  padding: 10px;
  border-radius: 5px;
  font-size: 0.85rem;
  margin-top: 10px;
}
.bc-submit {
  width: 100%;
  background: #2a9d8f;
  color: #fff;
  padding: 12px;
  font-size: 1.1rem;
}

#bc-share-links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
  margin-top: 20px;
}
.bc-share-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-decoration: none;
  color: #333;
  font-size: 0.8rem;
  padding: 8px;
  border-radius: 6px;
  transition: background 0.2s;
}
.bc-share-link:hover {
  background: #f0f0f0;
}
.bc-share-link svg {
  width: 32px;
  height: 32px;
  margin-bottom: 5px;
}

.bc-qr-content {
  max-width: 360px;
  text-align: center;
}
