/** Shopify CDN: Minification failed

Line 23:20 Expected ")" to end URL token

**/


/* CSS from section stylesheet tags */
.product-container {
    max-width: 1200px;
    margin: 150px auto 50px;
    padding: 40px;
    background-color: #d9d9d9;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    display: flex;
    gap: 40px;
  }

  .product-image img {
    /* request a 500×500px image @2x for retina */
    content: url({{ product.featured_image | image_url: width: 1000, height:1000, crop: 'center' }});
    max-width: 400px;
    max-height: 400px;
    width: 100%;
    height: auto;
    object-fit: contain;
    border-radius: 6px;
  }

  /* also cap any .product__media-wrapper or .product-card images */
  .product__media-wrapper img,
  .product-card img {
    max-width: 400px;
    max-height: 400px;
    width: 100%;
    height: auto;
    object-fit: contain;
  }

  .card-product__image img {
    max-width: 300px;
    max-height: 300px;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .product-details {
    flex: 1;
    display: flex;
    flex-direction: column;
  }

  .product-details h1 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    color: #212121;
  }

  .product-price {
    font-size: 2rem;
    font-weight: bold;
    color: #4272E8;
    margin-bottom: 20px;
  }

  .product-description {
    font-size: 1.1rem;
    margin-bottom: 30px;
    color: #555;
    line-height: 1.6;
  }

  .add-to-cart-button {
    background-color: #4272E8;
    color: #fff;
    padding: 12px 30px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1.2rem;
    font-weight: bold;
    transition: background-color 0.3s ease;
    text-align: center;
    text-decoration: none;
    width: fit-content;
  }

  .add-to-cart-button:hover {
    background-color: #2d5bbd;
  }

  @media (max-width: 768px) {
    .product-container {
      flex-direction: column;
      padding: 20px;
    }

    .product-details h1 {
      font-size: 1.8rem;
    }
  }