/* Dumps product theme */
.header-product {
  background: linear-gradient(135deg, #ff5722 0%, #ff8a65 100%);
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px 40px;
  box-shadow: 0 4px 20px rgba(255, 87, 34, 0.3);
}

.header-product-left {
  display: flex;
  align-items: center;
  gap: 24px;
}

.header-product-left img {
  height: 100px;
}

.header-product-left h1 {
  margin: 0 0 8px 0;
  font-size: 2.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.header-product-left p {
  margin: 0;
  font-size: 1.1rem;
  opacity: 0.95;
  font-weight: 400;
}

.header-product-right button,
.header-product-right .btn {
  background: white;
  color: #ff5722;
}

.header-product-right button:hover,
.header-product-right .btn:hover {
  background: #f8f8f8;
}

.feature-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(135deg, #ff5722, #ff8a65);
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .header-product {
    padding: 24px 16px;
    flex-direction: column;
    text-align: center;
    gap: 20px;
  }

  .header-product-left {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .header-product-left img {
    height: 80px;
  }

  .header-product-left h1 {
    font-size: 2rem;
  }

  .header-product-left p {
    font-size: 1rem;
  }

  .header-product-right {
    display: flex;
    gap: 8px;
  }

  .header-product-right button,
  .header-product-right .btn {
    padding: 12px 20px;
    font-size: 14px;
    margin-left: 0;
  }
}

@media (max-width: 480px) {
  .header-product-left h1 {
    font-size: 1.6rem;
  }

  .header-product-left p {
    font-size: 0.9rem;
  }
}