/** Shopify CDN: Minification failed

Line 596:21 Expected identifier but found whitespace
Line 596:23 Unexpected "{"
Line 596:41 Expected ":"
Line 601:9 Expected identifier but found whitespace
Line 601:11 Unexpected "{"
Line 601:23 Expected ":"

**/
.shopify-section-header {
 z-index: 100;
}

/* BACKGROUND SVG DECORATION */                
.custom-header-svg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  overflow: hidden;
}

.header-svg {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.header-svg .decor-svg-left svg,
.header-svg .decor-svg-right svg {
  width: 12px;  /* smaller SVGs just for the header */
  height: auto;
  display: block;
}

/* Left SVG graphic on header */
.header-svg.left {
  position: absolute;
  top: 0;
  left: 0;
  width: 280px; 
  height: 100%;
  background-image: url('/cdn/shop/files/Left.svg?v=1750925142');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top left;
  z-index: -1;
  display: block;
  
}

/* Right SVG graphic on header */
.header-svg.right {
  position: absolute;
  top: 0;
  right: 0;
  width: 280px; 
  height: 100%;
  background-image: url('/cdn/shop/files/Right.svg?v=1750925142');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top right;
  z-index: -1;
  display: block;

}

/* Smaller versions of SVGs on mobile */
@media screen and (max-width: 768px) {
  .header-svg.left,
  .header-svg.right {
    width: 120px;           
    height: 180px;           
    background-size: contain;
    background-repeat: no-repeat;
    top: 0;
  }
}


/* QUICK ORDER (LEFT SIDE) */
.custom-quick-order {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  padding-left: 20px; 
}

.header__container {
  position: relative;
}

/* Quick Order link styling */
  .coffee-inner-menu a {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-decoration: none;
  color: #0e1317;

}

.quick-order-small {
  font-size: 16px;
  text-transform: uppercase;
  text-decoration: underline;
  margin-bottom: -4px;
}

.quick-order-big {
  font-size: 40px;
  line-height: 1;
  text-transform: uppercase;
}

/* Hide Quick Order on mobile */
@media screen and (max-width: 768px) {
  .custom-quick-order {
    display: none;
  }
}


/* LOGO AND HEADER STRUCTURE */

/* Centered logo inside nav bar */
.header__logo-in-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  flex-shrink: 0;
}

/* Hide logo in nav on all by default */
.hide-when-logo-in-menu {
  display: none !important;
}

/* Show logo on mobile (<= 767px) */
@media (max-width: 767px) {
  .hide-when-logo-in-menu {
    display: block !important;
  }
}


/* NAV ITEMS */
.header__nav .underline-text__label { 
  font-size: 19.5px;
  font-weight: 400;
}

.header__item--sign-in{
  font-size: 19.5px;
  font-weight: 400;
}

/* SEARCH ICON BUTTON */
.search-icon-button {
  border: 1px solid white;
  border-radius: 50%;
  padding: 8px;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
}

.search-icon-button svg path {
  stroke-width: 2.5;

}

/* Hide account icon in header */
header-component .header__icon--people {
  display: none !important;
}

/* CART (DESKTOP) */
@media (min-width: 768px) {
  .desktop-only {
    display: inline-block;
  }

  .cart-link-stacked {
    
    color: #fff;
    font-size: 32px;
    position: relative;
    text-align: left;
    line-height: 1;
  }

  .cart-labels {
    display: flex;
    flex-direction: column;
  }

  .cart-label--small {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.05em;
    text-decoration: underline;
    text-decoration-thickness: 2px;
  }

  .cart-label--large {
    font-size: 32px;
    line-height: 1;
  }

  .cart-counter {
    position: absolute;
    top: -5px;
    right: 14px;
    height: 28px;
    width: 28px;
    line-height: 28px;
    border-radius: 50%;
    font-size: 18px;
    background: #ff9c00;
    color: #0e1317;
    text-align: center;
  }

/* Hide the default cart icon */
  .header__cart-icon {
    display: none !important;
  }
}

