#first-product-cleaner {
  background: linear-gradient(135deg, #f8f9fa 0%, #e6f0ff 100%);
  color: #333;
  line-height: 1.6;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

/* Product Page Container */
#toilet-cleaner-product-page {
  max-width: 1400px;
  width: 100%;
  margin: 40px auto;
  padding: 30px;
  background: white;
  border-radius: 15px;
  position: relative;
  overflow: hidden;
}

#toilet-cleaner-product-page::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: linear-gradient(90deg, #0066cc, #00aaff, #0066cc);
}

/* Klinza Brand Header */
.klinza-brand {
  text-align: center;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e6f0ff;
}

.klinza-logo {
  font-size: 2.5rem;
  font-weight: 700;
  color: #0066cc;
  margin-bottom: 10px;
}

.klinza-tagline {
  font-size: 1.2rem;
  color: #6c757d;
  font-style: italic;
}

/* Variant Tabs */
.product-variants {
  text-align: center;
  margin-bottom: 30px;
}

.variant-tab {
  background: #f1f7ff;
  border: 1px solid #0066cc;
  color: #0066cc;
  padding: 12px 30px;
  margin: 0 10px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: 600;
  transition: all 0.3s ease;
  font-size: 1rem;
}

.variant-tab.active,
.variant-tab:hover {
  background: #0066cc;
  color: white;
}

/* Product Container */
.product-container {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

/* Product Image Section */
.product-image-section {
  flex: 1;
  min-width: 300px;
  text-align: center;
  padding: 25px;
  background: #f1f7ff;
  border-radius: 12px;
 
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.product-main-image {
  max-width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: contain;
  border-radius: 8px;
  transition: opacity 0.3s ease;
}

.product-image-caption {
  margin-top: 15px;
  font-style: italic;
  color: #6c757d;
  font-weight: 500;
}

/* Product Details Section */
.product-details-section {
  flex: 1;
  min-width: 300px;
}

.product-title {
  font-size: 2.4rem;
  color: #0066cc;
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 2px solid #e6f0ff;
  position: relative;
}

.product-title::after {
  content: "";
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 80px;
  height: 2px;
  background: #0066cc;
}

.product-rating {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}

.stars {
  color: #ffc107;
  font-size: 1.2rem;
}

.rating-count {
  color: #6c757d;
  font-weight: 500;
}

.product-description {
  margin-bottom: 25px;
  font-size: 1.1rem;
  color: #555;
  line-height: 1.8;
}

/* Hide non-active variants */
.variant-content {
  display: none;
  width: 100%;
}

.variant-content.active {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* Action Section */
.action-section {
  background: linear-gradient(135deg, #0066cc 0%, #00aaff 100%);
  padding: 30px;
  border-radius: 12px;
  text-align: center;
  margin-top: 30px;
  color: white;
  box-shadow: 0 5px 15px rgba(0, 102, 204, 0.3);
}

.action-title {
  font-size: 1.5rem;
  margin-bottom: 15px;
}

.action-text {
  margin-bottom: 20px;
  font-size: 1.1rem;
  opacity: 0.9;
}

.contact-btn {
  display: inline-block;
  background: white;
  color: #0066cc;
  padding: 16px 45px;
  font-size: 1.2rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 50px;
  transition: all 0.3s ease;
 
}

.contact-btn:hover {
  background: #f1f7ff;
  transform: translateY(-3px);

}

.contact-btn i {
  margin-right: 10px;
}

/* Klinza Guarantee */
.klinza-guarantee {
  display: flex;
  justify-content: space-around;
  margin-top: 40px;
  flex-wrap: wrap;
  gap: 20px;
}

.guarantee-item {
  text-align: center;
  flex: 1;
  min-width: 200px;
}

.guarantee-icon {
  font-size: 2.5rem;
  color: #0066cc;
  margin-bottom: 15px;
}

.guarantee-text {
  font-weight: 500;
}

/* Responsive Design */
@media (max-width: 992px) {
  .product-container {
    gap: 30px;
  }

  .variant-content.active {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .product-title {
    font-size: 2rem;
  }

  #toilet-cleaner-product-page {
    padding: 20px;
  }

  .variant-tab {
    padding: 10px 20px;
    margin: 5px;
    font-size: 0.9rem;
  }

  .product-image-section,
  .product-details-section {
    min-width: 100%;
  }
}

@media (max-width: 480px) {
  .product-title {
    font-size: 1.8rem;
  }

  .action-title {
    font-size: 1.3rem;
  }

  .contact-btn {
    padding: 14px 35px;
    font-size: 1.1rem;
  }

  .product-image-section {
    padding: 15px;
  }

  .klinza-logo {
    font-size: 2rem;
  }

  .klinza-guarantee {
    flex-direction: column;
    align-items: center;
  }

  .guarantee-item {
    width: 100%;
    margin-bottom: 20px;
  }
}
