@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700&display=swap');

/*
 * Base brand tokens for the pesaschile child theme.
 */
:root {
  --pesaschile-color-raspberry: #e62158;
  --pesaschile-color-gunmetal: #1d2b35;
  --pesaschile-color-anti-flash-white: #ecf0f1;
  --pesaschile-color-ash-grey: #a5bab7;
  --pesaschile-color-surface: #ffffff;
  --pesaschile-color-border: rgba(29, 43, 53, 0.12);
  --pesaschile-color-text: var(--pesaschile-color-gunmetal);
  --pesaschile-color-muted: rgba(29, 43, 53, 0.72);
  --pesaschile-shadow-soft: 0 10px 30px rgba(29, 43, 53, 0.06);
  --pesaschile-shadow-header: 0 14px 36px rgba(29, 43, 53, 0.08);
  --pesaschile-container-max-lg: 1824px;
  --pesaschile-radius-sm: 4.5px;
  --pesaschile-space-2xs: 0.25rem;
  --pesaschile-space-xs: 0.5rem;
  --pesaschile-space-sm: 0.75rem;
  --pesaschile-space-md: 1rem;
  --pesaschile-space-lg: 1.5rem;
  --pesaschile-color-badge-lime: #c4d600; /* etiquetas Nuevo/Outlet */
}

html,
body,
button,
input,
select,
textarea {
  font-family: 'Poppins', sans-serif;
}

body {
  color: var(--pesaschile-color-text);
  background: var(--pesaschile-color-surface);
}
a {
  color: var(--pesaschile-color-raspberry);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover,
a:focus {
  color: #C91D4D;
  text-decoration: underline;
}

body#checkout .pesas-checkout__steps a,
body#checkout .js-payment-confirmation a,
body#checkout .js-conditions-to-approve a,
body#checkout .cart-summary a,
body#checkout .step-title .step-edit {
  color: var(--pesaschile-color-raspberry);
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

body#checkout .pesas-checkout__steps a:hover,
body#checkout .pesas-checkout__steps a:focus,
body#checkout .js-payment-confirmation a:hover,
body#checkout .js-payment-confirmation a:focus,
body#checkout .js-conditions-to-approve a:hover,
body#checkout .js-conditions-to-approve a:focus,
body#checkout .cart-summary a:hover,
body#checkout .cart-summary a:focus,
body#checkout .step-title .step-edit:hover,
body#checkout .step-title .step-edit:focus {
  color: #C91D4D;
  text-decoration: underline;
}

.btn-primary {
  background: #E62158;
  border-color: #E62158;
  color: #fff;
  border-radius: var(--pesaschile-radius-sm);
}

body .btn.btn-primary:hover,
body .btn.btn-primary:focus,
body .btn.btn-primary:focus-visible {
  background: #C91D4D;
  border-color: #C91D4D;
  color: var(--pesaschile-color-anti-flash-white);
}

body .btn.btn-primary:active,
body .btn.btn-primary.active {
  background: #C91D4D;
  border-color: #C91D4D;
  box-shadow: none;
}

.btn-primary:disabled,
.btn-primary.disabled {
  background: #E5E7EB;
  border-color: #E5E7EB;
  color: #9CA3AF;
  cursor: not-allowed;
}
/*
 * Header: top bar, main header and primary navigation.
 */
#header .pesas-header {
  position: relative;
  background: var(--pesaschile-color-surface);
  border-bottom: 1px solid var(--pesaschile-color-border);
  box-shadow: var(--pesaschile-shadow-header);
}

/*
 * Header isolation: neutralize inherited Classic link/icon colors.
 */
#header .pesas-header a,
#header .pesas-header a:visited,
#header .pesas-header button,
#header .pesas-header .material-icons,
#header .pesas-header svg {
  color: inherit;
}

#header .pesas-header svg {
  fill: currentColor;
}

/*
 * Top bar
 */
#header .pesas-topbar {
  background: var(--pesaschile-color-gunmetal);
  color: var(--pesaschile-color-anti-flash-white);
  font-size: 0.78125rem;
  border-bottom: 1px solid rgba(236, 240, 241, 0.08);
}

#header .pesas-topbar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--pesaschile-space-lg);
  min-height: 2.15rem;
}

#header .pesas-topbar__message {
  margin: 0;
  font-weight: 500;
  letter-spacing: 0.02em;
}

#header .pesas-topbar__right,
#header .pesas-topbar__links,
#header .pesas-topbar__hook {
  display: flex;
  align-items: center;
}

#header .pesas-topbar__right {
  gap: var(--pesaschile-space-lg);
  margin-left: auto;
}

#header .pesas-topbar__links {
  gap: 0.95rem;
}

#header .pesas-topbar__links a + a {
  position: relative;
}

#header .pesas-topbar__links a + a::before {
  content: "";
  position: absolute;
  left: -0.55rem;
  top: 50%;
  width: 1px;
  height: 0.75rem;
  background: rgba(236, 240, 241, 0.18);
  transform: translateY(-50%);
}

#header .pesas-topbar a,
#header .pesas-topbar a:visited,
#header .pesas-topbar .dropdown {
  color: var(--pesaschile-color-anti-flash-white);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

#header .pesas-topbar a:hover,
#header .pesas-topbar a:focus,
#header .pesas-topbar a:hover .material-icons,
#header .pesas-topbar a:focus .material-icons {
  color: var(--pesaschile-color-raspberry);
  text-decoration: none;
}

/*
 * Main header
 */
#header .pesas-main-header {
  position: relative;
  background: var(--pesaschile-color-surface);
  color: var(--pesaschile-color-gunmetal);
}

#header .pesas-main-header__inner {
  display: grid;
  grid-template-columns: minmax(auto, 15.4375rem) minmax(18rem, 1fr) auto;
  align-items: center;
  gap: 0.9rem 1.15rem;
  min-height: 5rem;
  padding: 0.55rem 0 0.55rem;
}

#header .pesas-main-header__brand {
  min-width: 0;
}

#header .pesas-main-header__brand-link {
  display: inline-flex;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

#header .pesas-main-header__brand-link:hover,
#header .pesas-main-header__brand-link:focus {
  color: inherit;
  text-decoration: none;
}

#header .pesas-main-header__brand-link:focus-visible {
  outline: 2px solid var(--pesaschile-color-raspberry);
  outline-offset: 3px;
  border-radius: var(--pesaschile-radius-sm);
}

#header .pesas-main-header__brand-picture {
  display: block;
  line-height: 0;
}

#header .pesas-main-header__brand-image {
  display: block;
  width: clamp(13.0625rem, 16vw, 15.4375rem);
  max-width: 100%;
  height: auto;
  max-height: 3rem;
}

#header .pesas-main-header__search {
  min-width: 0;
}

#header .pesas-main-header__display-top {
  width: 100%;
  min-width: 0;
}

#header .pesas-main-header__search #search_widget {
  width: 100%;
  max-width: none;
}

#header .pesas-main-header__search #search_widget form {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 0;
  padding: 0.2rem;
  border: 1px solid var(--pesaschile-color-border);
  border-radius: var(--pesaschile-radius-sm);
  background: var(--pesaschile-color-surface);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

#header .pesas-main-header__search #search_widget form:hover {
  border-color: rgba(29, 43, 53, 0.18);
}

#header .pesas-main-header__search #search_widget form:focus-within {
  border-color: rgba(230, 33, 88, 0.45);
  box-shadow: 0 0 0 1px rgba(230, 33, 88, 0.08);
}

#header .pesas-main-header__search #search_widget input[type="text"] {
  width: 100%;
  height: 2.75rem;
  padding: 0 3.85rem 0 1.1rem;
  border: 0;
  border-radius: var(--pesaschile-radius-sm);
  background: transparent;
  color: var(--pesaschile-color-text);
  font-size: 0.95rem;
  font-weight: 500;
}

#header .pesas-main-header__search #search_widget input[type="text"]:focus {
  outline: 0;
  box-shadow: none;
}

#header .pesas-main-header__search #search_widget input[type="text"]::placeholder {
  color: rgba(29, 43, 53, 0.46);
}

#header .pesas-main-header__search #search_widget .search,
#header .pesas-main-header__search #search_widget .clear {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  transition: color 0.2s ease, opacity 0.2s ease, background-color 0.2s ease;
}

#header .pesas-main-header__search #search_widget .search {
  right: 0.24rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.2rem;
  height: 2.2rem;
  padding: 0;
  border: 0;
  border-radius: var(--pesaschile-radius-sm);
  background: var(--pesaschile-color-raspberry);
  color: var(--pesaschile-color-anti-flash-white);
  font-size: 0;
  line-height: 1;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}

#header .pesas-main-header__search #search_widget .clear {
  right: 3rem;
  color: rgba(29, 43, 53, 0.42);
}

#header .pesas-main-header__search #search_widget .search .material-icons {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  color: inherit;
  font-size: 1.15rem;
  line-height: 1;
  text-align: center;
}

#header .pesas-main-header__search #search_widget .search:focus,
#header .pesas-main-header__search #search_widget .search:focus-visible {
  outline: 0;
}

#header .pesas-main-header__search #search_widget .search:focus-visible {
  outline: 2px solid rgba(230, 33, 88, 0.28);
  outline-offset: 2px;
}

#header .pesas-main-header__search #search_widget form:hover .search,
#header .pesas-main-header__search #search_widget form:focus-within .search {
  background: #c91d4d;
}

/*
 * Header actions
 */
#header .pesas-main-header__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.5rem;
  min-width: 0;
}

#header .pesas-main-header__actions > * {
  display: flex;
  align-items: center;
}

#header .pesas-main-header__actions #_desktop_user_info {
  order: 1;
}

#header .pesas-main-header__actions .pesas-header-action--wishlist {
  order: 2;
}

#header .pesas-main-header__actions #_desktop_cart {
  order: 3;
}

#header .pesas-main-header__actions .user-info,
#header .pesas-main-header__actions #_desktop_cart .header,
#header .pesas-header-action {
  display: inline-flex;
  align-items: center;
  gap: var(--pesaschile-space-xs);
  min-height: 2.6rem;
  padding: 0 0.85rem;
  border: 1px solid var(--pesaschile-color-border);
  border-radius: var(--pesaschile-radius-sm);
  background: rgba(236, 240, 241, 0.58);
  color: var(--pesaschile-color-gunmetal);
  font-size: 0.875rem;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
}

#header .pesas-main-header__actions #_desktop_user_info .user-info {
  gap: 0.35rem;
  min-height: 0;
  padding: 0;
  border-color: transparent;
  background: transparent;
  box-shadow: none;
}

#header .pesas-main-header__actions .user-info > a,
#header .pesas-main-header__actions .user-info > a:visited,
#header .pesas-header-action,
#header .pesas-header-action:visited {
  color: var(--pesaschile-color-gunmetal);
  text-decoration: none;
}

#header .pesas-main-header__actions .user-info > a:hover,
#header .pesas-main-header__actions .user-info > a:focus,
#header .pesas-main-header__actions .user-info > a:focus-visible,
#header .pesas-main-header__actions .user-info > a:hover .material-icons,
#header .pesas-main-header__actions .user-info > a:focus .material-icons,
#header .pesas-main-header__actions .user-info > a:focus-visible .material-icons,
#header .pesas-header-action:hover,
#header .pesas-header-action:focus,
#header .pesas-header-action:focus-visible,
#header .pesas-header-action:hover .material-icons,
#header .pesas-header-action:focus .material-icons,
#header .pesas-header-action:focus-visible .material-icons {
  color: var(--pesaschile-color-raspberry);
  border-color: rgba(230, 33, 88, 0.3);
  box-shadow: none;
  text-decoration: none;
}

