/** Shopify CDN: Minification failed

Line 100:2 Unexpected "}"

**/
.special-product {
    display: flex;
    align-items: center;
    /* max-width: 1240px; */
    width: 100%;
    background-color: #fff;
    padding: 70px 50px;
    border-radius: 10px;
    margin: auto;
    gap: 120px;
}

.special-product-content {
    flex: 1;
    padding: 20px;
}

.special-product-image {
    flex: 1;
}

.special-product-image img {
    width: 100%;
    border-radius: 10px;
}
.special-product-content h2 {
    font-size: 3rem;
    margin-bottom: 3rem;
}

.special-product-content p {
    font-size: 1rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.special-product-content a {
    padding:16px 18px;
    background-color: #1f1f1f;
    border: none;
    border-radius: 35px;
    cursor: pointer;
    transition: background-color 0.3s;
    display: inline;
    color: #fff;
    margin: 0;
    font-size: 13px;
    text-transform: uppercase;
    font-family: 'fontmain';
    letter-spacing: 2px;
    line-height: 10px;
}

.special-product-content button:hover {
    background-color: #0056b3;
}

.splide__slide img {
    width: 100%;
    height: auto;
}

li.splide__slide {
    width: 100%;
}

/* Responsive Layout */
@media (max-width: 768px) {
    .special-product {
        flex-direction: column;
        text-align: center;
    }

    .special-product-image {
        margin-bottom: 20px;
    }

    .special-product-content h2 {
        font-size: 1.8rem;
    }
}
@media only screen and (max-width: 600px) {
    .special-product {
      display: flex;
      align-items: center;
      width: 100%;
      background-color: #fff;
      padding: 30px 10px;
      border-radius: 10px;
      margin: auto;
      gap: 50px;
    }

}
  }