/* Desktop & mobile toggling */
.desktop-only {
  display: block;
}

.mobile-only {
  display: none;
}

@media (max-width: 767px) {
  .desktop-only {
    display: none;
  }

  .mobile-only {
    display: block;
  }
}

/* Hide nav-logo when not in mobile */
@media (min-width: 768px) {
  .hide-when-logo-in-menu {
    display: none !important;
  }
}

/* IPAD/TABLET VIEW */
@media (min-width: 768px) and (max-width: 1024px) {
  .header__logo-in-nav {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
  }
}

/* General tablet/mobile view adjustments */
@media (max-width: 1024px) {
  .desktop-only {
    display: none !important;
  }

  .mobile-only {
    display: block !important;
  }

  .hide-when-logo-in-menu {
    display: block !important;
  }

  .custom-quick-order {
    display: none !important;
  }
}


/* Hide center nav logo again under 1024px */
@media (max-width: 1024px) {
  .header__logo-in-nav {
    display: none !important;
  }
}

/* Align nav content center under 1024px */
@media (max-width: 1024px) {
  .header__grid--1 {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .header__nav {
    padding-left: 0 !important;
    justify-content: center;
  }
}


 /* Specific fix for logo centering in tablets (768px–1024px) */          
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .custom-quick-order {
    display: none !important;
  }

  .header__logos.hide-when-logo-in-menu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: block !important;
    padding-left: 0 !important;
  }

  .header__logo-in-nav {
    display: none !important;
  }
}

/* Offset drawer menu (tablet) to appear below header */
@media screen and (min-width: 768px) and (max-width: 1024px) {

  #DrawerMenu {
    margin-top: 80px;
  }
}


/* Default: show both, then override per screen size */

/* Hide submenu on desktop */
@media (min-width: 1024px) {
  .mega-menu__columns {
    display: none !important;
  }
}

/* Hide desktop-only block on mobile/tablet */
@media (max-width: 1023px) {
  .mega-menu__block--only-desktop-visible {
    display: none !important;
  }
}

/* Carousel dots */
/* Hide the white inner circle */
.dots-carousel__slide.is-selected.is-primary .dots-carousel__loader-circle {
  display: none !important;
}

/* Hide the faded black background circle */
.dots-carousel__slide.is-selected.is-primary .dots-carousel__loader-background {
  fill: #ff9c00 !important;
  fill-opacity: 1 !important;
}

/*  hide the white border path entirely */
.dots-carousel__slide.is-selected.is-primary .dots-carousel__loader-border {
  display: none !important;
}

.dots-carousel__slide-inner-circle {
  width: 1.1rem;
  height: 1.1rem;
  background-color: black;
  border: none;
  border-radius: 50%;
  box-shadow: none;
  backdrop-filter: none;
  transition: background-color 0.3s ease;
}
.dots-carousel__slide.is-selected .dots-carousel__slide-inner-circle {
  background-color: black;
}

.solid-dots-carousel__solid-dot .solid-dots-carousel__solid-dot-circle {
  background-color: black;
  width: 1.1rem;
  height: 1.1rem;
  transition: all 0.3s ease;
}

.solid-dots-carousel__solid-dot.is-primary .solid-dots-carousel__solid-dot-circle {
  background-color: #ff9c00; 
   width: 1.5rem;
  height: 1.5rem;

}


/*  Newsletter */
.newsletter__content {
  position: relative;
  overflow: hidden; 
}

.news-corner-img .corner-img-a,
.news-corner-img .corner-img-b {
  position: absolute;
  z-index: 0;
}

.news-corner-img .corner-img-a {
 bottom: -43px;
  left: -20px;
}

.news-corner-img .corner-img-b {
  top: -47px;
  right: -98px;
}


.newsletter__heading,
.newsletter__form {
  position: relative;
  z-index: 1;
}


/*  Hover-image-products */


