body {
  font-family: var(--main-font), system-ui, Avenir, Helvetica, Arial, sans-serif;
  font-synthesis: none;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: var(--color-p);
  line-height: 26px;
  font-weight: 400;
}

/* Estilos para el carrusel cuando tienen 1 o 2 imágenes */
.slider-center {
  display: flex !important;
  justify-content: center !important;
}

@media screen and (min-width: 768px) {
  .carouse-innner-width {
    width: 36% !important;
  }
}

/* SUB TITLES */
.subtitle-large {
  color: var(--color-p);
  font-size: 24px;
  font-weight: 400;
  line-height: 38px;
  text-align: left;
}

.subtitle-default {
  color: var(--color-p);
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
  text-align: left;
}

.subtitle-small {
  color: var(--color-p);
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
  text-align: left;
}

/* TEXT */
.text-regular-400 {
  color: var(--color-p);
  font-size: 24px;
  font-weight: 400;
  line-height: 26px;
  text-align: left;
}

.text-medium-400 {
  color: var(--color-p);
  font-size: 24px;
  font-weight: 500;
  line-height: 26px;
  text-align: left;
}

.text-bold-400 {
  color: var(--color-p);
  font-size: 24px;
  font-weight: 700;
  line-height: 26px;
  text-align: left;
}

.text-regular-300 {
  color: var(--color-p);
  font-size: 20px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
}

.text-medium-300 {
  color: var(--color-p);
  font-size: 20px;
  font-weight: 500;
  line-height: 22px;
  text-align: left;
}

.text-bold-300 {
  color: var(--color-p);
  font-size: 20px;
  font-weight: 700;
  line-height: 22px;
  text-align: left;
}

.text-regular-200 {
  color: var(--color-p);
  font-size: 18px;
  font-weight: 400;
  line-height: 20px;
  text-align: left;
}

.text-medium-200 {
  color: var(--color-p);
  font-size: 18px;
  font-weight: 500;
  line-height: 20px;
  text-align: left;
}

.text-bold-200 {
  color: var(--color-p);
  font-size: 18px;
  font-weight: 700;
  line-height: 20px;
  text-align: left;
}

.text-regular-100 {
  color: var(--color-p);
  font-size: 16px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
}

.text-medium-100 {
  color: var(--color-p);
  font-size: 16px;
  font-weight: 500;
  line-height: 18px;
  text-align: left;
}

.text-bold-100 {
  color: var(--color-p);
  font-size: 16px;
  font-weight: 700;
  line-height: 18px;
  text-align: left;
}

.input-label {
  display: block;
  text-transform: uppercase;
  color: var(--secondary);
  margin-bottom: 15px;
}

/* INPUTS */
input:not([type="checkbox"]):not([type="radio"]):not([class="input-addresses"]):not([class="number-output"]):not([class="md_form_field_discount_code_input"]) {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  width: 335px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid var(--border-color-1);
  background: var(--background);
  color: var(--color-p);
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  padding-left: 19px;
  /* width: 65% !important; */
}

/* Separamos el media query que antes estaba anidado */
@media (max-width: 425px) {
  input:not([type="checkbox"]):not([type="radio"]):not([class="input-addresses"]):not([class="number-output"]):not([class="md_form_field_discount_code_input"]) {
    /* width: 200px; */
    padding-left: 3px;
    padding-right: 8px;
  }
}

input:not([type="checkbox"]):not([type="radio"])::placeholder {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  color: var(--text-gray);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px !important;
}

input:not(.address-input):not(.number-output):focus,
input:not(.address-input):not(.number-output):hover,
input:not(.address-input):not(.number-output):active,
input:not(.address-input):not(.number-output):focus-within {
  outline-style: none;
  box-shadow: var(--shadow-1);
}

.md_product_details_options_group_option_input_checkbox {
  display: block !important; 
}

textarea {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  width: 335px;
  height: 80px;
  border-radius: 10px;
  border: 1.5px solid var(--neutral-1);
  background: var(--full-white);
  color: var(--color-p);
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  padding-left: 19px;
}

@media (max-width: 425px) {
  textarea {
    width: 200px;
  }
}

textarea::placeholder {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  color: var(--color-p);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px !important;
}

textarea:focus,
textarea:hover,
textarea:active,
textarea:focus-within {
  outline-style: none;
  box-shadow: var(--shadow-1);
}

input:is([type="checkbox"]) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  height: 18px;
  width: 18px;
  border-radius: 5px;
  border-width: 1px;
  border-style: solid;
  border-color: var(--neutral-1);
  position: relative;
  transition: .4s;
}

input:is([type="checkbox"]):checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

input:is([type="checkbox"]):checked::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 8px;
  height: 6px;
  background-image: url("/images/check.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.check-label {
  color: var(--primary-0);
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
}

.check-container {
  display: flex;
  align-items: center;
  gap: 5px;
}

/* INPUTS */
input:is([type="radio"]):not(#mercadopago_payment_brick_container *) {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-color: transparent;
  height: 18px;
  width: 18px;
  border-radius: 50%;
  border-color: var(--neutral-1);
  border-style: solid;
  border-width: 1px;
  position: relative;
  margin: 2px 3px 2px 5px;
  transition: .4s;
}

.input-radio-button {
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  appearance: none !important;
  background-color: transparent !important;
  height: 18px !important;
  width: 18px !important;
  border-radius: 50% !important;
  border-color: var(--neutral-1) !important;
  border-style: solid !important;
  border-width: 1px !important;
  position: relative !important;
  margin: 2px 3px 2px 5px !important;
  transition: .4s !important;
}


input:is([type="radio"])::not(#mercadopago_payment_brick_container *):checked {
  background-color: var(--primary);
  border-color: var(--primary);
}

.input-radio-button:checked::before {
  background-color: var(--primary) !important;
  border-color: var(--primary) !important;
}

input:is([type="radio"]):not(#mercadopago_payment_brick_container *):checked::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11px;
  height: 11px;
  background-image: url("/images/check-circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.input-radio-button:checked::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 11px;
  height: 11px;
  background-image: url("/images/check-circle.svg");
  background-size: contain;
  background-repeat: no-repeat;
}

.radio-label {
  color: var(--primary-0);
  font-weight: 500;
  font-size: 14px;
  line-height: 16px;
}

/* Switch */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}

.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--neutral-7);
  transition: .4s;
  border-radius: 24px;
}

.switch-slider:before {
  position: absolute;
  content: "";
  height: 20px;
  width: 20px;
  left: 2px;
  bottom: 2px;
  background-color: var(--full-white);
  transition: .4s;
  border-radius: 50%;
}

input:checked + .switch-slider {
  background-color: var(--primary-2);
}

input:checked + .switch-slider:before {
  transform: translateX(20px);
}

/* Switch small */
.switch-small {
  position: relative;
  display: inline-block;
  width: 38px;
  height: 20px;
}

.switch-small input {
  opacity: 0;
  width: 0;
  height: 0;
}

.switch-slider-small {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--neutral-7);
  transition: .4s;
  border-radius: 20px;
}

.switch-slider-small:before {
  position: absolute;
  content: "";
  height: 14px;
  width: 14px;
  left: 2px;
  bottom: 3px;
  background-color: var(--full-white);
  transition: .4s;
  border-radius: 50%;
}

input:checked + .switch-slider-small {
  background-color: var(--primary);
}

input:checked + .switch-slider-small:before {
  transform: translateX(20px);
}

/* SELECT */
select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.2px;
  border: 1px solid var(--neutral-1);
  border-radius: 10px;
  width: 355px;
  height: 40px;
  color: var(--color-p);
  padding-left: 19px;
  padding-right: 19px;
  background: var(--background) url('/images/arrow-down.svg') no-repeat right 19px center;
  transition: .4s;
}

@media (max-width: 425px) {
  select {
    width: 255px;
  }
}

select:focus,
select:hover,
select:active,
select:focus-within {
  outline: none;
  box-shadow: var(--shadow-1);
}

.select-wrapper {
  position: relative !important;
  display: inline-block !important;
  user-select: none !important;
  height: 40px !important;
  border: 1px solid var(--color-p2);
  border-radius: 10px;
}

/*NEW*/
.menu-wrap {
  padding: 0;
}

.blue-header {
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  width: 100vw;
  display: flex;
  align-items: start;
  justify-content: flex-start;
  background-color: var(--secondary);
  padding-inline-start: 10px;
  z-index: 99;
  margin-top: 15px;
  clear: both;
  margin-bottom: 10px;
}

@media (min-width: 768px) {
  .blue-header {
    position: relative;
    left: 0;
    transform: none;
    width: 100%;
    /* border-top: 1px solid white; */
    justify-content: start;
    margin-top: 0;
    margin-bottom: 0;
  }
}

.alert-icon {
  display: inline-block;
  width: 15px;
  height: 15px;
  margin-right: 7px;
}

.alert-message {
  display: flex;
  gap: 10px;
  margin-top: 10px !important;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px !important;
}

.alert-message img {
  width: 15px;
  height: auto;
}

.alert-message span {
  font-size: 12px;
  font-weight: 600;
  line-height: 17.4px;
  color: var(--primary-2);
  text-transform: uppercase;
}

.blue-header .alert-message {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 1px;
}

.blue-header .alert-message span {
  font-size: 11px;
  font-weight: 200;
  line-height: 17.4px;
  letter-spacing: 0.10em;
  text-align: justify;
  color: var(--full-white);
  text-transform: none;
}

.menu-logo {
  cursor: pointer;
  display: flex; 
  align-items: center; 
  height: 47px; 
  /* margin-right: 10px; */
}

.menu-logo img {
  height: 40px;
}

.md_header_navigation_title {
  @media (max-width: 767px) {
    justify-content: center;
  }
}

.md_header_navigation_title_text {
  @media (max-width: 767px) {
    font-size: 15px !important;
    font-weight: 400 !important;
    margin-right: 5px !important;
    text-transform: left !important;
  }
}

.location-brand-logo {
  display: block;
}

/* @media (max-width: 767px) {
  .location-brand-logo {
    display: none !important;
  }
} */

.md_menu_info_box_text {
  font-size: 10px;
  font-weight: 500;
  line-height: 17.4px;
  letter-spacing: 0.08em;
  text-align: justify;
  text-transform: none;
  padding-right: 10px;
  padding-left: 0px !important;
}

.md_dropdown_items {
  border-radius: 10px !important;
}

.md_dropdown_items_container {
  z-index: 9999 !important;
}

.md_menu_info_box .md_menu_info_box_inner {
  margin: 0 !important;
  padding: 10px 10px !important;
  display: flex;
  align-items: center;
  justify-content: start;
}

.md_saved_delivery_addresses_add_address {
  color: #fd4f57;
}

.md_location_address {
  position: relative;
  width: 100%;
}

@media (max-width: 768px) {
  .md_location_address {
    position: unset;
  }
}

.md_location_address_input {
  position: relative;
}

@media (max-width: 768px) {
  .md_location_address_input {
    position: relative;
  }
}

.md_pin_icon {
  background: #fff;
  color: #fd4f57;
  height: 48px;
  line-height: 50px;
  width: 50px;
  font-size: 25px;
  display: inline-block;
}

@media (max-width: 768px) {
  .md_pin_icon {
    display: none;
  }
}

.md_location_container {
  width: 140px;
  background: #F6F8F8;
  border-radius: 3px;
  display: inline-block;
  float: right;
  margin-top: 5px;
  margin-bottom: 5px;
}

@media (max-width: 768px) {
  .md_location_container {
    width: 100%;
  }
}

.md_location_container_location {
  width: 100%;
  background: #F6F8F8;
  border-radius: 3px;
  display: inline-block;
  float: right;
  margin-top: 5px;
  margin-bottom: 20px;
}

.md_locations {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
  justify-content: space-between !important;
  background-color: var(--background);
  height: 100vh !important;
}

/* @media (max-width: 768px) {
  .md_locations {
    height: 100vh !important;
  }
} */


.md_locations_buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  align-items: end;
}

.container-locations-button {
  padding: 5px;
}

.md_locations_button{
  /* position: absolute;
  top: 83%;
  left: 73%; */
  text-decoration: none; 
  display: inline-block; 
  color: var(--primary-text-color);
}

/* .md_locations_button:hover {
  color: var(--primary);
  text-decoration: none;
} */

.locations-modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.locations-modal-content {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* Ajustes para el modal */
#locations-modal {
  height: auto;
  min-height: 500px; /* Duplicar altura base */
}

/* Estilo para las tarjetas de ubicación */
#locations-modal .md_locations_item {
  margin-bottom: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  box-shadow: 0 1px 9px 0 rgba(0, 0, 0, 0.3) !important;
}

/* Media query para móvil */
@media (max-width: 768px) {
  #locations-modal {
    width: 100% !important;
    min-height: 80%;
    top: 20% !important;
  }
  
  .location-cards-grid {
    grid-template-columns: 1fr;
  }
  
  #locations-modal .product-card-header h3 {
    font-size: 16px;
  }
}

.locations-modal-close {
  padding: 15px 15px 0 0;
}

.md_locations_items {
  background: white;
  padding-bottom: 50px;
  overflow: hidden;
}

@media (min-width: 480px) {
  .md_locations_items {
    overflow: hidden;
  }
}

.md_locations_address_list {
  -moz-appearance: none;
  -webkit-appearance: none;
  display: block;
  border: none;
  height: 40px;
  line-height: 40px;
  color: #0B2135;
  outline: 0;
  word-break: normal;
  background: transparent;
  padding-left: 10px;
  padding-right: 10px;
  font-size: 16px;
  width: 100%;
  float: right;
  border: 1px solid #e9e9e9;
  border-radius: 2px;
}

@media (max-width: 768px) {
  .md_locations_address_list {
    height: 48px;
    font-size: 16px;
  }
}

.md_locations_address_list+i {
  float: right;
  margin-top: -31px;
  pointer-events: none;
  padding-right: 8px;
  font-size: 16px;
  color: #0B2135;
}

.md_location_element_container {
  width: 191px;
  position: absolute;
  top: 0px;
  height: 50px;
  border-radius: 3px;
  border-left: 1px solid #e9e9e9;
  border-bottom: 1px solid #e9e9e9;
  border-top: 1px solid #e9e9e9;
}

@media (max-width: 768px) {
  .md_location_element_container {
    padding-top: 5px;
    width: 100%;
    position: unset;
  }
}

.md_location_container{
  background: transparent !important;
}

@keyframes slideUp {
  0% { transform: translateY(100%); }
  100% { transform: translateY(0); }
}
#locations-modal .popup-body::-webkit-scrollbar {
  width: 6px;
}
#locations-modal .popup-body::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 10px;
}
#locations-modal .popup-body::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 10px;
}
#locations-modal .popup-body::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}
@media (min-width: 1024px) {
  #locations-modal {
    width: 100% !important;
    height: 100vh !important;
    max-height: 100vh !important;
    border-radius: 0 !important;
  }
  .popup-handle {
    display: none;
  }
  .popup-close {
    top: 30px !important;
    right: 30px !important;
  }
  .popup-body {
    max-height: none !important;
  }
}

.select-map-areas-locations {
  height: 45px !important;
  width: 140px !important;
  background-color: #fff !important;
  border: none !important;
  border-top-right-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}

@media (max-width: 768px) {
  .select-map-areas-locations {
    width: 100% !important;
    border-top-right-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
  }
}

/* .md_locations_search_box {
  width: 100%;
  padding: 10px !important;
  padding-bottom: 0 !important;
  height: 70%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: none !important;
} */
.md_locations_search_box_locations {
  /* padding-bottom: 15px; */
  text-align: center;
  background-color: #fff;
  /* border-bottom: 1px solid #e9e9e9; */
  border: none;
  background-size: cover;
  background-position: center center; 
  height: 300px;
}

