.lp-store-ui {
  --lp-navy: #00384f;
  --lp-turquoise: #00bba7;
  --lp-yellow: #f1e517;
  --lp-pink: #ef8988;
  --lp-text: #163642;
  --lp-muted: #70777b;
  --lp-border: #e4e8e9;
  --lp-surface: #ffffff;
  --lp-image-surface: #f2f2f0;
}

.lp-store-ui .header_search_container {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  z-index: 1;
  height: 0;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity 160ms ease;
}

.lp-store-ui .header_search_container.active {
  right: auto;
  bottom: auto;
  left: auto;
  height: 73px;
  max-height: 73px;
  opacity: 1;
  pointer-events: auto;
}

.lp-store-ui .header_search_container .header_search_content {
  height: 73px;
}

body.lp-store-ui .home_banner_area.lp-store-intro .lp-store-intro__content {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 18px 16px;
}

body.lp-store-ui .home_banner_area.lp-store-intro .lp-store-intro__content h3 {
  flex: 0 0 100%;
  margin: 0;
}

body.lp-store-ui .home_banner_area.lp-store-intro .lp-store-intro__content .btnRosa,
body.lp-store-ui .home_banner_area.lp-store-intro .lp-store-intro__content .btnCeleste {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  justify-content: center;
  margin: 0 !important;
  white-space: nowrap;
}

.lp-store-ui .lp-product-section {
  padding: 36px 0 56px;
}

.lp-store-ui .lp-product-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 12px;
  width: 100%;
}

.lp-store-ui .lp-product-grid--catalog {
  margin-top: 28px;
}

.lp-store-ui .lp-product-card {
  min-width: 0;
  height: 100%;
  border: 1px solid var(--lp-border);
  background: var(--lp-surface);
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.lp-store-ui .lp-product-card:hover {
  border-color: #cbd5d8;
  box-shadow: 0 8px 24px rgba(0, 56, 79, 0.1);
  transform: translateY(-2px);
}

.lp-store-ui .lp-product-card__link {
  display: flex;
  height: 100%;
  min-width: 0;
  flex-direction: column;
  color: var(--lp-text);
  text-decoration: none;
  -webkit-user-drag: none;
}

.lp-store-ui .lp-product-card__link:hover {
  color: var(--lp-text);
  text-decoration: none;
}

.lp-store-ui .lp-product-card__link:focus-visible {
  outline: 3px solid var(--lp-turquoise);
  outline-offset: 3px;
}

.lp-store-ui .lp-product-card__media {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--lp-image-surface);
  touch-action: pan-y;
  user-select: none;
  -webkit-user-select: none;
}

.lp-store-ui .lp-product-card__track {
  display: flex;
  width: 100%;
  height: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 320ms ease;
  will-change: transform;
}

.lp-store-ui .lp-product-card__slide {
  position: relative;
  display: flex;
  flex: 0 0 100%;
  width: 100%;
  height: 100%;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.lp-store-ui .lp-product-card__image {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: var(--lp-image-surface);
  color: transparent;
  user-select: none;
  -webkit-user-drag: none;
  -webkit-user-select: none;
}

.lp-store-ui .lp-product-card__slide.is-image-missing .lp-product-card__image {
  opacity: 0;
}

.lp-store-ui .lp-product-card__image-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  color: var(--lp-muted);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  line-height: 1.4;
  text-align: center;
}

.lp-store-ui .lp-product-card__size,
.lp-store-ui .lp-product-card__availability {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: "Oswald", Arial, sans-serif;
  line-height: 1;
}

.lp-store-ui .lp-product-card__size {
  top: 10px;
  left: 10px;
  width: 38px;
  height: 38px;
  padding: 4px;
  border-radius: 50%;
  background: var(--lp-navy);
  color: #fff;
  font-size: 13px;
  text-align: center;
}

.lp-store-ui .lp-product-card__availability {
  right: 8px;
  bottom: 27px;
  min-height: 28px;
  padding: 7px 10px;
  background: var(--lp-navy);
  color: #fff;
  font-size: 11px;
  letter-spacing: 0.02em;
}

.lp-store-ui .lp-product-card__availability--sold_out {
  background: #4d5659;
}

.lp-store-ui .lp-product-card__dots {
  position: absolute;
  z-index: 3;
  bottom: 10px;
  left: 50%;
  display: flex;
  gap: 5px;
  transform: translateX(-50%);
}

.lp-store-ui .lp-product-card__dot {
  display: block;
  width: 6px;
  height: 6px;
  border: 1px solid rgba(0, 56, 79, 0.6);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  transition: background-color 180ms ease, transform 180ms ease;
}