.product-card__inner:hover {
 background: #fff url(../assets/hover-bg.svg) 0 0 no-repeat !important;
  background-size: auto;
  background-size: 100% auto !important;
  -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
  -moz-box-shadow: 0 0 20px 0 rgba(0,0,0,.1);
  box-shadow: 0 0 20px #0000001a;
}

.collection-card__image {
  background: transparent;
}

.collection-card:hover {
  background: #fff url(../assets/hover-bg.svg) 0 0 no-repeat !important;
  background-size: 100% auto !important;
  -webkit-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 20px #0000001a;
}

/*  Collection-List-button */
.custom-shop-btn {
  background: none;
  border: none;
  font-family: 'CoffeeIsland-Regular' !important;
  font-weight: 400;
  font-size: 32px;
  display: block;
  text-transform: uppercase;
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
  padding-top:  15px;
}

.custom-shop-btn:hover {
  color: #ff9c00;
}

.banner-wave {
  position: absolute;
  bottom: -45%;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9;
  pointer-events: none;
}

.collection-list {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.svg-wave-top-layers {
  position: absolute;
  top: 0;
  width: 100%;
  height: auto;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.svg-top,
.svg-top2 {
  position: absolute;
  width: 100%;
  height: auto;
  display: block;
}

.svg-top {
  z-index: 1;
  top: 0;
}

.svg-top2 {
 
  top: 0;
}

.svg-top3 {
  position: absolute;
  width: 100%;
  height: auto;
  top: 0;
  z-index: 0;
  display: block;
}


.collection-list__container,
.slider-grid,
.slider_product_wraper {
  position: relative;

}

@media screen and (max-width: 768px) {
  .svg-wave-top-layers svg {
    width: 150%;
    left: -25%;
  }

  .svg-top {
    top: -20px;
  }

  .svg-top2 {
    top: 20px;
  }

   .svg-top3 {
    top: 40px;
    width: 160%;
    left: -30%;
  }
  

  .collection-list__container,
  .slider-grid,
  .slider_product_wraper {
   
    position: relative;
  }
}

.quick-view .product__info h3,
.product__info-wrapper .product__info h3 {
  font-size: unset !important;
  line-height: normal !important;
}


/*------ Custom Multiple collections section----- */

  .section-transition-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 400px;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
  }

  .background-fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 90%;
    width: 100%;
    background-color: {{ background_color }};
    z-index: 1;
  }

  .curve-svg path {
    fill: {{ wave_color }};
  }

  .curve-svg {
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: auto;
    z-index: 2;
  }

   
  @media screen and (max-width: 767px) {
    .section-transition-wrapper {
      height: 240px;
    }

    .background-fill {
      height: calc(100% - 80px); 
    }

    .curve-svg {
      height: 80px;
    }
  }

/* Style for the tab-component */
.custom-multi-collection .tab {
 
  max-width: 1140px;
  margin: 0 auto;
  width: 100%;
}

/* Responsive adjustment for smaller screens */
@media screen and (max-width: 768px) {
.custom-multi-collection .product-card {
  background-color: #F0F0F0;
  }

.custom-multi-collection .slider-grid.card-carousel--navigation-on-hover {
  background-color: transparent !important;
}
  
}

/* Style for the slider-grid */
.custom-multi-collection .slider-grid.card-carousel--navigation-on-hover {
  background-color: #f0f0f0 ;
  padding-bottom: 50px;
}

.custom-multi-collection .product-card__title {
  color: black;
}

.custom-multi-collection .product-card__vendor {
  color: #000 !important;
}

.custom-multi-collection .product-card__price-item {
  color: black;
}

.custom-multi-collection .collection__tab-name {
  font-family: "CoffeeIsland-Regular";
  font-size: 35px;
}

@media screen and (min-width: 768px) {
  .custom-multi-collection .product-card {
    border: 1px solid white;
  }

  .custom-multi-collection slider-grid.slider-grid:nth-child(1) > div:nth-child(1) > div:nth-child(3) {
    margin-left: -1px;
  }
}