@media (max-width: 768px) {
  .md_locations_search_box_locations_mobile_height_200 {
    height: 200px;
  }
}

@media (max-width: 768px) {
  .md_locations_search_box_locations_mobile_height_350 {
    height: 350px;
  }
}

.md_locations_search_box_inner {
  width: 600px;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 10px 0;
}

@media (max-width: 768px) {
  .md_locations_search_box_inner {
    width: 95%;
  }
}

.md_locations_search_box_address.md_input_padding_left {
  padding-left: 200px;
  height: 45px !important;
  width: 100% !important;
  border: none !important;
  background-color: #fff !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}

@media (max-width: 768px) {
  .md_locations_search_box_address.md_input_padding_left {
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }
}

@media (max-width: 768px) {
  .md_locations_search_box_address.md_input_padding_left {
    padding-left: 20px !important;
    height: 45px !important;
    border: none !important;
    background-color: #fff !important;
    border-radius: 10px !important;
  }
}

.md_locations_search_box_address.md_input_padding_left+.md_location_element_container {
  display: block;
}

.md_locations_cancel_geocoding {
  position: absolute;
  top: 1px;
  right: 1px;
  padding: 0 !important;
  background: #fff;
  color: #0b2135;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0.2px;
  border: none;
  border-radius: 2px;
  text-transform: none;
  background: transparent !important;
}

.md_locations_cancel_geocoding:after {
  background: #ffffff;
  content: ' ';
  display: block;
  height: 1px;
  width: 100%;
}

.md_locations_cancel_geocoding:hover {
  font-weight: 700;
}

.md_saved_delivery_addresses_list {
  border-radius: 10px !important;
}

.md_saved_delivery_addresses_list_item_container {
  border-top: 1px solid #e9e9e9;
  padding-bottom: 14px;
  max-height: 300px;
  overflow-y: auto;
}

.md_locations_cancel_geocoding {
  padding: 45px 10px 10px 0px;
  height: 30px;
  background: transparent;
}

.md_locations_search_box_address {
  border-radius: 10px !important;
}

.select {
  border-color: #e9e9e9;
  box-shadow: none;
  color: #0b2135;
  background-color: #fff;
  outline: 0;
  cursor: pointer;
  user-select: none;
  float: left;
  overflow: hidden;
  text-overflow: ellipsis;
}

.select_trigger_doc_type{
  display: flex !important;
  align-items: center !important;
  justify-content: start !important;
  padding-top: 8px !important;
}

.select .contenido-select {
  display: inline-block;
  width: 100%;
  text-align: left;
}

.select .contenido-select p {
  line-height: 50px;
  text-align: left;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  background: url('/images/arrow-down.svg') no-repeat right 0 center;
  padding-right: 20px;
}

.select i {
  width: 10%;
  text-align: center;
  height: 50px;
  line-height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 767px) {
  .md_form_field {
    width: 100%;
  }
}

.md_form_field.geocoding {
  position: relative;
}

.md_saved_delivery_addresses_list_item_new {
  line-height: 1.25;
  color: #0b2135;
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 10px;
}

@media screen and (min-width: 768px) {
  .md_saved_delivery_addresses_list_item_new {
    padding: 14px 20px;
  }
}

.md_saved_delivery_addresses_list_item_new:hover,
.md_saved_delivery_addresses_list_item_new:focus {
  background: #f9f9f9;
}

.md_saved_delivery_addresses_list_item_default {
  color: #0b2135;
}

.md_delivery_address_form {
  overflow: unset;
}

.md_delivery_address {
  overflow: unset;
  max-height: 65vh !important;
}

.md_delivery_address_container {
  height: 100% !important;
  padding: 0 !important;
  width: auto !important;
}

@media screen and (max-width: 767px) {
  .md_delivery_address_container {
    margin: 0;
  }
}

.select {
  border-radius: 10px !important;
}

@media screen and (min-width: 768px) {
  .md_delivery_address_form {
    max-height: 60vh;
    overflow-y: unset;
    flex: 1 1 auto;
    -webkit-overflow-scrolling: touch;
    position: initial;
  }
}

.md_payment_card_form {
  overflow: unset;
}

@media screen and (min-width: 768px) {
  .md_payment_card_form {
    max-height: 85vh;
    overflow-y: unset;
    flex: 1 1 auto;
    -webkit-overflow-scrolling: touch;
    position: initial;
  }
}

.md_form_field .md_width_50 {
  width: 50%;
}

@media (min-width: 768px) {
  .md_form_field .md_width_50 {
    width: 50%;
    float: left;
    padding: 0 10px;
  }

  .md_field_container .md_width_50:first-child {
    padding-left: 0;
  }

  .md_field_container .md_width_50:last-child {
    padding-right: 0;
  }
}

.md_form_field .md_width_30 {
  width: 100%;
}

@media (max-width: 767px) {
  .md_field_container .md_width_50 {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .md_form_field label {
    width: 100%;
  }
}

@media (max-width: 768px) {
  .security_code_field{
    width: 100% !important;  
  }
}

.input-text-security-code-field {
  width: 100% !important;
}

@media (max-width: 767px) {
  .md_form_field_mercadopago_new_card {
    width: 100% !important;
  }
}

@media (min-width: 768px) {
  .md_field_container .md_width_30 {
    width: 30%;
    float: left;
    padding: 0 10px;
  }

  .md_field_container .md_width_30:first-child {
    padding-left: 0;
  }

  .md_field_container .md_width_30:last-child {
    padding-right: 0;
  }
}

.md_form_field .md_width_40 {
  width: 100%;
}

@media (min-width: 768px) {
  .md_field_container .md_width_40 {
    width: 40%;
    float: left;
    padding: 0 10px;
  }

  .md_field_container .md_width_40:first-child {
    padding-left: 0;
  }

  .md_field_container .md_width_40:last-child {
    padding-right: 0;
  }
}

.md_form_field .md_width_70 {
  width: 100%;
}

@media (min-width: 768px) {
  .md_field_container .md_width_70 {
    width: 70%;
    float: left;
    padding: 0 10px;
  }

  .md_field_container .md_width_70:first-child {
    padding-left: 0;
  }

  .md_field_container .md_width_70:last-child {
    padding-right: 0;
  }
}

.md_cart_item_image {
  border-radius: 3px;
  float: right;
  margin: .5em;
  margin-right: 0;
  width: 96px;
  position: relative;
}

@media screen and (max-width: 668px) {
  .md_cart_item_image {
    width: 96px;
    margin-top: 0px;
  }
}

.md_cart_item_image img {
  border-radius: 3px;
  width: 100%;
}

@media screen and (max-width: 668px) {
  .md_cart_item_image img {
    border-radius: 3px;
    width: 100%;
    height: 100%;
  }
}

.md_cart_item_image:hover {
  cursor: pointer;
}

.md_cart_sticky_desktop {
  @media (min-width: 768px) {
    overflow-y: auto;
    overflow-x: hidden;
    max-height: 80vh;
  }
}

.md_product_details_img {
  margin: 0px 0px 20px 0px;
  width: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 668px) {
  .md_product_details_img {
    width: 100%;
    margin-top: 0px;
  }
}

.md_product_details_img .md_product_img {
  border-radius: 3px;
  width: 65%;
}

@media screen and (max-width: 668px) {
  .md_product_details_img .md_product_img {
    border-radius: 3px;
    width: 100%;
    height: 100%;
  }
}

@media (min-width: 669px) {
  .md_col_one_third{
    position: sticky !important;
    top: 135px !important;
  }
}

.md_col_two_third {
  width: calc(100% - 30px);
  float: left;
  margin-left: 15px; 
  padding: 30px;
}

@media (max-width: 668px) {
  .md_col_two_third {
    padding: 0px;
  }
}

@media (min-width: 992px) {
  .md_col_two_third {
    width: calc(66.66667% - 25px);
    float: left;
    margin-left: 15px;
  }
}

.md_col_one_third {
  width: calc(100% - 30px);
  float: left;
  margin-left: 15px; 
  margin: 50px;
}

@media (min-width: 992px) {
  .md_col_one_third {
    width: calc(27.33333% - 20px);
    float: left;
    margin-left: 15px;
    padding-left: 15px;
  }
}

.md_col_container {
  max-width: 1450px;
}

@media (max-width: 767px) {
  .md_col_container {
    margin-left: 10px;
    margin-right: 10px;
  }
}

.md_location_info_box{
  border-bottom: none !important;
}

.md_cart_totals_discount_code_button_new{
  background: var(--buttons-color) !important;
  color: var(--buttons-color-text) !important;
}

.md_cart_totals_discount_code_button:after {
  background: transparent;
}

.md_cart_bottom_button_price_new{
  background: var(--buttons-color) !important;
  color: var(--buttons-color-text) !important;
}

.md_product_details_button_new{
  background: var(--buttons-color) !important;
  color: var(--buttons-color-text) !important;
}

.md_cart_bottom_button_text_new{
  background: var(--buttons-color) !important;
  color: var(--buttons-color-text) !important;
}

/* Custom styles */
.time-div {
  display: flex;
  flex-direction: row;
  height: 36px;
  flex-shrink: 0;
  justify-content: start;
  align-items: center;
  width: 100%;
  background-color: var(--neutral-5);
  border-radius: 10px;
  text-wrap: nowrap;
  margin-top: 10px;
  margin-bottom: 5px;
  width: 100%;
  gap: 7px;
}

@media (min-width: 1024px) {
  .time-div {
    justify-content: center;
    gap: 10px;
    width: 60%;
  }
}

.time-div span {
  font-size: 13px;
  font-weight: 500;
  line-height: 18.85px;
  text-align: left;
  color: var(--secondary-3);
}

.time-div a {
  font-size: 12px;
  font-weight: 500;
  line-height: 17.4px;
  text-align: left;
  color: var(--discount-text-color);
  text-underline-position: from-font;
}

.percent-div {
  display: flex;
  flex-direction: row;
  height: 36px;
  flex-shrink: 0;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  gap: 10px;
  background-color: var(--discount-text-color-light);
  border-radius: 10px;
  text-wrap: nowrap;
  margin-top: 5px;
  margin-bottom: 10px;
  cursor: pointer;
}

@media (min-width: 1024px) {
  .percent-div {
    justify-content: center;
    gap: 10px;
    padding: 0 10px;
    width: 60%;
  }
}

@media (max-width: 767px) {
  .percent-div {
    padding-left: 10px;
  }
}

.percent-div img {
  margin-left: 10px;
}

.percent-div span {
  font-size: 13px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: -0.005em;
  text-align: center;
  color: var(--discount-text-color);
}

.categories-bar {
  height: 60px;
  width: 100%;
  background: #f9f9f9;
  overflow: hidden;
  overflow-x: auto;
  padding-top: 10px;
  margin-bottom: 10px;
}

@media (min-width: 992px) {
  .categories-bar::-webkit-scrollbar {
    width: 7px;
    height: 7px;
  }
  .categories-bar::-webkit-scrollbar-button {
    width: 0px;
    height: 0px;
  }
  .categories-bar::-webkit-scrollbar-thumb {
    background: #A8A8A8;
    border: none;
    border-radius: 50px;
  }
  .categories-bar::-webkit-scrollbar-track {
    background: transparent;
    border: none;
    border-radius: 50px;
  }
  .categories-bar::-webkit-scrollbar-corner {
    background: transparent;
  }
}

@media (max-width: 991px) {
  .categories-bar-fixed {
    right: 15px;
    max-width: 100%;
    width: calc(100vw - 30px);
    max-width: calc(100vw - 30px);
  }
}

.categories-bar-fixed {
  position: fixed;
  z-index: 1000;
  top: 50px;
  width: 100%;
}

ul.categories-bar-list {
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
  height: 60px;
  display: block;
  white-space: nowrap;
}

ul.categories-bar-list li {
  display: inline-block !important;
  vertical-align: middle;
  white-space: nowrap;
  border-radius: 8px;
  background: #8fced37d;
  height: 38px;
  position: relative;
  margin-left: 5px;
  margin-right: 5px;
  padding-left: 10px;
  padding-right: 10px;
}

ul.categories-bar-list li a {
  text-align: center;
  color: #0b2135;
  line-height: 37px;
  display: block;
  text-decoration: none;
}

ul.categories-bar-list li a:hover {
  font-weight: 600;
}

.md_form_add_new_card {
  border: 1px solid #0b2135;
  background-color: white;
  color: #0b2135;
  padding: 8px 16px;
  font-size: 16px;
  cursor: pointer;
  border-radius: 10px;
}

@media (max-width: 767px) {
  .md_form_add_new_card {
    width: 100%;
    box-sizing: border-box;
  }
}

.md_form_add_new_card:hover {
  border-color: #fd4f57;
  color: #fd4f57;
}

.md_payment_card_detail {
  align-items: flex-start;
  color: #0b2135;
  display: flex;
}

@media (max-width: 991px) {
  .md_payment_card_detail {
    border-bottom: none;
    margin: 28px 0;
  }
  .md_payment_card_detail:first-child {
    margin-top: 28px;
  }
}

.md_payment_card_detail_input_checkbox {
  display: none;
}

.md_payment_card_detail_input_checkbox:checked+.md_product_details_options_group_option_radio {
  background: #5eb3b7;
}

.md_select_card_img {
  left: 12px;
  position: absolute;
  top: 42px;
  width: 60px;
}

.md_checkout {
  @media (max-width: 767px) {
    padding-top: 20px !important;
  }
}

.md_checkout_steps {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.md_checkout_step {
  margin-left: 20px;
  margin-right: 20px;
}

.md_checkout_step_number {
  border: 2px solid #0b2135;
  width: 50px;
  height: 50px;
  padding: 2.5px;
  border-radius: 50%;
  margin: auto;
  background: white;
  position: relative;
  z-index: 2;
}

.md_checkout_step_number span {
  background: #0b2135;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  margin: auto;
  justify-content: center;
  z-index: 2;
  font-family: Lato;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  color: #ffffff;
}

.md_checkout_steps .md_checkout_step .old {
  width: 40px;
  height: 40px;
  margin-top: 5px;
  margin-bottom: 5px;
  border-color: #86909a;
}

.md_checkout_steps .md_checkout_step .old span {
  width: 30px;
  height: 30px;
  background: #86909a;
}

.md_checkout_steps .md_checkout_step .old span svg {
  width: 15px;
  height: 15px;
  margin-top: 2px;
}

.md_checkout_step_text {
  width: 100;
  text-align: center;
  width: 80px;
  color: #0b2135;
  font-weight: bold;
}

.md_checkout_step_connect {
  width: 80px;
  border-style: none;
  height: 2px;
  position: relative;
  background: #0b2135;
  top: -70px;
  z-index: 1;
}

.md_checkout_payment_method_form {
  padding: 0 !important;
}

.md_order_details {
  width: calc(100% - 30px);
  margin-left: 15px;
  padding: 10px 0 10px 0;
  font-family: Lato;
  font-size: 14px;
  color: #0b2135;
  display: flex;
  justify-content: start;
  gap: 10px;
}

.md_order_details_content {
  border-bottom: 4px solid rgba(139, 155, 172, 0.1);
  cursor: pointer;
}

.md_order_details_price {
  display: block;
  background: #5eb3b7;
  border: solid 1px rgba(199, 203, 213, 0.5);
  width: 56px;
  height: 32px;
  border-radius: 4px;
  color: white;
  text-align: center;
  line-height: 32px;
  float: right;
  margin-top: -5.5px;
}

.md_order_details_arrow {
  /* margin-bottom: -2px; */
  color: var(--primary);
}

.md_order_details_hide {
  padding: 15px;
  overflow: hidden;
  background: white;
  width: 100%;
  position: absolute;
  display: none;
  z-index: 5;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.md_order_details_hide div {
  float: left;
}

.md_order_details_hide h4 {
  width: 230px;
  margin-top: 10px;
}

.md_order_details_text_hide {
  font-size: 12px;
  margin-top: 2px;
  margin-left: 10px;
  width: 230px;
}

.md_order_details_dish {
  color: #fd4f57;
}

.md_order_details_price_hide {
  float: right;
  color: #0b2135;
  font-weight: bold;
  margin-top: 10px;
}

.md_order_details_back {
  position: absolute;
  z-index: 3;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, .5);
  display: none;
}

.time {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.time_green {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  color: green;
  min-height: 10px;
}

.badge {
  padding: 0.25em 0.4em;
  font-size: 75%;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  vertical-align: baseline;
  border-radius: 0.25rem;
  transition: color .15s ease-in-out, background-color .15s ease-in-out, border-color .15s ease-in-out, box-shadow .15s ease-in-out;
}

.badge-success {
  color: #fff;
  background-color: #28a745;
}

.badge-warning {
  color: #fff;
  background-color: #ffc107;
}

.badge-danger {
  color: #fff;
  background-color: #dc3545;
}

.custom-radio {
  display: flex;
  align-items: center;
}

.custom-radio input[type="radio"] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 16px;
  height: 16px;
  border: 2px solid #bfbfbf;
  border-radius: 50%;
  outline: none;
  cursor: pointer;
  position: relative;
  margin-right: 10px;
  transition: border-color 0.3s;
}

.custom-radio input[type="radio"]:checked {
  border-color: #009ee3;
}

.custom-radio input[type="radio"]:checked::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #009ee3;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.custom-radio label {
  font-size: 16px;
  color: #0b2135;
  cursor: pointer;
}

/*Clase para texto de metodos de pago */
.custom-payment-text {
  display: flex;
  max-width: 70%;
  padding: 5px 0 5px 0;
}

.custom-payment-text .title {
  color: #1a1a1a;
  font-size: 16px;
  text-transform: none;
}

.custom-payment-text .description {
  color: #737373;
  font-size: 14px;
  text-transform: none;
}

/* Clase para el payment grid */
.payment-grid-container {
  border: 1px solid #e9e9e9;
  border-radius: 5px;
  overflow: hidden;
}

.payment-type-box {
  border-top: 1px solid #e9e9e9;
  padding: 0 15px;
  display: flex;
  flex-direction: row;
  align-items: center;
  background-color: #fff;
  cursor: pointer;
  min-height: 78px;
  transition: border-color 0.3s, background-color 0.3s;
}

.payment-type-box:first-child {
  border-top: none;
}

.payment-type-box:hover {
  background-color: #f5f5f5;
}

.payment-type-box-selected {
  background-color: #f5f5f5;
}

.payment-type-box:first-child {
  border-radius: 5px 5px 0 0;
}

.payment-type-box:last-child {
  border-radius: 0 0 5px 5px;
}

.custom-logo-img {
  width: 40px;
  height: 40px;
  margin-right: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #c4c4c4;
  border-radius: 50%;
  padding: 1px;
  box-sizing: border-box;
  background: #fff;
}

.md_locations_logo_image {
  width: 100px !important;
  height: 100px !important;
  border: none !important;
}

.custom-decidir-add-card {
  margin-left: 41px;
}

.disabled-div {
  pointer-events: none;
  opacity: 0.5;
}

/* NEW DESIGN */
/* SELECT */
.select-map-areas-locations {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.2px;
  border: 1px solid var(--neutral-1);
  border-radius: 10px;
  width: 355px;
  height: 40px;
  color: var(--color-p);
  padding-left: 19px;
  padding-right: 19px;
  background: var(--background) url('../images/arrow-down.svg') no-repeat right 19px center;
  transition: .4s;
}

@media (max-width: 425px) {
  .select-map-areas-locations {
    width: 255px;
  }
}

.select-map-areas-locations:focus,
.select-map-areas-locations:hover,
.select-map-areas-locations:active,
.select-map-areas-locations:focus-within {
  outline: none;
  box-shadow: var(--shadow-1);
}

/* BUTTONS */
.btn-n {
  height: 45px !important;
  border-radius: 10px !important;
  font-weight: 400 !important;
  font-size: 16px !important;
  line-height: 23.2px !important;
  border: 0 !important;
  transition: .4s !important;
  gap: 5px !important;
}

.btn-n-small {
  height: 30px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 23.2px !important;
  border: 0 !important;
  transition: .4s !important;
  width: 89px !important;
}

.btn-n-primary {
  background-color: var(--btn-primary-bg) !important;
  color: var(--white) !important;
}

.btn-n-primary:hover {
  background-color: color-mix(in srgb, var(--btn-primary-bg) 80%, white) !important;
}

.btn-n-disabled {
  background-color: var(--muted) !important;
  color: var(--white-custom) !important;
}

.btn-n-card-form {
  height: 45px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 23.2px !important;
  border: 0 !important; 
  transition: .4s !important;
  gap: 5px !important;
  width: 90% !important;
}

.btn-n-small-card-form {
  height: 30px !important;
  border-radius: 10px !important;
  font-weight: 600 !important;
  font-size: 16px !important;
  line-height: 23.2px !important;
  border: 0 !important;
  transition: .4s !important;
  width: 89px !important;
}

.btn-n-primary-card-form {
  background-color: var(--btn-primary-bg) !important;
  color: var(--white) !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
}

.btn-n-primary-card-form:hover {
  /* background-color: var(--primary-hover) !important; */
  background-color: color-mix(in srgb, var(--btn-primary-bg) 80%, white) !important;
}

.btn-n-primary-card-form-disabled {
  background-color: var(--muted) !important;
  color: var(--white-custom) !important;
}

/* New styles for locations.js*/
.address-window {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: var(--black-transparent);
  border-radius: 15px;
  box-shadow: var(--shadow-2);
  padding: 10px;
  transition: all .4s ease;
  width: 100%;
  font-family: var(--main-font), system-ui, Avenir, Helvetica, Arial, sans-serif !important;
}

/* @media (min-width: 768px) {
  .address-window {
    width: 544px;
  }
} */

.address-window .inputs-wrapper {
  display: flex;
  flex-direction: column;
  width: 95%;
  justify-content: center;
  align-items: center;
  gap: 5px;
  margin-bottom: 10px;
  transition: all .4s ease;
}

@media (min-width: 768px) {
  .address-window .inputs-wrapper {
    /* width: 85%; */
    flex-direction: row;
    column-gap: 0;
    row-gap: 10px;
  }
}

@media (min-width: 1440px) {
  .address-window .inputs-wrapper {
    flex-direction: row;
    column-gap: 0;
    row-gap: 10px;
    width: 90%;
  }
}

.address-window .add-address {
  display: none;
  position: absolute;
  top: 20%;
  left: 10%;
  align-items: center;
  width: 80%;
  opacity: 0;
  transition: all 0.4s ease;
}

@media (min-width: 768px) {
  .address-window .add-address {
    top: 24%;
    margin-left: 20px;
    width: 94%;
    left: 0;
  }
}

@media (min-width: 1024px) {
  .address-window .add-address {
    top: 24%;
    margin-left: 20px;
    width: 94%;
    left: 0;
  }
}

@media (min-width: 1440px) {
  .address-window .add-address {
    top: 24%;
    left: 0;
    margin-left: 0;
    padding-left: 10px;
    width: 534px;
  }
}

.address-window .visible {
  display: flex;
  flex-direction: column;
  opacity: 1;
}

.address-window .hidden {
  display: none;
  opacity: 0;
}

.address-window .input-label {
  color: var(--full-white);
  font-size: 18px;
  font-weight: 400;
  line-height: 24.48px;
  margin-top: 5px;
  text-transform: none;
}

/* .address-window .search-icon {
  ...
} */

.address-window .btn-n {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 10px;
  width: 45%;
}

.address-window .input-wrapper {
  position: relative;
  display: inline-block;
  justify-content: center;
  align-items: center;
  width: 90%;
}

.address-input {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  font-weight: var(--text-md-regular-font-weight) !important;
  color: var(--gray-900) !important;
  font-family: var(--text-md-regular-font-family) !important;
  font-size: var(--text-md-regular-font-size) !important;
  letter-spacing: var(--text-md-regular-letter-spacing) !important;
  line-height: var(--text-md-regular-line-height) !important;
  font-style: var(--text-md-regular-font-style) !important;
}

.address-input:focus {
  outline: none;
}

.address-window .separator-container {
  background-color: var(--full-white);
  height: 45px;
  display: flex;
  align-items: center;
}

@media (max-width: 768px) {
  .address-window .separator-container {
    display: none;
  }
}

.address-window .input-addresses {
  height: 45px;
  border-radius: 10px;
  border: none;
  background: var(--full-white);
  color: var(--color-p);
  font-weight: 400;
  font-size: 14px;
  line-height: 26px;
  padding-left: 19px;
  padding-right: 85px;
  box-sizing: border-box;
  width: 100%;
}

@media (max-width: 425px) {
  .address-window .input-addresses {
    padding-left: 13px;
    padding-right: 8px;
  }
}

@media (min-width: 768px) {
  .address-window .input-addresses {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
  }
}

.address-window .input-addresses::placeholder {
  color: var(--color-p2);
  font-weight: 200;
  font-size: 16px;
  line-height: 26px !important;
}

.address-window .input-link {
  position: absolute;
  cursor: pointer;
  right: 25px;
  top: 50%;
  text-transform: uppercase;
  text-decoration-line: underline;
  transform: translateY(-50%);
  color: var(--secondary-2);
  font-weight: 400;
  font-size: 11px;
  line-height: 26px;
  text-underline-position: from-font;
}

@media (max-width: 425px) {
  .address-window .input-link {
    right: 15px;
  }
}

@media (min-width: 1024px) {
  .address-window .input-link {
    right: 12px;
  }
}

.address-window .input-link:hover {
  color: var(--secondary-hover-2);
}

.address-window .select-wrapper {
  position: relative;
  display: inline-block;
  user-select: none;
  width: 90%;
}

@media (min-width: 768px) {
  .address-window .select-wrapper {
    width: 50%;
  }
}

.address-window .select-input {
  position: relative;
  display: inline-block;
  cursor: pointer;
  height: 45px;
  border: none;
  border-radius: 10px;
  background-color: var(--full-white);
  transition: .4s;
  width: 100%;
}

.address-window .select-trigger {
  display: flex;
  align-items: center;
  padding: 10px 12px;
  font-size: 16px;
  font-weight: 400;
  color: var(--color-p2);
}

.address-window .select-icon {
  margin-right: 5px;
  background-image: url("../images/mark.svg");
  width: 20px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
}

.address-window .select-arrow {
  margin-right: 3px;
  background-image: url("../images/arrow-down.svg");
  width: 12px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform .4s ease;
}

.address-window .select-options {
  position: absolute;
  display: none;
  flex-direction: column;
  width: 100%;
  border-top: none;
  border-radius: 0 0 10px 10px;
  background-color: var(--snowwhite);
  box-shadow: var(--shadow-1);
  top: 82%;
}

.address-window .select-option {
  padding-left: 34px;
  padding-top: 5px;
  padding-bottom: 5px;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.2px;
  color: var(--color-p);
  cursor: pointer;
}

.address-window .select-option:first-child {
  margin-top: 10px;
}

.address-window .select-option:last-child {
  margin-bottom: 10px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}

.address-window .select-option:hover {
  background-color: var(--neutral-2);
}

.address-window .select-open .select-options {
  display: flex;
  gap: 10px;
}

.address-window .select-open .select-arrow {
  transform: rotate(180deg);
}

.input-label {
  color: var(--gray-700);
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  margin-bottom: 8px;
  display: block;
}

.input-wrapper {
  display: flex !important;
  align-items: center !important;
  gap: 8px !important;
  width: 100% !important;
}

.input-link {
  position: absolute;
  right: 14px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--primary-700);
  font-size: 14px;
  cursor: pointer;
}

.separator-line-v {
  width: 1px;
  height: 44px;
  background: var(--gray-200);
  margin: 0;
  border: none;
}

.selects-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: auto;
  flex-shrink: 0;
  border-radius: 10px;
  border-style: solid;
  border-width: 2px;
  border-color: var(--border-color-1);
  align-items: center;
  justify-content: center;
  margin-top: 15px;
}