#header .pesas-main-header__actions .user-info > a:focus-visible,
#header .pesas-header-action:focus-visible {
  outline: 2px solid rgba(230, 33, 88, 0.22);
  outline-offset: 2px;
}

#header .pesas-main-header__actions #_desktop_user_info .user-info > a,
#header .pesas-main-header__actions #_desktop_user_info .user-info > a:visited {
  padding: 0 0.7rem;
  border-color: transparent;
  background: transparent;
  color: var(--pesaschile-color-gunmetal);
  box-shadow: none;
}

#header .pesas-main-header__actions #_desktop_user_info .user-info > a:hover,
#header .pesas-main-header__actions #_desktop_user_info .user-info > a:focus,
#header .pesas-main-header__actions #_desktop_user_info .user-info > a:focus-visible {
  border-color: transparent;
  background: rgba(29, 43, 53, 0.04);
  color: var(--pesaschile-color-raspberry);
  box-shadow: none;
}

#header .pesas-main-header__actions #_desktop_user_info .user-info > a:hover .material-icons,
#header .pesas-main-header__actions #_desktop_user_info .user-info > a:focus .material-icons,
#header .pesas-main-header__actions #_desktop_user_info .user-info > a:focus-visible .material-icons {
  color: var(--pesaschile-color-raspberry);
}

#header .pesas-main-header__actions #_desktop_user_info .user-info > a:focus-visible {
  outline: 2px solid rgba(230, 33, 88, 0.22);
  outline-offset: 2px;
}

#header .pesas-main-header__actions .pesas-header-action--wishlist,
#header .pesas-main-header__actions .pesas-header-action--wishlist:visited {
  padding: 0 0.75rem;
  border-color: transparent;
  background: transparent;
  color: var(--pesaschile-color-gunmetal);
  box-shadow: none;
}

#header .pesas-main-header__actions .pesas-header-action--wishlist:hover,
#header .pesas-main-header__actions .pesas-header-action--wishlist:focus,
#header .pesas-main-header__actions .pesas-header-action--wishlist:focus-visible {
  border-color: transparent;
  background: rgba(29, 43, 53, 0.04);
  color: var(--pesaschile-color-raspberry);
  box-shadow: none;
}

#header .pesas-main-header__actions .pesas-header-action--wishlist:hover .material-icons,
#header .pesas-main-header__actions .pesas-header-action--wishlist:focus .material-icons,
#header .pesas-main-header__actions .pesas-header-action--wishlist:focus-visible .material-icons {
  color: var(--pesaschile-color-raspberry);
}

#header .pesas-main-header__actions .pesas-header-action--wishlist:focus-visible {
  outline: 2px solid rgba(230, 33, 88, 0.22);
  outline-offset: 2px;
}

#header .pesas-main-header__actions #_desktop_cart .blockcart,
#header .pesas-main-header__actions #_desktop_cart .cart-preview,
#header .pesas-main-header__actions #_desktop_cart .cart-preview.active,
#header .pesas-main-header__actions #_desktop_cart .cart-preview.inactive {
  height: auto;
  margin: 0;
  padding: 0;
  background: transparent;
  box-shadow: none;
}

#header .pesas-main-header__actions #_desktop_cart .header,
#header .pesas-main-header__actions #_desktop_cart .header.active,
#header .pesas-main-header__actions #_desktop_cart .header.inactive {
  background: var(--pesaschile-color-raspberry);
  border-color: var(--pesaschile-color-raspberry);
  color: var(--pesaschile-color-anti-flash-white);
}

#header .pesas-main-header__actions #_desktop_cart .header > a {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  min-height: 0;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 0;
  border-radius: 0;
  color: inherit;
  line-height: 1;
  text-decoration: none;
}

#header .pesas-main-header__actions #_desktop_cart .header > a:hover,
#header .pesas-main-header__actions #_desktop_cart .header > a:focus,
#header .pesas-main-header__actions #_desktop_cart .header > a:focus-visible {
  color: inherit;
  background: transparent;
  text-decoration: none;
}

#header .pesas-main-header__actions #_desktop_cart .header:focus-within {
  border-color: var(--pesaschile-color-raspberry);
}

#header .pesas-main-header__actions #_desktop_cart .header:hover,
#header .pesas-main-header__actions #_desktop_cart .header:focus-within {
  background: #c91d4d;
  border-color: #c91d4d;
}

#header .pesas-main-header__actions #_desktop_cart .header .hidden-sm-down {
  display: none;
}

#header .pesas-main-header__actions #_desktop_cart .header:hover .material-icons,
#header .pesas-main-header__actions #_desktop_cart .header:focus-within .material-icons,
#header .pesas-main-header__actions #_desktop_cart .header:hover a,
#header .pesas-main-header__actions #_desktop_cart .header:focus-within a,
#header .pesas-main-header__actions #_desktop_cart .header:hover a .material-icons,
#header .pesas-main-header__actions #_desktop_cart .header:focus-within a .material-icons {
  color: var(--pesaschile-color-anti-flash-white);
}

#header .pesas-main-header__actions #_desktop_cart .header span,
#header .pesas-main-header__actions #_desktop_cart .header i,
#header .pesas-main-header__actions #_desktop_cart .header .cart-products-count,
#header .pesas-main-header__actions #_desktop_cart .header .ajax_cart_quantity {
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

#header .pesas-main-header__actions #_desktop_cart .shopping-cart,
#header .pesas-main-header__actions .user-info .material-icons,
#header .pesas-header-action .material-icons {
  font-size: 1.15rem;
  line-height: 1;
}

#header .pesas-main-header__actions #_desktop_cart .cart-products-count,
#header .pesas-main-header__actions #_desktop_cart .ajax_cart_quantity {
  padding: 0;
  margin: 0;
  color: currentColor;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.01em;
}

#header .pesas-main-header__actions #_desktop_cart .cart-products-count {
  min-width: 0;
}

/*
 * Main navigation shell
 */
#header .pesas-main-navigation {
  background: var(--pesaschile-color-surface);
  border-top: 1px solid var(--pesaschile-color-border);
}

#header .pesas-main-navigation .container {
  display: flex;
  align-items: center;
  min-height: 3.1rem;
  overflow: visible;
}

#header .pesas-menu-preview {
  width: 100%;
}

#header .pesas-menu-preview__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 3.1rem;
  padding: 0.1rem 0;
}

#header .pesas-menu-preview__navigation {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  min-width: 0;
  flex: 1 1 auto;
}

#header .pesas-menu-preview__categories {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  flex: 0 0 auto;
  color: var(--pesaschile-color-gunmetal);
  font-size: 0.95rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

#header .pesas-menu-preview__categories .material-icons {
  font-size: 1.05rem;
  color: var(--pesaschile-color-gunmetal);
}

#header .pesas-menu-preview__separator {
  width: 1px;
  height: 1rem;
  background: var(--pesaschile-color-border);
  flex: 0 0 auto;
}

#header .pesas-menu-preview__items,
#header .pesas-menu-preview__benefits {
  display: flex;
  align-items: center;
  min-width: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

#header .pesas-menu-preview__items {
  gap: 0.95rem;
  flex: 1 1 auto;
}

#header .pesas-menu-preview__item {
  color: var(--pesaschile-color-gunmetal);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

#header .pesas-menu-preview__item--highlight {
  color: var(--pesaschile-color-raspberry);
  font-weight: 700;
}

#header .pesas-menu-preview__benefits {
  flex: 0 0 auto;
  gap: 0.9rem;
  margin-left: auto;
  color: rgba(29, 43, 53, 0.78);
  font-size: 0.79rem;
  font-weight: 500;
  white-space: nowrap;
}

#header .pesas-menu-preview__benefit {
  display: inline-flex;
  align-items: center;
  gap: 0.32rem;
  white-space: nowrap;
}

#header .pesas-menu-preview__benefit .material-icons {
  font-size: 0.95rem;
  color: rgba(29, 43, 53, 0.62);
}

/*
 * Mobile header
 */
#header .pesas-main-header__mobile-menu {
  display: flex;
  align-items: center;
  min-width: 0;
}

#header .pesas-main-header__mobile-menu .pc-menu-mobile {
  display: inline-flex;
  align-items: center;
}

#header .pesas-main-header__mobile-menu .pc-menu-mobile__launcher {
  margin: 0;
}

#header .pesas-main-header__mobile-menu .pc-menu-mobile__launcher:focus-visible {
  outline: 2px solid rgba(230, 33, 88, 0.22);
  outline-offset: 2px;
}

#header .pesas-mobile-menu {
  background: rgba(29, 43, 53, 0.2);
  border-bottom: 0;
}

#header .menu-drawer,
#header .menu-drawer__close,
#header .menu-drawer__back,
#header .menu-link--forward {
  display: none;
}

@media (min-width: 992px) {
  #header .pesas-main-header__brand-image {
    width: clamp(13.0625rem, 16vw, 15.4375rem);
    height: auto;
    max-height: 3rem;
  }

  #header .pesas-main-header__search #search_widget .search {
    background: var(--pesaschile-color-raspberry);
  }

  #header .pesas-main-navigation {
    display: block;
  }
}