.custom-multi-collection .product-card {
  position: relative;
}

/* Shared styles for both languages */
.custom-multi-collection .product-card::before,
.custom-multi-collection .product-card::after {
  position: absolute;
  left: 10px;
  color: black;
  font-family: "CoffeeIsland-Regular";
  z-index: 10;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}

.custom-multi-collection .product-card::before {
  top: 10px;
  font-size: 28px;
}

.custom-multi-collection .product-card::after {
  top: 40px;
  font-size: 20px;
  text-decoration: underline;
}

/* English (default) */
html[lang="en"] .custom-multi-collection .product-card::before {
  content: attr(data-before);
}
html[lang="en"] .custom-multi-collection .product-card::after {
  content: attr(data-after);
}

/* Spanish */
html[lang="es"] .custom-multi-collection .product-card::before {
  content: attr(data-before);
}
html[lang="es"] .custom-multi-collection .product-card::after {
  content: attr(data-after);
}


.custom-multi-collection .product-card:hover::before,
.custom-multi-collection .product-card:hover::after {
  opacity: 1;
}


/*------ Custom Collection list----- */


.collection-list__header {
  position: relative;
  z-index: 1;
}
.collection__header {
  position: relative;
  z-index: 1;
}

  .custom-collection-list .collection-card__title {
    font-size: 20px;
    font-weight: normal;
  }

/*------ Footer----- */
.footer__bottom-bar-item:not(:last-child)::after {
  content: "|";
  padding: 0 0.5rem;
  color: currentColor; 
}

.footer__card-grid{
  padding-bottom: 0px;
}
.footer__utils {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

.footer__settings {
  flex: 0 0 auto;
}

.footer__bottom-bar-group {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 2.5rem;
}

/* ====== History-Banner-section ====== */
/*  BASE STYLES  */
.history-banner {
  position: relative;
  background: none !important;
  padding: 0 !important;
  margin: 0 !important;
}



.history-banner .coffebgImg {
  position: relative;
  width: 100%;
  display: block;
}

.history-banner .coffebgImg img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* Optional overlay */
.history-banner .coffebgImg::after {
  content: '';
  position: absolute;
  top: 0; left: 0;
  right: 0; bottom: 0;
  background: #000;
  opacity: 0.3;
  z-index: 4;
}

/* HEADING  */
.history-banner .headingCenter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  z-index: 5;
  padding: 0 15px;
}

.history-banner .headingInner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: nowrap;
}

.history-banner .headingInner svg {
  height: 96px;
  flex-shrink: 0;
}

.history-banner .banner-heading {
  font-weight: 400 !important;
  text-transform: uppercase;
  font-size: 96px !important;
  color: #fff !important;
  font-family: 'CoffeeIsland-Regular', sans-serif !important;
}


/*  CURVE BELOW IMAGE  */
.history-banner .p_hero__curve--history {
  margin-top: -5px;
  line-height: 0;
  position: relative;
  z-index: 4;
}

.history-banner .rl2-pos {
  left: -10px;
  width: calc(100% + 20px);
}

/*  MOBILE STYLES */
@media screen and (max-width: 767px) {
  .history-banner .coffebgImg img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
  }

  .history-banner .headingCenter {
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    padding: 0 15px;
    z-index: 5;
  }

  .history-banner .headingInner {
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    flex-wrap: nowrap;
  }

  .history-banner .headingInner svg {
    height: 32px;
    width: auto;
    flex-shrink: 0;
  }

  .history-banner .banner-heading {
    font-size: 28px !important;
    line-height: 1.2 !important;
    font-weight: 400 !important;
    text-transform: uppercase !important;
    color: #fff !important;
  }

  .history-banner .p_hero__curve--history {
    margin-top: -15%;
    position: relative;
    z-index: 4;
  }

  .history-banner + * {
    margin-top: 0 !important;
  }
}