.lp-store-ui .lp-product-card__dot.is-active {
  background: var(--lp-navy);
  transform: scale(1.2);
}

.lp-store-ui .lp-product-card__content {
  display: flex;
  min-width: 0;
  flex: 1;
  flex-direction: column;
  justify-content: space-between;
  gap: 10px;
  padding: 12px;
}

.lp-store-ui .lp-product-card__name {
  display: -webkit-box;
  min-height: 34px;
  margin: 0;
  overflow: hidden;
  color: var(--lp-navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: uppercase;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.lp-store-ui .lp-product-card__prices {
  display: flex;
  min-width: 0;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 4px 8px;
}

.lp-store-ui .lp-product-card__price-old {
  color: var(--lp-muted);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.15;
  white-space: nowrap;
}

.lp-store-ui .lp-product-card__price-final {
  color: var(--lp-navy);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 17px;
  font-weight: 600;
  line-height: 1.15;
  white-space: nowrap;
}

.lp-store-ui .lp-product-card__offer-note {
  display: inline-flex;
  min-height: 22px;
  align-items: center;
  align-self: center;
  justify-content: center;
  padding: 4px 7px;
  margin-left: 2px;
  border-radius: 4px;
  background: #c62828;
  color: #ffffff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
}

.lp-store-ui .lp-product-load-more {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
}

.lp-store-ui .lp-product-load-more__button {
  min-width: 210px;
  min-height: 46px;
  padding: 11px 24px;
  border: 0;
  background: var(--lp-turquoise);
  color: #fff;
  cursor: pointer;
  font-family: "Oswald", Arial, sans-serif;
  font-size: 15px;
  text-transform: uppercase;
  transition: background-color 180ms ease, opacity 180ms ease;
}

.lp-store-ui .lp-product-load-more__button:hover,
.lp-store-ui .lp-product-load-more__button:focus-visible {
  background: var(--lp-navy);
}

.lp-store-ui .lp-product-load-more__button:focus-visible {
  outline: 3px solid var(--lp-yellow);
  outline-offset: 3px;
}

.lp-store-ui .lp-product-load-more__button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.lp-store-ui .lp-product-load-more__status {
  min-height: 20px;
  margin: 0;
  color: var(--lp-muted);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 13px;
  text-align: center;
}

.lp-store-ui .lp-visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

@media (min-width: 768px) {
  .lp-store-ui .lp-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 22px 18px;
  }

  .lp-store-ui .lp-product-card__content {
    padding: 15px;
  }

  .lp-store-ui .lp-product-card__name {
    min-height: 39px;
    font-size: 14px;
  }

  .lp-store-ui .lp-product-card__price-old {
    font-size: 19px;
  }

  .lp-store-ui .lp-product-card__price-final {
    font-size: 19px;
  }
}

@media (min-width: 992px) {
  .lp-store-ui .lp-product-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 28px 22px;
  }

  .lp-store-ui .lp-product-card__name {
    font-size: 15px;
  }

  .lp-store-ui .lp-product-card__price-old {
    font-size: 20px;
  }

  .lp-store-ui .lp-product-card__price-final {
    font-size: 20px;
  }
}

