/** Shopify CDN: Minification failed

Line 31:19 Unexpected "{"
Line 31:28 Expected ":"
Line 31:35 Unexpected "{"

**/


/* CSS from section stylesheet tags */
.marquee-section {
  overflow: hidden;
  white-space: nowrap;
}

.marquee-wrapper {
  display: inline-flex;
  animation: marquee 35s linear infinite;
}

.marquee-text {
  display: inline-block;
  padding-right: 50px;
}

/* Continuous marquee animation */
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.product-showcase-{{ section.id }} {
  padding: 60px 0;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    padding: 60px 0px;
}

.product-card {
    text-align: center;
    display: grid;
}

.product-card img {
    width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
    object-fit: cover;
    max-width: 100%;
}

.product-title {
    font-size: 18px;
    font-weight: bold;
    text-align: left;
    margin: 20px 0px 10px;
        color: black;
}

.product-desc {
    font-size: 15px;
    color: #908c8c;
    margin: 0px 0px 15px;
    line-height: 22px;
    text-align: left;   
     color: black;

}

.product-btn {
    background: #4f84ad;
    color: #ffffff;
    padding: 10px 26px;
    font-size: 14px;
    display: inline-block;
    text-align: center;
    text-decoration: none;
    border-radius: 4px;
    font-weight: 600;
    width: 200px;
    max-width: 100%;
    border: 1px solid #4f84ad;
    margin: auto;
    transition: 0.5s;
}

a.product-btn:hover {
    background-color: #ffff;
    color: #4f84ad;
    border: 1px solid;
    transition: 0.5s;
}
.color-accent-1 {
    color: white !important;
 
}

@media(max-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media(max-width: 600px) {
  .product-grid {
    grid-template-columns: repeat(1, 1fr);
  }
}