/* ================= PRODUCT DETAIL PAGES ================= */
.product-detail-page {
  font-family: 'Poppins', sans-serif;
  background: #f8f9fa;
  padding-bottom: 60px;
}

/* Product Hero */
.product-hero {
  background: linear-gradient(135deg, #1da4c1, #147b96);
  color: white;
  padding: 80px 20px;
  text-align: center;
  margin-bottom: 40px;
}

.product-hero-content {
  max-width: 1200px;
  margin: 0 auto;
}

.product-hero h1 {
  font-size: 2.5rem;
  margin-bottom: 15px;
  font-weight: 700;
}

.product-subtitle {
  font-size: 1.1rem;
  opacity: 0.9;
  margin-bottom: 25px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}

.product-badges {
  display: flex;
  justify-content: center;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 25px;
}

.badge {
  background: rgba(255, 255, 255, 0.2);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.badge i {
  font-size: 1rem;
}

/* Product Container */
.product-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-bottom: 50px;
}

/* Info Box Structure */
.info-box {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  margin-bottom: 25px;
  overflow: hidden;
  border: 1px solid #e9ecef;
}

.info-box h2,
.info-box h3 {
  background: #f8f9fa;
  padding: 20px;
  margin: 0;
  border-bottom: 1px solid #e9ecef;
  color: #333;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.info-box h2 {
  font-size: 1.5rem;
  color: #1da4c1;
}

.box-content {
  padding: 25px;
}

/* Left Column */
.product-left {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.product-main-image {
  background: white;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
}

.product-main-image img {
  width: 100%;
  height: auto;
  display: block;
}

.key-features h3 {
  color: #333;
  margin-bottom: 20px;
  font-size: 1.3rem;
  display: flex;
  align-items: center;
  gap: 10px;
}

.key-features h3 i {
  color: #1da4c1;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.feature-item {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
  border: 1px solid #e9ecef;
}

.feature-item:hover {
  background: white;
  border-color: #1da4c1;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(29, 164, 193, 0.1);
}

.feature-item i {
  color: #1da4c1;
  font-size: 1.2rem;
  width: 24px;
  text-align: center;
}

.feature-item span {
  color: #555;
  font-size: 0.95rem;
  font-weight: 500;
}

/* Right Column */
.product-right {
  display: flex;
  flex-direction: column;
  gap: 25px;
}

/* Pricing Box */
.pricing .box-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-display {
  display: flex;
  align-items: baseline;
  gap: 15px;
  margin-bottom: 10px;
}

.price-label {
  color: #666;
  font-size: 1rem;
}

.price {
  color: #1da4c1;
  font-size: 2rem;
  font-weight: 700;
}

.price-variants {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  border-left: 4px solid #1da4c1;
}

.variant {
  padding: 8px 0;
  border-bottom: 1px dashed #dee2e6;
  color: #555;
}

.variant:last-child {
  border-bottom: none;
}

.inquiry-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: #1da4c1;
  color: white;
  padding: 14px 30px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition: all 0.3s;
  width: 100%;
  border: none;
  cursor: pointer;
  font-size: 1rem;
}

.inquiry-btn:hover {
  background: #147b96;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(29, 164, 193, 0.3);
}

/* Specifications */
.specs-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 15px;
}

.spec-item {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 15px;
  border: 1px solid #e9ecef;
}

.spec-label {
  display: block;
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 5px;
  font-weight: 500;
}

.spec-value {
  display: block;
  color: #333;
  font-size: 1rem;
  font-weight: 600;
}

/* Applications */
.app-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.app-card {
  background: #f8f9fa;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
  border: 1px solid #e9ecef;
}

