/* Products Section Styles */
.products-section {
  padding: 50px 0;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
}

.product-section-title {
  text-align: center;
  font-size: 2.5rem;
  color: #1a365d;
  margin-bottom: 50px;
  position: relative;
}

.product-section-title::after {
  content: '';
  display: block;
  width: 60px;
  height: 3px;
  background: #ec6708;
  margin: 15px auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  padding: 0 20px;
  max-width: 1600px;
  margin: 0 auto;
}

.product-card {
  background: white;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-image {
  height: 250px;
  overflow: hidden;
  position: relative;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-brand {
  position: absolute;
  top: 15px;
  left: 15px;
  background: linear-gradient(360deg,  #4360ed 0%,  #9fc8ff 100%);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 700;
  color: #ffffff;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  backdrop-filter: blur(2px);
}

.product-content {
  padding: 25px;
}

.product-category {
  display: block;
  font-size: 0.85rem;
  margin-bottom: 8px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-weight: 600;
  text-decoration: none;
  color: #666;
  transition: color 0.3s ease;
}

.product-category:hover {
  color: #1a365d;
}

.product-title {
  font-size: 1.25rem;
  color: #1a365d;
  margin-bottom: 12px;
  font-weight: 700;
  line-height: 1.3;
}

.product-title a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

.product-title a:hover {
  color: #ec6708;
}

.product-description {
  font-size: 0.95rem;
  color: #666;
  line-height: 1.6;
  margin-bottom: 20px;
  min-height: 60px;
}

.enquiry-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding: 12px 20px;
  background: linear-gradient(135deg, #4360ed 0%, #6B80F3 100%);
  color: white;
  border: none;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(67, 96, 237, 0.3);
  text-decoration: none;
}

.enquiry-btn:hover {
  background: linear-gradient(135deg, #2E4BDB 0%, #4360ed 100%);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(67, 96, 237, 0.4);
  animation: btn-shine 1.5s ease-out infinite;
  color: white;
  text-decoration: none;
}

@keyframes btn-shine {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

/* Responsive Design */
@media (max-width: 1440px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1200px;
  }
}

@media (max-width: 1200px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
  }
}

@media (max-width: 992px) {
  .products-section {
    padding: 60px 0;
  }
  
  .product-grid {
    padding: 0 15px;
  }
  
  .product-image {
    height: 220px;
  }
  
  .product-content {
    padding: 20px;
  }
}

@media (max-width: 768px) {
  .product-section-title {
    font-size: 2rem;
  }
  
  .product-grid {
    gap: 20px;
  }
  
  .product-brand {
    font-size: 0.8rem;
    padding: 4px 12px;
  }
  
  .product-title {
    font-size: 1.1rem;
  }
}

@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .product-section-title {
    font-size: 1.75rem;
  }
  
  .product-brand {
    top: 10px;
    left: 10px;
    font-size: 0.75rem;
  }
  
  .enquiry-btn {
    padding: 10px 15px;
    font-size: 0.9rem;
  }
}

@media (max-width: 400px) {
  .product-image {
    height: 200px;
  }
  
  .product-content {
    padding: 15px;
  }
}