@media (max-width: 1199.98px) {
  body.lp-store-ui .header_area,
  body.lp-store-ui .header_area.navbar_fixed,
  body.lp-store-ui .header_area.navbar_fixed .main_menu,
  body.lp-store-ui .header_container {
    position: static !important;
    top: auto !important;
    right: auto !important;
    bottom: auto !important;
    left: auto !important;
    width: 100% !important;
    transform: none !important;
  }

  body.lp-store-ui .header_area + #menuMobile {
    margin-top: 0 !important;
  }

  body.lp-store-ui .header_container > .container {
    width: 100%;
    max-width: none !important;
  }

  body.lp-store-ui .lp-header-row {
    display: flex;
    width: 100%;
    flex-wrap: nowrap;
    align-items: center;
    margin-right: 0;
    margin-left: 0;
  }

  body.lp-store-ui .lp-header-brand {
    width: auto !important;
    min-width: 0;
    max-width: none !important;
    flex: 1 1 auto !important;
    padding-right: 0;
    padding-left: 0;
  }

  body.lp-store-ui .lp-header-brand .header_content {
    width: 100%;
  }

  body.lp-store-ui .lp-header-brand .logo_container {
    min-width: 0;
    flex: 0 1 auto;
  }

  body.lp-store-ui .lp-header-desktop {
    display: none !important;
  }

  body.lp-store-ui .lp-header-actions,
  body.lp-store-ui .lp-header-toggle {
    width: auto !important;
    min-width: 0;
    max-width: none !important;
    flex: 0 0 auto !important;
    padding: 0 !important;
  }

  body.lp-store-ui .lp-header-actions {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
    flex-wrap: nowrap;
  }

  body.lp-store-ui .lp-header-actions > a {
    position: relative;
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 0 !important;
    margin: 0 !important;
    line-height: 1 !important;
  }

  body.lp-store-ui .lp-header-actions > a i {
    display: inline-flex;
    width: auto !important;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  body.lp-store-ui .lp-header-actions .cart-count {
    position: absolute;
    top: -5px;
    right: -5px;
    display: inline-flex;
    min-width: 16px;
    height: 16px;
    align-items: center;
    justify-content: center;
    padding: 0 3px;
    border-radius: 8px;
    background: #ffffff;
    color: var(--lp-navy) !important;
    font-size: 9px;
    font-weight: 700;
    line-height: 16px;
  }

  body.lp-store-ui .lp-header-toggle {
    display: flex !important;
    align-items: center;
    justify-content: flex-end;
  }

  body.lp-store-ui .lp-header-menu-toggle {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
    padding: 0 !important;
    margin: 0 !important;
  }

  body.lp-store-ui #submenuSection {
    position: static !important;
    top: auto !important;
    margin-top: 0 !important;
    transform: none !important;
  }

  body.lp-store-ui .header_search_container .container,
  body.lp-store-ui .header_search_container .row,
  body.lp-store-ui .header_search_container .col,
  body.lp-store-ui .header_search_container form {
    width: 100%;
  }

  body.lp-store-ui .header_search_container .search_input {
    width: calc(100% - 48px) !important;
    margin-right: 8px !important;
  }
}

@media (min-width: 600px) and (max-width: 1199.98px) {
  body.lp-store-ui .header_container > .container {
    padding-right: 16px;
    padding-left: 16px;
  }

  body.lp-store-ui .lp-header-row {
    column-gap: 10px;
  }

  body.lp-store-ui .lp-header-brand .header_content,
  body.lp-store-ui .header.scrolled .lp-header-brand .header_content {
    height: 72px !important;
    min-height: 72px;
  }

  body.lp-store-ui .lp-header-brand .logo {
    width: auto !important;
  }

  body.lp-store-ui .lp-header-brand .logo img {
    width: 140px !important;
    max-width: 140px !important;
    height: auto !important;
  }

  body.lp-store-ui .lp-header-actions {
    gap: 8px;
  }

  body.lp-store-ui .lp-header-actions > a {
    width: 36px !important;
    height: 36px !important;
    flex-basis: 36px;
    border-radius: 50%;
  }

  body.lp-store-ui .lp-header-toggle,
  body.lp-store-ui .lp-header-menu-toggle {
    width: 36px !important;
    height: 36px !important;
  }

  body.lp-store-ui .lp-header-menu-toggle i {
    font-size: 21px;
  }

  body.lp-store-ui .header_search_container.active,
  body.lp-store-ui .header_search_container .header_search_content {
    height: 72px;
    max-height: 72px;
  }
}

@media (max-width: 599.98px) {
  body.lp-store-ui .header_container > .container {
    padding-right: 8px;
    padding-left: 8px;
  }

  body.lp-store-ui .lp-header-row {
    column-gap: 6px;
  }

  body.lp-store-ui .lp-header-brand .header_content,
  body.lp-store-ui .header.scrolled .lp-header-brand .header_content {
    height: 64px !important;
    min-height: 64px;
  }

  body.lp-store-ui .lp-header-brand .logo {
    width: auto !important;
  }

  body.lp-store-ui .lp-header-brand .logo img {
    width: clamp(88px, 29vw, 108px) !important;
    max-width: 108px !important;
    height: auto !important;
  }

  body.lp-store-ui .lp-header-actions {
    gap: 5px;
  }

  body.lp-store-ui .lp-header-actions > a {
    width: 32px !important;
    height: 32px !important;
    flex-basis: 32px;
    border-radius: 50%;
  }

  body.lp-store-ui .lp-header-actions > a i {
    font-size: 14px;
  }

  body.lp-store-ui .lp-header-toggle,
  body.lp-store-ui .lp-header-menu-toggle {
    width: 32px !important;
    height: 32px !important;
  }

  body.lp-store-ui .lp-header-menu-toggle i {
    font-size: 20px;
  }

  body.lp-store-ui #submenuSection {
    min-height: 54px;
  }

  body.lp-store-ui #submenuSection .navbar {
    min-height: 54px;
    padding-top: 5px;
    padding-bottom: 5px;
  }

  body.lp-store-ui #submenuSection .navbar-brand {
    margin-bottom: 0;
    font-size: 18px;
  }

  body.lp-store-ui #submenuSection .navbar-toggler {
    min-width: 44px;
    min-height: 44px;
  }

  body.lp-store-ui .header_search_container.active,
  body.lp-store-ui .header_search_container .header_search_content {
    height: 64px;
    max-height: 64px;
  }
}

