/* [project]/src/components/ProductCard.module.css [app-client] (css) */
.ProductCard-module__t53O_a__card {
  background-color: #fff;
  border: 1px solid #0000;
  transition: transform .4s, box-shadow .4s;
  position: relative;
}

.ProductCard-module__t53O_a__card:hover {
  z-index: 2;
  border-color: #d4af3733;
  transform: translateY(-8px);
  box-shadow: 0 10px 30px #00000014;
}

.ProductCard-module__t53O_a__imageWrapper {
  aspect-ratio: 1;
  background-color: var(--c-accent);
  width: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}

.ProductCard-module__t53O_a__image {
  object-fit: contain;
  padding: 2rem;
  transition: transform .6s;
}

.ProductCard-module__t53O_a__card:hover .ProductCard-module__t53O_a__image {
  transform: scale(1.05);
}

.ProductCard-module__t53O_a__overlay {
  z-index: 1;
  background: #00000005;
  transition: background .3s;
  position: absolute;
  inset: 0;
}

.ProductCard-module__t53O_a__card:hover .ProductCard-module__t53O_a__overlay {
  background: none;
}

.ProductCard-module__t53O_a__quickView {
  width: 100%;
  color: var(--c-text);
  text-align: center;
  z-index: 2;
  -webkit-backdrop-filter: blur(4px);
  backdrop-filter: blur(4px);
  background: #ffffffe6;
  padding: 1rem;
  font-weight: 500;
  transition: transform .3s;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
}

.ProductCard-module__t53O_a__card:hover .ProductCard-module__t53O_a__quickView {
  transform: translateY(0);
}

.ProductCard-module__t53O_a__info {
  text-align: center;
  padding: 1.5rem;
}

.ProductCard-module__t53O_a__category {
  color: var(--c-text-light);
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: .5rem;
  font-size: .75rem;
}

.ProductCard-module__t53O_a__name {
  font-size: 1.1rem;
  font-family: var(--font-body);
  color: var(--c-text);
  margin-bottom: .5rem;
  font-weight: 500;
  transition: color .3s;
}

.ProductCard-module__t53O_a__name:hover {
  color: var(--c-primary);
}

.ProductCard-module__t53O_a__priceRow {
  justify-content: center;
  align-items: center;
  gap: .8rem;
  display: flex;
}

.ProductCard-module__t53O_a__price {
  color: var(--c-text);
  font-weight: 600;
}

.ProductCard-module__t53O_a__oldPrice {
  color: #999;
  font-size: .9rem;
  text-decoration: line-through;
}

/* [project]/src/components/Button.module.css [app-client] (css) */
.Button-module__iYV4-q__button {
  letter-spacing: .02em;
  border-radius: 4px;
  justify-content: center;
  align-items: center;
  gap: .5rem;
  font-weight: 500;
  transition: all .3s;
  display: inline-flex;
  position: relative;
  overflow: hidden;
}

.Button-module__iYV4-q__button:disabled {
  opacity: .6;
  cursor: not-allowed;
}

.Button-module__iYV4-q__primary {
  background-color: var(--c-primary);
  color: #fff;
  border: 1px solid var(--c-primary);
  box-shadow: 0 4px 6px #d4af3733;
}

.Button-module__iYV4-q__primary:hover:not(:disabled) {
  background-color: var(--c-primary-hover);
  transform: translateY(-1px);
  box-shadow: 0 6px 12px #d4af374d;
}

.Button-module__iYV4-q__secondary {
  background-color: var(--c-text);
  color: #fff;
  border: 1px solid var(--c-text);
}

.Button-module__iYV4-q__secondary:hover:not(:disabled) {
  background-color: #000;
  box-shadow: 0 4px 8px #0000001a;
}

.Button-module__iYV4-q__outline {
  color: var(--c-text);
  border: 1px solid var(--c-border);
  background-color: #0000;
}

.Button-module__iYV4-q__outline:hover:not(:disabled) {
  border-color: var(--c-primary);
  color: var(--c-primary);
}

.Button-module__iYV4-q__ghost {
  color: var(--c-text);
  background-color: #0000;
  border: 1px solid #0000;
}

.Button-module__iYV4-q__ghost:hover:not(:disabled) {
  color: var(--c-primary);
  background-color: #00000008;
}

.Button-module__iYV4-q__sm {
  padding: .4rem .8rem;
  font-size: .875rem;
}

.Button-module__iYV4-q__md {
  padding: .75rem 1.5rem;
  font-size: 1rem;
}

.Button-module__iYV4-q__lg {
  padding: 1rem 2rem;
  font-size: 1.125rem;
}

.Button-module__iYV4-q__spinner {
  animation: 1s linear infinite Button-module__iYV4-q__spin;
}