@media (min-width: 1024px) {
  .selects-box {
    width: 100%;
    flex-direction: row;
    height: 46px;
    gap: 20px;
  }
}

.md_menu_scheduler {
  padding: 0;
}

@media (max-width: 767px) {
  .md_menu_scheduler {
    width: 100%;
  }
}

.md_menu_delivery_method{
  padding: 0;
}

@media (max-width: 767px) {
  .md_menu_delivery_method{
    width: 100%;
  }
}

.md_dropdown_arrow {
  top: 10px !important;
}

.selects-box .select-wrapper {
  width: 90%;
}

@media (min-width: 1024px) {
  .selects-box .select-wrapper {
    width: 50%;
    text-align: center;
  }
}

.selects-box .separator-line {
  width: 90%;
  height: 1px;
  border: none;
  background-color: var(--neutral-1);
}

@media (min-width: 1024px) {
  .selects-box .separator-line {
    width: 1px;
    height: 27px;
  }
}

.selects-box .select-input {
  position: relative;
  display: inline-block;
  cursor: pointer;
  height: 41px;
  border: none;
  transition: .4s;
  width: 95%;
}

@media (min-width: 1024px) {
  .selects-box .select-input {
    width: 80%;
    text-align: start;
  }
}

.selects-box .select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 6px;
  font-size: 13px;
  font-weight: 400;
  line-height: 23.2px;
  color: var(--text-gray4);
  width: 100%;
}

.selects-box .select-text {
  width: 100%;
  text-wrap: nowrap;
  text-overflow: ellipsis;
}

.selects-box .select-arrow {
  background-image: url("../images/arrow-down.svg");
  width: 9px;
  height: 6px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform .4s ease;
}

.selects-box .select-options {
  position: absolute;
  display: none;
  flex-direction: column;
  width: 100%;
  background-color: var(--snowwhite);
  border-top: none;
  border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow-1);
  z-index: 5;
}

.selects-box .select-option {
  padding: 10px 19px;
  font-size: 12px;
  font-weight: 400;
  line-height: 23.2px;
  color: var(--color-p);
  cursor: pointer;
}

.selects-box .select-option:last-child {
  border-radius: 0 0 10px 10px;
}

.selects-box .select-option:hover {
  background-color: var(--neutral-9);
}

.selects-box .select-open .select-options {
  display: flex;
}

.selects-box .select-open .select-arrow {
  transform: rotate(180deg);
}

.select-wrapper {
  position: relative;
  display: inline-block;
  user-select: none;
}

.select-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  cursor: pointer;
}

.select-text {
  color: var(--gray-900);
  font-size: 16px;
  line-height: 24px;
}

.select-arrow {
  margin-left: auto;
  width: 20px;
  height: 20px;
  background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 7.5L10 12.5L15 7.5' stroke='%23667085' stroke-width='1.66667' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.md_locations_search_box_button {
  width: 100%;
  padding: 10px 18px;
  background: var(--primary-700);
  border: none;
  border-radius: 8px;
  color: white;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.md_locations_search_box_button:hover {
  background: var(--primary-800);
}

.search-address-new-btn {
  color: var(--full-white);
  background-color: var(--btn-primary-bg);
  cursor: pointer;
  border: none;
  padding: 0;
  font: inherit;
  margin-top: 0;
  font-family: var(--main-font), system-ui, Avenir, Helvetica, Arial, sans-serif !important;
  text-transform: none;
}

.search-address-new-btn:hover {
  /* background-color: var(--primary-hover); */
  background-color: color-mix(in srgb, var(--btn-primary-bg) 80%, white) !important;
}

.search-address-new-btn.invisible {
  visibility: hidden;
}

/* Estilos para el carrusel */
.container-wrapper-carousel {
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  padding: 0 10px;
  border-radius: 10px;
  position: relative;
}

.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  margin-top: 15px;
}

