.product-page-section {
  padding: 60px 20px;
  background: #f8fafc;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.product-title {
  text-align: center;
  font-size: 2.5rem;
  color: #2d3748;
  margin-bottom: 40px;
}

.product-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

.product-image-column {
  position: relative;
}

.product-image-container {
  aspect-ratio: 1/1;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-logos {
  display: flex;
  gap: 20px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.brand-logos img {
  height: 40px;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.brand-logos img:hover {
  opacity: 1;
  transform: translateY(-3px);
}

.product-info-column {
  padding: 20px;
}

.product-description h2 {
  color: #1a202c;
  font-size: 1.8rem;
  margin-bottom: 20px;
}

.product-description p {
  color: #4a5568;
  line-height: 1.7;
  margin-bottom: 30px;
}

.product-specs {
  background: #fff;
  padding: 25px;
  border-radius: 10px;
  margin-bottom: 30px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.product-specs h3 {
  color: #c53030;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.product-specs ul {
  list-style: none;
  padding-left: 0;
}

.product-specs li {
  padding: 8px 0;
  border-bottom: 1px solid #e2e8f0;
  color: #4a5568;
}

.product-specs li:last-child {
  border-bottom: none;
}

.whatsapp-button {
  display: inline-flex;
  align-items: center;
  gap: 15px;
  padding: 16px 35px;
  background: #25D366;
  color: white;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s ease;
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.whatsapp-button:hover {
  background: #128C7E;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
}

.whatsapp-icon {
  width: 24px;
  height: 24px;
  fill: currentColor;
}

@media (max-width: 1024px) {
  .product-content {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .product-content {
    grid-template-columns: 1fr;
  }
  
  .product-title {
    font-size: 2rem;
  }
  
  .product-description h2 {
    font-size: 1.5rem;
  }
  
  .whatsapp-button {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .product-title {
    font-size: 1.8rem;
  }
  
  .product-specs {
    padding: 20px;
  }
  
  .brand-logos {
    justify-content: center;
  }
}