/** Shopify CDN: Minification failed

Line 372:10 Unexpected "{"
Line 372:19 Expected ":"
Line 376:10 Unexpected "{"
Line 376:19 Expected ":"
Line 406:10 Unexpected "{"
Line 406:19 Expected ":"

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:collection (INDEX:6) */
.collection-products {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(500px, 1fr));
  }
/* END_SECTION:collection */

/* START_SECTION:collections (INDEX:7) */
.collections {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(min(var(--collection-card-size), 100%), 1fr));
    gap: var(--grid-gap);
  }
  .collections--compact {
    --collection-card-size: 160px;
  }
  .collections--full {
    --collection-card-size: 280px;
  }
  .collection-card {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
/* END_SECTION:collections */

/* START_SECTION:custom-hero (INDEX:9) */
.custom-hero-wrapper {
  margin-top: -80px;
}

@media (max-width: 768px) {
  .custom-hero__title {
    font-size: var(--mobile-font-size) !important;
    line-height: 55px;
    letter-spacing: -2px;
  }
  .custom-hero__subtitle {
    font-size: var(--mobile-subtitle-font-size) !important;
    line-height: var(--mobile-subtitle-line-height) !important;
  }
  .custom-hero__description {
    font-size: var(--mobile-description-font-size) !important;
  }
}

.custom-hero__cta {
  display: inline-block;
  padding: 10px 40px;
  background-color: var(--cta-bg-color, #a7b255);
  color: var(--cta-text-color, #ffffff);
  text-decoration: none;
  border: var(--cta-border-width, 0) solid var(--cta-border-color, #a7b255);
  border-radius: var(--cta-border-radius, 100px);
  font-family: "Castoro", serif;
  font-size: var(--cta-font-size-desktop, 20px);
  font-weight: 400;
  line-height: 22px;
  outline: none;
  outline-offset: -1px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  margin-top: 20px;
  z-index: 2;
}

.custom-hero__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.custom-hero__cta:focus-visible {
  box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.2);
}

@media (max-width: 768px) {
  .custom-hero__cta {
    padding: 12px 24px;
    font-size: var(--cta-font-size-mobile, 16px);
  }
}
/* END_SECTION:custom-hero */

/* START_SECTION:custom-section (INDEX:10) */
.custom-section {
    position: relative;
    overflow: hidden;
    width: 100%;
  }
  .custom-section__background {
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
  }
  .custom-section__background img {
    position: absolute;
    width: 100%;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .custom-section__content {
    display: grid;
    grid-template-columns: var(--content-grid);
  }
  .custom-section__content > * {
    grid-column: 2;
  }
/* END_SECTION:custom-section */

/* START_SECTION:custom-text-image (INDEX:11) */
.custom-text-image {
  padding-top: var(--padding, 40px);
  padding-bottom: var(--padding, 40px);
}

.custom-text-image__container {
  display: flex;
  gap: var(--gap, 32px);
  align-items: center;
  max-width: var(--max-width);
  margin: 0 auto;
}

.custom-text-image__container > * {
  flex: 1;
  min-width: 0; /* Prevents flex items from overflowing */
}

.custom-text-image__content {
  margin: 0 auto;
}

.custom-text-image--reversed .custom-text-image__container {
  flex-direction: row-reverse;
}

/* Inversion styles */

.custom-text-image__title span.highlighted {
  display: inline-block;
  padding: 0 0.1em;
  border-radius: 4px;
  transition: all 0.3s ease;
}

.custom-text-image__title span.highlighted:hover {
  transform: scale(1.05);
}

.custom-text-image__title {
  text-align: var(--text-align);
}

.custom-text-image__text {
  text-align: var(--text-align);
  margin: 0 auto;
}

.custom-text-image__text p {
  margin: 0 0 1rem 0;
}

.custom-text-image__text p:last-child {
  margin-bottom: 0;
}

.custom-text-image__image-wrapper {
  text-align: center;
}

.custom-text-image__image-wrapper img {
  max-width: 100%;
  height: auto;
  border-radius: var(--border-radius, 8px);
  transition: transform 0.3s ease;
}

.custom-text-image__image-wrapper img:hover {
  transform: translateY(-2px);
}

/* Image style variations */
.custom-text-image__image-wrapper--square img {
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.custom-text-image__image-wrapper--rounded img {
  border-radius: var(--border-radius, 8px);
}

.custom-text-image__image-wrapper--circle img {
  border-radius: 50%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.custom-text-image__image-wrapper--none img {
  border-radius: 0;
}

/* Mobile responsive */
@media (max-width: 768px) {
  .custom-text-image__container {
    flex-direction: column;
    gap: 2rem;
  }

  .custom-text-image__content,
  .custom-text-image__image-wrapper {
    order: unset;
  }

  .custom-text-image__content {
    width: 100%;
    flex: 1;
  }

  .custom-text-image__title {
    font-size: var(--mobile-font-size) !important;
    line-height: var(--mobile-line-height) !important;
  }

  .custom-text-image__text {
    font-size: var(--mobile-font-size) !important;
  }

  .custom-text-image {
    padding-top: var(--mobile-padding) !important;
    padding-bottom: var(--mobile-padding) !important;
  }
}

.custom-text-image__cta {
  display: inline-block;
  padding: 12px 24px;
  background-color: var(--cta-bg-color, #a7b255);
  color: var(--cta-text-color, #ffffff);
  text-decoration: none;
  border: var(--cta-border-width, 0) solid var(--cta-border-color, #a7b255);
  border-radius: var(--cta-border-radius, 100px);
  font-size: var(--cta-font-size-desktop, 20px);
  font-weight: 500;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  margin-top: 1rem;
}

.custom-text-image__cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.custom-text-image__cta--add-to-cart {
  background-color: var(--cta-bg-color, #a7b255);
  border: var(--cta-border-width, 0) solid var(--cta-border-color, #a7b255);
  color: var(--cta-text-color, #ffffff);
}

.custom-text-image__cta--add-to-cart:hover {
  background-color: var(--cta-bg-color, #a7b255);
  opacity: 0.9;
}

/* Mobile styles */
@media (max-width: 768px) {
  .custom-text-image__cta {
    font-size: var(--cta-font-size-mobile, 16px);
    padding: 10px 20px;
  }
}
/* END_SECTION:custom-text-image */

/* START_SECTION:faq (INDEX:14) */
.faq-section {
  padding: 60px 20px;
  background-color: #f8f9fa;
}

.faq-section__header {
  text-align: center;
  margin-bottom: 50px;
}

.faq-section__title {
  font-size: var(--heading-size-desktop, 40px);
  font-weight: 500;
  color: var(--heading-color, #2c2c2c) !important;
  margin-bottom: 10px;
  line-height: 1.2;
}

.faq-section__items {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background-color: #ffffff;
  border-radius: 0px;
  margin-bottom: 16px;
  overflow: hidden;
  border: none !important;
  border-bottom: var(--question-border-width, 2px) solid var(--question-border-color, #e5e5e5) !important;
  transition: all 0.3s ease;
}


.faq-item__question {
  width: 100%;
  background: none;
  border: none;
  padding: 20px;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.125rem;
  font-weight: 500;
  color: var(--question-color, #2c2c2c) !important;
  transition: color 0.3s ease;
}

.faq-item__question:hover {
  color: var(--question-color, #2c2c2c);
  opacity: 0.8;
}

.faq-item__question:focus {
  outline: none;
  box-shadow: none;
}

.faq-item__question-text {
  flex: 1;
  padding-right: 20px;
  text-align: center;
}

.faq-item__icon {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

/* Forzar comportamiento del icono en esta sección, sin heredar giros globales */
.section-{{ section.id }} .faq-item__icon {
  transform: none !important;
}

.section-{{ section.id }} .faq-item__icon svg {
  transition: transform 0.3s ease;
  transform: rotate(0deg) !important;
  color: #576238;
}

.faq-item__answer {
  padding: 0 20px 20px 20px;
  color: #666;
  line-height: 1.6;
  border-top: 0;
  border-width: 0;
}

.faq-item__answer-content {
  padding-top: 16px;
  font-size: 20px;
  font-weight: 600;
  line-height: 25px;
  text-align: center;
}

.faq-item__answer p {
  margin: 0 0 15px 0;
}

.faq-item__answer p:last-child {
  margin-bottom: 0;
}

.section-{{ section.id }} .faq-item--open .faq-item__icon svg {
  transform: rotate(45deg) !important;
}

.faq-item--open .faq-item__question {
  font-weight: 500;
}

/* Responsive */
@media screen and (max-width: 768px) {
  .faq-section {
    padding: 40px 20px;
  }
  
  .faq-section__title {
    font-size: var(--heading-size-mobile, 24px);
  }
  
  .faq-item__question {
    font-size: 1rem;
    padding: 16px;
  }
  
  .faq-item__answer {
    padding: 0 16px 16px 16px;
  }
  
  .faq-item__answer-content {
    padding-top: 12px;
  }
}
/* END_SECTION:faq */

/* START_SECTION:footer (INDEX:15) */
/* Navigation Section */
.ve-footer__nav {
  padding: 32px 0;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.ve-footer__nav-content {
  width: 90%;
  max-width: 1360px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  padding: 0 20px;
}

.ve-footer__logo {
  flex-shrink: 0;
}

.ve-footer__logo img {
  height: auto;
}

/* Mostrar solo el logo de escritorio por defecto */
.ve-footer__logo.mobile-logo {
  display: none;
}

/* En móviles, mostrar solo el logo móvil si existe */
@media (max-width: 767px) {
  .ve-footer__logo.desktop-logo {
    display: none;
  }
  .ve-footer__logo.mobile-logo {
    display: block;
  }
}

.ve-footer__nav-right {
  display: flex;
  align-items: center;
  gap: 32px;
  margin-left: auto;
}

.ve-footer__menu {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.ve-footer__menu-link {
  font-size: 13px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0;
  color: #403E3E;
  text-decoration: none;
  transition: color .3s ease;
}

.ve-footer__menu-link:hover {
  color: #576238;
}

.ve-footer__social {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}

.ve-footer__social-link {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  transition: color 0.3s ease;
}

.ve-footer__social-link:hover {
  color: #576238;
}

/* Copyright Section */
.ve-footer__copyright {
  padding: 20px;
  text-align: center;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.ve-footer__copyright p {
  margin: 0;
  font-size: 14px;
  color: #EFF0F5;
  font-family: 'Inter', sans-serif;
  line-height: 17.5px;
  letter-spacing: 0.74px;
}

input:focus-visible {
  outline: none !important;
}

/* Responsive */
@media (max-width: 1024px) {
  .ve-footer__nav-content {
    flex-direction: column;
    text-align: center;
    gap: 24px;
    padding: 0 40px;
  }
  
  .ve-footer__nav-right {
    margin-left: 0;
  }
  
  .ve-footer__menu {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .ve-footer__nav-right {
    flex-direction: column-reverse;
    gap: 16px;
  }
  
  .ve-footer__menu {
    width: 100%;
    display: flex;
    flex-direction: column;
  }

  .ve-footer__nav-content {
    padding: 0 20px;
  }
}

@media (max-width: 480px) {
  /* Footer responsive styles removed - hero section moved to form-section.liquid */
}
/* END_SECTION:footer */

/* START_SECTION:form-section (INDEX:16) */
/* Form Section */
.ve-form-section {
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 80px 0;
  min-height: 500px;
  display: flex;
  justify-content: left;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.ve-form-section__overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.15);
}

.ve-form-section__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  z-index: 2;
  width: 90%;
  max-width: 1360px;
  margin: 0 auto;
  text-align: left;
}

.ve-form-section__heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 58px;
  font-weight: 400;
  line-height: 1.2;
  color: #403E3E;
  margin: 0 0 16px;
}

.ve-form-section__heading em {
  font-style: italic;
}

.ve-form-section__description {
  font-size: 18px;
  line-height: 1.5;
  color: #403E3E;
  margin: 0 0 32px;
}

.ve-form-section__form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 530px;
}

.ve-form-section__form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.ve-form-section__form-row-bottom {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 12px;
  align-items: center;
}

.ve-form-section__input {
  padding: 10px 20px;
  border: none;
  font-size: 18px;
  background: #fff;
  color: #403E3E;
  font-weight: 400;
}

.ve-form-section__input::placeholder {
  color: #999;
}

.ve-form-section__button {
  font-family: "Cormorant Garamond", serif;
  padding: 14px 32px;
  background: #576238;
  color: #fff;
  border: none;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  transition: background 0.3s ease;
  text-transform: uppercase;
  white-space: nowrap;
  height: 100%;
}

.ve-form-section__button:hover {
  background: #6a7644;
}

.ve-form-section__success-message {
  font-family: Cormorant Garamond, serif;
  border-radius: 4px;
  text-align: center;
  margin-bottom: 20px;
  font-size: 17px;
  font-weight: 500;
  width: fit-content;
}

input:focus-visible {
  outline: none !important;
}

/* Responsive */
@media (max-width: 768px) {
  .ve-form-section {
    padding: 60px 20px;
    min-height: 400px;
    justify-content: center;
    height: 933px;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }

  .ve-form-section__heading {
    font-size: 36px;
    text-align: center;
  }

  .ve-form-section__form-row {
    grid-template-columns: 1fr;
  }

  .ve-form-section__form-row-bottom {
    grid-template-columns: 1fr;
  }

  .ve-form-section__button {
    width: 100%;
  }

  .ve-form-section__content {
    justify-content: flex-start;
    text-align: center;
  }

  .ve-form-section__form {
    text-align: center;
    margin: 0 auto;
    width: 95%;
  }
}

@media (max-width: 480px) {
  .ve-form-section__heading {
    font-size: 36px;
    margin-bottom: 30px;
  }

  .ve-form-section__description {
    display: none;
  }
}
/* END_SECTION:form-section */

/* START_SECTION:header (INDEX:17) */
header {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    height: 5rem;
    z-index: 10;
    margin-top: -10px;
    background-color: transparent;
  }
  body {
    padding-top: 0;
  }
  .header__container {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: var(--header-width);
    max-width: var(--header-max-width-px);
    margin: 0 auto;
    padding-top: 25px;
  }
  header a {
    position: relative;
    text-decoration: none;
    color: var(--color-foreground);
    margin-top: -3px;
  }
  header a sup {
    font-weight: 700;
    color: #Fff;
    border: 1px solid white;
    border-radius: 50px;
    padding: 1px 6px;
    position: absolute;
    left: 100%;
    overflow: hidden;
    max-width: var(--page-margin);
  }
  header svg {
    width: 2rem;
  }

  header .header__cart-icon svg {
    width: 24px;
    height: 24px;
  }

  header .header__menu {
    display: flex;
    gap: 50px;
  }
  header .header__menu a {
    font-family: Inter, sans-serif;
    font-weight: 500;
    font-size: 14px;
    color: #fff;
    text-transform: uppercase;
    text-decoration: none;
    transition: color .2s ease;
  }
  header .header__menu a:hover {
    color: var(--color-primary, #576238);
  }

  header .header__menu a.active,
  header .header__menu a[aria-current="page"] {
    color: #576238;
    font-weight: 600;
  }
  header .header__icons {
    display: flex;
    gap: 20px;
  }
  .header__hamburger {
    display: none;
  }
  header .header__title img {
    max-height: 3rem;
    width: auto;
  }

  .header__logo--desktop {
    display: block;
  }

  .header__logo--mobile {
    display: none;
  }

  .header__drawer {
    display: none;
  }

  header .header__icons .header__cta {
    padding: 10px 12px 0 12px;
    background-color: transparent;
    color: white;
    border: 1px solid white;
    border-radius: 0.25rem;
    font-family: 'Raleway', sans-serif;
    font-weight: 400;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s ease;
  }

  header .header__icons .header__cta:hover {
    background-color: rgba(255, 255, 255, 0.1);
    color: white;
    border-color: white;
  }

  /* Cart drawer styles */
  .header__cart-drawer {
    position: fixed;
    top: 0;
    right: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
  }

  .header__cart-drawer.open {
    opacity: 1;
    visibility: visible;
  }

  .header__cart-drawer-content {
    position: absolute;
    top: 0;
    right: 0;
    width: 400px;
    max-width: 90%;
    height: 100%;
    background-color: white;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    display: flex;
    flex-direction: column;
    overflow: hidden;
  }

  .header__cart-drawer.open .header__cart-drawer-content {
    transform: translateX(0);
  }

  .header__cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    border-bottom: 1px solid #576238;
  }

  .header__cart-header h3 {
    margin: 0;
    font-size: 1.75rem;
    font-weight: bold;
  }

  .header__cart-close {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #403E3E;
    font-size: 3rem;
    text-decoration: none;
    border-radius: 50%;
    transition: all 0.2s ease;
  }

  .header__cart-close:hover {
    background-color: #f5f5f5;
    color: #666;
  }

  .header__cart-items {
    flex: 1;
    padding: 1.5rem;
    overflow-y: auto;
    min-height: 0;
  }

  .header__cart-empty {
    text-align: center;
    color: #666;
    padding: 2rem 0;
    font-size: 26px;
    font-weight: 600;
  }

  /* Cart item styles */
  .header__cart-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
  }

  .header__cart-item:last-child {
    border-bottom: none;
  }

  .header__cart-item-image {
    flex-shrink: 0;
  }

  .header__cart-item-image img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
  }

  .header__cart-item-details {
    flex: 1;
    min-width: 0;
  }

  .header__cart-item-title {
    font-family: 'Instrument Sans';
    margin: 0 0 0.25rem 0;
    font-size: 18px;
    font-weight: 600;
    color: #333;
    line-height: 1.3;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .header__cart-item-variant {
    margin: 0 0 0.5rem 0;
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
  }

  .header__cart-item-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.85rem;
  }

  .header__cart-item-quantity {
    color: #666;
  }

  .header__cart-item-price {
    font-family: 'Instrument Sans';
    font-weight: 600;
    color: #333;
    font-size: 22px;
  }

  .header__cart-item-remove {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    color: #999;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 50%;
    transition: all 0.2s ease;
  }

  .header__cart-item-remove:hover {
    background-color: #f5f5f5;
    color: #666;
  }

  .header__cart-footer {
    padding: 1.5rem;
    border-top: 1px solid #576238;
  }

  .header__cart-total {
    font-family: 'Instrument Sans';
    display: flex;
    justify-content: space-between;
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 1rem;
  }

  .header__cart-checkout {
    font-family: 'Castoro';
    display: block;
    width: 100%;
    padding: 1rem;
    background-color: #576238;
    color: white;
    text-align: center;
    text-decoration: none;
    border-radius: 0px;
    font-weight: 400;
    transition: background-color 0.2s ease;
    font-size: 22px;
  }

  .header__cart-checkout:hover {
    background-color: #fff;
    color: #576238;
    border: 1px solid #576238;
  }

  @media (max-width: 768px) {
    .header__container {
      width: var(--mobile-content-width);
    }

    .header__hamburger {
      display: flex !important;
      flex-direction: column;
      gap: 4px;
      background: none;
      border: none;
      cursor: pointer;
      padding: 12px;
    }

    .header__hamburger span {
      width: 24px;
      height: 3px;
      background-color: white;
      transition: all 0.3s ease;
    }

    .header__hamburger.open span:nth-child(1) {
      transform: rotate(45deg) translate(4px, 3px);
    }

    .header__hamburger.open span:nth-child(2) {
      opacity: 0;
    }

    .header__hamburger.open span:nth-child(3) {
      transform: rotate(-45deg) translate(7px, -6px);
    }

    header .header__menu {
      display: none;
    }

    header .header__icons .header__cta {
      display: none;
    }

    header .header__icons .header__account-icon {
      display: none;
    }

    header .header__title {
      position: static;
      transform: none;
    }

    .header__logo--desktop {
      display: none;
    }

    .header__logo--mobile {
      display: block;
    }

    header .header__title img {
      max-height: 3rem;
      height: auto;
      max-width: 175px;
    }

    .header__drawer {
      display: block;
      position: fixed;
      top: 0;
      left: 0;
      right: auto;
      width: 100%;
      height: 100vh;
      z-index: 999;
      opacity: 0;
      visibility: hidden;
      transition: all 0.3s ease;
    }

    .header__drawer.open {
      opacity: 1;
      visibility: visible;
    }

    .header__drawer-content {
      position: absolute;
      top: 0;
      left: 0;
      right: auto;
      width: 280px;
      height: 100%;
      background-color: white;
      transform: translateX(-100%);
      transition: transform 0.3s ease;
      padding: 5rem 2rem 5rem 2rem;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
    }

    .header__drawer.open .header__drawer-content {
      transform: translateX(0);
    }

    .header__drawer-menu {
      display: flex;
      flex-direction: column;
      gap: 2rem;
    }

    .header__drawer-menu a {
      font-family: 'Inter', sans-serif;
      font-weight: 500;
      font-size: 18px;
      text-align: center;
      color: var(--color-foreground);
      text-transform: uppercase;
      text-decoration: none;
      transition: color .2s ease;
    }

    .header__drawer-menu a.active,
    .header__drawer-menu a[aria-current="page"] {
      color: #576238;
      font-weight: 600;
    }

    .header__drawer-social {
      display: flex;
      justify-content: center;
      gap: 24px;
    }

    .header__drawer-bottom {
      display: flex;
      justify-content: center;
      align-items: center;
      flex-direction: column;
      gap: 32px;
    }

    .header__drawer-social-link {
      width: 28px;
      display: flex;
      align-items: center;
      justify-content: center;
      color: #666;
      transition: color 0.3s ease;
    }

    .header__drawer-social-link:hover {
      color: #576238;
    }

    .header__cta--drawer {
      background-color: transparent;
      color: #576238;
      border: 1px solid #576238;
      border-radius: 0.25rem;
      padding: 1rem;
      text-align: center;
      font-weight: 500;
      font-size: 22px;
      text-transform: uppercase;
      text-decoration: none;
      transition: all 0.2s ease;
      flex-shrink: 0;
    }

    .header__cta--drawer:hover {
      background-color: #576238;
      color: white;
    }

    /* Mobile cart drawer improvements */
    .header__cart-drawer {
      width: 100%;
      height: 100vh;
      height: 100dvh;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
    }

    .header__cart-drawer-content {
      width: 100%;
      max-width: 100%;
      height: 100vh;
      height: 100dvh;
      left: 0;
      right: 0;
      top: 0;
      transform: translateX(100%);
      display: flex;
      flex-direction: column;
      overflow: hidden;
    }

    .header__cart-drawer.open .header__cart-drawer-content {
      transform: translateX(0);
    }

    .header__cart-header {
      padding: 1rem;
      background-color: white;
      z-index: 1;
      border-bottom: 1px solid #576238;
      flex-shrink: 0;
    }

    .header__cart-items {
      flex: 1;
      padding: 1rem;
      overflow-y: auto;
      overflow-x: hidden;
      min-height: 0;
      -webkit-overflow-scrolling: touch;
    }

    .header__cart-footer {
      padding: 1rem;
      border-top: 1px solid #576238;
      background-color: white;
      flex-shrink: 0;
    }

    /* Mobile cart item styles */
    .header__cart-item {
      gap: 1rem;
      padding: 0.75rem 0;
    }

    .header__cart-item-image img {
      width: 100px;
      height: auto;
    }

    .header__cart-item-variant {
      font-size: 0.75rem;
    }

    .header__cart-item-meta {
      font-size: 0.8rem;
    }
  }

  /* Tablet breakpoint - 769px to 1024px */
  @media (min-width: 769px) and (max-width: 1024px) {
    .header__container {
      width: 90%;
      max-width: 1400px;
    }

    header .header__menu {
      gap: 30px;
    }

    header .header__menu a {
      font-size: 13px;
    }

    header .header__icons {
      gap: 1.25rem;
    }

    .header__cart-drawer-content {
      width: 350px;
    }
  }

  /* Small desktop breakpoint - 1025px to 1440px */
  @media (min-width: 1025px) and (max-width: 1440px) {
    .header__container {
      width: 92%;
      max-width: 1600px;
    }

    header .header__menu {
      gap: 40px;
    }

    header .header__menu a {
      font-size: 13px;
    }

    header .header__icons {
      gap: 1.5rem;
    }

    .header__cart-drawer-content {
      width: 380px;
    }
  }

  /* Large desktop breakpoint - 1441px+ */
  @media (min-width: 1441px) {
    .header__container {
      width: 95%;
      max-width: 1800px;
    }

    header .header__menu {
      gap: 50px;
    }

    header .header__menu a {
      font-size: 14px;
    }

    header .header__icons {
      gap: 1.5rem;
    }

    .header__cart-drawer-content {
      width: 400px;
    }
  }
/* END_SECTION:header */

/* START_SECTION:search (INDEX:28) */
.search-results {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  }
  .search-results .prev,
  .search-results .page,
  .search-results .next {
    grid-column: 1 / -1;
  }
/* END_SECTION:search */

/* START_SECTION:testimonials (INDEX:30) */
/* Mobile-only testimonials section */

.section-testimonials {
  display: flex;
}

.testimonials-section {
  padding: 60px 0;
  background: #fff;
  overflow: hidden;
}

/* Hide on desktop */
@media (min-width: 769px) {
  .testimonials-section {
    display: none;
  }
}

.testimonials-container {
  width: 100%;
}

.testimonials-heading {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 400;
  line-height: 34px;
  text-align: center;
  color: #403e3e;
  margin: 0 auto 48px;
  padding: 0 30px;
  max-width: 600px;
}

.testimonials-heading em {
  font-style: italic;
  /* El color ahora se aplica directamente en el estilo en línea */
}

.testimonials-swiper {
  width: 100%;
  padding: 40px 0 !important;
  margin: 0;
  max-width: 100%;
  overflow: hidden;
}

.swiper-slide {
  height: auto;
  display: flex;
  align-items: stretch;
}

.testimonial-card {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial-card__header {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.testimonial-card__avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.testimonial-card__avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.testimonial-card__text {
  flex: 1;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 21px;
  color: #000;
  font-weight: 400;
}

.testimonial-card__text p {
  margin: 0;
}

.testimonial-card__footer {
  display: flex;
  align-items: center;
  gap: 6px;
  padding-left: 60px;
}

.testimonial-card__reply {
  font-size: 14px;
  color: #8899a6;
  font-family: system-ui, -apple-system, sans-serif;
}

.testimonial-card__verified {
  flex-shrink: 0;
}

/* Swiper autoplay */
.swiper-wrapper {
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}
/* END_SECTION:testimonials */

/* CSS from block stylesheet tags */
/* START_BLOCK:group (INDEX:35) */
.group {
    display: flex;
    flex-wrap: nowrap;
    overflow: hidden;
    width: 100%;
  }

  .group--horizontal {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0 var(--padding);
  }

  .group--vertical {
    flex-direction: column;
    align-items: var(--alignment);
    padding: var(--padding) 0;
  }
/* END_BLOCK:group */

/* START_BLOCK:text (INDEX:36) */
.text {
    text-align: var(--text-align);
  }
  .text--title {
    font-size: 2rem;
    font-weight: 700;
  }
  .text--subtitle {
    font-size: 1.5rem;
  }
/* END_BLOCK:text */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:image (INDEX:40) */
.image {
    display: block;
    position: relative;
    overflow: hidden;
    width: 100%;
    height: auto;
  }

  .image > img {
    width: 100%;
    height: auto;
  }
/* END_SNIPPET:image */