.carousel-inner {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  overflow: hidden;
}

.carousel-item {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
    height: 100%;
    opacity: 0;
  visibility: hidden;
  transition: opacity 0.8s ease-in-out, visibility 0.8s ease-in-out;
  display: block;
  }

  .carousel-item.active {
    opacity: 1;
  visibility: visible;
  }

.carousel-item img {
  width: 100%;
  transition: transform 0.8s ease-in-out;
}

.carousel-dots {
  position: absolute;
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  padding: 10px 0;
  z-index: 1;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.dot:hover {
  transform: scale(1.2);
}

.dot.active {
  background-color: rgba(0, 0, 0, 0.5);
  transform: scale(1.2);
}

.md_location_logo_image{
  border-radius: 5px !important;
  width: 80px !important;
  height: 80px !important;
  border: none !important;
}

.md_menu_category .md_menu_category_title {
  margin-top: 10px !important;
}

.md_menu_category .banner-category img {
  border-radius: 5px !important;
}

.md_menu_item{
  padding: 0 !important;
}

.container2 {
  margin-top: 10px;
}

.heading-and-supporting-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
  margin-bottom: 15px;
}

.heading1 {
  font-size: 17px;
  font-weight: 400;
  color: var(--primary-text-color);
  text-align: center;
  margin-bottom: 8px;
  width: 100%;
}

.supporting-text {
  font-size: 13px;
  color: var(--color-p);
  text-align: center;
  margin-bottom: 16px;
  width: 100%;
}

/* Contenedor de botones */
.contact-text-parent {
  display: flex;
  gap: 20px;
  justify-content: center;
  width: 100%;
}

.contact-text,
.contact-text1 {
  width: 110px;
  height: 80px !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: var(--secondary-hover-2);
  opacity: 0.5;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 5px !important;
  /* padding-top: 10px !important; */
  cursor: pointer;
  transition: all 0.3s ease;
}

.contact-text.selected,
.contact-text1.selected {
  background-color: var(--delivery-type-button-color);
  border: 1px solid #000000;
  opacity: 1;
}

.featured-icon {
  width: 40px;
  height: 40px;
  margin-bottom: 12px;
  color: #000000;
}

.text4 {
  font-size: 14px;
  font-weight: 500;
  color: #000000;
  text-align: center;
  width: 100%;
}

/* Menu Off Canvas */
.menu-off-canvas {
  top: 0;
  left: -390px;
  background-color: var(--snowwhite);
  min-width: 270px;
  height: 100%;
  border-bottom-right-radius: 20px;
  transition: all 0.3s ease;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.menu-off-canvas-visible {
  transform: translateX(390px);
}

.menu-cover {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  box-shadow: 159px 4px 48.3px 163px #000000;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
  z-index: 1;
}

.menu-cover-visible {
  opacity: 1;
  pointer-events: auto;
}

/* Off Canvas Header */
.off-canvas-header {
  background-color: var(--header-color);
  padding-top: 0;
  padding-left: 30px;
  color: var(--full-white);
  font-weight: 500;
  line-height: 27.2px;
  font-size: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 75px;
}

/* Off Canvas Menu */
.off-canvas-menu {
  padding-left: 30px;
}

.off-canvas-menu ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding-left: 0;
}

.off-canvas-menu .menu-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  color: var(--menu-item);
  transition: all 0.3s ease;
}

.off-canvas-menu .menu-item:hover {
  color: var(--color-p);
}

@media screen and (max-width: 668px) {
  .content::before {
    display: block !important;
  }
}

@media screen and (max-width: 668px) {
  .c-landing::before {
    display: none !important;
  }
}

/* Theme Selector */
.theme-selector {
  font-size: 12px;
}

.theme-selector ul {
  padding-left: 20px;
  gap: 0;
}

.theme-selector .theme-list {
  display: none;
}

.theme-list.visible {
  display: flex;
  flex-direction: column;
}

/* Off Canvas Footer */
.off-canvas-footer {
  /* margin-top: 70%; */
  padding-bottom: 10px;
  color: var(--menu-item-ligth);
}

.off-canvas-footer div a {
  color: var(--menu-item);
  transition: all 0.3s ease;
}

.terms-container {
  padding-left: 30px;
}
.off-canvas-footer div a:hover {
  color: var(--color-p);
}

.ul-aside-menu {
  margin-top: 16px;
}

.md_header_navigation_left_button {
  width: auto;
}

.md_header_navigation {
  background-color: var(--header-color) !important;
}

.md_header_navigation_menu_hamburger {
  cursor: pointer;
  display: inline-block;
  z-index: 3;
  margin: auto;
  padding-right: 20px;
}

.md_header_navigation_menu_hamburger .line {
  transition: all 0.3s ease;
}

.md_header_navigation_menu_hamburger:hover .top {
  transform: translateY(-4.5px) rotate(45deg);
  transform-origin: center;
}

.md_header_navigation_menu_hamburger:hover .middle {
  transform: scaleX(0);
  transform-origin: center;
}

.md_header_navigation_menu_hamburger:hover .bottom {
  transform: translateY(4.5px) rotate(-45deg);
  transform-origin: center;
}

.map-areas-selector.hidden {
  display: none;
}

.map-areas-selector {
  display: block;
}

.map-areas-selector {
  display: block;
  margin-bottom: 10px;
}

.map-areas-selector.hidden {
  display: none;
}

.map-areas-selector .select-input {
  position: relative;
  width: 100%;
}

.map-areas-selector .select-trigger {
  background: #fff;
  border: 1px solid #e9e9e9;
  border-radius: 2px;
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 50px;
  padding: 0 15px;
}

.map-areas-selector .select-icon {
  background-image: url('../images/icons/location.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  height: 20px;
  margin-right: 10px;
  width: 20px;
}

.map-areas-selector .select-arrow {
  background-image: url('../images/icons/arrow-down.svg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  display: inline-block;
  height: 12px;
  margin-left: auto;
  width: 12px;
}

.map-areas-selector .select-options {
  position: absolute;
  display: none;
  flex-direction: column;
  width: 100%;
  border-top: none;
  border-radius: 0 0 10px 10px;
  background-color: var(--snowwhite);
  box-shadow: var(--shadow-1);
  top: 100%;
  z-index: 10;
}

/* Nuevos estilos agregados */
.text-gray3 {
  color: var(--text-gray3);
}

.blue-button-inactive {
  background-color: var(--blue-button-inactive);
}

.blue-button-active {
  background-color: var(--blue-button-active);
}

.blue-button-active2 {
  background-color: var(--blue-button-active2);
}

.text-cyan {
  color: var(--text-cyan);
}

.text-gray {
  color: var(--text-gray);
}

.text-gray2 {
  color: var(--text-gray2);
}

.text-gray4 {
  color: var(--text-gray4);
}

/* Eliminamos la segunda definición de .subtitle-large y .subtitle-default 
   para no duplicar. */

/* Estilos para el menú hamburguesa */
.menu-hamburger:hover .middle {
  transform: scaleX(0);
  transform-origin: center;
}

/* Estilos para elementos con iconos */
.icon-percent {
  background-image: url("../img/page2/percent.svg");
  margin-right: 5px;
  width: 20px;
  height: 20px;
}

/* Estilos para la descripción superior */
.desc-top {
  display: inline-flex;
  flex-direction: row;
  gap: 3px;
}

/* Estilos para el contenedor de checks */
.check-container {
  display: flex;
  align-items: center;
  gap: 5px;
}

.md_cart_container .md_cart_container_inner.is_stuck {
  position: static;
}

.product-detail {
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  border-style: solid;
  border-width: 1px;
  border-color: var(--border-color-1);
  width: 100% !important;
  padding: 20px 20px;
  gap: 10px;
}

@media (min-width: 1300px) {
  .product-detail {
    width: 80%;
  }
}

.md_bottom{
  width: 100% !important;
}

.product-detail .product-detail-header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  /* align-items: center; */
  padding-left: 0;
  padding-right: 0;
}

.product-detail .product-detail-header .product-detail-header-inner1 {
  display: flex;
  flex-direction: row;
  justify-content: start;
  align-items: center;
  gap: 5px;
  width: 80%;
}

.product-detail .product-detail-header .product-detail-header-inner1 .product-detail-image {
  width: 52px;
  height: 48px;
  border-radius: 5px;
}

.product-detail .product-detail-header .product-detail-header-inner1 .product-detail-header-inner1-text {
  display: flex;
  flex-direction: column;
  width: 80%;
}

.product-detail .product-detail-header .product-detail-header-inner1 .product-detail-header-inner1-text .product-name {
  display: inline-flex;
  flex-direction: row;
  gap: 5px;
  width: 80%;
}

.product-detail .product-detail-header .product-detail-header-inner1 .product-detail-header-inner1-text .product-name .text-danger {
  font-size: 16px;
  font-weight: 700;
  line-height: 21.76px;
  text-align: left;
  color: var(--secondary-2);
}

.product-detail .product-detail-header .product-detail-header-inner1 .product-detail-header-inner1-text .product-name .text-title {
  font-size: 16px;
  font-weight: 500;
  line-height: 21.76px;
  text-align: left;
  color: var(--black);
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.product-detail .product-detail-header .product-detail-header-inner1 .product-detail-header-inner1-text .text-subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 20.3px;
  text-align: left;
  color: var(--color-p);
  text-wrap: nowrap;
  text-overflow: ellipsis;
}

.product-detail .product-detail-header .product-detail-header-inner2 {
  display: flex;
  align-items: start;
  justify-content: end;
  width: 20%;
}

.product-detail .product-detail-header .product-detail-header-inner2 .text-title {
  font-weight: 600;
  font-size: 14px;
  line-height: 21.76px;
  color: var(--black);
}

.product-detail .product-detail-price {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-detail .product-detail-price .product-detail-price-data {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.product-detail .product-detail-price .product-detail-price-data .text-gray {
  font-size: 14px;
  font-weight: 500;
  line-height: 14.14px;
  color: var(--text-gray);
}

.product-detail .product-detail-price .product-detail-price-data .text-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 14.14px;
  color: var(--dark-black);
}

.product-detail .product-detail-price .product-detail-price-info {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 14.14px;
  color: var(--discount-text-color);
}

.product-detail .product-detail-price .product-detail-price-total {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 10px;
}

.product-detail .product-detail-price .product-detail-price-total .text-dark {
  font-size: 16px;
  font-weight: 700;
  line-height: 21.76px;
  text-align: left;
  color: var(--dark-black);
}

.product-detail .product-detail-price .product-detail-price-total .text-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 21.76px;
  text-align: left;
  color: var(--black);
}

.product-detail .coupon-discount {
  display: flex;
  flex-direction: column;
}

.product-detail .coupon-discount .input-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 20.3px;
  text-transform: none; 
  color: var(--dark-black);
}

.product-detail .coupon-discount .mini-form {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 10px;
}

.product-detail .coupon-discount .mini-form input {
  width: 55% !important;
  background-color: transparent;
  height: 40px;
  border-radius: 10px;
  border-width: 2px;
  border-color: var(--border-color-1);
  border-style: solid;
}

.product-detail .coupon-discount .mini-form .btn-mini-form {
  height: 40px;
  border-radius: 10px;
  border-color: transparent;
  background-color: var(--primary);
  font-size: 14px;
  font-weight: 600;
  line-height: 20.3px;
  color: var(--full-white);
  cursor: pointer;
  width: 30%;
}

.product-detail .coupon-discount .mini-form .btn-mini-form:hover {
  background-color: color-mix(in srgb, var(--primary) 80%, white) !important;
}

.product-detail .clarify {
  display: flex;
  flex-direction: column;
}

.product-detail .clarify .input-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 20.3px;
  text-transform: uppercase;
  color: var(--primary);
}

.product-detail .clarify .textarea {
  border: 2px solid var(--border-color-1);
  border-radius: 10px;
  resize: none;
  background-color: transparent;
}

.product-order .btn-order {
  display: flex !important;
  justify-content: space-between !important;
  align-items: center !important;
  width: 100% !important;
  height: 45px !important;
  border-radius: 10px !important;
  border-color: transparent !important;
  background-color: var(--primary) !important;
  font-size: 16px !important;
  font-weight: 600 !important;
  line-height: 23.2px !important;
  color: var(--full-white) !important;
  padding: 5px 16px !important;
  cursor: pointer !important;
}

.product-order .btn-order:hover {
  /* background-color: var(--primary-hover) !important; */
  background-color: color-mix(in srgb, var(--btn-primary-bg) 80%, white) !important;
}

.categories-container {
  width: 100%;
  position: sticky;
  top: 50px;
  z-index: 10;
  background-color: var(--full-white);
  margin: 25px 0;
}

@media (min-width: 992px) {
  .categories-container {
    /* margin: 5px; */
    padding: 10px 0;
  }
}

.categories-bar-box {
  display: flex;
  flex-shrink: 0;
  align-self: start;
  flex-direction: row;
  scroll-behavior: smooth;
  width: 100%;
  padding-left: 0;
  background-color: var(--full-white);
  overflow-x: hidden;
  overflow-y: hidden;
  scroll-snap-type: x mandatory !important;
  -webkit-overflow-scrolling: touch;
}

@media (min-width: 992px) {
  .categories-bar-box {
    width: 90%;
    padding-left: 70px;
  }
}

.scroll-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background-color: var(--full-white);
  border: 1px solid #eee;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 11;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
  transition: all 0.3s ease;
}

.scroll-arrow:hover {
  background-color: #f8f8f8;
}

.scroll-right {
  right: 10px;
}

.scroll-arrow svg {
  width: 20px;
  height: 20px;
  fill: #666;
}

@media (max-width: 768px) {
  .scroll-arrow {
    display: none;
  }
  .categories-bar-box {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
  }
  .categories-bar-box::-webkit-scrollbar {
    display: none; /* Chrome/Safari/Opera */
  }
}

.filter-list2 {
  display: flex !important;
  flex-direction: row !important;
  gap: 15px !important;
  flex-wrap: nowrap !important;
  list-style: none !important;
  scroll-snap-align: start !important;
  padding: 0 !important;
  white-space: nowrap !important;
  justify-content: center !important;
}

@media (max-width: 425px) {
  .filter-list2 {
    padding: 10px 0 !important;
    font-size: 15px !important;
  }
}

@media (min-width: 425px) {
  .filter-list2-landing-desktop {
    width: 100% !important;
  }
}

.filter-item2 {
  text-wrap: nowrap;
  scroll-snap-align: center;
  font-size: 14px;
  line-height: 21px;
  font-weight: 600;
  letter-spacing: -0.01em;
  text-align: center;
  color: var(--text-gray3);
  height: 25px;
  cursor: pointer;
}

.filter-item2.active {
  color: var(--menu-item);
  border-bottom-color: var(--menu-item);
  border-bottom-width: 3px;
  border-bottom-style: solid;
}

.filter-item2 a {
  text-decoration: none;
  color: inherit;
}

.filtered-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background-color: var(--snowwhite);
  width: 100%;
}

.filtered-list .most-wanted {
  display: flex;
  flex-direction: column;
}

.filtered-list .most-wanted .filtered-title {
  font-size: 16px;
  font-weight: 700;
  line-height: 20.3px;
  text-align: left;
  color: var(--primary);
  text-transform: uppercase;
  top: -5px;
  position: relative;
}

