/** Shopify CDN: Minification failed

Line 71:38 Unexpected "*"

**/
/* =========================================================
   DT — English Cares Collection Cards (Compact + Premium)
   Scope: collection page only
   ========================================================= */

body.template-collection ul.product-grid,
body.template-collection .product-grid {
  gap: 14px !important;
}

/* Card container: compact, premium radius */
body.template-collection product-card.product-card {
  height: 100%;
}

body.template-collection .product-grid__card.product-card__content,
body.template-collection .product-card__content.product-grid__card {
  border-radius: 18px !important;
  overflow: hidden;
  background: #fff;
  box-shadow: none;
  /* reduce internal whitespace */
  padding: 12px 12px 10px !important;
  gap: 8px !important;
}

/* -----------------------------------------
   FIX: Image area is too tall (your theme sets 50dvh/70dvh)
   Override those CSS variables (THIS is the main culprit)
------------------------------------------ */
body.template-collection .product-grid .product-media-container,
body.template-collection .product-grid .card-gallery .product-media-container {
  --grid-template-rows: 160px 1fr !important;          /* mobile */
  --grid-template-rows-desktop: 220px 1fr !important;  /* desktop */
}

@media (max-width: 749px) {
  body.template-collection .product-grid .product-media-container,
  body.template-collection .product-grid .card-gallery .product-media-container {
    --grid-template-rows: 135px 1fr !important;
  }
}

/* Keep image neatly contained */
body.template-collection .product-grid .product-media,
body.template-collection .product-grid .card-gallery .product-media {
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
}

body.template-collection .product-grid img.product-media__image {
  object-fit: contain !important;
}

/* -----------------------------------------
   Title + Price: compact + consistent height
------------------------------------------ */
body.template-collection .text-block--align-left,
body.template-collection .product-title,
body.template-collection [data-block-id*="product_title"] {
  margin: 0 !important;
}

body.template-collection [data-block-id*="product_title"] p,
body.template-collection .text-block--* p,
body.template-collection .product-grid .text-block p {
  margin: 0 !important;
}

body.template-collection [data-block-id*="product_title"] p {
  font-weight: 600;
  line-height: 1.25;
}

/* Clamp title lines so cards don’t become tall */
body.template-collection [data-block-id*="product_title"] p {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  -webkit-line-clamp: 2; /* desktop default */
}

@media (max-width: 749px) {
  body.template-collection [data-block-id*="product_title"] p {
    font-size: 12.5px !important;
    -webkit-line-clamp: 2;
  }
}

body.template-collection product-price .price {
  font-size: 13px !important;
  font-weight: 700 !important;
}

/* -----------------------------------------
   Buy area: centered, compact
------------------------------------------ */
body.template-collection .buy-buttons-block {
  width: 100%;
}

body.template-collection .product-form-buttons {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: 8px !important;
  margin: 0 !important;
  padding: 8px 0 0 !important;
}

/* -----------------------------------------
   Quantity selector: sleek (no childish circles)
------------------------------------------ */
body.template-collection .quantity-selector-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

body.template-collection quantity-selector-component.quantity-selector {
  display: inline-flex !important;
  align-items: center !important;
  gap: 6px !important;
  height: auto !important;
  padding: 6px 8px !important;
  border: 1px solid rgba(0,0,0,.12) !important;
  border-radius: 999px !important;
  background: #fff !important;
}

body.template-collection .quantity-selector .quantity-minus,
body.template-collection .quantity-selector .quantity-plus {
  width: 32px !important;
  height: 32px !important;
  border-radius: 10px !important; /* not circles */
  border: 1px solid rgba(0,0,0,.10) !important;
  background: transparent !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
}

body.template-collection .quantity-selector input[type="number"] {
  width: 34px !important;
  min-width: 34px !important;
  height: 32px !important;
  padding: 0 !important;
  text-align: center !important;
  border: none !important;
  background: transparent !important;
  font-weight: 600;
}

/* -----------------------------------------
   Add to cart button: pastel blue + compact + hover black
------------------------------------------ */
body.template-collection .add-to-cart-button,
body.template-collection .quick-add__button--add,
body.template-collection button.add-to-cart-button {
  width: 100% !important;
  max-width: 210px !important;
  height: 40px !important;          /* less tall */
  padding: 10px 14px !important;    /* less fat */
  border-radius: 14px !important;   /* less curve */
  background: #cfe6ff !important;   /* pastel blue */
  color: #111 !important;
  border: 1px solid rgba(0,0,0,.08) !important;
  box-shadow: none !important;
}

body.template-collection .add-to-cart-button:hover,
body.template-collection .quick-add__button--add:hover,
body.template-collection button.add-to-cart-button:hover {
  background: #111 !important;
  color: #fff !important;
}

/* Make icon inherit properly */
body.template-collection .add-to-cart-button .svg-wrapper,
body.template-collection .add-to-cart-button svg {
  color: inherit !important;
}

/* -----------------------------------------
   Mobile: make cards even tighter
------------------------------------------ */
@media (max-width: 749px) {
  body.template-collection .product-card__content.product-grid__card {
    padding: 10px 10px 8px !important;
    border-radius: 16px !important;
  }

  body.template-collection .product-form-buttons {
    gap: 7px !important;
    padding-top: 6px !important;
  }

  body.template-collection .add-to-cart-button,
  body.template-collection button.add-to-cart-button {
    height: 38px !important;
    border-radius: 13px !important;
    max-width: 190px !important;
  }
}