.p_hero__curve--history {
  margin-top: -15% !important;
  position: relative !important;
  z-index: 4 !important;
  margin-bottom: -150px;
}


/* iPad / Tablet */
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .p_hero__curve--history {
    margin-bottom: -70px;
  }
}

/* Mobile */
@media screen and (max-width: 767px) {
  .p_hero__curve--history {
    margin-bottom: -30px;
  }
}

/*========Collection-banner=========*/ 
.collectionBanner {
  position: relative;
  background: none;
  padding: 0;
  margin: 0;
}

/* Utility */
.collectionBanner .position-relative {
  position: relative !important;
}
.collectionBanner .position-absolute {
  position: absolute;
}
.collectionBanner .w-100 {
  width: 100% !important;
}
.collectionBanner .text-center {
  text-align: center;
}

/* Vertical center */
.collectionBanner .pos-vcenter {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.custom-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  bottom: 5px;
}


/* Heading styles */
.collectionBanner .headingCenter {
  z-index: 5;
}
.collectionBanner .headingCenter svg {
  height: 96px;
}

.collectionBanner .collection-heading  {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 96px;
  color: #fff;
  font-family: 'CoffeeIsland-Regular' !important;
}


/* SVG positioning */
.collectionBanner .d-block {
  display: block;
}
.collectionBanner .rl2-pos {
  left: -10px;
  width: calc(100% + 20px);
}
.collectionBanner .top-svg {
  top: -2px;
}
.collectionBanner .bottom-svg {
 bottom: 5px;
}


  /* Background image overlay */
  .collectionBanner .coffebgImg::after {
    display: none;
  }
.collectionBanner .coffebgImg::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: #000;
  opacity: 0.3;
  z-index: 4;
}

 /* Wave alignment tweak */
.collectionBanner .arrivalsectiondiv {
  margin-top: -1px;
}

  /* Responsive adjustments */
@media screen and (max-width: 991px) {
  .collectionBanner .headingCenter svg {
    height: 48px;
  }
}

@media screen and (max-width: 767px) {
 .collectionBanner .collection-heading {
    font-size: 40px !important;
  }


  .collectionBanner .coffebgImg img {
    height: 250px !important;
    object-fit: cover;
  }
}

/*========Coffee-island-banner=========*/
/* Utility positioning */
.coffeeIslandBanner .position-relative {
  position: relative !important;
}
.coffeeIslandBanner .position-absolute {
  position: absolute;
}
.coffeeIslandBanner .w-100 {
  width: 100% !important;
}
.coffeeIslandBanner .text-center {
  text-align: center;
}

/* Center the heading */
.coffeeIslandBanner .pos-vcenter {
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Heading styles */
.coffeeIslandBanner .headingCenter {
  z-index: 5;
}
.coffeeIslandBanner .headingCenter svg {
  height: 96px;
}

.coffee-banner-heading {
  font-weight: 400;
  text-transform: uppercase;
  font-size: 96px;
  font-family: 'CoffeeIsland-Regular' !important;
  color: #fff;
}


/* SVG appearance */
.coffeeIslandBanner .d-block {
  display: block;
}

/* Top and bottom wave SVGs */
.coffeeIslandBanner .rl2-pos {
  left: -10px;
  width: calc(100% + 20px);
}
.coffeeIslandBanner .top-svg {
  top: -2px;
}
.coffeeIslandBanner .bottom-svg {
  bottom: 0;
}

/* Background image overlay */
.coffeeIslandBanner .coffebgImg::after {
  display: none;
}
.coffeeIslandBanner .coffebgImg::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #000;
  opacity: 0.3;
  z-index: 4;
}

/* Margin tweak for wave alignment */
.coffeeIslandBanner .arrivalsectiondiv {
  margin-top: -1px;
}

/* Responsive adjustments */
@media screen and (max-width: 991px) {
  .coffeeIslandBanner .headingCenter svg {
    height: 48px;
  }
}