.filtered-list .most-wanted .most-wanted-image {
  height: 58px;
  min-width: 100%;
  max-width: 100%;
  width: auto;
  border-radius: 5px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.filtered-list .items-list {
  display: flex;
  flex-direction: column;
  margin-top: 5px;
  flex-wrap: wrap;
}

@media (max-width: 425px) {
  .filtered-list .items-list {
    align-items: center;
  }
}

@media (min-width: 768px) {
  .filtered-list .items-list {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
  }
}

.filtered-list .items-list .filtered-item {
  display: flex;
  flex-direction: column;
  width: 100%;
  cursor: pointer;
  border: none;
}

@media (min-width: 768px) {
  .filtered-list .items-list .filtered-item {
    width: 48%;
  }
}

.filtered-list .items-list .filtered-item .filtered-item-description {
  display: flex;
  flex-direction: row;
  width: 100%;
  justify-content: space-between;
  top: 14.2px;
  position: relative;
}

.filtered-list .items-list .filtered-item .filtered-item-description .filtered-item-description-text {
  display: flex;
  flex-direction: column;
}

.filtered-list .items-list .filtered-item .filtered-item-description .filtered-item-description-text .item-title {
  font-size: 14px;
  font-weight: 500;
  line-height: 21.76px;
  text-align: left;
  color: var(--black);
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.filtered-list .items-list .filtered-item .filtered-item-description .filtered-item-description-text .item-subtitle {
  font-size: 14px;
  font-weight: 400;
  line-height: 20.3px;
  text-align: left;
  margin-top: 5px;
  color: var(--text-gray);
  height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  width: 95%;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.filtered-list .items-list .filtered-item .filtered-item-description .item-image img {
  width: 85px;
  height: 79px;
  border-radius: 5px;
}

.filtered-list .items-list .filtered-item .item-price {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 20px;
  /* margin-top: 40px;
  margin-bottom: 10px; */
}

.filtered-list .items-list .filtered-item .item-price .price-ok {
  font-size: 14px;
  font-weight: 400;
  line-height: 16.94px;
  text-align: left;
  color: var(--discount-text-color);
}

.filtered-list .items-list .filtered-item .item-price .price-muted {
  font-size: 13px;
  font-weight: 400;
  line-height: 18.85px;
  text-align: left;
  color: var(--color-p);
  text-decoration-line: line-through;
}

.filtered-list .items-list .filtered-item .item-price .price-muted-without-discount {
  font-size: 13px;
  font-weight: 600;
  line-height: 18.85px;
  text-align: left;
  color: var(--color-p);
}

/* Modal Base Styles */
.product-order {
  margin-top: 15px;
}

@media (max-width: 1024px) {
  .product-order {
    width: 81%;
  }
}

.product-order .btn-order {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 45px;
  border-radius: 10px;
  border-color: transparent;
  background-color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  line-height: 23.2px;
  color: var(--full-white);
  padding: 5px 16px;
  cursor: pointer;
}

.product-order .btn-order:hover {
  /* background-color: var(--primary-hover); */
  background-color: color-mix(in srgb, var(--btn-primary-bg) 80%, white) !important;
}

.backdrop {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--full-black);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
  z-index: 9;
}

.window-popup {
  position: fixed;
  top: 50% !important;
  transform: translateY(-50%);
  left: 0;
  width: 100%;
  height: 90%;
  background-color: var(--full-white);
  transition: top 0.3s ease;
  z-index: 12;
  border-top-right-radius: 20px;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  overflow: hidden;
}

@media (min-height: 650px) and (min-width: 768px) {
  .window-popup {
    height: 70%;
    position: fixed;
    bottom: -100%;
    top: auto !important;
  }
}

@media (max-height: 450px) and (max-width: 768px) {
  .window-popup {
    /* height: auto; */
    visibility: hidden;
    top: 50% !important;
    overflow: scroll;
  }
}

@media (max-height: 650px) and (max-width: 768px) {
  .window-popup-address-content {
    top: 50% !important;
  }
}

@media (min-width: 768px) {
  .window-popup {
    width: 50%;
    left: 25%;
    border-radius: 20px;
    box-shadow: var(--shadow-2);
    position: fixed;
    bottom: -100%;
    top: auto !important;
  }
}

@media (min-width: 1024px) {
  .window-popup {
    position: fixed;
    top: 50% !important;
    transform: translateY(-50%);
    height: 70%;
    width: 40%;
    left: calc(100% / 3.5);
  }
}

@media (min-width: 1440px) {
  .window-popup {
    height: fit-content;
    width: 40%;
    left: calc(100% / 3.5);
    visibility: hidden;
  }
}

.window-popup .popup-content {
  overflow-y: auto;
  height: 100%;
  scrollbar-width: none;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 5px;
  padding-top: 5px;
}

@media (min-width: 768px) {
  .address-desktop-content {
    justify-content: start !important;
  }
}

.window-popup .popup-content .sticky-top {
  position: sticky;
  top: 0;
  background-color: var(--full-white);
  z-index: 10;
}

@media (max-height: 650px) {
  .window-popup .popup-content .sticky-top {
    position: relative;
  }
}

@media (min-width: 1024px) {
  .window-popup .popup-content .sticky-top {
    position: relative;
  }
}
@media (min-width: 768px) {
  .address-sticky-top {
    height: 100%;
  }
}

.window-popup .popup-content .popup-close {
  display: flex;
  width: 100%;
  justify-content: end;
  padding-top: 10px;
  padding-right: 10px;
}

.window-popup .popup-content .popup-close .close-popup {
  margin: 12px 12px 2px 10px;
  cursor: pointer;
}

.window-popup .popup-content .popup-close .close-popup path {
  stroke: var(--close-popup-icon);
}

.window-popup .popup-content .product-presentation {
  display: flex;
  flex-direction: column;
  padding: 0 30px;
}

@media (min-width: 768px) {
  .window-popup .popup-content .product-presentation {
    padding: 0 30px;
    align-items: center;
  }
}

@media (min-width: 1024px) {
  .window-popup .popup-content .product-presentation {
    padding: 0 10%;
    align-items: center;
  }
}

.window-popup .popup-content .product-presentation .product-image {
  text-align: center;
}

.window-popup .popup-content .product-presentation .product-image .image-product {
  border-radius: 8px;
  width: 50%;
  height: auto;
}

.window-popup .popup-content .product-presentation .product-description1 {
  font-size: 16px;
  font-weight: 500;
  line-height: 21.76px;
  text-align: left;
  color: var(--black);
}

.window-popup .popup-content .product-presentation .product-description2 {
  font-size: 14px;
  font-weight: 200;
  line-height: 20.3px;
  color: var(--text-gray);
}

.window-popup.show {
  bottom: 0;
  visibility: visible;
}

@media (min-width: 768px) {
  .window-popup.show {
    top: 10%;
  }
}

@media (min-width: 1024px) {
  .window-popup.show {
    top: 20%;
  }
}

.backdrop.show {
  opacity: 0.95;
  visibility: visible;
}

.choose-dressings {
  display: flex;
  flex-direction: column;
  padding: 0 30px;
  margin-top: 10px;
}

@media (min-width: 768px) {
  .choose-dressings {
    padding: 0 30px;
  }
}

@media (min-width: 1024px) {
  .choose-dressings {
    padding: 0 10%;
  }
}

.choose-dressings .clarify {
  display: flex;
  flex-direction: column;
  margin-bottom: 20px;
  margin-top: 10px;
}

.choose-dressings .clarify .input-label {
  font-size: 14px;
  font-weight: 600;
  line-height: 20.3px;
  text-transform: uppercase;
  color: var(--text-black);
}

.choose-dressings .clarify .textarea {
  border: 2px solid var(--border-color-1);
  border-radius: 10px;
  resize: none;
  background-color: transparent;
}

.choose-dressings .choose-dressings-title {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 10px;
}

.choose-dressings .choose-dressings-title .title-choose {
  font-size: 14px;
  font-weight: 600;
  line-height: 20.3px;
  color: var(--black);
  text-transform: uppercase;
}

.choose-dressings .choose-dressings-title .subtitle-choose {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: var(--text-gray4);
}

.choose-dressings .choose-dressings-form {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
  margin-bottom: 10px;
  gap: 10px;
}

.choose-dressings .choose-dressings-form .input-group {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.choose-dressings .choose-dressings-form .input-group .dressings-prices {
  display: inline-flex;
  flex-direction: row;
  gap: 5px;
}

.choose-dressings .choose-dressings-form .input-group .dressings-prices .price-muted {
  font-size: 13px;
  font-weight: 500;
  line-height: 18.85px;
  color: var(--color-p);
  text-decoration-line: line-through;
}

.choose-dressings .choose-dressings-form .input-group .dressings-prices .price-ok {
  font-size: 13px;
  font-weight: 500;
  line-height: 18.85px;
  color: var(--valid-cyan);
}

.choose-dressings .choose-dressings-form .input-group .dressings-prices .price {
  font-size: 13px;
  font-weight: 500;
  line-height: 18.85px;
  color: var(--black);
}

.choose-dressings .choose-dressings-form .input-chooses .dressings-prices .price-muted {
  font-size: 13px;
  font-weight: 500;
  line-height: 18.85px;
  color: var(--color-p);
  text-decoration-line: line-through;
}

.choose-dressings .choose-dressings-form .input-chooses .dressings-prices .price-ok {
  font-size: 13px;
  font-weight: 500;
  line-height: 18.85px;
  color: var(--valid-cyan);
}

.choose-dressings .choose-dressings-form .input-chooses .dressings-prices .price {
  font-size: 13px;
  font-weight: 500;
  line-height: 18.85px;
  color: var(--black);
}

.choose-dressings .choose-dressings-form .input-chooses {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}

.choose-dressings .choose-dressings-form .input-chooses .input-chooses-badge {
  display: inline-block;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  line-height: 17.4px;
  color: var(--primary-0);
  border-radius: 5px;
  border-color: var(--neutral-4);
  border-width: 1px;
  border-style: solid;
  height: 18px;
  width: 24px;
  margin-right: 5px;
}

.choose-dressings .choose-dressings-form .input-chooses .input-chooses-badge.muted {
  color: var(--neutral-4);
}

.choose-dressings .choose-dressings-form .input-chooses .input-chooses-name {
  font-size: 14px;
  font-weight: 500;
  line-height: 16px;
  text-align: left;
  color: var(--primary-0);
}

.add-dressings-controller {
  display: flex;
  flex-direction: row;
  gap: 10px;
  height: 45px;
  width: 137px;
  border-radius: 10px;
  border-color: var(--border-color-1);
  border-style: solid;
  border-width: 1.5px;
  justify-content: space-evenly;
  align-items: center;
  margin: 10px auto 10px;
}

@media (min-width: 1024px) {
  .add-dressings-controller {
    margin: 0;
  }
}

.md_product_details_quantity_text {
  margin: 0 !important;
}

@media (max-width: 991px) {
  .md_product_details_options_group_option:first-child {
    margin-top: 0px !important;
  }
}

@media (max-width: 991px) {
  .md_product_details_options_group_option {
    margin: 0px !important;
  }
}

.add-dressings-controller .rest-control {
  font-size: 16px;
  font-weight: 600;
  line-height: 23.2px;
  color: var(--secondary-3);
  margin-left: 10px;
  cursor: pointer;
}

.add-dressings-controller .add-control {
  font-size: 14px;
  font-weight: 600;
  line-height: 20.3px;
  color: var(--black);
  margin-right: 10px;
  cursor: pointer;
}

.add-dressings-controller .separator-line-v {
  width: 1.5px;
  height: 80%;
  border: none;
  margin: 0;
  background-color: var(--border-color-1);
}

.add-dressings-controller .number-output {
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 20.3px !important;
  color: var(--black) !important;
  height: 100% !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  margin: 0 !important;
  background: transparent !important;
  border: none !important;
  padding-left: 0 !important;
}

.add-dressings-controller .number-output:hover {
  background: transparent !important;
}

.add-order-container {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 10px 0;
  margin-top: 20px;
  align-items: center;
  justify-content: center;
  border-top-left-radius: 20px;
  border-top-right-radius: 20px;
  visibility: hidden;
}

@media (min-width: 1024px) {
  .add-order-container {
    display: flex !important;
    flex-direction: column !important;
    width: 70% !important;
    margin-left: 15% !important;
    border-radius: 0;
    gap: 10px;
    align-items: center;
    padding: 10px 10%;
    height: auto;
    background-color: transparent;
    visibility: visible;
  }
}

.add-order-container .add-to-order-button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  width: 85%;
  border: none;
  border-radius: 10px;
  background-color: var(--primary);
  padding: 10px 15px;
  transition: all 0.3s ease;
}

@media (min-width: 1024px) {
  .add-order-container .add-to-order-button {
    width: 100%;
    height: 45px;
  }
}

.add-order-container .add-to-order-button .text,
.add-order-container .add-to-order-button .amount {
  font-size: 15px;
  font-weight: 600;
  line-height: 23.2px;
  color: var(--full-white);
}

.add-order-container .add-to-order-button:hover {
  /* background-color: var(--primary-hover); */
  background-color: color-mix(in srgb, var(--btn-primary-bg) 80%, white) !important;
}

.md_product_details_quantity_minus_button{
  height: auto;
}

.md_product_details_quantity_plus_button{
  height: auto;
}

.mobil {
  display: flex;
}

@media (min-width: 1024px) {
  .mobil {
    display: none;
  }
}

.no-mobil {
  display: flex;
}

@media (max-width: 768px) {
  .no-mobil {
    display: none;
  }
}

.relative-wrapper {
  position: sticky;
  width: auto;
  height: auto;
  bottom: 0;
  background-color: var(--full-white);
  z-index: 99;
}

.window-popup.show .add-order-container {
  visibility: visible;
}

/* Address and Schedule Styles */
.address-container {
  margin-bottom: 24px;
}

.address-container.padded {
  padding: var(--padding-base);
  background-color: var(--gray-50);
  border-radius: var(--br-base);
}

.address-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--text-md-semibold-font-family);
  font-weight: var(--text-md-semibold-font-weight);
  color: var(--gray-900);
  margin-bottom: 8px;
}

.my-address-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--text-md-semibold-font-family);
  font-weight: var(--text-md-semibold-font-weight);
  color: var(--gray-900);
}

.my-address-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-family: var(--text-md-semibold-font-family);
  font-weight: var(--text-md-semibold-font-weight);
  color: var(--gray-900);
}

.my-address-delete-item{
  display: flex;
  align-items: center;
}

.address-subtitle {
  font-family: var(--text-md-regular-font-family);
  font-size: var(--text-md-regular-font-size);
  color: var(--gray-600);
  line-height: var(--text-md-regular-line-height);
}

.schedule-container {
  background-color: var(--gray-50);
  border-radius: var(--br-base);
}

.schedule-container.padded {
  padding: var(--padding-base);
}

.schedule-title {
  font-family: var(--text-md-semibold-font-family);
  font-weight: var(--text-md-semibold-font-weight);
  color: var(--gray-900);
  margin-bottom: 16px;
  text-transform: capitalize;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.schedule-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.schedule-day {
  font-family: var(--text-md-regular-font-family);
  color: var(--gray-600);
}

.schedule-time {
  font-family: var(--text-md-regular-font-family);
  color: var(--gray-900);
}

.schedule-time span {
  display: block;
  text-align: right;
}

.md_disable_scrolling {
  overflow: hidden;
}

/* Promos Modal Styles */
.promos-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: var(--padding-base);
  background-color: var(--gray-50);
  border-radius: var(--br-base);
  margin: 0 20px;
}

.promo-item {
  padding: 16px;
  background-color: var(--base-white);
  border-radius: var(--br-5xs);
  box-shadow: var(--shadow-sm);
}

