.reviews {
  max-height: 350px;
  overflow: scroll;
}
.root-reviews {
  min-width: 300px;
  border: solid 1px var(--bs-border-color);
  border-radius: 5px;
}

.root-reviews ul {
  background-color: var(--background-doby-shop);
  padding: 10px;
}
.root-reviews ul li {
  background-color: #fff;
  padding: 10px;
  border-radius: 5px;
  border: solid 1px var(--bs-border-color);
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
}
.root-reviews ul li p {
  word-wrap: break-word;
  word-break: break-all;
}
.root-reviews:has(.reviews:empty) {
  display: none;
}

.prev-add-to-cart {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 10px;
}

.preview-nav-product-detail {
  justify-content: center;
}

/* Estilos adicionais */
.shipping-card {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 12px;
  padding: 15px;
  margin: 15px 0;
}

.shipping-option {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid #dee2e6;
}

.shipping-option:last-child {
  border-bottom: none;
}

.shipping-icon {
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

.free-shipping-badge {
  background: #28a745;
  color: white;
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

.delivery-options {
  margin-top: 10px;
}

.delivery-option-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: white;
  border-radius: 8px;
  margin-bottom: 8px;
  border: 1px solid #e9ecef;
}
