/** Shopify CDN: Minification failed

Line 332:0 Unexpected "}"

**/
/* Product Showcase Section */
.product-showcase {
  overflow: hidden;
}

.product-showcase__header {
  margin-bottom: 4rem;
}

.product-showcase__heading {
  margin-bottom: 1rem;
  font-weight: 700;
}

.product-showcase__subheading {
  font-size: 1.125rem;
  opacity: 0.8;
  margin: 0;
}

/* Main Content Layout */
.product-showcase__content {
  display: grid;
  gap: 4rem;
  align-items: start;
}

@media screen and (min-width: 990px) {
  .product-showcase__content {
    padding: 7rem 0;
    grid-template-columns: 500px 1fr;
    gap: 6rem;
  }
}

/* Main Product Image */
.product-showcase__main-image {
  position: relative;
}

.main-image-container {
  position: relative;
  overflow: hidden;
  background: #f8fafc;
  transition: transform 0.3s ease;
  aspect-ratio: 1/1;
  border-radius: 12px;
  box-shadow: 10px 10px 0px 0px #215a96;
}

.main-image-container:hover {
  transform: scale(1.02);
}

.main-image {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.main-image-placeholder {
  width: 100%;
  height: auto;
  display: block;
}

.main-image-placeholder {
  min-height: 400px;
  background: #f3f4f6;
  border: 2px dashed #d1d5db;
  border-radius: 12px;
}

.main-image__overlay {
  position: absolute;
  top: 2rem;
  left: 2rem;
  z-index: 2;
}

.overlay-text {
  display: inline-block;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  font-weight: 700;
  color: white;
  text-align: center;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Product Grid Section */
.product-showcase__grid {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

/* Product Grid */
.product-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  padding: 2rem;
  background: #215a96;
  border-radius: 12px;
}

/* Navigation Buttons - positioned relative to product grid */
.product-grid .grid-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: none;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  z-index: 10;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.product-grid .grid-nav--prev {
  left: -24px;
}

.product-grid .grid-nav--next {
  right: -24px;
}

.product-grid .grid-nav:hover {
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

@media screen and (max-width: 989px) {
  .product-grid .grid-nav {
    display: none;
  }
}

@media screen and (max-width: 749px) {
  .product-grid {
    grid-template-columns: 1fr;
    padding: 0;
  }
}

.product-grid__item {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  background: #f8fafc;
  transition: transform 0.3s ease;
  box-shadow: 5px 5px 0px 0px rgba(225,225,225,1);
}

.product-grid__item:hover {
  transform: translateY(-4px);
}

.product-grid__item--empty {
  opacity: 0.5;
  border: 2px dashed #d1d5db;
  background: transparent;
}

.grid-item__image,
.grid-item__placeholder {
  width: 100%;
  height: 100%;
  position: relative;
}

.grid-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.grid-item__placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9fafb;
}

.grid-item__overlay {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1rem;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.product-grid__item:hover .grid-item__overlay {
  transform: translateY(0);
}

.grid-overlay-text {
  display: block;
  color: white;
  font-weight: 700;
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  padding: 0.5rem 1rem;
  border-radius: 6px;
  margin: 0 auto;
  width: fit-content;
}

/* CTA Button */
.product-showcase__cta {
  text-align: center;
  margin-top: 2rem;
}

.cta-button {
  display: inline-block;
  padding: 1.5rem 3rem;
  background: #215A96;
  color: white;
  text-decoration: none;
  border-radius: 16px;
  font-weight: 700;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  font-family: inherit;
  min-width: 200px;
  position: relative;
  box-shadow: 0 8px 0 #E0C9A6;
  transform: translateY(0);
}

.cta-button:hover {
  background: #2563EB;
  transform: translateY(-4px);
  box-shadow: 0 12px 0 #E0C9A6;
}

.cta-button:active {
  transform: translateY(0);
  box-shadow: 0 4px 0 #E0C9A6;
}

.cta-button__text {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: white;
}

/* Responsive Adjustments */
@media screen and (max-width: 989px) {
  .product-showcase__content {
    gap: 3rem;
  }
  
  .product-showcase__header {
    margin-bottom: 2rem;
  }
  
  .main-image__overlay {
    top: 1rem;
    left: 1rem;
  }
  
  .overlay-text {
    padding: 0.75rem 1.5rem;
    font-size: 1.25rem;
  }
}

@media screen and (max-width: 749px) {
  .product-showcase__content {
    gap: 2rem;
  }
  
  .product-showcase__heading {
    font-size: 2rem;
  }
  
  .overlay-text {
    padding: 0.5rem 1rem;
    font-size: 1rem;
  }
  
  .grid-overlay-text {
    font-size: 0.75rem;
    padding: 0.25rem 0.75rem;
  }
  
  .cta-button {
    padding: 1rem 2rem;
    font-size: 0.875rem;
    box-shadow: 0 6px 0 #E0C9A6;
  }
  
  .cta-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 0 #E0C9A6;
  }
  
  .cta-button:active {
    transform: translateY(0);
    box-shadow: 0 4px 0 #E0C9A6;
  }
}
}

/* Animation on scroll */
.product-showcase__content {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.8s ease forwards;
}

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

.product-grid__item {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.6s ease forwards;
}

.product-grid__item:nth-child(1) { animation-delay: 0.1s; }
.product-grid__item:nth-child(2) { animation-delay: 0.2s; }
.product-grid__item:nth-child(3) { animation-delay: 0.3s; }
.product-grid__item:nth-child(4) { animation-delay: 0.4s; }


.product-showcase.color-.gradient {
    padding: 5rem 0;
}