@media (max-width: 991.98px) {
  body.menu-drawer-open {
    overflow: hidden;
  }

  #header .pesas-main-header__inner {
    grid-template-columns: auto minmax(0, 1fr) auto;
    gap: 0.45rem 0.75rem;
    min-height: auto;
    padding-top: 0.75rem;
    padding-bottom: 0.55rem;
  }

  #header .pesas-main-header__mobile-menu {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  #header .pesas-main-header__brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    text-align: center;
  }

  #header .pesas-main-header__brand-link {
    justify-content: center;
  }

  #header .pesas-main-header__brand-image {
    width: auto;
    height: 2.9rem;
    max-height: none;
  }

  #header .pesas-main-header__actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    margin-left: auto;
    gap: 0.4rem;
  }

  #header .pesas-main-header__search {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  #header .pesas-main-header__search #search_widget input[type="text"] {
    height: 2.8rem;
    padding-right: 3.8rem;
  }

  #header .pesas-main-header__search #search_widget form {
    padding: 0.23rem;
  }

  #header .pesas-main-header__search #search_widget .search {
    width: 2.15rem;
    height: 2.15rem;
  }

  #header .pesas-main-header__mobile-menu .pc-menu-mobile__launcher {
    min-width: 2.5rem;
    min-height: 2.5rem;
    padding: 0.15rem;
    border: 0;
    border-radius: 0;
    background: transparent;
    color: var(--pesaschile-color-gunmetal);
    box-shadow: none;
  }

  #header .pesas-main-header__mobile-menu .pc-menu-mobile__launcher:hover,
  #header .pesas-main-header__mobile-menu .pc-menu-mobile__launcher:focus {
    color: var(--pesaschile-color-raspberry);
    border-color: transparent;
    background: transparent;
  }

  #header .pesas-main-navigation .container {
    min-height: 2.75rem;
  }

  #mobile_top_menu_wrapper {
    position: fixed;
    inset: 0;
    z-index: 1050;
    background: rgba(29, 43, 53, 0.24);
  }

  #mobile_top_menu_wrapper .container {
    width: 100%;
    max-width: none;
    height: 100%;
    padding: 0;
    margin: 0;
  }

  #mobile_top_menu_wrapper .js-top-menu.mobile {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background: var(--pesaschile-color-surface);
  }

  #mobile_top_menu_wrapper .js-top-menu-bottom {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1rem;
    align-items: center;
    padding: 1rem 1.25rem calc(1rem + env(safe-area-inset-bottom));
    background: var(--pesaschile-color-anti-flash-white);
    border-top: 1px solid var(--pesaschile-color-border);
  }

  #mobile_top_menu_wrapper .js-top-menu-bottom > div {
    flex: 1 1 100%;
  }

  #mobile_top_menu_wrapper .pesas-mainmenu-desktop {
    display: none;
  }

  #mobile_top_menu_wrapper .menu-drawer {
    display: flex;
    width: 100%;
    height: 100%;
    padding-bottom: 8.5rem;
  }

  #mobile_top_menu_wrapper .menu-drawer__stack {
    position: relative;
    flex: 1 1 auto;
    width: 100%;
    height: 100%;
    overflow: hidden;
  }

  #mobile_top_menu_wrapper .menu-drawer__panel {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    padding: 0 1.25rem;
    overflow-y: auto;
    visibility: hidden;
    background: var(--pesaschile-color-surface);
    opacity: 0;
    transform: translateX(6%);
    transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
    -webkit-overflow-scrolling: touch;
  }

  #mobile_top_menu_wrapper .menu-drawer__panel.is-active {
    z-index: 1;
    visibility: visible;
    opacity: 1;
    transform: translateX(0);
  }

  #mobile_top_menu_wrapper .menu-drawer__panel-header {
    position: sticky;
    top: 0;
    z-index: 2;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 0.75rem;
    align-items: center;
    min-height: 4.5rem;
    padding: 0.9rem 0;
    background: var(--pesaschile-color-surface);
    border-bottom: 1px solid var(--pesaschile-color-border);
  }

  #mobile_top_menu_wrapper .menu-drawer__eyebrow {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--pesaschile-color-raspberry);
  }

  #mobile_top_menu_wrapper .menu-drawer__title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--pesaschile-color-gunmetal);
  }

  #mobile_top_menu_wrapper .menu-drawer__back,
  #mobile_top_menu_wrapper .menu-drawer__close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 2.5rem;
    min-height: 2.5rem;
    padding: 0;
    color: var(--pesaschile-color-gunmetal);
    background: transparent;
    border: 0;
    border-radius: var(--pesaschile-radius-sm);
  }

  #mobile_top_menu_wrapper .menu-drawer__back {
    justify-content: flex-start;
    gap: 0.2rem;
    font-weight: 600;
  }

  #mobile_top_menu_wrapper .menu-drawer__back .material-icons,
  #mobile_top_menu_wrapper .menu-drawer__close .material-icons {
    font-size: 1.35rem;
  }

  #mobile_top_menu_wrapper .menu-drawer__all-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
    color: var(--pesaschile-color-raspberry);
    font-size: 0.95rem;
    font-weight: 700;
    text-decoration: none;
    border-bottom: 1px solid var(--pesaschile-color-border);
  }

  #mobile_top_menu_wrapper .menu-drawer__all-link:hover,
  #mobile_top_menu_wrapper .menu-drawer__all-link:focus {
    color: var(--pesaschile-color-raspberry);
    text-decoration: none;
  }

  #mobile_top_menu_wrapper .menu-drawer__list {
    margin: 0;
    padding: 0 0 1.5rem;
    list-style: none;
  }

  #mobile_top_menu_wrapper .menu-item {
    border-bottom: 1px solid var(--pesaschile-color-border);
  }

  #mobile_top_menu_wrapper .menu-link,
  #mobile_top_menu_wrapper .menu-link:visited,
  #mobile_top_menu_wrapper .menu-link--forward {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    min-height: 3.5rem;
    padding: 1rem 0;
    color: var(--pesaschile-color-gunmetal);
    font-size: 1rem;
    font-weight: 600;
    text-align: left;
    text-decoration: none;
    background: transparent;
    border: 0;
  }

  #mobile_top_menu_wrapper .menu-link:hover,
  #mobile_top_menu_wrapper .menu-link:focus,
  #mobile_top_menu_wrapper .menu-link--forward:hover,
  #mobile_top_menu_wrapper .menu-link--forward:focus {
    color: var(--pesaschile-color-raspberry);
    text-decoration: none;
  }

  #mobile_top_menu_wrapper .menu-link__label {
    min-width: 0;
  }

  #mobile_top_menu_wrapper .menu-link--forward .material-icons {
    flex: 0 0 auto;
    margin-left: 0.75rem;
    font-size: 1.3rem;
  }

  #mobile_top_menu_wrapper .menu-drawer__back:focus-visible,
  #mobile_top_menu_wrapper .menu-drawer__close:focus-visible,
  #mobile_top_menu_wrapper .menu-link:focus-visible,
  #mobile_top_menu_wrapper .menu-link--forward:focus-visible,
  #header .pesas-mobile-tools__menu-toggle:focus-visible {
    outline: 2px solid var(--pesaschile-color-raspberry);
    outline-offset: 2px;
  }
}

/*
 * Homepage hero: full-bleed media with captions aligned to the site container.
 */
.pesaschile-hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}

.pesaschile-hero .carousel,
.pesaschile-hero .carousel-inner,
.pesaschile-hero .carousel-item,
.pesaschile-hero .carousel-item figure {
  position: relative;
}

.pesaschile-hero .carousel-item figure {
  margin: 0;
}

.pesaschile-hero img {
  width: 100%;
  height: auto;
  display: block;
}

.pesaschile-hero .caption {
  position: absolute;
  inset: 0;
  display: block;
  margin: 0;
  padding: 0;
  max-width: none;
  background: rgba(29, 43, 53, 0.28);
}

.pesaschile-hero-inner {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  display: flex;
  align-items: center;
}

.pesaschile-hero-content {
  max-width: 36rem;
}

.pesaschile-hero .caption-description {
  color: var(--pesaschile-color-anti-flash-white);
}

@media (min-width: 1200px) {
  .pesaschile-hero {
    width: 100vw;
    max-width: none;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
  }
}

/*
 * Expand the default Classic layout only on large desktop screens.
 */
@media (min-width: 1200px) {
.container {
    max-width: var(--pesaschile-container-max-lg);
    width: 90%;
  }
}

/*
 * Billing form block injected by pc-pesas-core-module.
 */
.pc-billing-card {
  margin-top: 1.5rem;
}

.page-address #content,
.page-addresses #content {
  background: transparent;
}

/*
 * Address form layout: centered content and denser grid.
 */
.page-address .pc-address-form,
.page-addresses .pc-address-form {
  max-width: 820px;
  margin: 2rem auto 3rem;
  padding: 0 0.5rem;
}

.pc-address-form__layout {
  display: grid;
  gap: 1rem;
}

.pc-address-form__card,
.pc-address-form__billing {
  width: 100%;
}

.pc-address-form__card {
  overflow: hidden;
  border: 1px solid var(--pesaschile-color-border);
  border-radius: var(--pesaschile-radius-sm);
  background: var(--pesaschile-color-surface);
  box-shadow: var(--pesaschile-shadow-soft);
}

.pc-address-form__card-header {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 1rem 1.25rem;
  border-bottom: 1px solid rgba(29, 43, 53, 0.08);
}

.pc-address-form__card-header .material-icons {
  color: var(--pesaschile-color-raspberry);
  font-size: 1.2rem;
}

.pc-address-form__card-title {
  color: var(--pesaschile-color-gunmetal);
  font-weight: 700;
}

.pc-address-form__fields {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.95rem 1rem;
  padding: 1.25rem;
}

.pc-address-form__field--full {
  grid-column: 1 / -1;
}

.pc-address-form__field .form-group.row {
  display: block;
  margin: 0;
}

.pc-address-form__field .col-md-3,
.pc-address-form__field .col-md-6,
.pc-address-form__field .col-md-3.form-control-comment {
  max-width: 100%;
  flex: 0 0 100%;
  width: 100%;
  padding-left: 0;
  padding-right: 0;
}

.pc-address-form__field .form-control-label {
  display: block;
  padding: 0 0 0.4rem;
  float: none !important;
  text-align: left !important;
  color: var(--pesaschile-color-gunmetal);
  font-weight: 600;
}

.pc-address-form__field .js-input-column {
  max-width: 100%;
  flex: 0 0 100%;
  width: 100%;
}

.pc-address-form__field .form-control {
  border-color: rgba(29, 43, 53, 0.14);
  border-radius: var(--pesaschile-radius-sm);
  min-height: 2.85rem;
}

.pc-address-form__field .form-control:focus {
  border-color: rgba(230, 33, 88, 0.5);
  box-shadow: 0 0 0 0.18rem rgba(230, 33, 88, 0.08);
}

.pc-address-form__field .form-control-comment {
  margin-top: 0.35rem;
  color: var(--pesaschile-color-muted);
  font-size: 0.85rem;
}

.pc-address-form__billing .pc-billing-card {
  margin-top: 0;
}

.pc-address-form__footer {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-top: 0.5rem;
}

.pc-address-form__footer .btn.btn-primary {
  min-width: 180px;
  padding: 0.85rem 1.1rem;
  border: 0;
  border-radius: var(--pesaschile-radius-sm);
  background: var(--pesaschile-color-raspberry);
  color: var(--pesaschile-color-anti-flash-white);
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  box-shadow: 0 12px 24px rgba(230, 33, 88, 0.18);
}

.pc-address-form__footer .btn.btn-primary:hover,
.pc-address-form__footer .btn.btn-primary:focus {
  background: #d81d51;
}

/*
 * Shipping carrier selector.
 */
body#checkout .delivery-options-list {
  width: 100%;
}

body#checkout .delivery-options-list .delivery-options {
  display: grid;
  gap: 1rem;
  justify-items: center;
}

body#checkout section.checkout-step .delivery-options-list .delivery-options > .delivery-option.js-delivery-option {
  display: block;
  width: min(100%, 58rem);
  max-width: 58rem;
  min-height: 0;
  margin-bottom: 0;
  padding: 0;
  border: 1px solid rgba(29, 43, 53, 0.12);
  border-radius: var(--pesaschile-radius-sm);
  background: transparent;
  box-shadow: none;
  transition: border-color 0.18s ease, transform 0.18s ease;
}

body#checkout section.checkout-step .delivery-options-list .delivery-options > .delivery-option.js-delivery-option:hover {
  transform: translateY(-1px);
}

body#checkout section.checkout-step .delivery-options-list .delivery-options > .delivery-option.js-delivery-option:has(input:checked) {
  border-color: rgba(230, 33, 88, 0.22);
}

body#checkout section.checkout-step .delivery-options-list .delivery-options > .delivery-option.js-delivery-option > .clearfix {
  display: none;
}

body#checkout section.checkout-step .delivery-options-list .delivery-options > .delivery-option.js-delivery-option > .col-sm-1 {
  display: none;
}

body#checkout section.checkout-step .delivery-options-list .delivery-options > .delivery-option.js-delivery-option .pesas-shipping-option {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 1rem;
  width: 100%;
  min-height: 5.25rem;
  padding: 1rem 1.2rem;
  color: inherit;
  cursor: pointer;
}

