/** Shopify CDN: Minification failed

Line 76:22 Expected percentage but found "{"
Line 76:38 Unexpected "{"
Line 77:4 Unexpected "0%"
Line 78:4 Unexpected "12%"
Line 79:4 Unexpected "24%"
Line 80:4 Unexpected "36%"
Line 81:4 Unexpected "48%"
Line 83:13 Unexpected "{"
Line 83:22 Expected ":"
Line 84:14 Expected identifier but found whitespace
... and 8 more hidden warnings

**/
/* SHOPIFY_STYLESHEETS_VERSION: 1.0 */


/* CSS from section stylesheet tags */
/* START_SECTION:banner-home (INDEX:8) */
.banner-home-swiper {
    position: relative;
    overflow: hidden;
  }

  .banner-home-swiper .swiper-wrapper {
    display: flex;
    position: relative;
  }

  .banner-home-swiper .swiper-slide {
    width: 100%;
    flex-shrink: 0;
    display: block;
    opacity: 0;
    transition: opacity 0.3s;
  }

  .banner-home-swiper .swiper-slide:first-child {
    opacity: 1;
  }

  .banner-home-swiper.swiper-initialized .swiper-slide {
    opacity: 1;
  }

  .banner-home-swiper .swiper-pagination {
    position: relative;
    bottom: auto;
    margin-top: 1.5rem;
  }

  .banner-home-swiper .swiper-pagination-bullet {
    width: 3rem;
    height: 0.5rem;
    border: 1px solid #000;
    border-radius: 0;
    background-color: #a0a0a0;
    opacity: 1;
    transition: background-color 0.3s;
  }

  @media screen and (min-width: 768px) {
    .banner-home-swiper .swiper-pagination-bullet {
      width: 4rem;
      height: 0.625rem;
    }
  }

  .banner-home-swiper .swiper-pagination-bullet-active {
    background-color: #24272b;
  }
/* END_SECTION:banner-home */

/* START_SECTION:buttom_back (INDEX:14) */
@keyframes heartbeat-{{ section.id }} {
    0%, 100% { transform: scale(1); }
    12% { transform: scale(1.18); }
    24% { transform: scale(1); }
    36% { transform: scale(1.12); }
    48% { transform: scale(1); }
  }
  .back-btn-{{ section.id }}.heartbeat {
    animation: heartbeat-{{ section.id }} 1.4s ease-in-out infinite;
  }
  .tooltip-bubble-{{ section.id }} {
    background-color: #ffffff;
    color: #1f2937;
  }
  .tooltip-bubble-{{ section.id }} .tooltip-bubble-text {
    color: #1f2937;
  }
/* END_SECTION:buttom_back */

/* START_SECTION:carrusel-sucursal (INDEX:17) */
.sucursales-section {
    --sucursal-card-radius: 10px;
    --sucursal-card-map-height: 240px;
    --sucursal-card-body-height: 280px;
    --sucursal-card-title-height: 50px;
    --sucursal-card-address-height: 78px;
    --sucursal-card-body-bg: #383838;
    --sucursal-card-title-bg: rgba(235, 235, 235, 0.2);
    --sucursal-card-text-color: #ffffff;
    --sucursal-card-border-color: #ffffff;
  }

  .sucursal-card {
    display: flex;
    flex-direction: column;
    border-radius: var(--sucursal-card-radius);
    border: 1px solid var(--sucursal-card-border-color);
    overflow: hidden;
    background-color: var(--sucursal-card-body-bg);
    height: calc(
      var(--sucursal-card-map-height) + var(--sucursal-card-body-height)
    );
  }

  .sucursal-card__map {
    width: 100%;
    height: var(--sucursal-card-map-height);
    object-fit: cover;
    object-position: center center;
    display: block;
    filter: grayscale(100%);
  }

  .sucursal-card__body {
    padding: 20px 27px;
    background-color: var(--sucursal-card-body-bg);
    color: var(--sucursal-card-text-color);
    display: flex;
    flex-direction: column;
    gap: 12px;
    height: var(--sucursal-card-body-height);
    box-sizing: border-box;
  }

  .sucursal-card__title-box {
    background-color: var(--sucursal-card-title-bg);
    border-radius: 5px;
    padding: 10px 12px;
    display: inline-block;
    width: fit-content;
    max-width: 100%;
    height: var(--sucursal-card-title-height);
    box-sizing: border-box;
    overflow: hidden;
  }

  .sucursal-card__title {
    color: var(--sucursal-card-text-color);
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    text-transform: uppercase;
    line-height: 1.2;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    max-height: 100%;
  }

  .sucursal-card__address {
    color: var(--sucursal-card-text-color);
    margin: 0;
    font-size: 16px;
    line-height: 1.5;
    height: var(--sucursal-card-address-height);
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    text-overflow: ellipsis;
  }

  .sucursal-card__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: 28.97px;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    width: fit-content;
    margin-top: auto;
    flex-shrink: 0;
    transition: background-color 0.3s ease, transform 0.2s ease;
  }

  .sucursal-card__button:hover {
    transform: translateY(-2px);
    opacity: 0.9;
  }

  .sucursal-card__button svg {
    width: 16px;
    height: 12px;
    transition: transform 0.2s ease;
  }

  .sucursal-card__button:hover svg {
    transform: translateX(4px);
  }

  @media screen and (min-width: 768px) {
    .sucursal-card__body {
      padding: 24px 30px;
    }
  }
