.loop-bundle-product-card-title{
  font-family:"Saturday Morning Toast" !important;
}
.loop-container{
  display: flex;
    flex-direction: column-reverse;
}
.container, .loop-container{
  max-width: 100% !important;
}
h1, .loop-h2{
  font-weight: 900 !important;
}
.loop-container{
  margin: 0px;
}
.loop-bundle-products-wrapper{
  padding: 0px 50px;

}
.loop-form-input-small{
  margin-top: 0px;
  color: white !important;
}
.loop-bundle-widget-frequency-interval-button.selected {
    background-color: #003462;
}
/* 1) Make the whole header a 2-col grid */
.loop-bundle-header-wrapper-new .loop-bundle-image-container-wrapper{
  display: grid !important;
  grid-template-columns: 1fr 1fr;          /* left text / right image */
  grid-template-rows: auto auto 1fr;       /* title, copy, spacer */
  align-items: center;
  width: 100%;
  min-height: clamp(420px, 55vh, 700px);   /* give it hero height */
  
  /* left background only */
  background: linear-gradient(
    to right,
    #f6f2ea 0%,
    #f6f2ea 50%,
    transparent 50%,
    transparent 100%
  );
}

/* 2) Put the image in the right column, spanning full height */
.loop-bundle-header-wrapper-new .loop-bundle-image-container{
  grid-column: 2;
  grid-row: 1 / -1;        /* span all rows */
  width: 100%;
  height: 100%;
}

/* 3) Ensure the img fills/covers its column */
.loop-bundle-header-wrapper-new .loop-bundle-image-container img,
.loop-bundle-header-wrapper-new img.loop-img-fit{
  width: 100% !important;
  height: 100% !important;
  object-fit: cover;
  display: block;
}

/* 4) Place title + copy in the left column with padding */
.loop-bundle-header-wrapper-new .loop-bundle-title-wrapper-new{
  grid-column: 1;
  grid-row: 1;
  padding: clamp(30px, 5vw, 70px) clamp(24px, 4vw, 64px) 0;
}

.loop-bundle-header-wrapper-new .loop-bundle-new-description{
  grid-column: 1;
  grid-row: 2;
  padding: 16px clamp(24px, 4vw, 64px) clamp(30px, 5vw, 70px);
  max-width: 46ch;
}


.loop-bundle-header-wrapper-new .loop-bundle-title{
  margin: 0 0 12px 0 !important;
  font-size: clamp(32px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: 0.02em;
}

.loop-bundle-header-wrapper-new .loop-text-p1{
  font-size: clamp(15px, 1.6vw, 18px);
  line-height: 1.5;
}
.loop-h2{
  font-family: "Monument Grotesk" !important;
}
.loop-bundle-widget-selling-plan-text,.loop-bundle-widget-frequency-interval-button, .loop-selected-variant-title, .loop-bundle-widget-frequency-button-label-fixed, .loop-selected-bundle-info, .loop-selected-bundle-items-count, .loop-bundle-widget-selling-plan-actual-price{
  color: #003462;
}
.loop-bundle-saved-label, .loop-bundle-widget-frequency-interval-button.selected
{
  color: #ffffff !important;
}
/* 6) Mobile: stack image on top, text below */
@media (max-width: 768px){
  .loop-bundle-header-wrapper-new .loop-bundle-image-container-wrapper{
    grid-template-columns: 1fr;
    grid-template-rows: auto auto auto;
    min-height: 0;
    background: #E8E2D7; /* full background on mobile */
  }

  .loop-bundle-header-wrapper-new .loop-bundle-image-container{
    grid-column: 1;
    grid-row: 1;
    height: 240px; /* fixed hero image height on mobile */
  }

  .loop-bundle-header-wrapper-new .loop-bundle-title-wrapper-new{
    grid-row: 2;
    padding: 24px 20px 0;
  }

  .loop-bundle-header-wrapper-new .loop-bundle-new-description{
    grid-row: 3;
    padding: 12px 20px 28px;
    max-width: none;
  }
}/* --- FIX IMAGE FILLING / CROPPING --- */

/* ensure the grid wrapper is the height reference */
.loop-bundle-header-wrapper-new .loop-bundle-image-container-wrapper{
  min-height: clamp(420px, 55vh, 700px);
}

/* make the image area a real box */
.loop-bundle-header-wrapper-new .loop-bundle-image-container{
  grid-column: 2;
  grid-row: 1 / -1;
  position: relative;     /* key for absolute child */
  overflow: hidden;       /* crop cleanly */
  width: 100%;
  height: 100%;
  min-height: inherit;    /* inherits wrapper's min-height */
}

/* hard-stretch the image to cover */
.loop-bundle-header-wrapper-new .loop-bundle-image-container img,
.loop-bundle-header-wrapper-new img.loop-img-fit{
  position: absolute !important;
  inset: 0 !important;            /* top/right/bottom/left:0 */
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center !important;
  display: block;
}

/* remove any sneaky max-widths on the image wrapper */
.loop-bundle-header-wrapper-new .loop-bundle-image-container-wrapper > .loop-bundle-image-container{
  max-width: none !important;
}