body#checkout section.checkout-step .delivery-options-list .delivery-options > .delivery-option.js-delivery-option .pesas-shipping-option__radio {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 1.45rem;
}

body#checkout section.checkout-step .delivery-options-list .delivery-options > .delivery-option.js-delivery-option .pesas-shipping-option__radio .custom-radio {
  margin: 0;
}

body#checkout section.checkout-step .delivery-options-list .delivery-options > .delivery-option.js-delivery-option .custom-radio input + span {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 1.45rem;
  height: 1.45rem;
  border: 1px solid rgba(29, 43, 53, 0.18);
  border-radius: 50%;
  background: var(--pesaschile-color-surface);
  box-shadow: inset 0 0 0 0.25rem var(--pesaschile-color-surface);
  transition: border-color 0.16s ease, box-shadow 0.16s ease, background-color 0.16s ease;
}

body#checkout section.checkout-step .delivery-options-list .delivery-options > .delivery-option.js-delivery-option .custom-radio input + span::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--pesaschile-color-raspberry);
  transform: scale(0);
  transition: transform 0.16s ease;
}

body#checkout section.checkout-step .delivery-options-list .delivery-options > .delivery-option.js-delivery-option .custom-radio input:checked + span {
  position: relative;
  top: 0;
  left: 0;
  border-color: var(--pesaschile-color-raspberry);
  box-shadow: inset 0 0 0 0.25rem var(--pesaschile-color-surface);
}

body#checkout section.checkout-step .delivery-options-list .delivery-options > .delivery-option.js-delivery-option .custom-radio input:checked + span::after {
  transform: scale(1);
}

body#checkout section.checkout-step .delivery-options-list .delivery-options > .delivery-option.js-delivery-option .custom-radio input:focus + span {
  outline: none;
  box-shadow: 0 0 0 0.2rem rgba(230, 33, 88, 0.16);
}

body#checkout section.checkout-step .delivery-options-list .delivery-options > .delivery-option.js-delivery-option .custom-radio input {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  cursor: pointer;
}

body#checkout section.checkout-step .delivery-options-list .delivery-options > .delivery-option.js-delivery-option .pesas-shipping-option__body {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  min-width: 0;
}

body#checkout section.checkout-step .delivery-options-list .delivery-options > .delivery-option.js-delivery-option .pesas-shipping-option__main {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

body#checkout section.checkout-step .delivery-options-list .delivery-options > .delivery-option.js-delivery-option .pesas-shipping-option__logo {
  flex: 0 0 auto;
}

body#checkout section.checkout-step .delivery-options-list .delivery-options > .delivery-option.js-delivery-option .pesas-shipping-option__logo img {
  display: block;
  max-height: 2.2rem;
  width: auto;
  object-fit: contain;
}

body#checkout section.checkout-step .delivery-options-list .delivery-options > .delivery-option.js-delivery-option .pesas-shipping-option__name {
  display: block;
  color: var(--pesaschile-color-gunmetal);
  font-size: 1.02rem;
  font-weight: 700;
  line-height: 1.2;
}

body#checkout section.checkout-step .delivery-options-list .delivery-options > .delivery-option.js-delivery-option .pesas-shipping-option__price {
  flex: 0 0 auto;
  margin-left: auto;
  color: var(--pesaschile-color-gunmetal);
  font-size: 1.08rem;
  font-weight: 700;
  text-align: right;
  white-space: nowrap;
}

body#checkout section.checkout-step .delivery-options-list .delivery-options > .delivery-option.js-delivery-option .carrier-extra-content {
  margin-top: -0.2rem;
  padding: 0 1.2rem 1rem 4.1rem;
}

body#checkout section.checkout-step .delivery-options-list .delivery-options > .delivery-option.js-delivery-option .carrier-extra-content p:last-child {
  margin-bottom: 0;
}

body#checkout .delivery-options-list .order-options {
  margin-top: 1rem;
}

body#checkout .delivery-options-list .order-options .custom-checkbox {
  margin-bottom: 0.75rem;
}

@media (max-width: 767.98px) {
  body#checkout section.checkout-step .delivery-options-list .delivery-options {
    justify-items: stretch;
  }

  body#checkout section.checkout-step .delivery-options-list .delivery-options > .delivery-option.js-delivery-option .pesas-shipping-option {
    gap: 0.75rem;
    min-height: auto;
    padding: 0.95rem 1rem;
  }

  body#checkout section.checkout-step .delivery-options-list .delivery-options > .delivery-option.js-delivery-option .carrier-extra-content {
    padding-left: 3.2rem;
  }

  #header .pesas-main-header__inner {
    grid-template-columns: minmax(0, 1fr) auto;
    padding-top: 0.8rem;
    padding-bottom: 0.55rem;
  }

  #header .pesas-main-header__brand {
    grid-column: 1;
    grid-row: 1;
  }

  #header .pesas-main-header__brand-image {
    width: auto;
    height: 2.9rem;
    max-height: none;
  }

  #header .pesas-main-header__actions {
    grid-column: 2;
    grid-row: 1;
    gap: 0.3rem;
  }

  #header .pesas-main-header__search {
    grid-column: 1 / -1;
    grid-row: 2;
    min-width: 0;
  }

  #header .pesas-main-header__actions .user-info > a,
  #header .pesas-main-header__actions #_desktop_cart .header,
  #header .pesas-header-action {
    min-height: 2.45rem;
    padding: 0 0.65rem;
  }

  #header .pesas-header-action__label {
    display: none;
  }

  #header .pesas-main-header__search #search_widget input[type="text"] {
    height: 2.7rem;
    padding-right: 3.55rem;
    font-size: 0.9rem;
  }

  #header .pesas-main-header__search #search_widget form {
    padding: 0.2rem;
  }

  #header .pesas-main-header__search #search_widget .search {
    right: 0.25rem;
    width: 2rem;
    height: 2rem;
  }

  #header .pesas-main-header__search #search_widget .clear {
    right: 2.85rem;
  }

  #header .pesas-main-navigation {
    display: none;
  }

  #header .pesas-main-header__inner {
    grid-template-columns: 1fr auto 1fr;
    gap: 0.35rem 0.5rem;
  }

  #header .pesas-main-header__mobile-menu {
    grid-column: 1;
    grid-row: 1;
    justify-self: start;
  }

  #header .pesas-main-header__brand {
    grid-column: 2;
    grid-row: 1;
    justify-self: center;
    text-align: center;
  }

  #header .pesas-main-header__brand-link {
    justify-content: center;
  }

  #header .pesas-main-header__brand-image {
    width: auto;
    height: 2.75rem;
    max-height: none;
  }

  #header .pesas-main-header__actions {
    grid-column: 3;
    grid-row: 1;
    justify-self: end;
    justify-content: flex-end;
    margin-left: 0;
    gap: 0.4rem;
  }

  #header .pesas-main-header__actions .pesas-header-action--wishlist {
    display: none;
  }

  #header .pesas-main-header__actions #_desktop_user_info {
    display: flex;
    align-items: center;
  }

  #header .pesas-main-header__actions #_desktop_user_info .user-info {
    align-items: center;
    justify-content: center;
  }

  #header .pesas-main-header__actions .user-info > a,
  #header .pesas-main-header__actions #_desktop_cart .header,
  #header .pesas-main-header__actions #_desktop_cart .header.active,
  #header .pesas-main-header__actions #_desktop_cart .header.inactive,
  #header .pesas-header-action {
    min-width: 2.9rem;
    min-height: 2.9rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    color: var(--pesaschile-color-gunmetal);
  }

  #header .pesas-main-header__actions #_desktop_user_info .user-info {
    align-items: center;
  }

  #header .pesas-main-header__actions #_desktop_user_info .user-info > a {
    justify-content: center;
    color: var(--pesaschile-color-gunmetal);
    line-height: 1;
  }

  #header .pesas-main-header__actions #_desktop_user_info .user-info > a .material-icons {
    display: block;
    font-size: 1.3rem;
    line-height: 1;
  }

  #header .pesas-main-header__actions #_desktop_cart .header > a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.25rem;
    min-height: 2.9rem;
    padding: 0;
    color: var(--pesaschile-color-gunmetal);
  }

  #header .pesas-main-header__actions #_desktop_cart .shopping-cart,
  #header .pesas-main-header__actions #_desktop_cart .header .material-icons,
  #header .pesas-main-header__actions .user-info .material-icons {
    font-size: 1.3rem;
    line-height: 1;
    color: currentColor;
  }

  #header .pesas-main-header__actions #_desktop_cart .cart-products-count,
  #header .pesas-main-header__actions #_desktop_cart .ajax_cart_quantity {
    color: currentColor;
    font-size: 0.9rem;
  }

  #header .pesas-main-header__actions #_desktop_cart .header:hover,
  #header .pesas-main-header__actions #_desktop_cart .header:focus-within {
    background: transparent;
    border-color: transparent;
  }

  .pesaschile-hero .caption {
    position: static;
    background: var(--pesaschile-color-gunmetal);
  }

  .pesaschile-hero-inner {
    position: static;
    min-height: auto;
    padding-top: var(--pesaschile-space-lg);
    padding-bottom: var(--pesaschile-space-lg);
  }

  .pesaschile-hero-content {
    max-width: none;
  }

  .pc-billing-card {
    margin-top: 1rem;
  }

  .page-address .pc-address-form,
  .page-addresses .pc-address-form {
    margin-top: 1.25rem;
    padding: 0;
  }

  .pc-address-form__fields {
    grid-template-columns: 1fr;
    padding: 1rem;
  }

  .pc-address-form__card-header {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .pc-address-form__footer .btn.btn-primary {
    width: 100%;
    min-width: 0;
  }
}

@media (max-width: 575.98px) {
  #header .pesas-main-header__actions .user-info > a,
  #header .pesas-main-header__actions #_desktop_cart .header,
  #header .pesas-main-header__actions #_desktop_cart .header.active,
  #header .pesas-main-header__actions #_desktop_cart .header.inactive,
  #header .pesas-header-action {
    min-height: 0;
    min-width: 2.55rem;
    padding: 0;
    align-items: center;
    justify-content: center;
  }

  #header .pesas-main-header__actions #_desktop_user_info {
    align-items: center;
  }

  #header .pesas-main-header__actions #_desktop_user_info .user-info,
  #header .pesas-main-header__actions #_desktop_user_info .user-info > a {
    min-height: 25px;
    align-items: center;
    justify-content: center;
    line-height: 1;
  }

  #header .pesas-main-header__actions #_desktop_cart .header > a {
    min-height: 0;
    align-items: center;
  }
}

@media (max-width: 1399.98px) {
  #header .pesas-menu-preview__benefits {
    gap: 0.75rem;
  }
}

@media (max-width: 1279.98px) {
  #header .pesas-menu-preview__benefit:last-child {
    display: none;
  }
}

@media (max-width: 1139.98px) {
  #header .pesas-menu-preview__benefit:nth-child(2) {
    display: none;
  }
}

@media (max-width: 1039.98px) {
  #header .pesas-menu-preview__benefit:first-child {
    display: none;
  }

  #header .pesas-menu-preview__items {
    gap: 0.85rem;
  }

  #header .pesas-menu-preview__item {
    font-size: 0.89rem;
  }
}
#wrapper {
  background: #F6FAFB;
}
/* Home: pegar el carrusel al menú */
body#index #wrapper {
  padding-top: 0;
}

/*
 * Checkout shell.
 */
.pesas-checkout {
  position: relative;
  padding: 1.25rem 0 3rem;
}