@media (min-width: 1200px) {
  body.lp-store-ui .lp-header-desktop {
    display: block !important;
  }

  body.lp-store-ui .lp-header-actions,
  body.lp-store-ui .lp-header-toggle {
    display: none !important;
  }

  body.lp-store-ui .lp-header-desktop .main_nav,
  body.lp-store-ui .lp-header-desktop .main_nav > li,
  body.lp-store-ui .lp-header-desktop .main_nav > li > a {
    white-space: nowrap;
  }
}

@media (max-width: 1199.98px) {
  body.lp-store-ui .home_banner_area.lp-store-intro,
  body.lp-store-ui .home_banner_area.lp-store-intro .banner_inner {
    height: 220px;
    min-height: 220px;
  }

  body.lp-store-ui .home_banner_area.lp-store-intro {
    margin-bottom: 24px;
  }
}

@media (max-width: 767.98px) {
  .lp-store-ui .lp-product-card__prices:has(.lp-product-card__offer-note) {
    position: relative;
    padding-top: 30px;
  }

  .lp-store-ui .lp-product-card__prices:has(.lp-product-card__offer-note) .lp-product-card__offer-note {
    position: absolute;
    top: 0;
    left: 0;
    margin-left: 0;
  }

  .lp-store-ui .home_banner_area.lp-store-intro .banner_content h3 {
    font-size: 27px;
    line-height: 1.15;
  }

  .lp-store-ui .lp-collection-tile {
    height: 220px !important;
    min-height: 220px !important;
    width: auto;
    margin-right: 0;
    margin-bottom: 14px;
    margin-left: 0;
    background-position: center;
  }

  .lp-store-ui .lp-collection-tile .SetMarginTop_01 {
    display: flex;
    height: 100%;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 18px;
    margin-top: 0 !important;
  }

  .lp-store-ui .lp-collection-tile h1 {
    margin-bottom: 10px;
    font-size: 34px;
    line-height: 1.08;
  }

  .lp-store-ui .lp-collection-tile a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 18px;
  }

  .lp-store-ui .feature-area.lp-store-collections {
    padding-bottom: 24px;
  }

  .lp-store-ui .lp-whatsapp-float {
    right: calc(12px + env(safe-area-inset-right, 0px));
    bottom: calc(16px + env(safe-area-inset-bottom, 0px));
    width: 48px;
    height: 48px;
    font-size: 26px;
    line-height: 48px;
    z-index: 90;
  }

  .lp-store-ui .lp-whatsapp-float .my-float {
    margin-top: 9px;
  }
}

@media (max-width: 359.98px) {
  .lp-store-ui .lp-product-grid {
    gap: 12px 8px;
  }

  .lp-store-ui .lp-product-card__prices:has(.lp-product-card__offer-note) {
    padding-top: 28px;
  }

  .lp-store-ui .lp-product-card__content {
    padding: 10px 8px;
  }

  .lp-store-ui .lp-product-card__name {
    font-size: 12px;
  }

  .lp-store-ui .lp-product-card__price-old {
    font-size: 15px;
  }

  .lp-store-ui .lp-product-card__price-final {
    font-size: 15px;
  }

  .lp-store-ui .lp-product-card__size {
    top: 8px;
    left: 8px;
    width: 34px;
    height: 34px;
    font-size: 12px;
  }

  .lp-store-ui .lp-product-card__offer-note {
    min-height: 20px;
    padding: 3px 6px;
    font-size: 10px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .lp-store-ui .lp-product-card,
  .lp-store-ui .lp-product-card__track,
  .lp-store-ui .lp-product-card__dot,
  .lp-store-ui .header_search_container,
  .lp-store-ui .lp-product-load-more__button {
    transition: none !important;
  }

  .lp-store-ui .lp-product-card:hover {
    transform: none;
  }
}
