/* Hero Section */
.product-hero {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  padding: 150px 0 30px 0;
  margin-bottom: 3rem;
}

.page-title {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1f2937;
  margin-bottom: 1.5rem;
}

.page-subtitle {
  font-size: 1.1rem;
  color: #6b7280;
}

/* Product Card Styles */
.product-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
  margin-bottom: 2rem;
  transition: all 0.3s ease;
}

.product-card:hover {
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1);
  transform: translateY(-5px);
}

.product-badge {
  display: inline-block;
  background: linear-gradient(135deg, #065775, #0fa8e1);
  color: white;
  padding: 0.5rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.product-card h3 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.product-description {
  color: #6b7280;
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* Features List */
.features-list {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem 0;
}

.features-list li {
  padding: 0.75rem 0;
  color: #374151;
  font-size: 1.05rem;
  display: flex;
  align-items: center;
  gap: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.features-list li:last-child {
  border-bottom: none;
}

.features-list li i {
  color: #10b981;
  font-size: 1.2rem;
  min-width: 24px;
}

/* Price Box */
.price-box {
  background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
  border-radius: 15px;
  padding: 2rem;
  text-align: center;
  margin-bottom: 1.5rem;
}

.price-label {
  font-size: 1rem;
  color: #6b7280;
  margin-bottom: 0.5rem;
}

.price {
  font-size: 3rem;
  font-weight: 900;
  color: #6366f1;
  margin-bottom: 0.5rem;
}

.price-note {
  font-size: 0.9rem;
  color: #6b7280;
}

/* Warranty Badge */
.warranty-badge {
  background: #2d7793;
  color: white;
  padding: 1rem 1.5rem;
  border-radius: 10px;
  text-align: center;
  margin-bottom: 1.5rem;
}

.warranty-badge i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.warranty-badge h5 {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
}

.warranty-badge p {
  font-size: 0.9rem;
  margin: 0;
  opacity: 0.9;
}

/* Contact Box */
.contact-box {
  background: white;
  border: 2px solid #6366f1;
  border-radius: 15px;
  padding: 2rem;
  margin-bottom: 2rem;
}

.contact-box h4 {
  font-size: 1.3rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1.5rem;
  text-align: center;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: #f9fafb;
  border-radius: 10px;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
}

.contact-item:hover {
  background: #f0f9ff;
  transform: translateX(-5px);
}

.contact-item span {
  flex-shrink: 10;
}

.contact-item i {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, #065775, #0fa8e1);
  color: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.contact-item a {
  color: #1f2937;
  text-decoration: none;
  font-weight: 600;
  font-size: 1.1rem;
}

.contact-item a:hover {
  color: #6366f1;
}

/* Action Buttons */
.action-buttons {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.btn-action {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 1rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1.1rem;
  text-decoration: none;
  transition: all 0.3s ease;
  border: none;
}

.btn-primary-action {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: white;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.btn-primary-action:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.2);
  color: white;
}

.btn-whatsapp {
  background: #25d366;
  color: white;
}

.btn-whatsapp:hover {
  background: #20ba5a;
  transform: translateY(-3px);
  color: white;
}

/* Delivery Badge */
.delivery-badge {
  background: linear-gradient(135deg, #fbbf24, #f59e0b);
  color: white;
  padding: 1rem;
  border-radius: 10px;
  text-align: center;
  font-weight: 600;
  margin-bottom: 1.5rem;
}

.delivery-badge i {
  font-size: 1.5rem;
  margin-left: 0.5rem;
}

/* Product Image */
.product-image {
  border-radius: 15px;
  overflow: hidden;
  margin-bottom: 1.5rem;
  box-shadow: 0 10px 15px -3px rgb(0 0 0 / 0.1);
}

.product-image img {
  width: 100%;
  height: auto;
  transition: transform 0.3s ease;
}

.product-image:hover img {
  transform: scale(1.05);
}

/* Comparison Table */
.comparison-section {
  background: #f9fafb;
  padding: 3rem 0;
  margin-top: 3rem;
}

.comparison-table {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1);
}

.comparison-table th {
  background: linear-gradient(135deg, #6366f1, #4f46e5);
  color: white;
  font-weight: 600;
  padding: 1rem;
}

.comparison-table td {
  padding: 1rem;
  border-bottom: 1px solid #e5e7eb;
}

.comparison-table tr:last-child td {
  border-bottom: none;
}

/* Responsive */
@media (max-width: 768px) {
  .page-title {
    font-size: 2rem;
  }

  .price {
    font-size: 2.5rem;
  }
}