/* END_SECTION:carrusel-sucursal */

/* START_SECTION:main-article (INDEX:51) */
.article-template__hero-container .media > .article-template__hero-image {
    position: relative;
    width: 100%;
    height: auto;
  }

  @media screen and (min-width: 768px) {
    .article-template__hero-container .media > .article-template__hero-image {
      width: auto;
      height: 200px;
    }
  }
/* END_SECTION:main-article */

/* CSS from snippet stylesheet tags */
/* START_SNIPPET:article-card-home (INDEX:105) */
.article-card-home__title a {
    color: #008b07;
    font-size: 20px;
    font-weight: 900;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    line-height: 1.4;
    min-height: calc(20px * 1.4 * 3);
    text-decoration-skip-ink: none;
  }

  .article-card-home__excerpt {
    display: -webkit-box;
    -webkit-line-clamp: 3;
    line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    font-size: 16px;
  }

  .article-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center; /* Centers the image */
  }

  .article-card-home__link-wrapper {
    margin-top: 15px;
  }

  .article-card-home__link {
    color: #008b07;
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: opacity 0.2s ease;
  }

  .article-card-home__link svg {
    transition: transform 0.2s ease;
  }

  .article-card-home__link:hover {
    opacity: 0.7;
    text-decoration: underline;
  }

  .article-card-home__link:hover svg {
    transform: translateX(4px);
  }
/* END_SNIPPET:article-card-home */

/* START_SNIPPET:card-product (INDEX:110) */
.card__media .placeholder-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }
/* END_SNIPPET:card-product */

/* START_SNIPPET:header-drawer (INDEX:118) */
.menu-drawer__scrollbar {
    scrollbar-width: thin;
    scrollbar-color: #4b5563 #1f2937;
  }

  .menu-drawer__scrollbar::-webkit-scrollbar {
    width: 8px;
    height: 8px;
  }

  .menu-drawer__scrollbar::-webkit-scrollbar-track {
    background: #1f2937;
    border-radius: 4px;
  }

  .menu-drawer__scrollbar::-webkit-scrollbar-thumb {
    background-color: #4b5563;
    border-radius: 4px;
    border: 2px solid #1f2937;
  }

  .menu-drawer__scrollbar::-webkit-scrollbar-thumb:hover {
    background-color: #6b7280;
  }

  /* Estilos específicos para Split View en Desktop */
  @media screen and (min-width: 990px) {
    .menu-drawer__navigation--split-view {
      padding: 0 !important;
      height: 100%;
      display: flex;
      flex-direction: column;
      overflow: hidden;
      min-height: 0;
      flex: 1;
    }

    .menu-drawer__navigation--split-view > div {
      flex: 1;
      min-height: 0;
      overflow: hidden;
      display: flex;
      height: 100%;
    }

    /* Ajustar el contenedor de navegación para Split View */
    .menu-drawer__navigation-container:has(
        .menu-drawer__navigation--split-view
      ) {
      grid-template-rows: 1fr auto !important;
      overflow: hidden !important;
      display: grid !important;
      height: 100%;
      align-content: stretch;
    }

    .menu-drawer__navigation-container:has(.menu-drawer__navigation--split-view)
      .menu-drawer__navigation--split-view {
      overflow: hidden;
      min-height: 0;
      height: 100%;
    }

    .menu-drawer__navigation-container:has(.menu-drawer__navigation--split-view)
      .menu-drawer__utility-links {
      flex-shrink: 0;
      overflow: visible;
      min-height: auto;
    }

    /* Asegurar que el inner-container también use toda la altura */
    .menu-drawer__inner-container:has(
        .menu-drawer__navigation-container:has(
            .menu-drawer__navigation--split-view
          )
      ) {
      height: 100%;
      display: flex;
      flex-direction: column;
    }

    .menu-drawer__inner-container:has(
        .menu-drawer__navigation-container:has(
            .menu-drawer__navigation--split-view
          )
      )
      .menu-drawer__navigation-container {
      flex: 1;
      min-height: 0;
    }
  }
/* END_SNIPPET:header-drawer */