.product-sec {
  padding: 40px 0 80px;
}

.product-block {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  align-items: flex-start;
  margin-bottom: 40px;
}

.product-left {
  flex: 1 1 45%;
  min-width: 300px;
}

.product-right {
  flex: 1 1 50%;
  min-width: 320px;
}

.product-meta p {
  margin-bottom: 6px;
  font-size: 15px;
}

.product-price h3 {
  color: #d82e2e;
  font-size: 28px;
  font-weight: 700;
  margin: 10px 0 15px;
}

.product-stock p {
  font-size: 15px;
  margin-bottom: 15px;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  margin-bottom: 20px;
  align-items: center;
}

.product-actions .button {
  background: #d82e2e;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 600;
  text-transform: uppercase;
  transition: 0.3s;
}

.product-actions .button:hover {
  background: #b91f1f;
}

.compare-btn,
.favorite-btn {
  font-size: 15px;
  text-decoration: none;
  color: #444;
  transition: 0.3s;
}

.compare-btn:hover,
.favorite-btn:hover {
  color: #d82e2e;
}

.product-shortdesc {
  font-size: 15px;
  line-height: 1.6;
  color: #333;
}

.tab-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  border-bottom: 2px solid #eee;
  margin-bottom: 25px;
}

.tab-nav li {
  padding: 10px 18px;
  background: #f8f8f8;
  border-radius: 8px 8px 0 0;
  cursor: pointer;
  font-weight: 600;
}

.tab-nav li.active {
  background: #fff;
  color: #d82e2e;
  border-bottom: 2px solid #d82e2e;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.attr-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}

.attr-table th,
.attr-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #eee;
}

.attr-table th {
  text-align: left;
  width: 30%;
  font-weight: 600;
}

@media (max-width: 767px) {
  .product-block {
    gap: 24px;
  }

  .product-left,
  .product-right {
    min-width: 0;
    flex: 1 1 100%;
  }
}