.pesas-checkout::before {
  content: none;
}

.pesas-checkout__shell {
  position: relative;
  z-index: 1;
  max-width: var(--pesaschile-container-max-lg);
  margin: 0 auto;
  padding: 0 1rem;
}

.pesas-checkout__hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 1rem 1.25rem;
  align-items: end;
  margin-bottom: 1.15rem;
  padding: 1.15rem 1.25rem;

}

.pesas-checkout__eyebrow {
  margin: 0 0 0.25rem;
  color: var(--pesaschile-color-raspberry);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.pesas-checkout__title {
  margin: 0;
  color: var(--pesaschile-color-gunmetal);
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.06;
}

.pesas-checkout__lead {
  max-width: 52rem;
  margin: 0.6rem 0 0;
  color: var(--pesaschile-color-muted);
  font-size: 0.98rem;
  line-height: 1.55;
}

.pesas-checkout__hero-card {
  display: grid;
  gap: 0.35rem;
  min-width: 16rem;
  padding: 0.95rem 1rem;
  border-radius: var(--pesaschile-radius-sm);
  background: rgba(230, 33, 88, 0.06);
  color: var(--pesaschile-color-gunmetal);
}

.pesas-checkout__hero-label {
  color: var(--pesaschile-color-raspberry);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pesas-checkout__hero-card strong {
  font-size: 0.92rem;
  font-weight: 600;
  line-height: 1.45;
}

.pesas-checkout__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.65fr) minmax(19rem, 0.95fr);
  gap: 1.25rem;
  align-items: start;
}

.pesas-checkout__steps {
  display: grid;
  gap: 1rem;
}

.pesas-checkout__steps .checkout-step {
  overflow: hidden;
  margin: 0;
  border: 1px solid rgba(29, 43, 53, 0.09);
  border-radius: var(--pesaschile-radius-sm);
  background: var(--pesaschile-color-surface);
  box-shadow: var(--pesaschile-shadow-soft);
}

.pesas-checkout__steps .checkout-step.-current {
  overflow: visible;
}

body#checkout .pesas-checkout__steps section.checkout-step .step-title {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 0.9rem;
  padding: 1rem 1.15rem;
  background: var(--pesaschile-color-surface);
  letter-spacing: 0.01em;
  border: 0;
  border-bottom: 0;
  border-top: 0;
  text-transform: none;
}

body#checkout .pesas-checkout__steps section.checkout-step .step-title .step-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 2rem;
  width: 2rem;
  height: 2rem;
  margin: 0;
  border: 1px solid rgba(29, 43, 53, 0.14);
  border-radius: var(--pesaschile-radius-sm);
  background: rgba(230, 33, 88, 0.06);
  color: var(--pesaschile-color-raspberry);
  line-height: 1;
}

body#checkout .pesas-checkout__steps section.checkout-step .step-title .step-number .material-icons {
  display: inline-block;
  color: inherit;
  font-family: 'Material Icons';
  font-size: 1.1rem;
  line-height: 1;
  font-weight: normal;
  font-style: normal;
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  direction: ltr;
  -webkit-font-feature-settings: 'liga';
  -webkit-font-smoothing: antialiased;
}

body#checkout .pesas-checkout__steps section.checkout-step.-current .step-title .step-number {
  font-size: 1rem;
  font-weight: 700;
}

body#checkout .pesas-checkout__steps section.checkout-step .step-title__copy {
  display: grid;
  gap: 0.15rem;
  justify-self: start;
  text-align: left;
}

body#checkout .pesas-checkout__steps section.checkout-step .step-title__text {
  font-weight: 700;
}

body#checkout .pesas-checkout__steps section.checkout-step .step-subtitle {
  color: var(--pesaschile-color-muted);
  font-size: 0.84rem;
  font-weight: 400;
  line-height: 1.2;
}

body#checkout .pesas-checkout__steps section.checkout-step.-complete .step-title .step-number {
  background: rgba(47, 158, 68, 0.1);
  border-color: rgba(47, 158, 68, 0.14);
  color: #2f9e44;
}

body#checkout section.checkout-step.-reachable.-complete h1 .step-number {
  display: inline-flex;
}

body#checkout .pesas-checkout__steps section.checkout-step .step-title > .step-number + .step-edit {
  margin-left: auto;
}

body#checkout .pesas-checkout__steps section.checkout-step .step-title .step-edit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  padding: 0;
  border-radius: var(--pesaschile-radius-sm);
  color: var(--pesaschile-color-raspberry);
  font-size: 0;
  line-height: 1;
  text-decoration: none;
}

body#checkout .pesas-checkout__steps section.checkout-step .step-title .step-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: #2f9e44;
}

body#checkout .pesas-checkout__steps section.checkout-step .step-title .step-status .material-icons {
  font-size: 1rem;
  line-height: 1;
}

body#checkout .pesas-checkout__steps section.checkout-step .step-title .step-edit .material-icons {
  font-size: 1rem;
  line-height: 1;
}

body#checkout .pesas-checkout__steps section.checkout-step .step-title .step-edit__label {
  display: inline-block;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.pesas-checkout__steps .checkout-step.-current {
  border-color: rgba(230, 33, 88, 0.16);
  box-shadow: 0 18px 38px rgba(29, 43, 53, 0.08);
}

body#checkout .pesas-checkout__steps section.checkout-step.-current .step-title {
  border-bottom-color: rgba(230, 33, 88, 0.12);
}

body#checkout .pesas-checkout__steps section.checkout-step.-current + section.checkout-step .step-title {
  border-top: 0;
}

.pesas-checkout__steps .checkout-step .content {
  padding: 1rem 1.15rem 1.15rem;
}

.pesas-checkout__steps .checkout-step .step-edit {
  font-weight: 600;
}

.pc-tooltip-wrap {
  display: inline-block;
  position: relative;
}

.pc-tooltip-wrap[aria-disabled="true"] {
  cursor: not-allowed;
}

.pc-tooltip-wrap[aria-disabled="true"] .btn:disabled {
  pointer-events: none;
}

.pc-tooltip-wrap[data-tooltip]:hover::after,
.pc-tooltip-wrap[data-tooltip]:focus-within::after {
  content: attr(data-tooltip);
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.5rem);
  z-index: 20;
  width: max-content;
  max-width: min(18rem, calc(100vw - 2rem));
  padding: 0.45rem 0.65rem;
  border-radius: var(--pesaschile-radius-sm);
  background: var(--pesaschile-color-gunmetal);
  color: var(--pesaschile-color-anti-flash-white);
  font-size: 0.78rem;
  font-weight: 500;
  line-height: 1.25;
  text-align: center;
  white-space: normal;
  overflow-wrap: anywhere;
  word-break: break-word;
  box-sizing: border-box;
  box-shadow: 0 10px 24px rgba(29, 43, 53, 0.18);
  transform: translateX(-50%);
  pointer-events: none;
}

.pc-tooltip-wrap[data-tooltip]:hover::before,
.pc-tooltip-wrap[data-tooltip]:focus-within::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: calc(100% + 0.15rem);
  z-index: 21;
  border: 0.35rem solid transparent;
  border-top-color: var(--pesaschile-color-gunmetal);
  transform: translateX(-50%);
  pointer-events: none;
}

.pesas-checkout__sidebar {
  position: relative;
}

.pesas-checkout__sticky {
  position: sticky;
  top: 1rem;
  display: grid;
  gap: 1rem;
}

.pesas-checkout__summary-card {
  overflow: hidden;
  border: 1px solid rgba(29, 43, 53, 0.09);
  border-radius: var(--pesaschile-radius-sm);
  background: var(--pesaschile-color-surface);
  box-shadow: var(--pesaschile-shadow-soft);
}

.pesas-checkout__summary-card #js-checkout-summary {
  margin: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.pesas-checkout__summary-card #js-checkout-summary .card-block,
.pesas-checkout__summary-card #js-checkout-summary .card-body,
.pesas-checkout__summary-card #js-checkout-summary .card-footer {
  padding-left: 1rem;
  padding-right: 1rem;
}

.pesas-checkout__summary-card #js-checkout-summary .card-footer {
  border-top-color: rgba(29, 43, 53, 0.08);
}

.pesas-checkout__reassurance {
  border: 1px solid rgba(29, 43, 53, 0.09);
  border-radius: var(--pesaschile-radius-sm);
  background: var(--pesaschile-color-surface);
  box-shadow: var(--pesaschile-shadow-soft);
  overflow: hidden;
}

.pesas-checkout__reassurance .blockreassurance_product {
  margin: 0;
  border: 0;
  background: transparent;
}

.pesas-checkout__reassurance .blockreassurance_product .block-title {
  padding: 0.95rem 1rem 0.75rem;
}

.pesas-checkout__reassurance .blockreassurance_product ul {
  padding: 0 1rem 0.95rem;
}

@media (max-width: 991.98px) {
  .pesas-checkout__hero,
  .pesas-checkout__grid {
    grid-template-columns: 1fr;
  }

  .pesas-checkout__hero-card {
    min-width: 0;
  }

  .pesas-checkout__sticky {
    position: static;
  }
}

@media (max-width: 767.98px) {
  .pesas-checkout {
    padding-top: 0.75rem;
  }

  .pesas-checkout__shell {
    padding-inline: 0.75rem;
  }

  .pesas-checkout__hero,
  .pesas-checkout__steps .checkout-step .step-title,
  .pesas-checkout__steps .checkout-step .content {
    padding-inline: 0.9rem;
    
  }

  .pesas-checkout__steps .checkout-step .content {
    padding-bottom: 1rem;
  }
}

/*
 * Checkout address selector cards.
 */
body#checkout div#delivery-addresses.address-selector.js-address-selector.pesas-address-selector,
body#checkout div#invoice-addresses.address-selector.js-address-selector.pesas-address-selector {
  display: grid;
  width: 100%;
  gap: 0.85rem;
}

body#checkout .pesas-address-selector .pesas-address-card {
  grid-column: auto !important;
  width: 100%;
  max-width: none;
  margin: 0;
  border: 1px solid rgba(29, 43, 53, 0.1);
  border-radius: 6px;
  background: var(--pesaschile-color-surface);
  box-shadow: 0 1px 2px rgba(29, 43, 53, 0.04);
  overflow: hidden;
}

body#checkout .pesas-address-selector .pesas-address-card__surface {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  min-height: 7.8rem;
  padding: 0.95rem 0.95rem 0.9rem;
  border: 0;
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfd 100%);
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}

body#checkout .pesas-address-selector .pesas-address-card.selected {
  border-color: var(--pesaschile-color-raspberry);
  background: #e621580d;
  box-shadow: 0 8px 24px rgba(230, 33, 88, 0.08);
}

body#checkout .pesas-address-selector .pesas-address-card.selected .pesas-address-card__surface {
  background: #e621580d;
}

body#checkout section.checkout-step .address-item.selected {
  border-color: var(--pesaschile-color-raspberry);
  box-shadow: 0 0 0 1px rgba(230, 33, 88, 0.12);
}

body#checkout .pesas-address-selector .pesas-address-card__label {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin: 0;
  cursor: pointer;
}

body#checkout .pesas-address-selector .pesas-address-card__radio {
  position: relative !important;
  display: block !important;
  width: 1.15rem !important;
  height: 1.15rem !important;
  margin: 0 !important;
  padding: 0 !important;
  line-height: 0 !important;
  vertical-align: middle !important;
  flex: 0 0 1.15rem !important;
  overflow: visible !important;
}