.promo-title {
  font-style: normal;
  font-weight: 500;
  font-size: 14px;
  line-height: 14.14px;
  color: var(--discount-text-color);
  margin-bottom: 8px;
}

.promo-dates {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-family: var(--text-md-regular-font-family);
  font-size: var(--text-sm-regular-size);
  color: var(--gray-600);
}

.no-promos {
  text-align: center;
  padding: var(--padding-base);
  color: var(--gray-500);
  font-family: var(--text-md-regular-font-family);
  font-size: var(--text-md-regular-font-size);
}

.content-container {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 5;
  background-color: var(--snowwhite);
  justify-content: center;
}

@media (min-width: 1024px) {
  .content-container {
    padding-top: 10%;
    display: flex;
    height: 100vh;
  }
}

@media (min-width: 1300px) {
  .content-container {
    padding-top: 5%;
    display: flex;
    height: 100vh;
  }
}

@media (min-width: 1920px) {
  .content-container {
    padding-top: 5%;
    display: flex;
    height: 100vh;
  }
}

@media (max-width: 768px) {
  .content-container {
    padding-top: 20%;
  }
}

@media (max-width: 425px) {
  .content-container {
    padding-top: 30%;
  }
}

@media (max-width: 375px) {
  .content-container {
    padding-top: 40%;
  }
}

.step-selector {
  display: flex;
  gap: 10px;
  align-items: start;
  justify-content: center;
  padding-bottom: 20px;
}

