/** Shopify CDN: Minification failed

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

**/
/* Mobile-only product title size + 2-line clamp for Dawn */
@media screen and (max-width: 749px) {
  /* Target the main H1 */
  .product__info-wrapper .product__title h1,
  /* Target the linked H2 with .h1 class */
  .product__info-wrapper .product__title h2.h1 {
    font-size: 25px !important;     /* adjust px value if needed */
    line-height: 1.2 !important;
    letter-spacing: 0 !important;
    margin-bottom: 0.5rem !important;

    /* Limit to 2 lines */
    display: -webkit-box !important;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal !important;
  }
}

@media screen and (max-width: 749px) {
  /* Reduce padding/margin in the title area */
  .product__info-wrapper .product__title {
    margin-bottom: 0.25rem !important;
  }

  /* Tighten promo badge spacing */
  .product__info-wrapper .custom-badge {
    margin-top: 0.25rem !important;
    margin-bottom: 0.5rem !important;
    padding: 1px 5px !important;
    font-size: 1.5rem !important;
  }

  /* Pull price up */
  #price-template--22700174868673__main {
    margin-top: 0.25rem !important;
    margin-bottom: 0.5rem !important;
  }

  /* Bring ATC button closer */
  form[action*="/cart/add"] {
    margin-top: 0.5rem !important;
  }

  /* Optional: Reduce global product info padding for mobile */
  .product__info-container {
    padding-top: 0.5rem !important;
    padding-bottom: 0.5rem !important;
  }
}
/* Cart drawer: keep checkout button normal height on desktop */
@media (min-width: 750px) {
  #CartDrawer .cart__ctas {
    /* one column in the drawer so nothing sits beside the button */
    grid-template-columns: 1fr !important;
    align-items: start;
    row-gap: 10px;
  }
  /* make sure badges always start a new row */
  #CartDrawer .cart__ctas .tat-trust {
    grid-column: 1 / -1;
    margin-top: 6px;
  }
  /* ensure the button doesn't stretch */
  #CartDrawer .cart__ctas .cart__checkout-button {
    height: auto;
    align-self: start;
  }
}

/* Cart drawer — put badges UNDER the Checkout button on desktop */
@media (min-width: 750px) {
  #CartDrawer .cart__ctas {
    display: grid;                 /* ensure grid is active */
    grid-template-columns: 1fr !important;  /* 1 column only */
    column-gap: 0 !important;
    row-gap: 12px;
    align-items: start;
  }
  #CartDrawer .cart__ctas .cart__checkout-button {
    width: 100%;
    height: auto;
    justify-self: stretch;         /* full width button */
    align-self: start;
  }
  #CartDrawer .cart__ctas .tat-trust {
    grid-column: 1 / -1;           /* force badges to new row */
    margin-top: 6px;
  }
}

/* Cart drawer trust text: remove bullets */
#CartDrawer .tat-trust-text {
  list-style: none;          /* no bullets */
  padding-left: 0;           /* remove left indent */
  margin-top: 8px;
}
#CartDrawer .tat-trust-text li {
  list-style: none;
  margin: 3px 0;
}
#CartDrawer .tat-trust-text li::marker { content: ''; }  /* extra safety */

/* Desktop: make Add to Cart span full width inside the product form */
@media (min-width: 1024px) {
  /* 1) Break the buttons container out of flex rows some themes use */
  .product-form__buttons,
  .product__info-container .product-form__buttons,
  .product__info-wrapper .product-form__buttons {
    display: block !important;
    width: 100% !important;
  }

  /* 2) Force the submit button to stretch */
  .product-form__buttons [type="submit"],
  .product-form [type="submit"],
  .product-form__cart-submit,
  .product__info-container button[name="add"],
  button[name="add"] {
    width: 100% !important;
    max-width: none !important;
    display: block !important;
    flex: 1 1 100% !important;   /* defeats flex-basis caps */
    align-self: stretch !important;
  }

  /* 3) Some themes put width limits on the *wrapper* around the button */
  .product-form__buttons > * {
    width: 100% !important;
    max-width: none !important;
    flex: 1 1 100% !important;
  }
}
@media (min-width: 1024px) {
  .product-form__buttons,
  .product-form__buttons > *,
  .product-form__buttons [type="submit"] {
    max-width: none !important;
  }

/* === RESET Announcement Bar Spacing === */
.announcement-bar {
  margin-bottom: 0 !important;
  padding-bottom: 0 !important;
}

/* === UNIVERSAL: Header Base === */
.header-wrapper,
.site-header,
header.header {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

/* === DESKTOP ONLY: Add spacing back === */
@media screen and (min-width: 750px) {
  .header-wrapper,
  .site-header,
  header.header {
    padding-top: 15px !important;
    padding-bottom: 3px !important;
    padding-left: 25px !important;
    padding-right: 15px !important;
  }

  .header__inline-menu,
  .header__heading,
  .header__heading-link,
  .header__heading-logo {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }
}

/* === MOBILE ONLY: Keep spacing tight === */
@media screen and (max-width: 749px) {
  .header-wrapper,
  .site-header,
  header.header {
    padding-top: 0px !important;
    padding-bottom: 0px !important;
  }

  .header__heading,
  .header__inline-menu,
  .header__heading-link,
  .header__heading-logo {
    padding: 0 !important;
    margin: 0 !important;
  }
}

/* === STICKY HEADER FIX === */
.shopify-section-header-sticky,
.shopify-section-header-sticky .site-header,
.shopify-section-header-sticky header.header {
  top: 0 !important;
  padding-top: 6px !important;
  padding-bottom: 6px !important;
  margin: 0 !important;
}