body#checkout .pesas-address-selector .pesas-address-card__radio > input {
  position: absolute !important;
  inset: 0 !important;
  margin: 0 !important;
  opacity: 0 !important;
  cursor: pointer !important;
}

body#checkout .pesas-address-selector .pesas-address-card__radio > input + span {
  position: absolute !important;
  inset: 0 !important;
  top: 0 !important;
  left: 0 !important;
  display: block !important;
  width: 100% !important;
  height: 100% !important;
  margin: 0 !important;
  border: 1px solid rgba(29, 43, 53, 0.24) !important;
  border-radius: 50% !important;
  background-color: var(--pesaschile-color-surface) !important;
  background: var(--pesaschile-color-surface) !important;
  box-sizing: border-box !important;
  pointer-events: none !important;
}

body#checkout .pesas-address-selector .pesas-address-card__radio > input + span::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 50%;
  background: var(--pesaschile-color-raspberry) !important;
  transform: scale(0);
  transition: transform 0.16s ease;
}

body#checkout .pesas-address-selector .pesas-address-card__radio > input:checked + span {
  border-color: var(--pesaschile-color-raspberry) !important;
  background-color: var(--pesaschile-color-surface) !important;
  background: var(--pesaschile-color-surface) !important;
}

body#checkout .pesas-address-selector .pesas-address-card__radio > input:checked + span::after {
  transform: scale(1);
}

body#checkout .pesas-address-selector .pesas-address-card__radio > input:focus + span {
  box-shadow: 0 0 0 0.18rem rgba(230, 33, 88, 0.16) !important;
}

body#checkout .pesas-address-selector .pesas-address-card__input {
  cursor: pointer;
}

body#checkout .pesas-address-selector .pesas-address-card__body {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding-left: 0.95rem;
  padding-top: 0.05rem;
}

body#checkout .pesas-address-selector .pesas-address-card__alias {
  margin: 0;
  color: var(--pesaschile-color-gunmetal);
  font-size: 1rem;
  line-height: 1.15;
  font-weight: 600;
}

body#checkout .pesas-address-selector .pesas-address-card__formatted,
body#checkout .pesas-address-selector .pesas-address-card__summary {
  margin: 0;
  color: var(--pesaschile-color-muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

body#checkout .pesas-address-selector .pesas-address-card__formatted {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  margin-left: 0 !important;
}

body#checkout .pesas-address-selector .pesas-address-card__formatted.address {
  margin-left: 0 !important;
}

body#checkout .pesas-address-selector .pesas-address-card__actions {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 0.55rem;
  position: absolute;
  top: 0.85rem;
  right: 0.85rem;
}

body#checkout .pesas-address-selector .pesas-address-card__action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  color: rgba(29, 43, 53, 0.72);
  text-decoration: none;
  border-radius: 999px;
  transition: color 0.2s ease, background-color 0.2s ease, transform 0.2s ease;
  font-size: 0;
}

body#checkout .pesas-address-selector .pesas-address-card__action:hover,
body#checkout .pesas-address-selector .pesas-address-card__action:focus {
  color: var(--pesaschile-color-raspberry);
  background: rgba(230, 33, 88, 0.08);
  text-decoration: none;
}

body#checkout .pesas-address-selector .pesas-address-card__action .material-icons {
  font-size: 1.05rem;
  line-height: 1;
}

body#checkout .pesas-address-selector .pesas-address-card__footer {
  padding: 0.45rem 0.95rem 0.85rem;
  border-top: 1px solid rgba(29, 43, 53, 0.08);
  background: var(--pesaschile-color-surface);
}

body#checkout .pesas-address-selector .pesas-address-card--new {
  display: block;
  color: inherit;
  text-decoration: none;
}

body#checkout .pesas-address-selector .pesas-address-card--new:hover,
body#checkout .pesas-address-selector .pesas-address-card--new:focus {
  color: inherit;
  text-decoration: none;
}

body#checkout .pesas-address-selector .pesas-address-card--new .pesas-address-card__surface {
  min-height: 11.25rem;
  padding: 1rem;
  border: 2px dashed rgba(29, 43, 53, 0.16);
  background: linear-gradient(180deg, #ffffff 0%, #fcfcfd 100%);
  box-shadow: none;
  align-items: center;
  justify-content: center;
}

body#checkout .pesas-address-selector .pesas-address-card--new:hover .pesas-address-card__surface,
body#checkout .pesas-address-selector .pesas-address-card--new:focus .pesas-address-card__surface {
  border-color: rgba(230, 33, 88, 0.35);
  background: #e6215808;
}

body#checkout .pesas-address-selector .pesas-address-card__new-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  color: rgba(29, 43, 53, 0.74);
  text-align: center;
}

body#checkout .pesas-address-selector .pesas-address-card__new-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  color: var(--pesaschile-color-raspberry);
}

body#checkout .pesas-address-selector .pesas-address-card__new-icon .material-icons {
  font-size: 1.7rem;
  line-height: 1;
}

body#checkout .pesas-address-selector .pesas-address-card__new-label {
  color: rgba(29, 43, 53, 0.8);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
}

body#checkout .pesas-address-selector .pesas-address-card__tag {
  display: inline-flex;
  align-items: center;
  min-height: 1.4rem;
  padding: 0.2rem 0.55rem;
  border-radius: 3px;
  background: rgba(29, 43, 53, 0.06);
  color: rgba(29, 43, 53, 0.82);
  font-size: 0.82rem;
  font-weight: 500;
  line-height: 1.2;
}

body#checkout .pesas-address-selector .pesas-address-card__tag--invoice {
  background: rgba(230, 33, 88, 0.08);
  color: var(--pesaschile-color-raspberry);
}

body#checkout .pesas-address-selector .pesas-address-card__tag--receipt {
  background: rgba(29, 43, 53, 0.06);
  color: rgba(29, 43, 53, 0.82);
}

@media (min-width: 768px) {
  body#checkout div#delivery-addresses.address-selector.js-address-selector.pesas-address-selector,
  body#checkout div#invoice-addresses.address-selector.js-address-selector.pesas-address-selector {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: stretch;
    justify-items: stretch;
  }
}

@media (max-width: 767.98px) {
  body#checkout div#delivery-addresses.address-selector.js-address-selector.pesas-address-selector,
  body#checkout div#invoice-addresses.address-selector.js-address-selector.pesas-address-selector {
    grid-template-columns: minmax(0, 1fr);
  }

  body#checkout .pesas-address-selector .pesas-address-card {
    max-width: none;
  }

  body#checkout .pesas-address-selector .pesas-address-card__surface {
    flex-direction: column;
    gap: 0.8rem;
    padding: 0.95rem 0.95rem 0.9rem;
  }

  body#checkout .pesas-address-selector .pesas-address-card__actions {
    position: static;
    width: 100%;
    justify-content: flex-end;
    padding: 0.2rem 0 0;
  }

  body#checkout .pesas-address-selector .pesas-address-card--new .pesas-address-card__surface {
    min-height: 9.25rem;
  }
}

.pc-site-footer {
  width: 100%;
  background: var(--pesaschile-color-gunmetal);
  color: var(--pesaschile-color-anti-flash-white);
}

.pc-site-footer__inner {
  width: 100%;
  max-width: 82rem;
  margin: 0 auto;
  padding-block: 2.5rem 1.5rem;
}

.pc-site-footer__section {
  width: 100%;
}

.pc-site-footer__section--main {
  display: grid;
  gap: 1.25rem 0;
}

.pc-site-footer__section + .pc-site-footer__copyright {
  margin-top: 1.75rem;
}

.pc-site-footer__copyright {
  border-top: 1px solid rgba(236, 240, 241, 0.14);
  padding: 1rem 1rem 0;
}

.pc-site-footer__copyright-text {
  margin: 0;
}