@media screen and (max-width: 767px) {
  .coffee-banner-heading {
    font-size: 40px;
  }
  .coffeeIslandBanner .coffebgImg img {
    height: 250px !important;
    object-fit: cover;
  }
}

/*========PAGE-BOTTOM-BANNER =======*/

 .page-bottom-banner-wrapper {
    height: 500px;
    background-attachment: fixed;
    background-size: cover;
    background-position: 50%;
    position: relative;
  }

  .page-bottom-banner-curve svg {
    width: 103%;
    height: initial;
  }

  .page-bottom-banner-curve {
    margin-bottom: -135px;
    z-index: 4;
    position: relative;
    margin-top: -15%;
  }

  .page-bottom-banner-bottom {
    position: absolute;
    bottom: 3px;
    left: 0px;
    right: 0px;
    z-index: 1;
  }

  .page-bottom-banner-section {
    position: relative;
    overflow: hidden;
  }

  .page-bottom-banner-wrapper .breadcrumb-v2__title {
    color: #fff;
  }

  .page-bottom-banner-wrapper:after {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background: #000;
    z-index: 1;
    opacity: 0.4;
  }

  .page-bottom-banner-curve path {
    fill: #fce7c9;
  }

  .page-bottom-banner-content {
    text-align: center;
    padding: 0px 15px;
    position: absolute;
    top: 40%;
    left: 0px;
    right: 0px;
    z-index: 2;
  }

  .page-bottom-banner-subtitle {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    
  }

 .page-bottom-banner-wrapper a{
   text-decoration: none;
 }

  @media only screen and (min-width: 1900px) {
    .page-bottom-banner-curve {
      margin-bottom: -8%;
    }
  }

  @media only screen and (max-width: 1159px) {
    .page-bottom-banner-wrapper {
      height: 800px;
    }
  }

  @media only screen and (max-width: 767px) {
    .page-bottom-banner-wrapper {
      height: 500px;
    }
    .page-bottom-banner-curve {
      margin-bottom: -70px;
    }
  }

  @media only screen and (max-width: 420px) {
    .page-bottom-banner-curve {
      margin-bottom: -40px;
    }
  }

/*========ABOUT US =======*/


    .images-with-text__content h2.h5 {
      display: inline-flex;
      align-items: center;
    }

    .images-with-text__content h2.h5::before {
      content: "";
      display: inline-block;
      width: 45px;
      height: 2px;
      background: black;
      margin-right: 18px;
      position: relative;
      top: -2px;
    }
  .images-with-text__content h2.h5 {
    display: inline-flex;
    align-items: center;
  }
.caption {
  font-size: 40px;
  font-weight: 500;
  color: black !important;
}
.h5 {
  font-size: calc(var(--font-body-scale) * 1.2rem);
  color: rgba(var(--color-foreground),.5);
  font-weight: 500;
  letter-spacing: calc(var(--font-body-scale) * .32rem);
}


.Custom-image-with-text .images-with-text__text p:last-of-type::after {
  content: "";
  display: block;
  width: 180px;
  height: 90px;
  background-image: url('/cdn/shop/files/COO.avif?v=1751894552');
  background-size: contain;
  background-repeat: no-repeat;
  margin-top: 20px;
}

.Custom-image-with-text .body4 {
  line-height: calc(1 + 0.6 / var(--font-body-scale));
  font-size: calc(var(--font-body-scale) * 1.6rem);
  color: black !important;
}

.Custom-image-with-text .container--with-aside-paddings .images-with-text__content {
  max-width: 100%;
}

/* Product-grade-circles */
  .taste-rings {
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
  }

  .taste-ring {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .taste-ring p {
    font-size: 0.9rem;
    margin: 0 0 0.25rem 0;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 1.1;
  }

  .taste-ring img {
    width: 70px;
    height: 70px;
    object-fit: contain;
    display: block;
  }

/* Custom product-video */
/* inside the product-video.liquid  */