/* Product Card Styling */
.product-card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  margin-bottom: 40px;
  background-color: #fff;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.product-image-container {
  position: relative;
  overflow: hidden;
  height: 300px;
  background-color: #f9f9f9;
}

.product-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.product-card:hover .product-image {
  transform: scale(1.05);
}

.product-content {
  padding: 25px;
}

.product-title {
  color: #244c41;
  font-size: 1.5rem;
  margin-bottom: 10px;
  font-weight: 600;
  position: relative;
  padding-bottom: 10px;
}

.product-title:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 50px;
  height: 2px;
  background-color: #3b836e;
}

.product-description {
  color: #666;
  margin-bottom: 20px;
}

.product-features {
  margin: 20px 0;
  padding-left: 0;
}

.product-features li {
  list-style: none;
  padding-left: 25px;
  position: relative;
  margin-bottom: 10px;
  color: #555;
}

.product-features li:before {
  content: '✓';
  position: absolute;
  left: 0;
  color: #3b836e;
  font-weight: bold;
}

.product-btn {
  background-color: #244c41;
  color: white;
  border: none;
  padding: 10px 20px;
  border-radius: 30px;
  font-weight: 500;
  transition: all 0.3s ease;
  display: inline-block;
  text-decoration: none;
}

.product-btn:hover {
  background-color: #3b836e;
  transform: translateY(-2px);
  box-shadow: 0 5px 10px rgba(0,0,0,0.1);
  color: white;
  text-decoration: none;
}

/* Product section styling */
.product-section {
  padding: 80px 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 50px;
  position: relative;
  padding-bottom: 15px;
}

.section-heading:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80px;
  height: 3px;
  background-color: #244c41;
}

/* Product navigation */
.product-nav {
  background-color: #f5f5f5;
  padding: 15px 0;
  margin-bottom: 40px;
  border-radius: 5px;
}

.product-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0;
  margin: 0;
  list-style: none;
}

.product-nav li {
  margin: 5px 10px;
}

.product-nav a {
  display: inline-block;
  padding: 8px 15px;
  color: #333;
  text-decoration: none;
  border-radius: 20px;
  transition: all 0.3s ease;
  font-size: 0.9rem;
}

.product-nav a:hover, .product-nav a.active {
  background-color: #244c41;
  color: white;
}