.product-weight {
  margin: 10px 0;
  font-size: 15px;
  color: #666;
}

.weight-label {
  font-weight: normal;
}

.weight-value {
  font-weight: 500;
}

.gold-price-details-wrapper {
  margin: 15px 0;
}

.toggle-price-details {
  background: #f7f7f7;
  border: 1px solid #ddd;
  padding: 8px 15px;
  border-radius: 4px;
  cursor: pointer;
  width: 100%;
  text-align: right;
  position: relative;
  font-weight: 500;
  color: #333;
}

.toggle-price-details:hover {
  background: #f0f0f0;
}

.toggle-price-details:after {
  content: "▼";
  position: absolute;
  left: 15px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 12px;
  transition: transform 0.3s;
}

.toggle-price-details.active:after {
  transform: translateY(-50%) rotate(180deg);
}

.gold-price-details {
  margin-top: 10px;
  padding: 15px;
  background: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
}

.gold-details-grid {
  display: grid;
  gap: 10px;
}

.detail-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 5px 0;
  border-bottom: 1px solid #eee;
}

.detail-row:last-child {
  border-bottom: none;
}

.detail-label {
  color: #666;
}

.detail-value {
  font-weight: 500;
  color: #333;
}

@media screen and (max-width: 768px) {
  .dc-gold-price-details {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99999;
    background: #fff;
    left: 15px;
    right: 15px;
    bottom: 90px;
    border-radius: 14px;
    box-shadow: 5px 2px 31px rgba(0, 0, 0, 0.17) !important;
    -webkit-backdrop-filter: blur(1em);
    backdrop-filter: blur(1em);
    background-color: rgba(255, 255, 255, 0.5);
    padding: 0 10px !important;
  }
.product-type-variable .dc-gold-price-details {
    position: fixed;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 99999;
    background: #fff;
    left: 7px;
    right: 7px;
    bottom: 45px;
    border-radius: 14px;
    box-shadow: 5px 2px 31px rgba(0, 0, 0, 0.17) !important;
    -webkit-backdrop-filter: blur(1em);
    backdrop-filter: blur(1em);
    background-color: rgba(255, 255, 255, 1);
    padding: 0 10px !important;
}

  .dc-gold-price-details .gold-price-details-wrapper {
    flex: 1;
  }

  .dc-gold-price-details .product-weight {
    flex: 1;
  }

  .dc-gold-price-details .product-weight.active {
    display: none;
  }
}
