html, body {
  height: 100%;
  margin: 0;
}

body {
  display: flex;
  flex-direction: column;
  min-height: 100vh; /* Ensures body takes at least viewport height */
}


.central-container-pc, .central-container-mb {
      display: none; 
     
    }


 /* @media (min-width: 768px) { */
 @media (min-width: 1400px) {
.central-container-pc {

display: flex;
flex: 1;

}

.central-container-mb {
  display: none;
}
 }   

 /* @media (max-width: 767px) { */
 @media (max-width: 1399px) {
.central-container-mb  { 
display: flex;
flex: 1;
margin-left: 5px;
margin-right: 5px;

}
.central-container {
  display: none;
}

}
   
   
   /* @media (min-width: 768px) { */
   @media (min-width: 1400px) {
   .title-page {
    font-family: Fahkwang;
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: -1px;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 35px;
    }
}


/* @media (max-width: 767px) { */
@media (max-width: 1399px) {
    .title-page-mb {
    font-family: Fahkwang;
    font-weight: 600;
    font-size: 32px;
    line-height: 100%;
    letter-spacing: -1px;
    text-align: center;
    padding-top: 30px;
    padding-bottom: 20px;
    }
}



      /* SEARCH popup */
      /* @media (min-width: 768px) { */
      @media (min-width: 1400px) {
        .popupSearch {
            display: none;
            position: fixed;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            /* max-height: 80vh; */
            height: 360px;
            overflow-y: auto; 
            background-color: white;
            border: none;
            box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            border-radius: 10px;
            width: 360px;
            flex-direction: column;
             align-items: center;
        }
      }

      /* @media (max-width: 767px) { */
          @media (max-width: 1399px) {
             .popupSearch {
             display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
           background-color: white;
            z-index: 1000; 
        }
      }
      /* @media (min-width: 768px) { */
      @media (min-width: 1400px) {
        .overlay-popupSearch {
            display: none;
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.5); 
            z-index: 999; 
        }
      }

        .overlay-activeSearch {
        overflow: hidden; /* Disable body scrolling */
        }

        .container-header-popup {
            display: flex;
            flex-direction: row;
            justify-content: space-between;
        
        }


        .title-popup {
            font-family: Fahkwang;
            font-weight: 600;
            font-size: 24px;
            line-height: 100%;
            letter-spacing: -1px;
            text-align: center;
            padding-top: 15px;
            padding-bottom: 15px;
            text-align: center;
            flex-grow: 1; 

        }

          .filter-close-button {
            background-color: transparent;
            border: none;
            cursor: pointer;
            width: 15px;
            height: 15px;
            padding: 15px;

        }


      


                /* Input field */
        #searchInput {
           font-size: 16px;
            width: 80%;
            padding: 15px;
            border: 1px solid rgba(179, 179, 179, 1);
            border-radius: 10px;
            justify-content: center;
            display: block; /* Ensure the input is a block-level element */
            margin: 0 auto; 
            
        }

        #searchInput:focus {
            border: 1px solid black;
            color: black;
            outline: 0;
        }
        

        /* Results list */
        #results {
            font-size: 16px;
            max-height: 200px;
            overflow-y: auto;
            list-style: none;
            padding: 0;
            padding-left: 15px;
            padding-right: 15px;
        }

        #results li {
            padding: 8px;
            border-bottom: 1px solid #eee;
            font-family: Inter;
            font-weight: 400;
            font-size: 13px;
            line-height: 100%;
            letter-spacing: 0px;


        }

              /* @media (max-width: 767px) { */
              @media (max-width: 1399px) {
                #results li {

                  padding-top: 20px;
                  padding-bottom: 20px;
                  

                }

              }

        #results li:hover {
            background: #f0f0f0;
            cursor: pointer;
        }



    .toggle-add-button {
       
        width: 100%;
        font-family: Inter;
        font-weight: 400;
        font-size: 13px;
        line-height: 100%;
        letter-spacing: 0px;
        text-align: center;
        color: rgba(2, 122, 255, 1);
        /* border: 1px solid white;
        background-color: white; */
        border: none;
        background-color: transparent;
        border-radius: 10px;
        cursor: pointer;
        padding: 10px;
       

        }

        /* Styles for selected state */
.toggle-add-button.is-selected {
   
    border-bottom-left-radius: 0px;
    border-bottom-right-radius: 0px;
     text-align: right;
}



