  /* Custom Dehumidifier Page Styling */

/* Main container enhancements */
.container.py-5 {
    max-width: 1200px;
    padding-bottom: 4rem !important;
  }
  
   
   
  
  .lead {
    color: #5a6a7e;
    font-size: 1.15rem;
    margin-bottom: 2rem;
  }
  
  /* Card styling */
  .card {
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    overflow: hidden;
    border-radius: 8px;
  }
  
  .card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  }
  
  .card-img-top {
    height: 220px;
    object-fit: contain;
    background-color: #f8f9fa;
    padding: 1.5rem !important;
  }
  
  .card-title {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1.25rem;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid #eaeaea;
  }
  
  /* Product specs styling */
  .list-unstyled {
    margin: 1rem 0;
  }
  
  .list-unstyled li {
    margin-bottom: 0.6rem;
    color: #5a6a7e;
    display: flex;
    align-items: baseline;
  }
  
  .list-unstyled li strong {
    color: #34495e;
    min-width: 80px;
    display: inline-block;
    position: relative;
    margin-right: 0.5rem;
  }
  
  .list-unstyled li strong:after { 
    position: absolute;
    right: 0;
  }
  
  /* Button styling */
  .card-footer {
    padding: 1rem 1.25rem 1.5rem;
  }
  
  .btn-primary {
    background-color: #3498db;
    border-color: #3498db;
    border-radius: 4px;
    padding: 0.5rem 1.5rem;
    font-weight: 500;
    transition: all 0.2s ease;
  }
  
  .btn-primary:hover {
    background-color: #2980b9;
    border-color: #2980b9;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(52, 152, 219, 0.3);
  }
  
  /* Responsive improvements */
  @media (max-width: 767.98px) {
    .card-img-top {
      height: 180px;
    }
    
    
    
    .lead {
      font-size: 1.05rem;
    }
  }
  
  /* Product not found message */
  .alert-info {
    background-color: #e8f4fd;
    border-color: #bde0fb;
    color: #2980b9;
    border-radius: 6px;
  }
  
  /* Error message */
  .alert-danger {
    background-color: #fde8e8;
    border-color: #f8bfbf;
    border-radius: 6px;
  }
  
  /* Product grid enhancements */
  .row.mt-4 {
    margin-top: 2rem !important;
  }
  
  /* Badge styles for additional product indicators */
  .product-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background-color: #2ecc71;
    color: white;
    padding: 0.35rem 0.65rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    z-index: 10;
  }
  
  .product-badge.bestseller {
    background-color: #e74c3c;
  }
  
  /* Special feature highlights */
  .feature-highlight {
    font-size: 0.85rem;
    color: #27ae60;
    margin-top: 0.5rem;
    display: flex;
    align-items: center;
  }
  
  .feature-highlight:before {
    content: '✓';
    margin-right: 0.35rem;
    font-weight: bold;
  }