.gp_wooproduct_container {
  display: flex;
  overflow-x: scroll;
  scroll-snap-type: x mandatory;
  gap: 16px;
  padding: 4px;

  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none; /* IE 10+ */
}

.wp-block-cw-blocks-plugin-gp-wooproducts {
  position: relative;
}

.gp_wooproduct_container::-webkit-scrollbar {
  display: none;
}

.gp_wooproduct_nav {
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  z-index: 20;
}

.gp_wooproduct_nav.left {
  left: 10px;
  background-image: url('https://globalprinted.com/wp-content/plugins/cw-blocks-plugin/assets/arrow-left.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.gp_wooproduct_nav.right {
  right: 10px;
  background-image: url('https://globalprinted.com/wp-content/plugins/cw-blocks-plugin/assets/arrow-right.png');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.gp_wooproduct_editor_loading {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
  min-height: 80px;
  width: 100%;
}

.gp_wooproduct_card {
  position: relative;
  flex: 0 0 auto;
  scroll-snap-align: start;

  width: 400px;
  overflow: hidden;
  border-radius: 24px;
  background: #ffffff;
  color: #111827;
}

.gp_wooproduct_card:focus {
  outline: none !important;
  box-shadow: 0 0 0 3px rgba(255, 48, 103, 0.35);
}

.gp_wooproduct_card__discount {
  position: absolute;
  z-index: 3;
  left: 16px;
  top: 16px;
  padding: 6px 10px;
  border-radius: 10px;
  background: #FF3067;
  color: white;
  font-family: Outfit, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2px;
}

.gp_wooproduct_card__figure {
  position: relative;
  margin: 0;
  padding: 0;
  background: #f2f2f2;
}

.gp_wooproduct_card__info {
  display: flex;
  width: 100%;
  box-sizing: border-box;
  padding: 8px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 4px;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.88);
  opacity: 1;
  transform: translateY(0);
  transition: opacity 220ms ease-in-out, transform 220ms ease-in-out;
  will-change: opacity, transform;
}

.gp_wooproduct_card__colors {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.gp_wooproduct_card__color {
  border-radius: 1.2rem;
  width: 1.2rem;
  height: 1.2rem;
  border: 1px solid #3b2a82;
  flex-shrink: 0;
}

.gp_wooproduct_card__color_label {
  color: #3b2a82;
  font-family: Outfit, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}

.gp_wooproduct_card__sizes {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.gp_wooproduct_card__size {
  color: #3b2a82;
  font-family: Outfit, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 1rem;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
}

.gp_wooproduct_card__size_label {
  color: #3b2a82;
  font-family: Outfit, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: normal;
}

.gp_wooproduct_card__more {
  color: #3b2a82;
  font-family: Outfit, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 12px;
  font-weight: 600;
}

@media (hover: hover) and (pointer: fine) {
  .gp_wooproduct_card__info {
    opacity: 0;
    transform: translateY(8px);
    pointer-events: none;
  }

  .gp_wooproduct_card:hover .gp_wooproduct_card__info {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }
}

.gp_wooproduct_card__image {
  display: block;
  width: 100%;
  object-fit: cover;
}

.gp_wooproduct_card__detail {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.gp_wooproduct_card__title {
  margin: 0;
  padding: 0;
  font-family: Outfit, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  color: #3B2A82;
}

.gp_wooproduct_card__prices {
  display: flex;
  flex-direction: column;
}

.gp_wooproduct_card__price-before {
  font-family: Outfit, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  color: #9CA3AF;
  text-decoration: line-through;
  text-decoration-thickness: 2px;
}

.gp_wooproduct_card__price-now {
  font-family: Outfit, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 15px;
  font-weight: 800;
  color: #ff3067;
}

.gp_wooproduct_card__price-tax {
  font-weight: 700;
  color: #6B7280;
}

.gp_wooproduct_card__actions {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 4px;
  width: 100%;
  align-self: stretch;
}

.gp_wooproduct_card__btn-details,
.gp_wooproduct_card__btn-customize {
  appearance: none;
  border-radius: 12px;
  padding: 12px 14px;
  font-family: Outfit, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  text-decoration: none;
  box-sizing: border-box;
  text-decoration: none !important;
  width: 100%;
  text-align: center;
  align-self: stretch;
}

.gp_wooproduct_card__btn-details {
  display: block;
  width: 100%;
  text-align: center;
  background: transparent;
  color: #7A719B;
  border: 1px solid rgba(122, 113, 155, 0.35);
}

.gp_wooproduct_card__btn-details:hover {
  border-color: rgba(122, 113, 155, 0.6);
}

.gp_wooproduct_card__btn-customize {
  display: block;
  width: 100%;
  text-align: center;
  background: #ff3067;
  color: #ffffff;
  border: 1px solid #ff3067;
}

.gp_wooproduct_card__btn-customize:hover {
  filter: brightness(1.05);
}

@media (max-width: 767px) {
  .gp_wooproduct_card {
    width: 340px;
  }
  .gp_wooproduct_nav.left {
    left: -6px;
  }
  .gp_wooproduct_nav.right {
    right: -6px;
  }
}



/*# sourceMappingURL=gp_wooproducts.min.css.map*/