/** Shopify CDN: Minification failed

Line 307:0 Expected "}" to go with "{"

**/
/* SONIQ Products Section */
.soniq-products {
  background: #1a1a1a;
  padding: 20px 0 90px;
}

.soniq-products__container {
  max-width: 1400px;
  margin: 0 auto;
}

.soniq-products__header {
  text-align: center;
  margin-bottom: 60px;
}

.soniq-products__title {
  font-size: 35px;
  font-weight: 400;
  margin-bottom:-18px !important;
  letter-spacing: 0.3px;
  color: #fff;
  font-family: TacticSans-Bold;
}

.soniq-products__subtitle {
  font-size: 20px;
  color: #fff;
  font-family:Urbanist;
  letter-spacing: 0.2px;
}

.soniq-products__carousel {
  position: relative;
  max-width: 1400px;
  margin: 0 auto;
}
/* .soniq-products__carousel:before {
    content: '';
    background: url(/cdn/shop/files/bg-pattern.png?v=1766151473);
    width: calc(100% + 60px);
    height: 100%;
    position: absolute;
    left: -60px;
    top: -52px;
} */

.soniq-products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.soniq-product-card {
  background: linear-gradient(
    180deg,
    #3a3a3a 0%,
    #2a2a2a 20%,
    #1a1a1a 50%,
    #0d0d0d 100%
  );
  border-radius: 5px;
  overflow: hidden;
  position: relative;
  transition: transform 0.3s;
  border: 1px solid #fff;
  width: 276px;
  height: 336px;
}

.soniq-product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 60%;
  background: radial-gradient(
    ellipse at top center,
    rgba(255, 255, 255, 0.2) 0%,
    rgba(255, 255, 255, 0.1) 30%,
    rgba(255, 255, 255, 0.05) 50%,
    transparent 70%
  );
  pointer-events: none;
  filter: blur(20px);
  z-index: 10;
}
.soniq-product-card:after {
    background-image: url(/cdn/shop/files/home-page-cards-overlay.png?v=1767000126);
    background-repeat: no-repeat;
    background-size: cover;
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    height: 100%;
    top: 0;
    opacity: 0.5;
    z-index: 0;
}

.soniq-product-card:hover {
  transform: translateY(-8px);
}

.soniq-product-card__label {
  position: absolute;
  top: 10px;
  left: 15px;
  color: #fff;
  /* padding-top: 0px; */
  /* border-radius: 5px; */
  font-size: 14px;
  font-weight: 400;
  text-transform: uppercase;
  font-family: TacticSans-Bold;
}

.soniq-product-card__cart {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #000;
  color: #fff;
  width: 35px;
  height: 35px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: background 0.3s;
  border: 2px solid #fff;
  background: #0000002b !important;
}
.soniq-product-card__cart:hover 
{
  transform: scale(1.04);
  transition: transform 1s;
}
.soniq-product-card__cart button {
  color: #fff;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background:transparent;
  border:none;
  cursor:pointer;
}
.soniq-product-card__cart img 
{
  width:20px;
}

.soniq-product-card__cart:hover {
  background: #d4ff00;
}

.soniq-product-card__cart:hover a {
  color: #000;
}

.soniq-product-card__image {
  width: 100%;
  height: 250px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  margin-top: 30px;
  margin-bottom: -10px;
  padding: 30px;
}

.soniq-product-card__image img {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
  z-index: 1;
}

.soniq-product-card__info {
  padding: 10px 10px 10px 20px;
  position: relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.soniq-product-card a
{
    z-index: 1;
    position: relative;
    text-decoration: none;
}

.soniq-product-card__name {
  font-size: 25px;
  font-weight: 400;
  text-transform: uppercase;
  color: #C0FF73;
  font-family: TacticSans-Bold;
}

.soniq-product-card__price {
  font-size: 18px;
  color: #fff;
  font-weight: 300;
  line-height: 7px;
  display: flex;
  justify-content: space-between;
  font-family: TacticSans-Bold;
}

.soniq-product-card__arrow {
  margin-right: 5px;
  font-size: 32px;
  color: #fff;
  width: 23px;
  height: 20px;
}
.soniq-product-card__arrow img 
{
  width:100%;
}
.soniq-product-card__arrow a 
{
    cursor: pointer;
    z-index: 1;
    position: relative;
}

/* Responsive */
@media screen and (max-width:1300px)
{
.soniq-products__carousel
{
  max-width:100%;
}
.soniq-products__grid {
  display: flex;
  justify-content: center;
}
.soniq-product-card {
    width: 23%;
}
}
@media (max-width: 1024px) {
  .soniq-products {
    padding: 60px 30px;
  }

  .soniq-products__grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .soniq-products__grid
{
  gap:15px;
}
  .soniq-product-card
{
  width:30%;
}
}


@media (max-width: 768px) {
  .soniq-products {
    padding: 50px 20px;
  }

  .soniq-products__title {
    font-size: 36px;
  }

  .soniq-products__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
   .soniq-products__grid {
        gap: 45px !important;
        flex-wrap: wrap;
        justify-content:center;
    }
     .soniq-product-card
{
  width:46%;
}
@media (max-width: 767px) {

.soniq-product-card
{
  width:100%;
}
}
