.swiper {
  width: 100%;
  max-width: 1200px;
  max-height: 400px;
  overflow: hidden;
}

.slide-content {
  position: relative;
  width: 100%;
  height: 100%;
}

.slide-content img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.caption {
  position: absolute;
  top: 30%;
  left: 10%;
  color: white;
  background: rgba(0, 0, 0, 0.2);
  padding: 1rem 2rem;
  border-radius: 10px;
}

.caption h2 {
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.caption p {
  font-size: 1.2rem;
}

.caption .btn {
  display: inline-block;
  margin-top: 1rem;
  padding: 0.5rem 1rem;
  background-color: #ff6600;
  color: white;
  text-decoration: none;
  border-radius: 5px;
}

.product-section {
  padding: 3rem 1rem;
  background-color: #f7f7f7;
  text-align: center;
}

.product-section h2 {
  font-size: 2rem;
  margin-top: 4rem;
  margin-bottom: 2rem;
  color: #333;
}

.product-section .container {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.05);
  transition: transform 0.2s ease;
  position: relative;
}

.product-card:hover {
  transform: translateY(-5px);
}

.product-image {
  display: flex;
  justify-content: center;
  position: relative;
  align-items: center;
}

.product-image img {
  width: 70%;
  height: auto;
  display: block;
}

.product-hover {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  align-items: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}

.product-image:hover .product-hover {
  opacity: 1;
}

.add-to-cart-link,
.view-details-link {
  background-color: #007bff;
  color: white;
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-size: 0.9rem;
  text-decoration: none;
}

.add-to-cart-link:hover,
.view-details-link:hover {
  background-color: #0056b3;
}

.product-hover a {
  color: #fff;
  background: #0046be;
  padding: 0.5rem 1rem;
  margin: 0.25rem;
  border-radius: 6px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background 0.2s ease;
}

.product-hover a:hover {
  background: #003080;
}

.product-name {
  margin: 0.75rem 0 0.25rem;
  font-size: 1rem;
  color: #222;
}

.product-name a {
  color: #333;
  text-decoration: none;
}

.product-carousel-price {
  margin-bottom: 1rem;
  font-size: 1.1rem;
  font-weight: bold;
  color: #0046be;
}

.product-carousel-price ins {
  font-size: 1.1rem;
  font-weight: bold;
  color: #28a745;
}

.brand-list {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  width: 100%;
}

.brand-list img {
  width: 100%;
  max-width: 12rem;
  height: auto;
}