#product-section {
  padding: 60px 0 30px 0;
}

#product-section p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #64666d;
  line-height: 1.5;
}

#product-section h3 {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  margin: 60px 0 20px 0;
  padding: 0;
  color: #0e1b4d;
}

#product-section .card {
  border: none;
  border-radius: 5px;
  transition: all  0.3s ease-in-out;
  box-shadow: 0 10px 25px 0 rgba(6, 12, 34, 0.1);
  height: 450px;
}

#product-section .card:hover {
  box-shadow: 0 10px 35px 0 rgba(6, 12, 34, 0.2);
}

#product-section .card hr {
  margin: 25px 0;
}

#product-section .card .card-title {
  margin: 30px 0;
  font-size: 18px;
  letter-spacing: 1px;
  font-weight: bold;
}

#product-section .text-box {
  margin-bottom: 50px;
}

#product-section .svg {
  width: 90px;
  height: 90px;
  margin-top: 20px;
}

#product-section .products {
  margin-top: 30px;
  margin-bottom: 30px;
  /* gap: 10px; */
}

#product-section .product {
  position: relative;
  overflow: hidden;
  /* margin-bottom: 10px; */
  background: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  height: 100%;
}

#product-section .product:hover {
  transform: translateY(-5px);
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.15);
}

#product-section .product-image {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin-bottom: 15px;
}

#product-section .product-image a {
  display: block;
  position: relative;
}

#product-section .product-image a::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.2);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

#product-section .product-image:hover a::after {
  opacity: 1;
}

#product-section .product-image img {
  position: relative;
  z-index: 0;
}

#product-section .product img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
  transition: transform 0.3s ease;
}

#product-section .product:hover img {
  transform: scale(1.05);
}

#product-section .product .details {
  padding: 20px;
  background: #fff;
  border-radius: 0 0 8px 8px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

#product-section .product .details h3 {
  margin: 0 0 10px 0;
  font-size: 18px;
  font-weight: 600;
  color: #333;
  text-align: center;
  width: 100%;
}

#product-section .product .details h3 a {
  color: #333;
  text-decoration: none;
  transition: color 0.3s ease;
}

#product-section .product .details h3 a:hover {
  color: #e84545;
}

#product-section .product .details p {
  color: #fff;
  font-size: 15px;
  margin-top: 0;
  font-weight: bold;
}

#product-section .product .details a {
  color: #fff;
}

#product-section .product .details a:hover {
  color: #4bb1ec;
}

#product-section .product-actions {
  margin-top: auto;
  padding-top: 15px;
  text-align: center;
  width: 100%;
}

#product-section .btn-buy {
  display: inline-block;
  padding: 8px 20px;
  background: #e84545;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
  font-weight: 500;
  transition: all 0.3s ease;
}

#product-section .btn-buy:hover {
  background: #d63c3c;
  color: #fff !important;
  transform: translateY(-2px);
}

#product-section .products .product img {
  height: 300px;
  width: 100%;
  object-fit: cover;
}

#product-section .image-detail img {
  width: 100%;
  height: auto;
  object-fit: cover;
  /* margin-bottom: 50px; */
}

#product-section .list-jobs a {
  font-size: 22px;
  color: #0e1b4d;
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  /* margin: 60px 0 20px 0; */
  text-decoration: underline;
  padding: 0;
}

#product-section .list-jobs a:hover {
  color: #4bb1ec;
}

#product-section .section-header {
  margin-top: 60px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 30px;
}

#product-section .section-header::before {
  content: '';
  position: absolute;
  display: block;
  width: 60px;
  height: 5px;
  background: #4bb1ec;
  bottom: 0;
  left: calc(50% - 25px);
}

#product-section .section-header h2 {
  font-size: 36px;
  text-transform: uppercase;
  text-align: center;
  font-weight: 700;
  margin-bottom: 10px;
}

#product-section .section-header p {
  text-align: center;
  padding: 0;
  margin: 0;
  font-size: 18px;
  font-weight: 500;
  color: #9195a2;
}

#product-section .slot-content {
  padding: 0 20px;
}

#product-section .details .product-note {
  min-height: 40px;
  margin-top: 10px;
  padding: 5px;
}

#product-section .details .product-note p {
  font-size: 0.8rem;
  color: #e84545;
  margin: 0;
  line-height: 1.4;
}

#product-section .details .product-note .empty-note {
  visibility: hidden;
}

/* Venobox modal styles */
.vbox-overlay {
  background: rgba(0, 0, 0, 0.9) !important;
  z-index: 9999 !important;
}

.vbox-container {
  /* max-width: 90% !important;
  max-height: 90vh !important; */
  z-index: 10000 !important;
}

.vbox-content {
  padding: 0 !important;
}

/* .vbox-content img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
} */