.product-spec-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
  font-size: 14px;
  color: #555;
  font-family: Poppins, sans-serif;
}

.product-spec-table th {
  text-align: left;
  background-color: #f7f7f7;
  padding: 10px;
  width: 30%;
  color: #333;
  font-weight: 600;
  border-bottom: 1px solid #ddd;
}

.product-spec-table td {
  padding: 10px;
  border-bottom: 1px solid #eee;
}

.product-spec-table tr:hover {
  background-color: #fdf2f5;
}

.product-spec-table .dot {
  margin-right: 8px;
  vertical-align: middle;
}
@media (max-width: 768px) {
  .product-page {
    flex-direction: column;
  }

  .main-image img,
  .product-image {
    width: 100%;
    height: auto;
  }

  .product-details {
    padding: 15px;
  }

  .quantity {
    flex-direction: column;
    align-items: stretch;
  }

  .button-container {
    flex-direction: column;
    gap: 15px;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-buttons button {
    width: 100%;
  }

  .wishlist-button {
    width: 100%;
    height: 45px;
  }

  .spec-grid {
    grid-template-columns: 1fr !important;
  }

  .product-spec-table th,
  .product-spec-table td {
    padding: 8px;
    font-size: 13px;
  }
}
.price-line {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.price-label {
  min-width: 180px;
  font-size: 15px;
  line-height: 28px;
}

.price-container {
  position: relative;
  padding-top: 18px;
}

.base-price-top {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 14px;
  color: #999;
  text-decoration: line-through;
}

.final-price-block {
  display: flex;
  align-items: center;
  gap: 6px;
}

.final-price {
  font-size: 20px;
  font-weight: bold;
  color: #000;
}

/* Tooltip */
.tooltip-wrapper {
  position: relative;
  display: inline-block;
}

.tooltip-icon {
  display: inline-block;
  width: 18px;
  height: 18px;
  line-height: 18px;
  text-align: center;
  font-size: 13px;
  border: 1px solid #ccc;
  border-radius: 50%;
  background-color: #fff;
  color: #333;
  cursor: help;
}

.tooltip-text {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  bottom: 125%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #fff;
  color: #000;
  border: 1px solid #ccc;
  border-radius: 4px;
  padding: 6px 10px;
  font-size: 13px;
  white-space: nowrap;
  z-index: 10;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: opacity 0.2s ease-in-out;
}

.tooltip-wrapper:hover .tooltip-text {
  visibility: visible;
  opacity: 1;
}

.tooltip-discount {
  color: #ed6b84 !important;
  font-weight: bold;
}
.related-products-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.related-products-grid .card {
  width: 200px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  border: none;
  border-radius: 8px;
  background-color: #fff;
}