.step {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.step-name {
  font-size: 13px;
  font-weight: 500;
  line-height: 15.73px;
  text-align: center;
  color: var(--step-name-color);
}

.step-name.active {
  color: var(--step-name-color-active);
}

.step-symbol {
  border-radius: 50%;
  border-color: var(--step-border);
  border-style: solid;
  border-width: 3px;
  background-color: var(--step-bg);
  color: var(--step-font-color);
  font-size: 13px;
  font-weight: 700;
  line-height: 15.73px;
  height: 32px;
  width: 32px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.step-symbol.active {
  border-color: var(--step-border-active);
  /* background-color: var(--step-bg-active); */
  background-color: var(--primary);
  color: var(--step-font-color-active);
}

.step-trail-container {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 39px;
}

.step-trail-container .step-trail {
  background-color: var(--step-border);
  height: 3px;
  width: 43px;
}

.step-trail-container .step-trail.active {
  /* background-color: var(--step-bg-active); */
  background-color: var(--primary);
}

.step-title {
  border-radius: 5px;
  background-color: var(--background-neutral-gray);
  font-size: 14px;
  font-weight: 600;
  line-height: 20.3px;
  color: var(--gray-950);
  text-transform: uppercase;
  text-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
  margin-top: 10px;
  margin-bottom: 10px;
}

@media (min-width: 1024px) {
  .pad-form .order-resumen {
    display: none;
  }
}

.pad .separator-line-h {
  width: 90%;
}

@media (min-width: 1024px) {
  .pad .separator-line-h {
    display: none;
  }
}

.delivery-form {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.delivery-form .input-label {
  font-size: 12px;
  font-weight: 600;
  line-height: 17.4px;
  text-align: left;
  color: var(--secondary);
  margin-bottom: 0;
}

.input-text {
  border-width: 1.5px !important;
  background-color: var(--full-white) !important;
  width: auto !important;
  padding-left: 10px !important;
  padding-right: 10px !important;
}

.input-text::placeholder {
  font-family: Inter, system-ui, Avenir, Helvetica, Arial, sans-serif;
  color: var(--color-p);
  font-weight: 400;
  font-size: 16px;
  line-height: 26px !important;
}

.footer-button-container {
  align-items: end;
  margin-top: 20px;
  margin-bottom: 10px;
  display: flex;
  width: 100%;
}

.pad-form .footer-button-container {
  @media (min-width: 1024px) {
    display: none;
  }
}

.footer-button-container .btn {
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  padding: 0 10px;
}

.footer-button-container .btn-primary {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  color: var(--full-white);
  background-color: var(--primary);
  font-size: 16px;
  font-weight: 600;
  line-height: 23.2px;
}

.footer-button-container .btn .btn-text {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.tab-container {
  border-bottom-style: solid;
  border-bottom-width: 1px;
  border-bottom-color: var(--line-color);
  display: flex;
  flex-direction: row;
  justify-content: space-evenly;
  margin-top: 20px;
  margin-bottom: 20px;
}

@media (max-width: 1023px) {
  .tab-container {
    gap: 0;
  }
}

.tab-container .tab-item {
  font-size: 15px;
  font-weight: 500;
  line-height: 21.75px;
  padding-bottom: 10px;
  color: var(--color-p);
  border-bottom-color: var(--full-white);
  border-bottom-width: 2px;
  border-bottom-style: solid;
  text-align: center;
  width: 30%;
  margin-left: 10px;
  margin-right: 10px;
  cursor: pointer;
}

.tab-container .tab-item.active {
  color: var(--btn-primary-bg);
  border-bottom-color: var(--btn-primary-bg);
}

.cash-form {
  display: none;
}

.cash-form.active {
  display: block;
}

.cash-form .input-label {
  font-size: 12px;
  font-weight: 600;
  line-height: 17.4px;
  color: var(--text-black);
  margin-bottom: 10px;
}

.cash-form .input-text {
  width: 93% !important;
  margin-bottom: 10px;
}

.md_form_field_input{
  background:  transparent !important;
  width: 100% !important;
}

@media (max-width: 768px) {
  .md_form_field_input {
    width: 100% !important;
  }
}

.online-form {
  display: none;
}

.online-form.active {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.black-info {
  font-size: 14px;
  font-weight: 500;
  line-height: 20.3px;
  color: var(--text-black);
}

.md_info_box {
  display: flex;
  justify-content: center;
}

.md_info_box_text {
  padding: 0px 10px !important;
}

.btn-white {
  border-radius: 10px;
  border-style: solid;
  border-width: 1px;
  border-color: var(--black);
  background-color: var(--full-white);
  font-size: 14px;
  font-weight: 600;
  line-height: 20.3px;
  color: var(--menu-item);
  transition: all 0.3s ease;
  padding: 10px 20px;
}

.btn-white:hover {
  background-color: var(--neutral-9);
}

.online-form .btn-white {
  width: 50%;
}

@media (max-width: 372px) {
  .online-form .btn-white {
    width: 60%;
  }
}

@media (max-width: 300px) {
  .online-form .btn-white {
    width: 100%;
    height: auto;
  }
}

.online-form .separator-line-h {
  width: 100%;
}

.credit-card-display {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
  gap: 10px;
}

.credit-card-display .left-part {
  display: flex;
  gap: 5px;
}

.credit-card-display .left-part .text-container {
  display: flex;
  flex-direction: column;
}

.text-container .credit-card-type {
  font-size: 12px;
  font-weight: 600;
  line-height: 17.4px;
  color: var(--primary-2);
}

.text-container .credit-card-owner {
  font-size: 14px;
  font-weight: 400;
  line-height: 26px;
  color: var(--color-p);
}

.resumen-container {
  border-radius: 10px;
  border: var(--border-color-1) solid 2px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 10px;
}

.resumen-container .separator-line-h {
  width: 100%;
}

.resumen-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.resumen-total {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.resumen-item .name {
  font-size: 14px;
  font-weight: 500;
  line-height: 14.14px;
  color: var(--text-gray);
}

.resumen-item .value {
  font-size: 14px;
  font-weight: 600;
  line-height: 14.14px;
  color: var(--dark-black);
}

.resumen-container .resumen-info {
  font-size: 14px;
  font-weight: 500;
  line-height: 14.14px;
  color: var(--text-cyan);
}

.resumen-total .name,
.resumen-total .value {
  font-size: 16px;
  font-weight: 700;
  line-height: 21.76px;
  color: var(--black);
}

.window-popup .popup-content .popup-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 21.76px;
  text-align: center;
  color: var(--dark-black);
}

.window-popup .popup-content .popup-body {
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  /* padding: 10px 10px; */
}

@media (min-width: 1024px) {
  .window-popup .popup-content .popup-body {
    padding: 10px 30px;
  }
}

.address-info-box {
  margin-top: 24px;
  margin-bottom: 10px;
  color: #8c8c8f;
  font-size: 16px;
  font-weight: 700;
}

.description-info-box-address {
  color: #0b2135;
  font-weight: 500;
  font-size: 14px;
  font-style: normal;
  text-transform: uppercase;
}

.popup-body-info {
  display: flex;
  justify-content: space-between;
}

@media (max-width: 768px) {
  .popup-body-info {
    flex-direction: column;
    gap: 1em;
  }
}

.info-section-address {
  display: flex;
  flex-direction: column;
  text-align: start;
  width: 50% !important;
}

@media (max-width: 768px) {
  .info-section-address {
    text-align: center;
    width: 100% !important;
  }
}

@media (min-width: 768px) {
  .separator-info-box {
    display: none;
  }
}

.window-popup.h-70 {
  max-width: 1200px;
  position: fixed;
  top: 50% !important;
  left: 50%;
  transform: translate(-50%, -50%);
  height: 98%;
}

.window-popup-new {
  max-width: 1200px;
  position: fixed;
  top: 50% !important;
  left: 50% !important;
  transform: translate(-50%, -50%);
  height: 98%;
}

.window-popup .popup-content .popup-body .multi-inputs {
  display: flex;
  justify-content: space-between;
  gap: 10px;
}

.window-generic-popup{
  height: 40% !important;
}

.generic-popup-content-content {
  height: 100% !important;
}

.multi-inputs .input-label,
.popup-body .input-group .input-label {
  margin-bottom: 5px;
  color: var(--secondary);
  font-weight: 600;
  font-size: 12px;
  line-height: 17.4px;
  margin-top: 5px;
}

.popup-body .input-group {
  position: relative;
  display: flex;
  flex-direction: column;
}

.popup-body .input-group .input-text {
  margin-bottom: 5px;
  width: 100% !important;
}

.multi-inputs .input-text {
  width: 85% !important;
}

.icon-card {
  position: absolute;
  right: 15px;
  top: 50%;
  width: 36px;
  height: 22px;
  z-index: 99;
  margin-top: 17%;
}

.icon-card2 {
  position: absolute;
  left: 70%;
  top: 13%;
  width: 36px;
  height: 23px;
}

.doc-type-input {
  display: flex;
}

.type-doc-input-container .doc-type-input .select-input {
  position: relative;
  display: inline-block;
  cursor: pointer;
  height: 41px;
  border: none;
  transition: .4s;
  width: 25%;
}

.type-doc-input-container .doc-type-input .select-wrapper .select-input .select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.2px;
  color: var(--color-p);
  width: 100%;
  border-style: solid;
  border-width: 1.5px;
  background-color: var(--full-white);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-color: var(--border-color-1);
}

.type-doc-input-container .doc-type-input .select-text {
  width: 100%;
  text-wrap: nowrap;
  text-overflow: ellipsis;
}

.type-doc-input-container .doc-type-input .select-arrow {
  background-image: url("../img/page1/arrow-down.svg");
  width: 13px;
  height: 20px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform .4s ease;
}

.type-doc-input-container .doc-type-input .select-options {
  position: absolute;
  display: none;
  flex-direction: column;
  width: auto;
  text-wrap: nowrap;
  background-color: var(--snowwhite);
  border: 1px solid var(--neutral-1);
  border-top: none;
  border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow-1);
  z-index: 5;
}

.type-doc-input-container .doc-type-input .select-option {
  padding: 10px 19px;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.2px;
  color: var(--color-p);
  border-radius: 0 0 10px 10px;
  cursor: pointer;
}

.type-doc-input-container .doc-type-input .select-option:hover {
  background-color: var(--neutral-9);
}

.type-doc-input-container .doc-type-input .select-open .select-options {
  display: flex;
}

.type-doc-input-container .doc-type-input .select-open .select-arrow {
  transform: rotate(180deg);
}

.type-doc-input-container .doc-type-input .input-text {
  border-left-style: none !important;
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
  height: 41px !important;
  width: 100% !important;
}

.popup-footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background-color: var(--full-white);
}

.popup-footer .footer-content button,
.popup-footer button {
  margin: 10px 10px;
  color: var(--full-white);
}

.popup-footer .footer-content {
  display: flex;
  flex-direction: column;
  width: 100%;
  /* justify-content: flex-end; */
  height: calc(100vh / 2.2);
}

.input-group .select-input {
  position: relative;
  display: inline-block;
  cursor: pointer;
  height: 41px;
  border: none;
  transition: .4s;
  width: 95%;
}

.input-group .select-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 6px;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.2px;
  color: var(--color-p);
  width: 100%;
  border-style: solid;
  border-width: 1.5px;
  background-color: var(--full-white);
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
  border-color: var(--border-color-1);
}

.select-option.hidden {
  display: none;
}

.input-group .select-text {
  width: 100%;
  text-wrap: nowrap;
  text-overflow: ellipsis;
}

.input-group .select-arrow {
  background-image: url("../img/page1/arrow-down.svg");
  width: 12px;
  height: 12px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  transition: transform .4s ease;
}

.input-group .select-options {
  position: absolute;
  display: none;
  flex-direction: column;
  width: 103%;
  text-wrap: nowrap;
  background-color: var(--snowwhite);
  border: 2px solid var(--border-color-1);
  border-top: none;
  border-radius: 0 0 10px 10px;
  box-shadow: var(--shadow-1);
  z-index: 5;
}

@media (min-width: 768px) {
  .input-group .select-options {
    width: 102%;
  }
}

.input-group .select-option {
  padding: 10px 19px;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.2px;
  color: var(--color-p);
  border-radius: 0 0 10px 10px;
  cursor: pointer;
}

.input-group .select-option:hover {
  background-color: var(--neutral-9);
}

.input-group .select-open .select-options {
  display: flex;
}

.input-group .select-open .select-arrow {
  transform: rotate(180deg);
}

.order-done-logo {
  width: 105px;
  height: auto;
}

.payment-done-container {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  margin: 30px 40px;
  height: 80vh;
}

.payment-done-container .order-title {
  font-size: 18px;
  font-weight: 500;
  line-height: 25.92px;
  color: var(--black);
  margin-top: 20px;
}

.payment-done-container .sub-title {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.2px;
  color: var(--text-gray4);
  text-align: center;
}

.payment-done-container .question {
  font-size: 14px;
  font-weight: 600;
  line-height: 20.3px;
  color: var(--black);
  text-transform: uppercase;
  margin-bottom: 10px;
}

.payment-done-container .phone {
  font-size: 16px;
  font-weight: 500;
  line-height: 23.2px;
  color: var(--color-p);
  display: flex;
  align-items: center;
}

.payment-done-container .phone img {
  width: 22px;
  height: 23px;
  margin-right: 5px;
}

.part1,
.part2 {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.no-top-margin {
  margin-top: 0 !important;
}

.no-bottom-margin {
  margin-bottom: 0 !important;
}

.sub-title {
  margin-top: 10px;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.2px;
  color: var(--text-gray4);
  text-align: center;
}

.text-white {
  color: var(--full-white);
}

.padded {
  padding: 0 30px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.email-group {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 0;
}

.email-group .input-label {
  margin-bottom: 5px;
  font-weight: 600;
}

.email-group input {
  margin-bottom: 10px;
}

.btn-container {
  width: 100%;
  text-align: center;
}

.btn-container button {
  width: 100%;
}

.mb-10 {
  margin-bottom: 10px;
}

.mb-15 {
  margin-bottom: 15px;
}

.alert-message {
  display: flex;
  gap: 10px;
  margin-top: 10px;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  padding-right: 10px;
  text-align: justify;
}

.alert-message img {
  width: 15px;
  height: auto;
}

.alert-message span {
  font-size: 12px;
  font-weight: 600;
  line-height: 17.4px;
  color: var(--primary-2);
  text-transform: uppercase;
}

.address-container {
  background-color: var(--neutral-3);
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  padding-bottom: 25px;
  padding-top: 25px;
  margin-bottom: 20px;
}

.my-address-container {
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding-bottom: 25px;
  padding-top: 25px;
  margin-bottom: 20px;
}

@media (min-width: 768px) {
  .my-address-container {
    width: 50%;
  }
}

.address-title {
  font-size: 16px;
  font-weight: 600;
  line-height: 23.2px;
  color: var(--menu-item);
  display: inline-flex;
  align-items: center;
  gap: 5px;
}

.address-subtitle {
  font-size: 16px;
  font-weight: 500;
  line-height: 23.2px;
  color: var(--color-p);
}

.schedule-container {
  display: flex;
  flex-direction: column;
}

.schedule-title {
  font-size: 14px;
  font-weight: 600;
  line-height: 20.3px;
  color: var(--primary-2);
  text-transform: uppercase;
}

.schedule-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
  border-radius: 10px;
  padding: 10px;
  border-style: solid;
  border-width: 1px;
  border-color: var(--border-color-1);
  margin-bottom: 20px;
}

.schedule-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 10px;
}

.schedule-item:last-child {
  margin-bottom: 0;
}

.schedule-day {
  font-size: 14px;
  font-weight: 500;
  line-height: 19.04px;
  color: var(--black);
  width: 50%;
}

.schedule-time {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 50%;
}

.schedule-time span {
  font-size: 14px;
  font-weight: 500;
  line-height: 20.3px;
  color: var(--color-p);
}

.checkout {
  display: none;
}

@media (min-width: 1024px) {
  .checkout {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}

.checkout-card {
  border-radius: 5px;
  border: 1.5px solid var(--border-color-1);
  padding-bottom: 10px;
}

.checkout-header {
  background-color: var(--background);
  font-size: 14px;
  font-weight: 600;
  line-height: 20.3px;
  color: var(--color-tittles);
  text-transform: uppercase;
  text-align: center;
  vertical-align: center;
  padding-top: 10px;
  padding-bottom: 10px;
}

.checkout-body {
  padding: 0 15px;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.checkout-body .separator-line-h {
  display: block;
  width: 100%;
}

.checkout-data {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-top: 15px;
  padding: 0 10px;
}

.data-item {
  display: flex;
  justify-content: space-between;
}

.data-item .text-gray {
  font-size: 14px;
  font-weight: 500;
  line-height: 14.14px;
  color: var(--text-gray);
}

.data-item.text-announce {
  font-size: 14px;
  font-weight: 500;
  line-height: 14.14px;
  color: var(--text-cyan);
}

.data-item .text-dark {
  font-size: 14px;
  font-weight: 600;
  line-height: 14.14px;
  color: var(--black);
}

.checkout-clarify {
  padding: 0 15px;
}

.checkout-clarify label {
  font-size: 14px;
  font-weight: 700;
  line-height: 20.3px;
  color: var(--primary-2);
}

.checkout-clarify textarea {
  width: 95%;
}

.pad-form {
}

@media (min-width: 1024px) {
  .pad-form {
    width: 100%;
  }
}

.pad-checkout {
  display: none;
}

@media (max-width: 1920px) {
  .pad-checkout {
    width: 20%;
    display: block;
    margin-top: 4.5%;
  }
}

@media (max-width: 1440px) {
  .pad-checkout {
    width: 25%;
    display: block;
    margin-top: 5.85%;
  }
}

@media (max-width: 1366px) {
  .pad-checkout {
    width: 25%;
    display: block;
    margin-top: 6.15%;
  }
}

@media (max-width: 1024px) {
  .pad-checkout {
    width: 30%;
    display: block;
    margin-top: 8.15%;
  }
}

.flex-box {
  display: flex;
  flex-direction: column;
  width: 100%;
  gap: 10px;
}

@media (min-width: 1024px) {
  .flex-box {
    flex-direction: row;
    width: 100%;
  }
}

.flex-box-item {
  display: flex;
  flex-direction: column;
  width: 100%;
}

.flex-box-item input {
  width: 96% !important;
}

@media (min-width: 1024px) {
  .flex-box-item input {
    width: auto !important;
  }
}

.checkout-button button {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 15px;
}

.checkout-total {
  display: flex;
  justify-content: space-between;
  padding: 0 15px;
}

.checkout-total span {
  font-size: 14px;
  font-weight: 600;
  line-height: 14.14px;
  color: var(--black);
}

.container-wrapper {
  width: 100%;
  position: relative;
  height: 221px;
  overflow: hidden;
  flex-shrink: 0;
  margin-top: 20px;
}

@media (min-width: 1024px) {
  .container-wrapper {
    width: 25%;
  }
}

.carousel {
  width: 100%;
  height: 221px;
  position: relative;
  display: flex;
  align-items: center;
  scroll-snap-type: x mandatory;
}

.carousel-item {
  min-width: 80%;
  height: 185.8px;
  border-radius: 10px;
  object-fit: cover;
  margin-right: 10px;
}

.carousel-dots {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 1;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #000000;
}

.carousel img {
  scroll-snap-align: center;
  flex: 0 0 auto;
}

.carousel-frame {
  display: flex;
  width: 100%;
  justify-content: space-between;
}

.carousel-frame img {
  width: calc(100% / 6);
  height: auto;
}

.contact-sections {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  gap: 20px;
  background-color: var(--white);
  text-align: center;
}

.heading-and-supporting-text,
.heading-and-supporting-text1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  text-align: center;
}

.container1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
  background-color: var(--gray-50);
  border-radius: 12px;
  width: 100%;
  max-width: 360px;
  margin: 0 auto;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.heading {
  font-size: 16px;
  color: var(--text-black);
  margin-bottom: 16px;
  text-align: center;
  width: 100%;
}

.md_menu_delivery_options {
  border: 1px solid #e9e9e9;
  border-radius: 10px;
}

.md_dropdown {
  border: none !important;
}

@media (max-width: 767px) {
  .md_dropdown {
    justify-content: space-between !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

.element {
  background-color: #ffffff;
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 100%;
  margin-top: 15px;
}

.element .content-1 {
  background-color: #ffffff;
  overflow: hidden;
  width: 100%;
  height: 126px;
  position: relative;
}

.element .group {
  position: absolute;
  width: 390px;
  height: 825px;
  top: 127px;
  left: 0;
}

.element .CTA-section {
  display: flex;
  flex-direction: column;
  width: 100%;
  height: 126px;
  align-items: center;
  padding: 0px 0px 24px;
  position: absolute;
  top: 0;
  left: 0;
  background-color: var(--basewhite);
}

.element .container {
  width: 390px;
  height: 126px;
  gap: 32px;
  padding: 0px 16px;
  margin-bottom: -24.00px;
  margin-left: -0.50px;
  margin-right: -0.50px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.element .content {
  flex-direction: column;
  align-items: flex-start;
  gap: 13px;
  padding: 16px 24px;
  align-self: stretch;
  width: 50%;
  background-color: var(--gray-50);
  border-radius: 16px;
  display: flex;
  position: relative;
}

@media (max-width: 768px) {
  .element .content {
    width: 90%;
  }
}

.element .content-2 {
  height: 24px;
  align-items: center;
  gap: 8px;
  display: flex;
  position: relative;
}

.element .map {
  position: relative;
  width: 20px;
  height: 20px;
}

.element .text {
  flex: 1;
  font-weight: var(--text-md-regular-font-weight);
  color: var(--gray-900);
  position: relative;
  margin-top: -1.00px;
  font-family: var(--text-md-regular-font-family);
  font-size: var(--text-md-regular-font-size);
  letter-spacing: var(--text-md-regular-letter-spacing);
  line-height: var(--text-md-regular-line-height);
  font-style: var(--text-md-regular-font-style);
}

.element .horizontal-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 6px;
  position: relative;
  align-self: stretch;
  background-color: var(--gray-50);
  border-radius: 8px;
  border: 1px solid;
  border-color: var(--gray-200);
}

@media (max-width: 768px) {
  .element .horizontal-tabs {
    flex-direction: column;
  }
}

.element .tab-button-base {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  background-color: var(--gray-200);
  border-radius: 6px;
  overflow: hidden;
  border: 1px solid;
  border-color: transparent;
  box-shadow: var(--shadow-sm);
}

.element .text-wrapper {
  width: fit-content;
  font-weight: var(--text-md-semibold-font-weight);
  color: var(--gray-700);
  white-space: nowrap;
  position: relative;
  margin-top: -1.00px;
  font-family: var(--text-md-semibold-font-family);
  font-size: var(--text-md-semibold-font-size);
  letter-spacing: var(--text-md-semibold-letter-spacing);
  line-height: var(--text-md-semibold-line-height);
  font-style: var(--text-md-semibold-font-style);
}

.element .div-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 14px;
  position: relative;
  flex: 1;
  flex-grow: 1;
  border-radius: 6px;
  overflow: hidden;
}

.element .text-2 {
  width: fit-content;
  font-weight: var(--text-md-semibold-font-weight);
  color: var(--gray-500);
  white-space: nowrap;
  position: relative;
  margin-top: -1.00px;
  font-family: var(--text-md-semibold-font-family);
  font-size: var(--text-md-semibold-font-size);
  letter-spacing: var(--text-md-semibold-letter-spacing);
  line-height: var(--text-md-semibold-line-height);
  font-style: var(--text-md-semibold-font-style);
}

.element .contact-sections {
  display: flex;
  flex-direction: column;
  width: 389px;
  align-items: center;
  gap: 16px;
  position: absolute;
  top: 126px;
  left: 1px;
  background-color: var(--basewhite);
}

.element .background-overlap {
  position: relative;
  width: 404px;
  height: 74px;
  margin-left: -7.50px;
  margin-right: -7.50px;
  background-color: var(--gray-950);
}

.element .p {
  position: absolute;
  width: 332px;
  top: 11px;
  left: 23px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: #ffffff;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 16px;
  white-space: nowrap;
}

.element .image {
  width: 376px;
  height: 526px;
  position: relative;
  object-fit: cover;
}

.element .frame {
  flex-direction: column;
  width: 406px;
  align-items: flex-start;
  position: fixed;
  top: 1px;
  left: 1px;
  background-color: #ffffff;
  display: flex;
  gap: 8px;
}

.element .group-2 {
  position: relative;
  width: 390px;
  height: 67px;
}

.element .status-bar {
  display: flex;
  width: 390px;
  height: 35px;
  align-items: center;
  justify-content: center;
  gap: 181px;
  padding: 14px 20px 12px;
  position: absolute;
  top: 0;
  left: 0;
}

.element .left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 10px;
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
}

.element .items {
  width: 35px;
  position: relative;
  height: 14px;
  margin-top: -2.50px;
  margin-bottom: -2.50px;
}

.element .right {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0px 3px 0px 0px;
  position: relative;
  flex: 1;
  align-self: stretch;
  flex-grow: 1;
}

.element .img {
  width: 76px;
  position: relative;
  height: 14px;
  margin-top: -2.50px;
  margin-bottom: -2.50px;
}

.element .overlap-group-wrapper {
  position: absolute;
  width: 378px;
  height: 32px;
  top: 35px;
  left: 7px;
}

.element .overlap-group {
  position: relative;
  width: 376px;
  height: 32px;
  background-color: var(--gray-100);
  border-radius: 27px;
}

.element .text-wrapper-2 {
  position: absolute;
  width: 164px;
  top: 8px;
  left: 115px;
  font-family: "Inter", Helvetica;
  font-weight: 500;
  color: #000000;
  font-size: 13px;
  letter-spacing: 0;
  line-height: 16px;
  white-space: nowrap;
}

.element .frame-wrapper {
  padding: 0px 12px 0px 15px;
  align-self: stretch;
  width: 100%;
  flex: 0 0 auto;
  background-color: #000000;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  position: relative;
}

.element .frame-2 {
  width: 374px;
  align-items: center;
  position: relative;
  flex: 0 0 auto;
  display: flex;
  gap: 8px;
}

.element .img-2 {
  position: relative;
  width: 24px;
  height: 24px;
}

.element .image-2 {
  width: 56px;
  height: 30px;
  position: relative;
  object-fit: cover;
}

.element .supporting-text {
  position: relative;
  width: 224px;
  height: 18px;
  font-family: "Inter", Helvetica;
  font-weight: 400;
  color: var(--basewhite);
  font-size: 13px;
  letter-spacing: 0;
  line-height: 16px;
  white-space: nowrap;
}

.element .nav-menu-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 8px;
  position: relative;
  flex: 0 0 auto;
  border-radius: 8px;
  overflow: hidden;
}

.selectable {
  cursor: pointer;
}

.input {
  border: 1px solid #ccc;
  padding: 8px;
  border-radius: 4px;
  width: 100%;
}

/* Nuevos estilos para inputs y botones */
.input-wrapper {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
}

.address-input {
  border: none !important;
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  width: 100% !important;
  font-weight: var(--text-md-regular-font-weight) !important;
  color: var(--gray-900) !important;
  font-family: var(--text-md-regular-font-family) !important;
  font-size: var(--text-md-regular-font-size) !important;
  letter-spacing: var(--text-md-regular-letter-spacing) !important;
  line-height: var(--text-md-regular-line-height) !important;
  font-style: var(--text-md-regular-font-style) !important;
}

.address-input:focus {
  outline: none;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

button {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font: inherit;
  color: inherit;
}

.nav-button {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Schedule Select Styles */
.schedule-select-wrapper {
  padding: 0;
  width: 100%;
}

.schedule-select-wrapper .select-input {
  width: 100%;
  position: relative;
  border: 1px solid #E4E4E7;
  border-radius: 4px;
  margin-bottom: 8px;
}

.schedule-select-wrapper .select-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  cursor: pointer;
  box-sizing: border-box;
}

.schedule-select-wrapper .select-text {
  color: #71717A;
  flex-grow: 1;
}

.schedule-select-wrapper .select-arrow {
  transition: transform 0.2s ease;
  color: #71717A;
  flex-shrink: 0;
  margin-left: 8px;
  position: relative;
}

.schedule-select-wrapper .select-options {
  position: absolute;
  width: 100%;
  top: calc(100% + 4px);
  background: #fff;
  border: 1px solid #E4E4E7;
  border-radius: 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
  box-sizing: border-box;
}

.schedule-select-wrapper .select-option {
  padding: 12px 16px;
  cursor: pointer;
}

.schedule-select-wrapper .select-option:hover {
  background-color: #F4F4F5;
}

.select-input.active .select-arrow {
  transform: rotate(180deg);
}

.separator-line-h {
  width: 100%;
  height: 1.2px;
  margin: 8px 0;
  border: none;
  /* border-top: 1px solid #E4E4E7; */
  background-color: var(--border-color-1);
}

.right-aligned {
  display: flex;
  justify-content: flex-end;
  width: 100%;
}

.right-aligned .select-input {
  width: 100%;
  position: relative;
}

.right-aligned .select-trigger {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 12px;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
}

.right-aligned .select-options {
  position: absolute;
  width: 100%;
  right: 0;
  left: auto;
  top: 100%;
  background: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  margin-top: 4px;
  max-height: 200px;
  overflow-y: auto;
  z-index: 1000;
}

.right-aligned .select-option {
  padding: 8px 12px;
  cursor: pointer;
}

.right-aligned .select-option:hover {
  background-color: #f5f5f5;
}

.select-arrow {
  transition: transform 0.2s ease;
}

.select-input.active .select-arrow {
  transform: rotate(180deg);
}

@media (max-width: 768px) {
  .right-aligned .select-input {
    width: 200px;
  }
}

/* PAGE  ORDER DONE */
.page-content {
  margin-top: 0 !important;
  position: relative !important;
  z-index: 0 !important;
  width: 100% !important;
  display: flex !important;
  flex-direction: column !important;
}

.order-done-logo {
  width: 105px !important;
  height: auto !important;
}

.payment-done-container {
  display: flex !important;
  flex-direction: column !important;
  justify-content: space-between !important;
  margin: 30px 40px !important;
  height: 80vh !important;
}

.payment-done-container .order-title {
  font-size: 18px !important;
  font-weight: 500 !important;
  line-height: 25.92px !important;
  color: var(--black) !important;
  margin-top: 20px !important;
}

.payment-done-container .sub-title {
  margin-top: 10px !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 23.2px !important;
  color: var(--text-gray4) !important;
  text-align: center !important;
}

.payment-done-container .question {
  font-size: 14px !important;
  font-weight: 600 !important;
  line-height: 20.3px !important;
  color: var(--black) !important;
  text-transform: uppercase !important;
  margin-bottom: 10px !important;
}

.payment-done-container .phone {
  font-size: 16px !important;
  font-weight: 500 !important;
  line-height: 23.2px !important;
  color: var(--color-p) !important;
  display: flex !important;
  align-items: center !important;
}

.payment-done-container .phone img {
  width: 22px !important;
  height: 23px !important;
  margin-right: 5px !important;
}

.part1,
.part2 {
  display: flex !important;
  flex-direction: column !important;
  align-items: center !important;
}

.my-orders-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
  gap: 5px;
  width: 90%;
}

@media (min-width: 768px) {
  .my-orders-container {
    width: 50%;
  }
}

.my-order-item{
  display: flex;
  flex-direction: column;
  width: 100%;
}

.order-header{
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.order-header .order-title{
  font-size: 14px;
  font-weight: 600;
}

.order-actions{
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-top: 10px;
}

.order-item {
  background: #fff;
  border-radius: 8px;
  padding: 16px;
  margin-bottom: 12px;
}

.order-item-inner {
  display: flex;
  gap: 16px;
}

.order-item-image {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
}

.order-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.order-item-content {
  flex: 1;
}

.order-item-header {
  display: flex;
  align-items: center;
  margin-bottom: 8px;
  gap: 8px;
}

.order-item-quantity {
  color: #E91E63;
  font-weight: 600;
}

.order-item-name {
  flex: 1;
  font-weight: 600;
}

.order-item-price {
  font-weight: 600;
}

.order-item-options {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-bottom: 8px;
}

.order-item-option {
  color: #666;
  font-size: 0.9em;
  display: flex;
  align-items: center;
  gap: 4px;
}

.option-plus {
  color: #E91E63;
}

.order-item-comments {
  color: #666;
  font-size: 0.9em;
  font-style: italic;
}

.order-totals {
  padding: 16px;
  background: #fff;
  border-radius: 8px;
}

.order-total-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}

.order-total-row:last-child {
  margin-bottom: 0;
}

.total-label {
  color: #666;
}

.total-value {
  font-weight: 600;
}

.order-total-row.final {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #eee;
}

.order-total-row.final .total-label,
.order-total-row.final .total-value {
  font-size: 1.1em;
  font-weight: 700;
  color: #000;
}

.md_full_title_border {
  padding: 5px !important;
}

.my-account-delivery-form {
  margin-top: 20px;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 100%;
}

@media (min-width: 1024px) {
  .my-account-delivery-form {
    width: 70%;
  }
}

.my-account-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: 20px;
}

