/** Shopify CDN: Minification failed

Line 111:2 "hight" is not a known CSS property
Line 199:2 Unexpected "{"
Line 199:3 Expected identifier but found "%"

**/


/* CSS from section stylesheet tags */
.customer-review-slider {
    padding: 40px 20px;
    background-color: #fff;
    text-align: center;
    position: relative;
  }

  .review-logo img {
    max-width: 120px;
    margin: 0 auto 20px;
    display: block;
  }

  .customer-review-title {
    font-size: 28px;
    font-weight: bold;
    margin-bottom: 30px;
  }

  .review-slider-wrapper {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 10px;
  }

  .review-tile {
    min-width: 300px;
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    scroll-snap-align: start;
    flex-shrink: 0;
    text-align: left;
    display: flex;
    gap: 15px;
    align-items: flex-start;
  }

  .customer-image img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
  }

  .review-content {
    flex: 1;
  }

  .review-stars {
    color: #ffc107;
    font-size: 16px;
    margin-bottom: 5px;
  }

  .review-name {
    font-weight: bold;
    margin-bottom: 5px;
  }

  .review-text {
    font-size: 15px;
    line-height: 1.5;
  }

  /* Arrows */
  .arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
    cursor: pointer;
    z-index: 2;
    background: rgba(0,0,0,0.1);
    padding: 5px 10px;
    border-radius: 50%;
    user-select: none;
    display: none;
  }
  .arrow.left {
    left: 10px;
  }
  .arrow.right {
    right: 10px;
  }
  @media (min-width: 768px) {
    .arrow {
      display: block;
    }
  }
.two-product-wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 10px;
  margin-bottom: 10px;
  hight: 80px;
  width: 100%;
}

.featured-product {
  display: flex;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  flex: 1 1 calc(50% - 5px);
  padding: 20px;
  align-items: center;
}

.featured-product .image-wrap {
  flex: 0 0 40%;
  padding-right: 20px;
}

.featured-product .image-wrap img {
  width: 100%;
  border-radius: 9px;
  background: #fff;
}

.featured-product .content-wrap {
  flex: 1;
}

.featured-product h3 {
  font-size: 20px;
  margin: 0 0 10px;
}

.featured-product .price {
  font-size: 16px;
  color: #555;
  margin-bottom: 12px;
}

.featured-product .buttons {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.featured-product .buttons button,
.featured-product .buttons a {
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
}

.featured-product .buttons button {
  background: black;
  color: white;
  border: none;
  cursor: pointer;
}

.featured-product .buttons a {
  background: #f1f1f1;
  color: black;
}

@media screen and (max-width: 768px) {
  .two-product-wrapper {
    flex-direction: column;
  }

  .featured-product {
    flex-direction: column;
    text-align: center;
  }

  .featured-product .image-wrap {
    padding-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }

  .featured-product .content-wrap {
    width: 100%;
  }
}
  {% stylesheet %}
.two-product-wrapper {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.featured-product {
  display: flex;
  background: #f9f9f9;
  border-radius: 12px;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  flex: 1 1 calc(50% - 5px);
  padding: 20px;
  align-items: center;
  transition: all 0.3s ease;
}

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

.featured-product .image-wrap {
  flex: 0 0 40%;
  padding-right: 20px;
}

.featured-product .image-wrap img {
  width: 100%;
  border-radius: 8px;
  background: #fff;
  transition: transform 0.3s ease;
}

.featured-product:hover .image-wrap img {
  transform: scale(1.05);
}

.featured-product .content-wrap {
  flex: 1;
}

.featured-product h3 {
  font-size: 20px;
  margin: 0 0 10px;
}

.featured-product .price {
  font-size: 16px;
  color: #555;
  margin-bottom: 12px;
}

.featured-product .buttons {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.featured-product .buttons button,
.featured-product .buttons a {
  padding: 10px 16px;
  border-radius: 6px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  transition: background 0.3s ease;
}

.featured-product .buttons button {
  background: black;
  color: white;
  border: none;
  cursor: pointer;
}

.featured-product .buttons button:hover {
  background: #333;
}

.featured-product .buttons a {
  background: #f1f1f1;
  color: black;
}

.featured-product .buttons a:hover {
  background: #ddd;
}

@media screen and (max-width: 768px) {
  .two-product-wrapper {
    flex-direction: column;
  }

  .featured-product {
    flex-direction: column;
    text-align: center;
  }

  .featured-product .image-wrap {
    padding-right: 0;
    margin-bottom: 10px;
    width: 100%;
  }

  .featured-product .content-wrap {
    width: 100%;
  }
}