.as-product-section {
  padding: 20px 0;
  background: var(--background-color);
}

.as-product-section.bg-light {
  background: #fdfdfd;
}

.as-section-title {
  font-size: clamp(24px, 4vw, 32px);
  font-weight: 800;
  line-height: 1.2;
  color: #000;
  margin: 0;
  letter-spacing: -0.01em;
}

.as-button {
  display: inline-block;
  padding: 12px 28px;
  background: #000;
  color: #fff !important;
  text-decoration: none;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  margin-top: 10px;
}

.as-button:hover {
  background: var(--secondary-color);
  transform: translateY(-2px);
}

@media (max-width: 992px) {
  .as-content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .as-content-image.order-first {
    order: -1;
  }
}

@media (max-width: 600px) {
  .as-product-section {
    padding: 60px 0;
  }
}