@media (min-width: 1024px) {
  .my-account-container {
    width: 50%;
  }
}

.my-account-button-container{
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 20px;
  gap: 5px;
  width: 100%;
}

/* Estilos para las flechas de navegación */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background-color: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.3s ease;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.carousel-arrow:hover {
  background-color: rgba(255, 255, 255, 0.9);
  box-shadow: 0 3px 8px rgba(0,0,0,0.15);
}

.carousel-arrow.prev {
  left: 0;
  transform: translate(-50%, -50%);
}

.carousel-arrow.next {
  right: 0;
  transform: translate(50%, -50%);
}

.carousel-arrow svg {
  width: 20px;
  height: 20px;
  fill: #333;
}

@media (max-width: 768px) {
  .carousel-arrow {
    display: none;
  }
}

.md_loading_spinner {
  border: 4px solid rgba(128, 128, 128, 0.25) !important;
  border-top: 4px solid var(--primary) !important;
}

ul.menu-exchange-list li {
  width: 60%;
}

@media (max-width: 991px) {
  ul.menu-exchange-list li {
    width: 100%;
    margin: 0;
  }
}

.top-presentation {
  position: relative;
  width: 100%;
  min-height: 320px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  /* flex-direction: column; */
  justify-content: center;
  align-items: center;
  gap: 2px;
}

.top-presentation::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--top-presentation-mask);
  z-index: 1;
}

.top-presentation > * {
  position: relative;
  z-index: 2;
}

.welcome-container {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

.logo-container {
  text-align: center;
}

.business-logo {
  max-width: 80%;
  height: auto;
}

.loading-dots {
  text-align: center;
  margin-top: 20px;
}

.loading-dots span {
  display: inline-block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #333;
  margin: 0 5px;
  opacity: 0;
  animation: loadingDots 1.4s infinite;
}

.loading-dots span:nth-child(2) {
  animation-delay: 0.2s;
}

.loading-dots span:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes loadingDots {
  0% { opacity: 0; }
  50% { opacity: 1; }
  100% { opacity: 0; }
}

.welcome-screen-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #ffffff;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
}

.welcome-container {
  text-align: center;
}

.logo-container img {
  width: 50% !important;
  height: 50% !important;
}

.loading-dots {
  margin-top: 20px;
}

/* Home landing shared classes */
.md_landing_bg {
  background-color: var(--background);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.md_landing_footer_text {
  padding-top: 10px;
  font-family: sans-serif;
  font-size: 15px;
  vertical-align: top;
  text-align: center;
  color: var(--full-white);
  margin: 0 auto;
}

.bold-title {
  font-weight: 700;
  color: var(--step-font-color);
}

/* .md_locations_search_box_inner {
  margin-top: 100px;
} */

.md_locations_search_box_container_relative {
  position: relative;
}

.md_saved_delivery_addresses_list_item_new {
  display: list-item;
}

/* Mantén los estilos existentes para loading-dots si ya los tienes */
.slider-container {
  position: relative;
  width: 100%;
  max-width: 1000px;
  height: 175px;
  /* margin: 20px auto; */
  overflow: visible;
  /* top: 25px; */
}

.slider {
  position: relative;
  width: 100%;
  height: 100%
}

.slide {
  position: absolute;
  width: 363px;
  height: 202px;
  left: 50%;
  top: 0;
  background: #fff;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateX(-50%) scale(0.7);
  transition: transform 0.5s ease, opacity 0.5s ease;
  z-index: 1;
  overflow: hidden;

  @media (min-width: 768px) {
    /* top: 25%; */
    height: 175px;
  }
}

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

.slide.active {
  opacity: 1;
  transform: translateX(-50%) scale(1);
  z-index: 3;
  height: 100%;
}

.slide.next {
  opacity: 0.5;
  transform: translateX(30%) scale(0.85);
  z-index: 2
}

.slide.prev {
  opacity: 0.5;
  transform: translateX(-130%) scale(0.85);
  z-index: 2
}

.slide:not(.active):not(.next):not(.prev) {
  opacity: 0;
  visibility: hidden;
  z-index: 1
}

.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.8);
  border: none;
  border-radius: 50%;
  cursor: pointer;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 4;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s ease
}

@media (min-width: 769px) {
  .carousel-arrow {
    display: flex;
  }
}

.carousel-arrow:hover {
  background: rgba(255, 255, 255, 1)
}

.carousel-arrow svg {
  width: 24px;
  height: 24px;
  fill: #333
}

.carousel-arrow.prev {
  left: 10px
}

.carousel-arrow.next {
  right: 10px
}

@media (max-width:768px) {
  .slider-container {
    max-width: 100%;
    height: 190px;
    margin: 15px auto;
    /* top: 25px; */
  }

  .slide {
    width: 340px;
    height: 190px
  }

  .carousel-arrow {
    width: 32px;
    height: 32px
  }

  .carousel-arrow svg {
    width: 20px;
    height: 20px
  }
}

/* Marketplace styles */
.filial-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  background-color: #fff;
  padding-bottom: 50px;
}

/* Filial header*/
.filial-list .filial-header {
  width: 100%;
  background-color: var(--neutral-9);
  height: 37px;
  color: var(--menu-item);
  font-weight: 500;
  font-size: 14px;
  line-height: 35px;
  align-content: center;
  text-align: center;
  text-transform: uppercase;
}

/* Product list*/
.filial-list .product-list {
  /* margin: 50px auto; */
  padding-top: 10px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px 25px;
  width: 100%;
  @media (min-width: 1024px) {
    width: 55%;
  }
}

/* Product list tablet view*/
@media (min-width: 768px) {
  .filial-list .product-list {
    display: grid;
    width: auto;
    grid-template-columns: repeat(3, minmax(330px, 1fr));
  }
}

/* Product card*/
.filial-list .product-list .product-card {
  background-color: var(--white);
  border-radius: 10px;
  width: 100%;
  padding-top: 10px;
  margin-bottom: 10px;
  cursor: pointer;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0px;
  padding-right: 0px;
}

/* Product card tablet/desktop margins*/
@media (min-width: 768px) {
  .filial-list .product-list .product-card {
    margin-left: 0;
    margin-right: 0;
  }
}

/* Product card header*/
.filial-list .product-list .product-card .product-card-header {
  display: flex;
  flex-direction: column;
  position: relative;
  padding: 0 15px;
}

/* Header main container*/
.filial-list .product-list .product-card .product-card-header .header-main {
  display: flex;
  align-items: flex-start;
  width: 100%;
  position: relative;
  gap: 10px;
}

/* Product logo*/
.filial-list .product-list .product-card .product-card-header .product-logo {
  width: 57px;
  height: auto;
  margin-right: 5px;
}

/* Product card data*/
.filial-list .product-list .product-card .product-card-header .product-card-data {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

/* Featured star*/
.filial-list .product-list .product-card .product-card-header .featured-star {
  margin-left: 8px;
  display: flex;
  align-items: center;
}

/* Product title*/
.filial-list .product-list .product-card .product-card-header h3 {
  font-weight: 500;
  font-size: 20px;
  line-height: 27.2px;
  color: var(--dark-black);
  margin: 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}

/* Product description*/
.filial-list .product-list .product-card .product-card-header p {
  display: flex;
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  line-height: 20.3px;
  color: var(--text-semi-black);
}

/* Clock icon*/
.icon-clock {
  background-image: url("../../images/clock.svg");
  margin-right: 5px;
  width: 20px;
  height: 20px;
  display: inline-block;
  flex-shrink: 0;
}

/* Percent icon*/
.icon-percent {
  background-image: url("../../images/percent.svg");
  margin-right: 5px;
  width: 20px;
  height: 20px;
  display: inline-block;
  flex-shrink: 0;
}

/* Small screen text adjustment*/
@media (max-width: 320px) {
  .filial-list .product-list .product-card .product-card-header p {
    font-size: 14px;
    word-spacing: -2px;
  }
}

/* Color icon*/
.filial-list .product-list .product-card .product-card-header svg.put-color-icon {
  stroke: var(--text-semi-black);
}

/* Separator line*/
.filial-list .product-list .product-card hr {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  border-top: solid 1px var(--line-color);
  border-bottom: none;
  width: 95%;
  margin: 3px auto;
}

/* Product card content*/
.filial-list .product-list .product-card .product-card-content {
  padding: 10px 16px;
  display: flex;
  flex-direction: column;
  width: 100%;
}

/* Time content*/
.filial-list .product-list .product-card .product-card-content .content-time {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 23.2px;
  color: var(--text-gray);
  width: 100%;
}

/* Time and discount text*/
.filial-list .product-list .product-card .product-card-content .text {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  min-width: 0;
  flex: 1;
}

/* Discount content*/
.filial-list .product-list .product-card .product-card-content .content-discount {
  display: flex;
  align-items: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 23.2px;
  color: var(--text-cyan);
  width: 100%;
}

/* Card footer*/
.filial-list .product-list .product-card .product-card-footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  font-size: 11px;
  margin-inline-start: 20px;
  margin-inline-end: 20px;
  padding: 5px 0px;
}

/* Badge*/
.filial-list .product-list .product-card .product-card-footer .badge {
  border-radius: 91px;
  background-color: var(--primary);
  color: var(--white);
  padding: 4px;
}

/* Footer spans*/
.filial-list .product-list .product-card .product-card-footer span {
  position: relative;
  text-wrap: nowrap;
  display: flex;
  align-items: center;
  color: var(--color-footer-text);
  font-weight: 400;
}

/* Footer icons margin*/
.filial-list .product-list .product-card .product-card-footer span i {
  margin-right: 3px;
}

/* Delivery and pickup icons base*/
.filial-list .product-list .product-card .product-card-footer .delivery-icon,
.retiro-icon {
  display: inline-block;
  width: 20px;
  height: 20px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Delivery icon*/
.filial-list .product-list .product-card .product-card-footer .delivery-icon {
  /* background-image: url("../../images/icon-delivery.svg"); */
  margin-right: 6px;
}

/* Pickup icon*/
/* .filial-list .product-list .product-card .product-card-footer .retiro-icon {
  background-image: url("../../images/icon-pickup.svg");
} */

/*Hover debajo del nombre del local*/
.md_locations h3:after {
  background: var(--primary) !important;
}

.md_locations .md_col_container {
  max-width: none !important;
  padding: 0 40px !important;
}

/* Footer span gap*/
.filial-list .product-list .product-card .product-card-footer span {
  gap: 0;
}

/* Estilos para el botón "Quitar" en los ítems de puntos de loyalty */
.btn_remove {
  position: absolute;
  opacity: 0;
  visibility: hidden;
  white-space: nowrap;
  right: -60px;
  top: 50%; /* Centra verticalmente */
  transform: translateY(-50%); /* Centra verticalmente */
  transition: opacity 0.25s ease-in-out, visibility 0.25s ease-in-out, right 0.25s ease-in-out; /* Transiciones suaves */
  color: #fd4f57; /* Añadido: Color rojo para el texto */
}

.btn_remove:after {
  content: "";
  width: 100%;
  height: 1px;
  background: #fd4f57;
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: pointer;
}

/* Eliminamos este selector que ya no es necesario */
/*
.md_cart_item:hover .btn_remove {
  opacity: 1;
  visibility: visible;
  right: 20px;
}
*/

/* Mantenemos este selector */
.md_cart_totals_item:hover .btn_remove {
    opacity: 1;
    visibility: visible;
    right: 20px;
}

/* Mantenemos este selector */
.loyalty_item:hover .btn_remove {
  opacity: 1;
  visibility: visible;
  right: 20px;
}

/* Modificamos este selector para apuntar al elemento correcto */
.loyalty_item:hover .md_cart_totals_item_value {
  display: none; /* Oculta el precio al hacer hover */
}

/* Asegúrate de que el elemento <li> tenga position: relative */
.loyalty_item {
    position: relative;
}

/* Excluir estilos solo para inputs dentro del contenedor de Mercado Pago */
/* #mercadopago_payment_brick_container input {
  border: 1px solid #BFBFBF;
  border-radius: 6px;
  padding-left: 12px;
} */


#mercadopago_payment_brick_container input:not([type="checkbox"]):not([type="radio"]), select {
  /* padding: inherit; */
  width: auto;
  background: transparent;
  border: 1px solid #BFBFBF;
  border-radius: 6px;
  padding-left: 12px;
}