/** Shopify CDN: Minification failed

Line 267:50 Unexpected "{"

**/


/* CSS from section stylesheet tags */
.announcement-bar {
    text-align: center;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
  }
  .announcement-content {
    display: flex;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    flex-wrap: nowrap;
    flex: 1;
    gap : 2rem;
  }
  .announcement-content p{
    height: fit-content;
    margin-bottom : 0;
    margin-top: 0;
  }
  .announcement-button {
    display : flex;
    text-decoration: none;
  }
  .announcement-close {
    background: none;
    border: none;
    font-size: 20px;
    cursor: pointer;
  }
/* Style for the bottom section */
.collections-section {
  padding: 20px 0px;/*PARAMETERS*/
  background-color: #f9f9f9;/*PARAMETERS*/
} 


/* Style for the collection grid */
.collections-section .collection-grid {
  gap: 10px;/*PARAMETERS*/
}

/* Style for each collection item */
.collections-section .collection-item {
  border: none;
  border-radius: 0px;/*PARAMETERS*/
  overflow: hidden;
  text-align: center;
  transition: transform 0.3s ease;
}


.collections-section .collection-item img {
  width: 100%;
  height: auto; /* Ensure the image maintains its aspect ratio */
}

.collections-section .collection-item h3 {
  margin: 10px 0;
  font-size: 18px;/*PARAMETERS*/
  color: #333;/*PARAMETERS*/
}

/* Style for flex layout */
.collections-section .collection-grid.flex {
  display: flex;
  overflow-x: auto;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none; /* Hide scrollbar for Internet Explorer/Edge */
}

.collections-section .collection-grid.flex ::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}

.collections-section .collection-grid.flex .collection-item {
  flex: 0 0 auto;
  width: 200px; /* Fixed width for flex layout */
}

@media screen and (min-width : 767px){
  .collection-grid.mobile{
    display: none !important;
  } 
  .collection-grid.desktop{

  }
  .collections-section .collection-item {

  }   
}
.header-collections-section {
  width: 100%;
  text-align: center;
}

.collections-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  padding-bottom: 5px; 
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none; /* Hide scrollbar for Internet Explorer/Edge */
}
  
.collections-slider:-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}


.collection-button {
  display: inline-block;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 20px;
  border-radius: 5px;
  border: 1px solid #cccccc;
  transition: all 0.3s ease;
  white-space: nowrap;
}

.collection-button:hover {
  opacity: 0.8;
}

.collection-button:active {
  transform: scale(0.98);
}

.collection-button:focus {
  outline: none;
}

/* Hide the section on small screens */
.hidden-desktop {
  display: none;
}

/* Show the section on screens of 768px or less */
@media (max-width: 768px) {
  .hidden-desktop {
    display: block;
  }
  .header{
    border-bottom: none;
  }
}
.header-bullets-section {
  width: 100%;
}

.bullets-slider {
  display: flex;
  overflow-x: auto;
  gap: 15px;
  white-space: nowrap;
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  -ms-overflow-style: none; /* Hide scrollbar for Internet Explorer/Edge */
}
  
.bullets-slider::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari, and Opera */
}

.bullet-item {
  display: flex;
  align-items: center;
  gap: 10px;
  white-space: nowrap;
}


@media (max-width: 768px) {
  .hidden-desktop {
    display: block;
  }
}
.desktop-hero-section .container{
  display: flex;
  gap: 20px;

}

.desktop-hero-section .container .col-left{
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
  justify-content: center;
  width: 50%;
  padding-right: 50px;
}
.desktop-hero-section .container .col-right{
  width: 50%;
}

.mobile-hero-section{
  display: block;
}
.desktop-version{
  display :  none;
}
  
.mobile-hero-section {
  width: 100%;
  position: relative;
  padding: 0 0px; /*PARAMETERS*/
}

.mobile-hero-section .img-container{
  position: relative;
  width: 100%;
  min-height: 500px; /*PARAMETERS*/
  border-radius: 0; /*PARAMETERS*/
  background-color: #F7F7F7; /*PARAMETERS*/
}
  
.mobile-hero-section .img-container img{
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-hero-section .img-container .heading{
  position: absolute;
  left: 0px; /*PARAMETERS*/
  right: unset; /*PARAMETERS*/
  bottom: unset; /*PARAMETERS*/
  top: unset;

  display: flex;
  flex-direction: column;
}
  
.desktop-hero-section .rating,
.mobile-hero-section .rating{
  display: flex;
  align-items: center;
  gap: 0.3rem;
  width: 100%;
  z-index: 9;
  justify-content: center;
  margin: 5px 0;
}
  .desktop-hero-section .rating .stars,
 .mobile-hero-section .rating .stars{
   display: flex;
   justify-content: row;
   gap: 0rem;
   align-items: center;
   margin-right: 5px;
 }
  
  .mobile-hero-section .img-container .heading h1,{
    font-size: 36px;/*PARAMETERS*/
    line-height: 110%;/*PARAMETERS*/
    color: black;/*PARAMETERS*/ 
    text-align: center; /*PARAMETERS*/
    font-weight: 600;
    padding-bottom: 10px;/*PARAMETERS*/
    margin: 0;
    margin-top: 0;
    margin-bottom: 0;
  }
    .desktop-hero-section .col-left h1{
    font-size: 36px;/*PARAMETERS*/
    line-height: 110%;/*PARAMETERS*/
    color: black;/*PARAMETERS*/ 
    font-weight: 500;
    padding-bottom: 10px;/*PARAMETERS*/
    margin: 0;
    margin-top: 0;
    margin-bottom: 0;
    }

.mobile-hero-section .img-container .heading p{
  font-size: 20px;/*PARAMETERS*/
  line-height: 110%;/*PARAMETERS*/
  color: black;/*PARAMETERS*/
  text-align: center; /*PARAMETERS*/
  font-weight: 400;
}

.mobile-hero-section .img-container .cta-section{
  position: absolute;
  bottom: 20px;/*PARAMETERS*/
  left: 20px;/*PARAMETERS*/
  right: 20px;/*PARAMETERS*/
  margin: auto;
}

.v1-template2 .cta-buttons {
  display: flex;
  justify-content: space-between;
}

.v1-template2 .cta-button {
  text-decoration: none;
  padding: 12px 20px;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  transition: 0.3s;
  border-radius: 5px;
  text-align: center;
}

.v1-template2 .cta-button:hover {
  opacity: 0.8;
}

  .mobile-hero-section{
    display:  none !important;
  }
  .desktop-hero-section{
    display: block !important;
  }

@media (max-width: 767px) {
  .mobile-hero-section{
      display:  block !important;
  }
  .desktop-hero-section{
    display: none !important;
  }
  
}