.app-card:hover {
  background: white;
  border-color: #1da4c1;
  transform: translateY(-5px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.app-card i {
  font-size: 2.5rem;
  color: #1da4c1;
  margin-bottom: 15px;
  display: block;
}

.app-card h4 {
  color: #333;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.app-card p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* Feature Boxes */
.detailed-features {
  margin: 60px 0;
}

.detailed-features h2 {
  text-align: center;
  color: #333;
  margin-bottom: 40px;
  font-size: 1.8rem;
  position: relative;
}

.detailed-features h2::after {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background: #1da4c1;
}

.feature-box {
  background: white;
  border-radius: 10px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  padding: 30px;
  margin-bottom: 25px;
  display: flex;
  gap: 25px;
  align-items: flex-start;
  border: 1px solid #e9ecef;
}

.feature-icon {
  background: #1da4c1;
  color: white;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.8rem;
  flex-shrink: 0;
}

.feature-content {
  flex: 1;
}

.feature-content h3 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.3rem;
}

.feature-content .box-content {
  padding: 0;
}

.feature-content ul {
  list-style: none;
  padding-left: 0;
  margin-top: 15px;
}

.feature-content ul li {
  padding: 8px 0;
  padding-left: 25px;
  position: relative;
  color: #555;
  line-height: 1.6;
}

.feature-content ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #1da4c1;
  font-weight: bold;
}

.feature-content ul li strong {
  color: #333;
}

/* Benefits Section */
.benefits-section {
  margin: 60px 0;
}

.benefits-section h2 {
  text-align: center;
  color: #333;
  margin-bottom: 40px;
  font-size: 1.8rem;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.benefit-box {
  background: white;
  border-radius: 10px;
  padding: 25px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.08);
  border: 1px solid #e9ecef;
  transition: all 0.3s;
}

.benefit-box:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
  border-color: #1da4c1;
}

.benefit-icon {
  background: #1da4c1;
  color: white;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 20px;
}

.benefit-box h4 {
  color: #333;
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.benefit-box .box-content {
  padding: 0;
}

.benefit-box p {
  color: #666;
  line-height: 1.6;
  font-size: 0.95rem;
}

/* Installation Steps */
.installation-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.step-box {
  text-align: center;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 8px;
  border: 1px solid #e9ecef;
}

.step-number {
  background: #1da4c1;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  font-size: 1.2rem;
  margin: 0 auto 15px;
}

.step-box h4 {
  color: #333;
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.step-box p {
  color: #666;
  font-size: 0.9rem;
  line-height: 1.5;
}

/* CTA Section */
.cta-section {
  margin-top: 60px;
}

.cta-box {
  background: linear-gradient(135deg, #1da4c1, #147b96);
  border-radius: 15px;
  padding: 40px;
  text-align: center;
  color: white;
}

.cta-box h3 {
  color: white;
  margin-bottom: 15px;
  font-size: 1.8rem;
  border: none;
  background: none;
  padding: 0;
}

.cta-box .box-content {
  padding: 0;
}

.cta-box p {
  font-size: 1.1rem;
  margin-bottom: 30px;
  opacity: 0.9;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.btn-primary {
  background: white;
  color: #1da4c1;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.btn-primary:hover {
  background: #f8f9fa;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  padding: 15px 35px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
  background: rgba(255, 255, 255, 0.3);
  transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 992px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  
  .features-grid,
  .specs-grid,
  .app-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .installation-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .feature-box {
    flex-direction: column;
  }
  
  .feature-icon {
    margin: 0 auto 20px;
  }
}

@media (max-width: 768px) {
  .product-hero {
    padding: 60px 20px;
  }
  
  .product-hero h1 {
    font-size: 2rem;
  }
  
  .product-badges {
    flex-direction: column;
    align-items: center;
  }
  
  .installation-steps {
    grid-template-columns: 1fr;
  }
  
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  
  .btn-primary,
  .btn-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .product-hero h1 {
    font-size: 1.6rem;
  }
  
  .product-subtitle {
    font-size: 1rem;
  }
  
  .info-box h2,
  .info-box h3 {
    font-size: 1.2rem;
    padding: 15px;
  }
  
  .box-content {
    padding: 20px;
  }
  
  .price {
    font-size: 1.6rem;
  }
}