/* product-1-refactor.css */

.zs-page-banner {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  text-align: center;
}

.zs-page-title {
  font-size: 39px;
  font-weight: 600;
  color: #fff; /* Assuming it's white based on typical banners, wait, original didn't specify color but usually banner text is white or dark. Let's make it #0c0d0e if no dark overlay, or maybe white. I'll use #fff and add text-shadow if needed. */
}

.zs-breadcrumb {
  padding: 15px 0;
  font-size: 14px;
  color: #666;
}

.zs-breadcrumb a {
  color: #4285f4;
  text-decoration: none;
}

.zs-breadcrumb a:hover {
  text-decoration: underline;
}

.zs-product-list-section {
  padding: 40px 0;
}

.zs-cat-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.zs-cat-title {
  font-size: 29px;
  font-weight: 600;
  color: #0c0d0e;
  margin: 0;
}

.zs-cat-divider {
  height: 1px;
  background-color: #0c0d0e;
  margin: 20px 0;
}

.zs-cat-desc {
  font-size: 15px;
  line-height: 1.6;
  color: #666;
  margin-bottom: 30px;
}

.zs-cat-desc p {
  margin-bottom: 10px;
}

.zs-cat-carousel {
  overflow: hidden;
  position: relative;
  padding-bottom: 40px; /* Space for pagination */
}

.zs-cat-carousel-track {
  display: flex;
  transition: transform 0.5s ease-in-out;
  gap: 10px;
}

.zs-cat-product {
  flex: 0 0 calc(25% - 7.5px);
  min-width: 0;
  text-align: center;
}

.zs-cat-product a {
  text-decoration: none;
  display: block;
}

.zs-cat-product-img img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  object-position: center;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
}

.zs-cat-product:hover .zs-cat-product-img img {
  transform: translateY(-5px);
}

.zs-cat-product-title {
  font-size: 15px;
  line-height: 1.5;
  margin-top: 15px;
  font-weight: 400;
  color: #333;
}

.zs-cat-carousel-pagination {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.zs-cat-carousel-bullet {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s;
  padding: 0;
  border: none;
}

.zs-cat-carousel-bullet.is-active {
  background-color: #4285f4;
}

@media (max-width: 1024px) {
  .zs-cat-product {
    flex: 0 0 calc(50% - 5px);
  }
}

@media (max-width: 767px) {
  .zs-cat-product {
    flex: 0 0 100%;
  }
  .zs-cat-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
  }
}

/* Bottom Banner */
.zs-bottom-banner {
  position: relative;
  background-color: #4285f4;
  padding: 80px 0;
  margin-top: 40px;
}

.zs-bottom-banner-shape {
  position: absolute;
  top: -1px;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.zs-bottom-banner-shape svg {
  display: block;
  width: calc(100% + 1.3px);
  height: 24px;
}

.zs-bottom-banner-shape .elementor-shape-fill {
  fill: #ffffff;
}

.zs-bottom-banner-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
}

.zs-bottom-banner-text h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 15px;
  color: #ffffff;
}

.zs-bottom-banner-text p {
  font-size: 16px;
  color: #ffffff;
  margin-bottom: 30px;
}

.zs-bottom-banner-action .zs-btn {
  background-color: #ffffff;
  color: #4285f4;
  font-weight: 600;
}

.zs-bottom-banner-action .zs-btn:hover {
  background-color: #f5f5f5;
  color: #3367d6;
}

@media (max-width: 767px) {
  .zs-bottom-banner-inner {
    gap: 0;
  }
}