.container-columns-pc {
    display: grid;
    grid-template-columns: repeat(5, minmax(255px, 1fr));  /* Five columns of equal width */
    grid-template-rows: auto auto; /* Two rows, height determined by content */
    gap: 15px;
    padding-left: 30px;
    padding-right: 30px;
}

 /* @media (min-width: 768px) { */
 @media (min-width: 1400px) {
.column-pc {
    background-color: white;
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    /* justify-content: flex-start; */
    justify-content: center;
    align-items: center;
    /* padding: 10px; */
    /* padding-left: 15px; */
    /* padding-right: 15px; */
    box-sizing: border-box;
  
}

 }


 /* @media (min-width: 768px) { */
 @media (min-width: 1400px) {
#column1 {
  display: flex;
    flex-direction: column;
    /* width: 100%; */
     align-items: flex-end; /* Aligns items to the left (optional, for horizontal alignment) */
    justify-content: flex-end;

}
 }
 /* @media (min-width: 768px) { */
 @media (min-width: 1400px) {
#column2, #column3, #column4, #column5 {
    
   display: flex;
    flex-direction: column; /* Ensures vertical stacking */
    align-items: flex-start; /* Aligns items to the left (optional, for horizontal alignment) */
    justify-content: flex-start;

}
 }
.cell {
    width: 100%;
    text-align: center;
    padding: 10px 0;
    margin: 0;
    border-top: 2px solid rgba(247, 247, 247, 1);
    box-sizing: border-box;
    word-wrap: break-word; /* Ensure long text wraps */
}

.cell:last-child {
    border-bottom: none;
}


.features-text {
/* width: 100%; */
font-family: Inter;
font-weight: 400;
font-size: 15px;
line-height: 100%;
height: 18px;
letter-spacing: 0px;
text-align: center;
border-top: 2px solid rgba(247, 247, 247, 1);
word-wrap: break-word;
padding-top: 10px;
padding-bottom: 10px;
padding-left: 15px;
padding-right: 15px;
}

.featuresName-text {
    width: 100%;
    font-family: Inter;
    font-weight: 400;
    font-size: 13px;
    line-height: 16px;
    height: 18px;
    letter-spacing: 0px;
    text-align: right;
    justify-content: end;
    border-top: 2px solid rgba(247, 247, 247, 1);
    word-wrap: break-word;
    padding-top: 10px;
    padding-bottom: 10px;
    padding-left: 15px;
    padding-right: 15px;

}




/* .container-header-product, .container-header-product-mb {
      display: none; 
     
    } */

/* @media (min-width: 768px) { */
@media (min-width: 1400px) {
.container-header-product {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 180px;
}
}

/* @media (max-width: 767px) {  */
@media (max-width: 1399px) {
.container-header-product {
    display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; /* Center content vertically */
  height: 180px;
  width: 100%; /* Ensure it takes full column width */

}


}


.image-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 55%; 
  padding: 0px;

}


/* @media (min-width: 768px) { */
@media (min-width: 1400px) {
.product-image {

  transform: scale(0.087); 
  transform-origin: center;
  width: auto;
  height: auto;
  display: block;
  filter: contrast(0.9) brightness(1.1); /* Adjusts image to reduce white prominence */
  mix-blend-mode: multiply; /* Blends white areas with the background */
  background: transparent;
}
}
/* @media (max-width: 767px) {  */
@media (max-width: 1399px) {
.product-image {

  transform: scale(0.06); 
  transform-origin: center;
  width: auto;
  height: auto;
  display: block;
  filter: contrast(0.9) brightness(1.1); /* Adjusts image to reduce white prominence */
  mix-blend-mode: multiply; /* Blends white areas with the background */
  background: transparent;

}
}


.fallback-image {

    display: block;
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    transform: scale(0.5);
}

.product-title {
  font-family: Fahkwang, Arial;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0px;
  text-align: center;
  width: 100%;
  height: 60px;
  color: rgba(0, 0, 0, 1);
  flex-shrink: 0; /* Prevents text from shrinking */
  margin-top: 0px;
  box-sizing: border-box; 
  padding-left: 5px;
  padding-right: 5px;
    
}

.product-subtitle {
    font-family: Inter;
    font-weight: 400;
    font-size: 12px;
    line-height: 100%;
    letter-spacing: 0px;
    text-align: center;
    color: rgba(129, 129, 129, 1);
    padding-bottom: 10px;
    padding-top: 3px;
}