@keyframes Button-module__iYV4-q__spin {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

/* [project]/src/components/HeroSlider.module.css [app-client] (css) */
.HeroSlider-module__AAVTfG__sliderContainer {
  background-color: #000;
  width: 100%;
  height: 85vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}

.HeroSlider-module__AAVTfG__slide {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
}

.HeroSlider-module__AAVTfG__image {
  object-fit: cover;
  z-index: 1;
}

.HeroSlider-module__AAVTfG__overlay {
  z-index: 2;
  background: linear-gradient(#0003, #0009);
  position: absolute;
  inset: 0;
}

.HeroSlider-module__AAVTfG__content {
  z-index: 3;
  text-align: center;
  color: #fff;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 2rem;
  display: flex;
  position: absolute;
  inset: 0;
}

.HeroSlider-module__AAVTfG__title {
  font-family: var(--font-heading);
  text-shadow: 0 2px 10px #0000004d;
  margin-bottom: 1.5rem;
  font-size: 4rem;
}

.HeroSlider-module__AAVTfG__subtitle {
  text-shadow: 0 2px 5px #0000004d;
  max-width: 600px;
  margin-bottom: 3rem;
  font-size: 1.5rem;
  font-weight: 300;
}

.HeroSlider-module__AAVTfG__ctaButton {
  color: #000 !important;
  background-color: #fff !important;
  border: none !important;
  font-weight: 600 !important;
}

.HeroSlider-module__AAVTfG__ctaButton:hover {
  background-color: #f0f0f0 !important;
}

.HeroSlider-module__AAVTfG__dots {
  z-index: 4;
  gap: 1rem;
  display: flex;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}

.HeroSlider-module__AAVTfG__dot {
  cursor: pointer;
  background-color: #ffffff80;
  border: none;
  border-radius: 50%;
  width: 12px;
  height: 12px;
  transition: all .3s;
}

.HeroSlider-module__AAVTfG__activeDot {
  background-color: #fff;
  transform: scale(1.2);
}

@media (max-width: 768px) {
  .HeroSlider-module__AAVTfG__title {
    font-size: 2.5rem;
  }

  .HeroSlider-module__AAVTfG__subtitle {
    font-size: 1.2rem;
  }

  .HeroSlider-module__AAVTfG__sliderContainer {
    height: 70vh;
  }
}

/* [project]/src/app/home.module.css [app-client] (css) */
.home-module__Hx0lNG__hero {
  text-align: center;
  color: #fff;
  background: linear-gradient(#0000004d, #0000004d), #f0f0f0 url("/images/hero-bg.jpg") center / cover no-repeat;
  justify-content: center;
  align-items: center;
  height: 80vh;
  min-height: 600px;
  display: flex;
  position: relative;
}

.home-module__Hx0lNG__heroContent {
  opacity: 0;
  max-width: 800px;
  padding: 2rem;
  animation: 1.2s forwards home-module__Hx0lNG__fadeIn;
}

@keyframes home-module__Hx0lNG__fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.home-module__Hx0lNG__tagline {
  font-family: var(--font-heading);
  margin-bottom: 1.5rem;
  font-size: 3.5rem;
  line-height: 1.2;
}

.home-module__Hx0lNG__subtag {
  opacity: .9;
  margin-bottom: 2.5rem;
  font-size: 1.2rem;
  font-weight: 300;
}

.home-module__Hx0lNG__section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.home-module__Hx0lNG__sectionHeader {
  text-align: center;
  margin-bottom: 4rem;
}

.home-module__Hx0lNG__sectionTitle {
  margin-bottom: 1rem;
  font-size: 2.5rem;
}

.home-module__Hx0lNG__sectionSubtitle {
  color: var(--c-text-light);
  max-width: 600px;
  margin: 0 auto;
}

.home-module__Hx0lNG__categoryGrid {
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  display: grid;
}

.home-module__Hx0lNG__categoryCard {
  border: 1px solid var(--c-border);
  group: hover;
  align-items: flex-end;
  height: 400px;
  transition: border-color .3s;
  display: flex;
  position: relative;
  overflow: hidden;
}

.home-module__Hx0lNG__categoryCard:hover {
  border-color: var(--c-primary);
}

.home-module__Hx0lNG__catImg {
  object-fit: cover;
  z-index: 0;
  width: 100%;
  height: 100%;
  transition: transform .6s;
  position: absolute;
  inset: 0;
}

.home-module__Hx0lNG__categoryCard:hover .home-module__Hx0lNG__catImg {
  transform: scale(1.05);
}

.home-module__Hx0lNG__catOverlay {
  z-index: 1;
  background: linear-gradient(to top, #0009, #0000);
  position: absolute;
  inset: 0;
}

.home-module__Hx0lNG__catContent {
  z-index: 2;
  color: #fff;
  width: 100%;
  padding: 2rem;
  position: relative;
}

.home-module__Hx0lNG__catTitle {
  color: #fff;
  margin-bottom: .5rem;
  font-size: 1.5rem;
}

.home-module__Hx0lNG__productsGrid {
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 3rem;
  display: grid;
}

.home-module__Hx0lNG__aboutSection {
  background-color: var(--c-accent);
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  max-width: 100%;
  padding: 6rem 2rem;
  display: grid;
}

.home-module__Hx0lNG__aboutContent {
  padding: 2rem;
}

.home-module__Hx0lNG__aboutImage {
  object-fit: cover;
  border-radius: 4px;
  width: 100%;
  height: 500px;
}

@media (max-width: 768px) {
  .home-module__Hx0lNG__tagline {
    font-size: 2.5rem;
  }

  .home-module__Hx0lNG__aboutSection {
    grid-template-columns: 1fr;
  }
}

/*# sourceMappingURL=src_15c783a8._.css.map*/