/** Shopify CDN: Minification failed

Line 102:8 Expected identifier but found whitespace
Line 102:10 Unexpected "{"
Line 102:20 Expected ":"

**/
.show-mobile { display: none; }
.show-desktop { display: block; }

@media screen and (max-width: 798px) { 
  .show-mobile { display: block; }
  .show-desktop { display: none; }
}

.center-div {
  display: flex;
  align-items: center;
  
}

.center-div img {
  max-height: 100%; /* Adjust as per your requirement */
}

.producto-titulo-coleccion {
  font-size: 1.4em; /* Adjust size as needed */
    /* Additional styling */
   /* font-weight: bold;  Optional: Makes text bold */
    color: #8B1337; /* Optional: Sets text color, this is black */
    text-align: center; /* Optional: Centers the text in the div */
  
}

.producto-titulo-precio {
  font-size: 1.35em; /* Adjust size as needed */
    /* Additional styling */
    font-weight: bold;  /*Optional: Makes text bold */
    color: #000000; /* Optional: Sets text color, this is black */
    text-align: center; /* Optional: Centers the text in the div */
  
}
.button-collection {
 padding-top: 10px;
  max-width: 70%;
   margin: auto;
}

.distribuir-centro {
  text-align: center;
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.flexcenter {
    min-height: 6rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.subtle-gbox {
    background-color: #fafafa; /* Very light grey */
    border: 1px solid #cccccc; /* Darker grey border */
    padding: 8px;
    border-radius: 4px;
}

.takeaway {
    background-color: #fafafa; /* Very light grey */
    border: 1px solid #cccccc; /* Darker grey border */
    padding: 8px;
    border-radius: 4px;
}

/* Mobile first: Show only mobile description */
.desktop-description {
  display: none;
}

/* Larger screens: Show desktop description and hide mobile description */
@media (min-width: 768px) {
  .desktop-description {
    display: block;
  }
  
  .mobile-description {
    display: none;
  }
}
/* ACCORDION"S" para accordiones pequeños */

.accordions dt a,
.accordions dt button,
.faq-accordions dt a,
.faq-accordions dt button {
  background: none;
  border: 0;
  color: {{ settings.regular_color }};
  cursor: pointer;
  display: block;
  font-size: 1.2rem;
  padding: 20px 20px 20px 40px;
  text-align: left;
  width: 100%;
  transition: background-color 0.2s linear;
}
.thin-line {
    height: 1px; /* Thickness of the line */
    border: none; /* Removes the default border */
    color: rgba(150, 150, 150, 0.3); /* Sets the color of the line */
    background-color: rgba(150, 150, 150, 0.3); /* Same as the color */

  }
.return-to-index {
    color: #e2668a; /* Change the color */
    text-decoration: none; /* No underline */
    /*font-weight: bold;  Make it bold */
  }

@media (max-width: 768px) {
    .reverse-on-mobile {
      flex-direction: column-reverse !important;
    }
  }

@media (max-width: 768px) {
    .flex-gap-responsive {
      gap: 1em !important; /* or even 0.5em if you want it tighter */
    }
  }