.product-slider-see-all {
  position: relative;
  width: 100%;
}
.product-slider-see-all__card {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.product-slider-see-all__link {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  width: 100%;
  flex: 1;
  background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
  border-radius: 0.5rem;
  overflow: hidden;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}
.product-slider-see-all__link:hover {
  border-color: var(--product-teaser-primary, var(--prim-color-brand-primary-600-default));
  background: linear-gradient(135deg, #e5e7eb 0%, #d1d5db 100%);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}
.product-slider-see-all__link:hover .product-slider-see-all__icon {
  transform: scale(1.1) rotate(90deg);
}
.product-slider-see-all__link:hover .product-slider-see-all__arrow {
  transform: translateX(10px);
}
.product-slider-see-all__link:focus {
  outline: 2px solid var(--product-teaser-primary, var(--prim-color-brand-primary-600-default));
  outline-offset: 2px;
}
.product-slider-see-all__content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 2rem;
  gap: 1rem;
}
.product-slider-see-all__icon {
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--product-teaser-primary, var(--prim-color-brand-primary-600-default));
  transition: all 0.3s ease;
}
.product-slider-see-all__icon svg {
  width: 100%;
  height: 100%;
}
.product-slider-see-all__subtitle {
  font-size: 0.875rem;
  font-weight: 600;
  color: #6b7280;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 0.5rem;
}
.product-slider-see-all__label {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2d3748;
  margin: 0;
}
.product-slider-see-all__arrow {
  font-size: 2rem;
  color: var(--product-teaser-primary, var(--prim-color-brand-primary-600-default));
  transition: transform 0.3s ease;
  margin-top: 0.5rem;
}
@media (max-width: 768px) {
  .product-slider-see-all__icon {
    width: 48px;
    height: 48px;
  }
  .product-slider-see-all__label {
    font-size: 1.25rem;
  }
  .product-slider-see-all__arrow {
    font-size: 1.5rem;
  }
}

.product-slider__slide .product-slider-see-all {
  height: 100%;
}

/*# sourceMappingURL=product-slider-see-all-card.css.map */
