/** Shopify CDN: Minification failed

Line 327:0 Unexpected "}"

**/
/* ===============================
   BASE SECTION
================================ */

.cora-ingredients-section {
  position: relative;
  z-index: 1;
  overflow: hidden;
}

/* ===============================
   BACKGROUND PATTERN (LINES)
================================ */

.cora-ingredients-pattern {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: -1;
  pointer-events: none;
}

/* ===============================
   VECTOR BACKGROUND (FULL COVER)
================================ */

.cora-ingredients-vector-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: var(--vector-opacity, 0.5);
  overflow: hidden;
}

.cora-ingredients-vector-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

/* Keep content above backgrounds */
.cora-ingredients-section .cora-container {
  position: relative;
  z-index: 2;
}

/* ===============================
   HEADER
================================ */

.cora-ingredients-header {
  max-width: 600px;
  margin: 0 3rem 2rem;
  text-align: left;
}

.cora-ing-heading {
   font-family: 'Poppins', sans-serif;
  font-weight: 500;
  margin-top:0;  
  /* -webkit-text-stroke: 2px; */
  /* -webkit-font-smoothing: antialiased; */
  /* -moz-osx-font-smoothing: grayscale; */
  /* letter-spacing: -0.01em; */
  line-height:71px;
  margin-bottom: 1rem;
  font-size:54px;
}

.cora-ing-subtext {
     font-size: 2rem;
    opacity: .9;
    line-height: 30px;
}

/* ===============================
   GRID LAYOUT
================================ */

.cora-ingredients-grid {
  display: grid;
  /* margin-top:4rem; */
  margin-bottom:4rem;
  gap: 2rem;
  text-align: center;
  grid-template-columns: repeat(2, 1fr); /* Mobile default */
}

/* Desktop grid */
@media screen and (min-width: 990px) {
  .cora-ingredients-grid {
    grid-template-columns: repeat(6, 1fr);  
    gap: 1.5rem;
  }

.cora-ing-subtext {
     font-size: 2rem;
    opacity: .9;
    line-height: 30px;
}
}

/* ===============================
   INGREDIENT ITEM
================================ */

.cora-ing-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* ===============================
   BLOB IMAGE
================================ */

.cora-ing-blob-wrapper {
  width: 120px;
  height: 120px;
  margin-bottom: 1rem;
  position: relative;
}

.cora-ing-blob {
  width: 100%;
  height: 100%;
  /* border: 2px solid #fff; */
  overflow: hidden;
  /* border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; */
  transition: border-radius 0.3s ease;
}

.cora-ing-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Organic variation */
/* .cora-ing-item:nth-child(2n) .cora-ing-blob {
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
}
.cora-ing-item:nth-child(3n) .cora-ing-blob {
  border-radius: 50% 50% 20% 80% / 25% 80% 20% 75%;
} */

/* ===============================
   TEXT
================================ */

.cora-ing-title {
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  margin: 0  ;
}

.cora-ing-desc {
  font-size: 1.2rem;
  line-height: 1.4;
  margin: 0;
  opacity: 0.9;
}



/* ===============================
   DESKTOP INGREDIENT HOVER CARD (SINGLE DIV)
================================ */

@media screen and (min-width: 990px) {

  .cora-ing-item {
    position: relative;
  }

  /* Lift image slightly */
  .cora-ing-blob-wrapper {
    transform: translateY(20px);
    transition: transform 0.25s ease;
  }

  .cora-ing-item:hover .cora-ing-blob-wrapper {
    transform: translateY(-30px);
  }
 

  .cora-ing-info .cora-ing-title {
    color: #000 !important;
  }

  .cora-ing-info .cora-ing-desc {
    color: #847B74 !important;
  }
  /* Hover card */
    .cora-ing-info {
        position: absolute;
        top: calc(75%);
        left: 50%; 
            display: flex;
    flex-direction: column;
    gap: 6px;
        transform: translate(-50%, 10px);
        opacity: 0;
        pointer-events: none;
        background: #fff;
        color: #000;
        padding: 14px 18px;
        border-radius: 14px;
        box-shadow: 0 12px 30px #0000001f;
        min-width: 292px;
        text-align: center;
        transition: opacity .25s ease, transform .25s ease;
  }


  /* Text styles inside card */
  .cora-ing-info .cora-ing-title {
    margin: 0 0 4px;
    font-size: 2rem;
    font-weight: 500;
    color: #000;
  }

  .cora-ing-info .cora-ing-desc {
    margin: 0;
    font-size: 1.6rem;
    color: #847B74;
    line-height: 26px;
  }

  /* Reveal on hover */
  .cora-ing-item:hover .cora-ing-info {
    opacity: 1;
    transform: translate(-50%, 0);
    pointer-events: auto;
  }
}


/* ===============================
   MOBILE OVERRIDES (ALWAYS VISIBLE)
================================ */

@media screen and (max-width: 989px) {

  .cora-ing-blob-wrapper {
    width: 100px;
    height: 100px;
  }
  .cora-ingredients-header {
  max-width: 700px;
  margin: 0 3rem 2rem;
  text-align: center;
}
.cora-ing-subtext {
      font-size: 1.4rem;
    opacity: .9;
    line-height: 20px;
}
.cora-ing-heading {

  font-family: Poppins, sans-serif;
        font-weight: 600;
        margin-bottom: 1rem;
        font-size: 30px;
        line-height: 42px;
        letter-spacing: 0px;
        -webkit-text-stroke: 0px !important;
}
  .cora-ing-info {
    position: static;
    opacity: 1 !important;
    transform: none !important;
    pointer-events: auto;

    background: none;
    box-shadow: none;
    padding: 0;
    min-width: auto;
    text-align: center;
  }
.cora-ingredients-grid {
 margin:0;
  }
  .cora-ing-info .cora-ing-title,
  .cora-ing-info .cora-ing-desc {
    color: inherit;
  }
  .cora-ing-title {
    font-family: Poppins, sans-serif;
    font-weight: 600;
    font-size: 1.2rem;
    margin: 0;
}
  }

  .cora-ing-title h4{
    color:black;
    line-height:20px;

  }
  
 
  .cora-ing-title,
  .cora-ing-desc {
    font-size: 12px;
    line-height:14px;
       color:black;
    position: static;
    opacity: 1 !important;
    transform: none !important;
    background: none;
    box-shadow: none;
    padding: 0;
   }
}



/* Header Flexbox for Desktop */
.cora-ingredients-header-wrapper {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin-bottom: 4rem;
  position: relative;
  z-index: 3;
}

.cora-ingredients-header {
  text-align: left; /* Alignment from Figma */
}

/* Button Styling (White Background, Purple Text) */
.cora-ing-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #FFFFFF; letter-spacing: 1.12px;
  color: #5F44BA; /* Purple text from design */
  padding: 12px 28px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  line-height:27px;
  font-size: 1.6rem;
  text-transform: uppercase;
  transition: transform 0.2s ease;
}

 

@media screen and (min-width: 990px) {
  .cora-ingredients-header-wrapper {
    flex-direction: row;
    justify-content: space-between; display:flex;
    align-items: flex-start; /* Aligns button to bottom of text line */
  }
  
  .cora-ingredients-header {
    max-width: 60%;
  }
}

@media screen and (max-width: 989px) {
  .cora-ingredients-header-wrapper {
    text-align: center;
    align-items: center; margin-bottom: 1rem;
  }
  .cora-ingredients-header {
    text-align: center;
  }
  .cora-ing-btn{
display:none;

  }
}