.pc-site-footer__copyright a {
  color: var(--pesaschile-color-anti-flash-white);
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.pc-site-footer__copyright a:hover,
.pc-site-footer__copyright a:focus,
.pc-site-footer__copyright a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.pc-site-footer .pc-footer,
.pc-site-footer .ps-social-follow {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
  box-sizing: border-box;
}

.pc-site-footer .pc-footer,
.pc-site-footer .pc-footer__inner {
  display: contents;
}

.pc-site-footer .pc-footer {
  color: var(--pesaschile-color-anti-flash-white);
}

.pc-site-footer .ps-social-follow {
  color: var(--pesaschile-color-anti-flash-white);
}

.pc-site-footer .pc-footer__location-summary,
.pc-site-footer .links p.h3,
.pc-site-footer .links .title .h3 {
  font-family: inherit;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.pc-site-footer .pc-footer__section--institutional {
  order: 0;
}

.pc-site-footer .links {
  order: 1;
}

.pc-site-footer .pc-footer__section--locations {
  order: 2;
}

.pc-site-footer .ps-social-follow h4 {
  margin: 0 0 1rem;
  color: #ffffff;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
}

.pc-site-footer .ps-social-follow ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pc-site-footer .ps-social-follow li {
  margin: 0;
}

.pc-site-footer .ps-social-follow a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(236, 240, 241, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.pc-site-footer .ps-social-follow a:hover,
.pc-site-footer .ps-social-follow a:focus,
.pc-site-footer .ps-social-follow a:focus-visible {
  border-color: var(--pesaschile-color-raspberry);
  background: rgba(230, 33, 88, 0.14);
  color: #ffffff;
  text-decoration: none;
}

.pc-site-footer .pc-footer__locations {
  gap: 0.75rem;
}

.pc-site-footer .pc-footer__locations--single {
  grid-template-columns: minmax(0, 1fr);
  justify-content: stretch;
}

.pc-site-footer .pc-footer__location {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.pc-site-footer .pc-footer__location-summary {
  padding: 0.95rem 0 !important;
  background: transparent !important;
  border: 0 !important;
}

.pc-site-footer .pc-footer__collapse-icons {
  display: inline-flex;
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  color: #ffffff;
}

.pc-site-footer .pc-footer__collapse-icons .material-icons {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
}

.pc-site-footer .pc-footer__collapse-icons .remove {
  display: none;
}

.pc-site-footer .pc-footer__location[open] .pc-footer__collapse-icons .add {
  display: none;
}

.pc-site-footer .pc-footer__location[open] .pc-footer__collapse-icons .remove {
  display: inline-flex;
}

.pc-site-footer .pc-footer__location-body {
  padding: 0 0 1rem !important;
  background: transparent !important;
}

.pc-site-footer .pc-footer__location-row--visit {
  margin-bottom: 0.05rem;
}

.pc-site-footer .pc-footer__maps-link--visit {
  color: #ffffff;
  font-weight: 700;
}

.pc-site-footer .pc-footer__location-label--visit {
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.pc-site-footer .pc-footer__maps-link--visit:hover,
.pc-site-footer .pc-footer__maps-link--visit:focus,
.pc-site-footer .pc-footer__maps-link--visit:focus-visible {
  color: var(--pesaschile-color-raspberry);
  text-decoration: underline;
}

.pc-site-footer .links {
  width: 100%;
  max-width: none;
  float: none;
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--pesaschile-color-anti-flash-white);
  box-sizing: border-box;
}

.pc-site-footer .links > .row {
  width: 100%;
  margin: 0;
}

.pc-site-footer .links > .row > .wrapper {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.pc-site-footer .links .wrapper + .wrapper {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(236, 240, 241, 0.12);
}

.pc-site-footer .links p.h3 {
  margin: 0 0 0.9rem;
}

.pc-site-footer .links .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 0;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

.pc-site-footer .links .title .h3 {
  margin: 0;
}

.pc-site-footer .links .title .float-xs-right {
  margin-left: auto;
}

.pc-site-footer .links .navbar-toggler {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  color: #ffffff;
}

.pc-site-footer .links .collapse-icons {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
}

.pc-site-footer .links .collapse-icons .material-icons {
  font-size: 1.25rem;
  line-height: 1;
}

.pc-site-footer .links ul {
  margin: 0;
  padding: 0 0 0.15rem;
  list-style: none;
}

.pc-site-footer .links li {
  margin: 0;
}

.pc-site-footer .links li + li {
  margin-top: 0.6rem;
}

.pc-site-footer .links a {
  color: var(--pesaschile-color-anti-flash-white);
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.pc-site-footer .pc-footer__location-row,
.pc-site-footer .pc-footer__location-link,
.pc-site-footer .pc-footer__maps-link,
.pc-site-footer .links a {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.pc-site-footer .links a:hover,
.pc-site-footer .links a:focus,
.pc-site-footer .links a:focus-visible {
  color: var(--pesaschile-color-raspberry);
  text-decoration: underline;
}

.pc-site-footer a:focus-visible {
  outline: 2px solid rgba(230, 33, 88, 0.28);
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .pc-site-footer__inner {
    padding-block: 2.75rem 1.75rem;
  }

  .pc-site-footer .ps-social-follow {
    padding-top: 1.75rem;
  }
}

@media (max-width: 991.98px) {
  .pc-site-footer__section--main {
    gap: 0;
  }

  .pc-site-footer .links p.h3 {
    display: none;
  }

  .pc-site-footer .links > .row {
    display: block;
  }

  .pc-site-footer .links > .row > .wrapper {
    padding-inline: 0.5rem;
  }

  .pc-site-footer .links > .row > .wrapper + .wrapper {
    margin-top: 0;
  }

  .pc-site-footer .links .title {
    display: flex;
    padding: 0.625rem 0.5rem;
    border-bottom: 1px solid rgba(236, 240, 241, 0.14);
    border-top: 0;
  }

  .pc-site-footer .links .title .h3 {
    line-height: 1.5;
    text-transform: uppercase;
  }

  .pc-site-footer .links .collapse {
    display: none;
  }

  .pc-site-footer .links .collapse.in,
  .pc-site-footer .links .collapse.show {
    display: block;
  }

  .pc-site-footer .pc-footer__location-summary {
    padding: 0.625rem 0.5rem !important;
    border-bottom: 1px solid rgba(236, 240, 241, 0.14) !important;
    border-top: 0 !important;
    min-height: 0;
    text-transform: uppercase;
  }

  .pc-site-footer .pc-footer__location-summary-label {
    font-size: 1rem;
    line-height: 1.5;
    text-transform: uppercase;
  }

  .pc-site-footer .pc-footer__location-summary .float-xs-right {
    display: inline-flex;
    margin-left: auto;
  }

  .pc-site-footer .pc-footer__location-summary .navbar-toggler {
    display: inline-block;
    padding: 0;
  }

  .pc-site-footer .pc-footer__collapse-icons {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .pc-site-footer .pc-footer__collapse-icons .material-icons {
    color: #ffffff;
  }

  .pc-site-footer .pc-footer__location[open] .pc-footer__collapse-icons .material-icons {
    color: var(--pesaschile-color-raspberry);
  }

  .pc-site-footer .pc-footer__location-body {
    padding: 0.625rem 0.5rem 0.75rem !important;
    gap: 0.625rem;
  }

  .pc-site-footer .pc-footer__institutional-description {
    margin-bottom: 5rem;
  }

  .pc-site-footer .pc-footer__location-row--visit {
    margin-bottom: 0;
  }

  .pc-site-footer .pc-footer__location-row--action {
    align-items: center;
  }
}

@media (min-width: 992px) {
  .pc-site-footer__inner {
    padding-block: 3rem 2rem;
  }

  .pc-site-footer__section--main {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.75rem 2rem;
    align-items: start;
  }

  .pc-site-footer .pc-footer,
  .pc-site-footer .pc-footer__inner {
    display: contents;
  }

  .pc-site-footer .pc-footer__section + .pc-footer__section {
    margin-top: 0;
  }

  .pc-site-footer .pc-footer__section--institutional {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .pc-site-footer .pc-footer__section--locations {
    grid-column: span 2;
    margin-top: 0;
    min-width: 0;
  }

  .pc-site-footer .links {
    grid-column: span 2;
    min-width: 0;
    padding-inline: 0.875rem 1rem;
  }

  .pc-site-footer .links > .row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 2rem;
  }

  .pc-site-footer .links > .row > .wrapper {
    margin: 0;
    padding: 0;
    border-top: 0;
  }

  .pc-site-footer .links .wrapper + .wrapper {
    margin-top: 0;
    padding-top: 0;
  }

  .pc-site-footer .links p.h3 {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.9rem;
  }

  .pc-site-footer .pc-footer__location-summary-label::after,
  .pc-site-footer .links p.h3::after {
    content: "";
    display: block;
    width: 1.75rem;
    height: 2px;
    margin-top: 0.55rem;
    background: var(--pesaschile-color-raspberry);
  }

  .pc-site-footer .pc-footer__location-summary {
    align-items: flex-start;
    padding: 0 0.5rem 0.9rem !important;
  }

  .pc-site-footer .pc-footer__location-summary-label {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .pc-site-footer .pc-footer__location-body {
    padding: 0 0.5rem 1rem !important;
  }

  .pc-site-footer .links .title {
    display: none;
  }

  .pc-site-footer .links .collapse {
    display: block;
    overflow: visible;
  }

  .pc-site-footer .ps-social-follow {
    padding-top: 1.75rem;
  }
}

.pc-site-footer {
  width: 100%;
  background: var(--pesaschile-color-gunmetal);
  color: var(--pesaschile-color-anti-flash-white);
}

.pc-site-footer__inner {
  width: 100%;
  max-width: 82rem;
  margin: 0 auto;
  padding-block: 2.5rem 1.5rem;
}

.pc-site-footer__section {
  width: 100%;
}

.pc-site-footer__section--main {
  display: grid;
  gap: 1.25rem 0;
}

.pc-site-footer__section + .pc-site-footer__copyright {
  margin-top: 1.75rem;
}

.pc-site-footer__copyright {
  border-top: 1px solid rgba(236, 240, 241, 0.14);
  padding: 1rem 1rem 0;
}

.pc-site-footer__copyright-text {
  margin: 0;
}

.pc-site-footer__copyright a {
  color: var(--pesaschile-color-anti-flash-white);
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.pc-site-footer__copyright a:hover,
.pc-site-footer__copyright a:focus,
.pc-site-footer__copyright a:focus-visible {
  color: #ffffff;
  text-decoration: underline;
}

.pc-site-footer .pc-footer,
.pc-site-footer .ps-social-follow {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
  background: transparent;
  box-sizing: border-box;
}

.pc-site-footer .pc-footer,
.pc-site-footer .pc-footer__inner {
  display: contents;
}

.pc-site-footer .pc-footer {
  color: var(--pesaschile-color-anti-flash-white);
}

.pc-site-footer .ps-social-follow {
  color: var(--pesaschile-color-anti-flash-white);
}

.pc-site-footer .pc-footer__location-summary,
.pc-site-footer .links p.h3,
.pc-site-footer .links .title .h3 {
  font-family: inherit;
  color: #ffffff;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.35;
}

.pc-site-footer .pc-footer__section--institutional {
  order: 0;
}

.pc-site-footer .links {
  order: 1;
}

.pc-site-footer .pc-footer__section--locations {
  order: 2;
}

.pc-site-footer .ps-social-follow h4 {
  margin: 0 0 1rem;
  color: #ffffff;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
}

.pc-site-footer .ps-social-follow ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.pc-site-footer .ps-social-follow li {
  margin: 0;
}

.pc-site-footer .ps-social-follow a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
  padding: 0.55rem 1rem;
  border: 1px solid rgba(236, 240, 241, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #ffffff;
  text-decoration: none;
  transition: border-color 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.pc-site-footer .ps-social-follow a:hover,
.pc-site-footer .ps-social-follow a:focus,
.pc-site-footer .ps-social-follow a:focus-visible {
  border-color: var(--pesaschile-color-raspberry);
  background: rgba(230, 33, 88, 0.14);
  color: #ffffff;
  text-decoration: none;
}

.pc-site-footer .pc-footer__locations {
  gap: 0.75rem;
}

.pc-site-footer .pc-footer__locations--single {
  grid-template-columns: minmax(0, 1fr);
  justify-content: stretch;
}

.pc-site-footer .pc-footer__location {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  overflow: visible !important;
}

.pc-site-footer .pc-footer__location-summary {
  padding: 0.95rem 0 !important;
  background: transparent !important;
  border: 0 !important;
}

.pc-site-footer .pc-footer__collapse-icons {
  display: inline-flex;
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
  color: #ffffff;
}

.pc-site-footer .pc-footer__collapse-icons .material-icons {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  line-height: 1;
}

.pc-site-footer .pc-footer__collapse-icons .remove {
  display: none;
}

.pc-site-footer .pc-footer__location[open] .pc-footer__collapse-icons .add {
  display: none;
}

.pc-site-footer .pc-footer__location[open] .pc-footer__collapse-icons .remove {
  display: inline-flex;
}

.pc-site-footer .pc-footer__location-body {
  padding: 0 0 1rem !important;
  background: transparent !important;
}

.pc-site-footer .pc-footer__location-row--visit {
  margin-bottom: 0.05rem;
}

.pc-site-footer .pc-footer__maps-link--visit {
  color: #ffffff;
  font-weight: 700;
}

.pc-site-footer .pc-footer__location-label--visit {
  color: #ffffff;
  font-size: 0.9375rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.pc-site-footer .pc-footer__maps-link--visit:hover,
.pc-site-footer .pc-footer__maps-link--visit:focus,
.pc-site-footer .pc-footer__maps-link--visit:focus-visible {
  color: var(--pesaschile-color-raspberry);
  text-decoration: underline;
}

.pc-site-footer .links {
  width: 100%;
  max-width: none;
  float: none;
  margin: 0;
  padding: 0;
  background: transparent;
  color: var(--pesaschile-color-anti-flash-white);
  box-sizing: border-box;
}

.pc-site-footer .links > .row {
  width: 100%;
  margin: 0;
}

.pc-site-footer .links > .row > .wrapper {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}

.pc-site-footer .links .wrapper + .wrapper {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(236, 240, 241, 0.12);
}

.pc-site-footer .links p.h3 {
  margin: 0 0 0.9rem;
}

.pc-site-footer .links .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.95rem 0;
  color: #ffffff;
  text-decoration: none;
  cursor: pointer;
}

.pc-site-footer .links .title .h3 {
  margin: 0;
}

.pc-site-footer .links .title .float-xs-right {
  margin-left: auto;
}

.pc-site-footer .links .navbar-toggler {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  color: #ffffff;
}

.pc-site-footer .links .collapse-icons {
  position: relative;
  width: 1.5rem;
  height: 1.5rem;
}

.pc-site-footer .links .collapse-icons .material-icons {
  font-size: 1.25rem;
  line-height: 1;
}

.pc-site-footer .links ul {
  margin: 0;
  padding: 0 0 0.15rem;
  list-style: none;
}

.pc-site-footer .links li {
  margin: 0;
}

.pc-site-footer .links li + li {
  margin-top: 0.6rem;
}

.pc-site-footer .links a {
  color: var(--pesaschile-color-anti-flash-white);
  text-decoration: none;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.pc-site-footer .pc-footer__location-row,
.pc-site-footer .pc-footer__location-link,
.pc-site-footer .pc-footer__maps-link,
.pc-site-footer .links a {
  font-size: 0.9375rem;
  line-height: 1.6;
}

.pc-site-footer .links a:hover,
.pc-site-footer .links a:focus,
.pc-site-footer .links a:focus-visible {
  color: var(--pesaschile-color-raspberry);
  text-decoration: underline;
}

.pc-site-footer a:focus-visible {
  outline: 2px solid rgba(230, 33, 88, 0.28);
  outline-offset: 2px;
}

@media (min-width: 768px) {
  .pc-site-footer__inner {
    padding-block: 2.75rem 1.75rem;
  }

  .pc-site-footer .ps-social-follow {
    padding-top: 1.75rem;
  }
}

@media (max-width: 991.98px) {
  .pc-site-footer__section--main {
    gap: 0;
  }

  .pc-site-footer .links p.h3 {
    display: none;
  }

  .pc-site-footer .links > .row {
    display: block;
  }

  .pc-site-footer .links > .row > .wrapper {
    padding-inline: 0.5rem;
  }

  .pc-site-footer .links > .row > .wrapper + .wrapper {
    margin-top: 0;
  }

  .pc-site-footer .links .title {
    display: flex;
    padding: 0.625rem 0.5rem;
    border-bottom: 1px solid rgba(236, 240, 241, 0.14);
    border-top: 0;
  }

  .pc-site-footer .links .title .h3 {
    line-height: 1.5;
    text-transform: uppercase;
  }

  .pc-site-footer .links .collapse {
    display: none;
  }

  .pc-site-footer .links .collapse.in,
  .pc-site-footer .links .collapse.show {
    display: block;
  }

  .pc-site-footer .pc-footer__location-summary {
    padding: 0.625rem 0.5rem !important;
    border-bottom: 1px solid rgba(236, 240, 241, 0.14) !important;
    border-top: 0 !important;
    min-height: 0;
    text-transform: uppercase;
  }

  .pc-site-footer .pc-footer__location-summary-label {
    font-size: 1rem;
    line-height: 1.5;
    text-transform: uppercase;
  }

  .pc-site-footer .pc-footer__location-summary .float-xs-right {
    display: inline-flex;
    margin-left: auto;
  }

  .pc-site-footer .pc-footer__location-summary .navbar-toggler {
    display: inline-block;
    padding: 0;
  }

  .pc-site-footer .pc-footer__collapse-icons {
    flex: 0 0 auto;
    margin-left: auto;
  }

  .pc-site-footer .pc-footer__collapse-icons .material-icons {
    color: #ffffff;
  }

  .pc-site-footer .pc-footer__location[open] .pc-footer__collapse-icons .material-icons {
    color: var(--pesaschile-color-raspberry);
  }

  .pc-site-footer .pc-footer__location-body {
    padding: 0.625rem 0.5rem 0.75rem !important;
    gap: 0.625rem;
  }

  .pc-site-footer .pc-footer__institutional-description {
    margin-bottom: 5rem;
  }

  .pc-site-footer .pc-footer__location-row--visit {
    margin-bottom: 0;
  }

  .pc-site-footer .pc-footer__location-row--action {
    align-items: center;
  }
}

@media (min-width: 992px) {
  .pc-site-footer__inner {
    padding-block: 3rem 2rem;
  }

  .pc-site-footer__section--main {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.75rem 2rem;
    align-items: start;
  }

  .pc-site-footer .pc-footer,
  .pc-site-footer .pc-footer__inner {
    display: contents;
  }

  .pc-site-footer .pc-footer__section + .pc-footer__section {
    margin-top: 0;
  }

  .pc-site-footer .pc-footer__section--institutional {
    grid-column: 1 / -1;
    margin-top: 0;
  }

  .pc-site-footer .pc-footer__section--locations {
    grid-column: span 2;
    margin-top: 0;
    min-width: 0;
  }

  .pc-site-footer .links {
    grid-column: span 2;
    min-width: 0;
    padding-inline: 0.875rem 1rem;
  }

  .pc-site-footer .links > .row {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.75rem 2rem;
  }

  .pc-site-footer .links > .row > .wrapper {
    margin: 0;
    padding: 0;
    border-top: 0;
  }

  .pc-site-footer .links .wrapper + .wrapper {
    margin-top: 0;
    padding-top: 0;
  }

  .pc-site-footer .links p.h3 {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 0.9rem;
  }

  .pc-site-footer .pc-footer__location-summary-label::after,
  .pc-site-footer .links p.h3::after {
    content: "";
    display: block;
    width: 1.75rem;
    height: 2px;
    margin-top: 0.55rem;
    background: var(--pesaschile-color-raspberry);
  }

  .pc-site-footer .pc-footer__location-summary {
    align-items: flex-start;
    padding: 0 0.5rem 0.9rem !important;
  }

  .pc-site-footer .pc-footer__location-summary-label {
    display: inline-flex;
    flex-direction: column;
    align-items: flex-start;
  }

  .pc-site-footer .pc-footer__location-body {
    padding: 0 0.5rem 1rem !important;
  }

  .pc-site-footer .links .title {
    display: none;
  }

  .pc-site-footer .links .collapse {
    display: block;
    overflow: visible;
  }

  .pc-site-footer .ps-social-follow {
    padding-top: 1.75rem;
  }
}

/* ==========================================================================
   COMPONENTES PARA PRODUCT CARD
   ========================================================================== */

body #wrapper .product-miniature.pesas-product-card {
    background-color: var(--pesaschile-color-surface);
    border-radius: var(--pesaschile-radius-sm);
    border: 1px solid var(--pesaschile-color-border);
    box-shadow: none;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 440px;
    padding: 0;
    flex: 0 0 auto;
    width: 260px;
    margin-right: 16px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
}

body #wrapper .product-miniature.pesas-product-card:hover {
    box-shadow: var(--pesaschile-shadow-soft);
    transform: translateY(-2px);
}

body #wrapper .product-miniature.pesas-product-card .thumbnail-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    width: 100%;
}

/* IMAGEN --- */
body #wrapper .product-miniature.pesas-product-card .thumbnail-top {
    position: relative;
    width: 100%;
    padding-top: 100%;
    background-color: transparent;
    border-bottom: none;
    margin: 0;
}

body #wrapper .product-miniature.pesas-product-card .product-thumbnail {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

body #wrapper .product-miniature.pesas-product-card .product-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
    transition: filter 0.3s ease, opacity 0.3s ease;
}

/* ESTADO SIN STOCK */
body #wrapper .product-miniature.pesas-product-card.pesas-card-out-of-stock .thumbnail-top {
    background-color: var(--pesaschile-color-anti-flash-white);
}

body #wrapper .product-miniature.pesas-product-card.pesas-card-out-of-stock .product-thumbnail img {
    opacity: 0.3;
    filter: grayscale(100%);
}

body #wrapper .product-miniature.pesas-product-card .pesas-out-of-stock-badge {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--pesaschile-color-gunmetal);
    color: var(--pesaschile-color-surface);
    padding: 8px 16px;
    border-radius: 4px;
    font-weight: 600;
    font-size: 1rem;
    z-index: 3;
    white-space: nowrap;
}

/* ETIQUETAS (NUEVO/DESCUENTO/PACK) */
body #wrapper .product-miniature.pesas-product-card .product-flags {
    position: absolute;
    top: 10px;
    left: 10px;
    width: calc(100% - 20px);
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
    z-index: 2;
    margin: 0;
    padding: 0;
    list-style: none;
}

body #wrapper .product-miniature.pesas-product-card .product-flag {
    position: relative;
    top: auto;
    right: auto;
    left: auto;
    bottom: auto;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: capitalize;
    box-shadow: none;
    margin: 0;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 24px;
    line-height: 1;
    width: max-content;
    flex: 0 0 auto;
}


body #wrapper .product-miniature.pesas-product-card .product-flags .discount,
body #wrapper .product-miniature.pesas-product-card .product-flags .discount-percentage,
body #wrapper .product-miniature.pesas-product-card .product-flag.discount {
    order: 99;
    margin-left: auto;
    transform: none;
    background-color: var(--pesaschile-color-raspberry);
    color: var(--pesaschile-color-surface);
}

body #wrapper .product-miniature.pesas-product-card .product-flag.new,
body #wrapper .product-miniature.pesas-product-card .product-flag.outlet {
    background-color: var(--pesaschile-color-badge-lime, #c4d600);
    color: var(--pesaschile-color-gunmetal);
}

body #wrapper .product-miniature.pesas-product-card .product-flag.pack {
    background-color: var(--pesaschile-color-gunmetal);
    color: var(--pesaschile-color-surface);
}

