/** Shopify CDN: Minification failed

Line 124:1 Expected "*/" to terminate multi-line comment

**/


/* CSS from section stylesheet tags */
.product-line-list {
  padding: 50px 0;
  text-align: center;
}

.product-line-heading {
  font-size: 28px;
  font-weight: 700;
  margin-bottom: 40px;
  color: #222;
}

.product-line-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}

.product-line-item {
  display: flex;
  flex-direction: column;
  justify-content: space-between; /* makes button align at bottom */
  background: #fff;
  border: 1px solid #eee;
  border-radius: 12px;
  padding: 20px;
  height: 100%; /* ensures equal height structure */
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.product-line-item:hover {
  box-shadow: 0 6px 16px rgba(0,0,0,0.1);
  transform: translateY(-4px);
}

.product-line-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.product-title {
  font-size: 16px;
  margin: 15px 0 20px 0;
  color: #333;
  min-height: 45px; /* keeps titles even height */
  text-align: center;
    padding: 10px;
}

.product-title a {
  text-decoration: none;
  color: inherit;
}

.product-form {
  margin-top: auto; /* pushes button to bottom */
}

.add-to-cart-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  background-color: #FF45B0;
  color: #fff;
  border: none;
  padding: 10px 18px;
  border-radius: 8px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  width: 100%;
}

.btn-price {
  opacity: 0.9;
  font-weight: 500;
}

@media (max-width: 992px) {
  .product-line-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-line-grid {
    grid-template-columns: 1fr 1fr;
            gap: 0px;
  }
  .add-to-cart-btn {
    display: block;
        padding: 7px 12px;
  }
}



/*
@media (max-width: 992px) {
  .product-line-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .product-line-grid {
    grid-template-columns: repeat(1, 1fr);
  }

  .add-to-cart-btn {
    font-size: 14px;
    padding: 9px 14px;
  }
}