.featuresName-title {
width: 100%;
font-family: Fahkwang;
font-weight: 600;
font-size: 15px;
line-height: 100%;
letter-spacing: 0px;
text-align: right;
justify-content: end;
padding-bottom: 10px;
padding-right: 10px;

}

.features-spacer {
    height: 80px;

}


/* @media (min-width: 768px) { */
@media (min-width: 1400px) {
.button-capsule {

    display: flex;
    background-color: white;
    border-radius: 20px;
    height: 25px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    cursor: pointer;
  border: none;
    width: fit-content; 
    margin-bottom: 30px;
    margin-left: 30px;

}
}

/* @media (max-width: 767px) { */
@media (max-width: 1399px) {
.button-capsule-mb {

    display: flex;
    background-color: white;
    border-radius: 20px;
    height: 25px;
    padding-top: 5px;
    padding-bottom: 5px;
    padding-left: 10px;
    padding-right: 10px;
    flex-direction: row;
    align-items: center;
    gap: 5px;
    cursor: pointer;
  border: none;
    width: fit-content; 
    margin-bottom: 30px;
    margin-left: 5px;
   

  }
}

.text-capsule {

  font-family: Inter;
  font-weight: 400;
  font-size: 15px;
  line-height: 16px;
  letter-spacing: 0px;
  color: black;

}

.container-buttons-pc, .container-buttons-mb {
      display: none; 
     
    }
 /* @media (min-width: 768px) { */
 @media (min-width: 1400px) {
.container-buttons-pc {

    display: flex;
    flex-direction: row;
    gap: 5px;

}
 }

/* @media (max-width: 767px) { */
@media (max-width: 1399px) {
.container-buttons-mb {

    display: flex;
    width: 100%;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
     margin: 0px;


}
}


.white-container-column-mb {
 
  display: flex;
  flex-direction: row;
  width: 100%;
  margin: 0px;
  /* padding: 10px; Add padding to create space inside the container */
  background-color: white;
  border-radius: 10px;
  gap: 10px;
  box-sizing: border-box; /* Ensure padding is included in width */
  overflow: hidden; /* Prevent content from overflowing */

}
/* @media (max-width: 767px) { */
@media (max-width: 1399px) {
.column-mb {
   flex: 1; /* Equal width for columns */
  display: flex;
  flex-direction: column;
  text-align: center;
  min-width: 0; /* Prevent columns from expanding beyond container */

}
}
/* @media (max-width: 767px) {
.container-header-product-mb {
    display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center; 
  height: 180px;
  width: 100%; 
} */


.full-width-row {
  display: flex;
  width: 100%;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}

.text-row {
  font-size: 16px; /* Adjust font size as needed */
  padding: 10px;
}

/* @media (max-width: 767px) { */

   .compare-white-container {
            width: 100%;
            background-color: white;
            margin: 0 auto;
            border-radius: 10px;
            overflow-x: hidden;
        }
      /* } */
        
        .columns-container {
            display: flex;
            gap: 10px;
  
        }
        
        .column-mb {
            flex: 1;
            text-align: center;
           
        }
        
        .row {
            
            text-align: center;
     
        }

        .featuresName-title-mb {
        width: 100%;
        font-family: Fahkwang;
        font-weight: 600;
        font-size: 15px;
        line-height: 100%;
        letter-spacing: 0px;
        text-align: center;
        justify-content: center;
        padding-bottom: 10px;
        padding-right: 10px;

        }

        .features-text-mb {
          /* width: 100%; */
          font-family: Inter;
          font-weight: 400;
          font-size: 15px;
          line-height: 100%;
          height: 18px;
          letter-spacing: 0px;
          text-align: center;
          word-wrap: break-word;
          /* padding-top: 10px; */
          padding-bottom: 10px;
          padding-left: 15px;
          padding-right: 15px;
          }

          .featuresName-text-mb {
            width: 100%;
            font-family: Inter;
            font-weight: 400;
            font-size: 13px;
            line-height: 16px;
            height: 18px;
            letter-spacing: 0px;
            text-align: center;
            justify-content: center;
            border-top: 2px solid rgba(247, 247, 247, 1);
            word-wrap: break-word;
            padding-top: 10px;
            padding-bottom: 10px;
            padding-left: 15px;
            padding-right: 15px;

            }