body #wrapper .product-miniature.pesas-product-card .product-description {
    padding: 1rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    flex-grow: 1;
    text-align: left;
    background: transparent;
}

body #wrapper .product-miniature.pesas-product-card .product-price-and-shipping {
    display: flex;
    flex-wrap: wrap;
    align-items: baseline;
    gap: 8px;
    margin-bottom: 8px;
    justify-content: flex-start;
}

body #wrapper .product-miniature.pesas-product-card .price {
    color: var(--pesaschile-color-raspberry);
    font-weight: 700;
    font-size: 1.1rem;
}

body #wrapper .product-miniature.pesas-product-card .regular-price {
    color: var(--pesaschile-color-muted);
    text-decoration: line-through;
    font-size: 0.85rem;
    font-weight: 500;
}

body #wrapper .product-miniature.pesas-product-card .product-title {
    margin: 0 0 6px 0;
    padding: 0;
    width: 100%;
}

body #wrapper .product-miniature.pesas-product-card .product-title a {
    color: var(--pesaschile-color-gunmetal);
    font-weight: 500;
    font-size: 0.95rem;
    line-height: 1.35;
    text-align: left;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: normal;
}

body #wrapper .product-miniature.pesas-product-card .product-brand {
    color: var(--pesaschile-color-muted);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: auto;
}

/* ==========================================================================
   RESPONSIVO (MOVILES)
   ========================================================================== */
@media (max-width: 767.98px) {
    body #wrapper .product-miniature.pesas-product-card {
        width: 200px;
        height: 380px;
        margin-right: 12px;
    }

    body #wrapper .product-miniature.pesas-product-card .product-title a {
        font-size: 0.85rem;
    }
    
    body #wrapper .product-miniature.pesas-product-card .price {
        font-size: 1rem;
    }

    body #wrapper .product-miniature.pesas-product-card .regular-price {
        font-size: 0.75rem;
    }
    
    body #wrapper .product-miniature.pesas-product-card .product-flags {
        top: 8px;
        left: 8px;
        width: calc(100% - 16px); 
    }
}


/* ==========================================================================
   club de pesas
   ========================================================================== */

.club-banner,
.club-banner picture,
.club-banner__image {
  display: block;
  width: 100%;
}

.club-banner {
  overflow: hidden;
}

.club-banner__image {
  height: auto;
}