/* ===========================
Index Of css

01. Variables CSS
02. Normalize CSS
03. Header CSS
04. Hero Area CSS
05. Shipping Info CSS
06. Featured Categories CSS
07. Product CSS
08. Banner CSS
09. Special Offer CSS
10. Home Product List CSS
11. About CSS
12. Faq CSS
13. Blog CSS
14. Brands CSS
15. Team CSS
16. Product Details CSS
17. Product Grids CSS
18. Cart CSS
19. Checkout CSS
20. Account Login CSS
21. Contact CSS
22. Error CSS
23. Mail Success CSS
24. Footer CSS
========================== */
/*======================================
    Normalize CSS
========================================*/
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200;300;400;500;600;700;800&display=swap");
html {
  scroll-behavior: smooth;
}

:root {
  --color-primary: #00bba1;
  --color-secondary: #0b2244;
  --color-tertiary: #3b3b3b;
  --font-primary: "Roboto", sans-serif;
  --font-secondary: "Roboto", sans-serif;
}

* {
  margin: 0;
  padding: 0;
  /* Herramienta de depuración para maquetar web */
  /* border: 1px solid red; */
}

h1,
h2,
h3,
h4 h5 {
  text-wrap: balance;
}

body {
  font-family: "Manrope", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #888;
  overflow-x: hidden;
  font-size: 14px;
  min-height: 100dvh;
}

p {
  margin: 0;
  padding: 0;
  font-size: 14px;
  line-height: 24px;
  text-wrap: pretty;
}

.navbar-toggler:focus,
a:focus,
input:focus,
textarea:focus,
button:focus,
.btn:focus,
.btn.focus,
.btn:not(:disabled):not(.disabled).active,
.btn:not(:disabled):not(.disabled):active {
  text-decoration: none;
  outline: none;
  outline: none !important;
  border-color: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
}

.form-check-input:checked {
  background-color: #00bba1;
  border-color: #00bba1;
}

select {
  -webkit-writing-mode: horizontal-tb !important;
  writing-mode: horizontal-tb !important;
  writing-mode: horizontal-tb !important;
  text-rendering: auto;
  color: #0b2244;
  letter-spacing: normal;
  word-spacing: normal;
  text-transform: none;
  text-indent: 0px;
  text-shadow: none;
  display: inline-block;
  text-align: start;
  -webkit-appearance: menulist;
  -moz-appearance: menulist;
  appearance: menulist;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  white-space: pre;
  -webkit-rtl-ordering: logical;
  background-color: -internal-light-dark(white, #3b3b3b);
  cursor: default;
  margin: 0em;
  font: 400 14px;
  border-radius: 0px;
  border-width: 1px;
  border-style: solid;
  border-color: -internal-light-dark(#767676, #858585);
  -o-border-image: initial;
  border-image: initial;
}

span,
a {
  display: inline-block;
  text-decoration: none;
  transition: all 0.4s ease;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
}

audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}

img {
  max-width: 100%;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  margin: 0px;
  color: #0b2244;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  color: inherit;
}

h1 {
  font-size: 20px;
}

h2 {
  font-size: 20px;
}

h3 {
  font-size: 20px;
}

h4 {
  font-size: 20px;
}

h5 {
  font-size: 20px;
}

h6 {
  font-size: 16px;
}

ul,
ol {
  margin: 0px;
  padding: 0px;
  list-style-type: none;
}

.mt-30 {
  margin-top: 30px;
}

.img-bg {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
}

@media only screen and (min-width: 480px) and (max-width: 767px) {
  .container {
    width: 450px;
  }
}

/* Bread Crumbs */
.breadcrumbs {
  position: relative;
  padding: 30px 0;
  z-index: 2;
  text-align: left;
  background-color: #fff;
  -webkit-box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.075);
  box-shadow: 0px 7px 30px rgba(0, 0, 0, 0.075);
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumbs {
    padding: 30px;
  }
}

@media (max-width: 767px) {
  .breadcrumbs {
    padding: 30px;
  }
}

.breadcrumbs .breadcrumbs-content {
  position: relative;
  text-align: left;
}

.breadcrumbs .breadcrumbs-content .page-title {
  font-size: 18px;
  color: #0b2244;
  font-weight: 600;
  position: relative;
  line-height: 28px;
  text-transform: initial;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .breadcrumbs .breadcrumbs-content .page-title {
    font-size: 17px;
    line-height: 28px;
  }
}

@media (max-width: 767px) {
  .breadcrumbs .breadcrumbs-content .page-title {
    font-size: 16px;
    text-align: center;
    line-height: 26px;
  }
}

.breadcrumbs .breadcrumbs-content .breadcrumb-nav {
  background: transparent;
  border-radius: 0;
  margin-bottom: 0;
  padding: 0;
  display: inline-block;
}

.breadcrumbs .breadcrumb-nav {
  text-align: right;
}

@media (max-width: 767px) {
  .breadcrumbs .breadcrumb-nav {
    text-align: center;
    margin-top: 15px;
  }
}

.breadcrumbs .breadcrumb-nav li {
  display: inline-block;
  position: relative;
  padding-right: 14px;
  margin-right: 14px;
  text-transform: capitalize;
}

.breadcrumbs .breadcrumb-nav li:after {
  content: "\ea62";
  font-family: lineIcons;
  font-size: 12px;
  position: absolute;
  top: 3px;
  right: -7px;
}

.breadcrumbs .breadcrumb-nav li:last-child {
  margin: 0;
  padding: 0;
}

.breadcrumbs .breadcrumb-nav li:last-child::after {
  display: none;
}

.breadcrumbs .breadcrumb-nav li,
.breadcrumbs .breadcrumb-nav li a {
  color: #000000;
  font-size: 14px;
  font-weight: 500;
}

.breadcrumbs .breadcrumb-nav li i,
.breadcrumbs .breadcrumb-nav li a i {
  font-size: 13px;
  display: inline-block;
  margin-right: 3px;
  position: relative;
  top: -1px;
}

.breadcrumbs .breadcrumb-nav li a {
  position: relative;
}

.breadcrumbs .breadcrumb-nav li a:hover {
  color: #00bba1;
}

.section {
  padding-top: 90px;
  padding-bottom: 90px;
  position: relative;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

@media (max-width: 767px) {
  .section {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}

/* One Click Scrool Top Button*/
.scroll-top {
  width: 40px;
  height: 40px;
  line-height: 40px;
  background: #00bba1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 16px;
  color: #fff !important;
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 9;
  cursor: pointer;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 4px;
}

.scroll-top:hover {
  -webkit-box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  box-shadow: 0 1rem 3rem rgba(35, 38, 45, 0.15) !important;
  -webkit-transform: translate3d(0, -5px, 0);
  transform: translate3d(0, -5px, 0);
  background-color: #0b2244;
}

/* Overlay */
.overlay {
  position: relative;
  z-index: 1;
}

.overlay::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0.4;
  background: #0b2244;
  content: "";
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  z-index: -1;
}

/* Inicio Style para Btn CSS Animado de cerrar sesion */
.Btn-logout {
  --black: #000000;
  --ch-black: #141414;
  --eer-black: #1b1b1b;
  --night-rider: #0b2244;
  --white: #ffffff;
  --af-white: #f3f3f3;
  --ch-white: #e1e1e1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 45px;
  height: 45px;
  border: none;
  border-radius: 5px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition-duration: 0.3s;
  box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.199);
  background-color: var(--night-rider);
  margin-left: 10px;
}

/* plus sign */
.sign {
  width: 100%;
  transition-duration: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}

.sign svg {
  width: 17px;
}

.sign svg path {
  fill: var(--af-white);
}
/* text */
.textBtn {
  position: absolute;
  right: 0%;
  width: 0%;
  opacity: 0;
  color: var(--af-white);
  font-size: 1.2em;
  font-weight: 600;
  transition-duration: 0.3s;
}
/* hover effect on button width */
.Btn-logout:hover {
  width: 125px;
  border-radius: 5px;
  transition-duration: 0.3s;
}

.Btn-logout:hover .sign {
  width: 30%;
  transition-duration: 0.3s;
  padding-left: 20px;
}
/* hover effect button's text */
.Btn-logout:hover .textBtn {
  opacity: 1;
  width: 70%;
  transition-duration: 0.3s;
  padding-right: 10px;
}
/* button click effect*/
.Btn-logout:active {
  transform: translate(2px, 2px);
}
/* Final Style para Btn CSS Animado de cerrar sesion */

/* =====================================
Estilos para Sistema de Cambio de Contraseña
======================================= */

/* Botón de cambiar contraseña con hover effect */
#btn-change-password {
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
  background-color: #0b2244 !important;
  border-color: #0b2244 !important;
  color: white !important;
}

#btn-change-password:hover {
  background-color: #00bba1 !important;
  border-color: #00bba1 !important;
  transform: translateY(-2px);
  box-shadow: 0 4px 8px rgba(0, 187, 161, 0.3);
}

#btn-change-password:active {
  transform: translateY(0);
  box-shadow: 0 2px 4px rgba(0, 187, 161, 0.3);
}

/* Animación de aparición para formulario de contraseña */
#change-password-form-container {
  animation: fadeInUp 0.3s ease-out;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Estilos para campos de contraseña */
#change-password-form .form-control {
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

#change-password-form .form-control:focus {
  border-color: #00bba1;
  box-shadow: 0 0 0 0.2rem rgba(0, 187, 161, 0.25);
}

/* Indicadores de validación */
#change-password-form .form-control.is-valid {
  border-color: #28a745;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3e%3cpath fill='%2328a745' d='m2.3 6.73.94-.94 1.42 1.42L7.3 4.57 8.73 6 2.8 11.93z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

#change-password-form .form-control.is-invalid {
  border-color: #dc3545;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12' width='12' height='12' fill='none' stroke='%23dc3545'%3e%3ccircle cx='6' cy='6' r='4.5'/%3e%3cpath d='m5.8 4.6 2.4 2.4M8.2 4.6l-2.4 2.4'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

/* Estilos para texto de ayuda */
#change-password-form .form-text {
  font-size: 0.875rem;
  color: #6c757d;
  margin-top: 0.25rem;
}

/* Botón deshabilitado con countdown */
#btn-submit-password.disabled {
  background-color: #6c757d !important;
  border-color: #6c757d !important;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Spinner para loading state */
.spinner-border-sm {
  width: 1rem;
  height: 1rem;
}

/* Contenedor para botones secundarios con ancho igual */
.edit-form-date .row.g-3 {
  display: flex;
  flex-wrap: nowrap;
  align-items: stretch; /* Asegura que las columnas hijas ocupen toda la altura */
}

.edit-form-date .row.g-3 > .col-6 {
  display: flex; /* Permite que el contenido interno se estire */
  flex-direction: column;
  padding-left: 5px !important; /* Control específico del padding para mantener separación */
  padding-right: 5px !important; /* Control específico del padding para mantener separación */
}

.edit-form-date .row.g-3 .button {
  flex-grow: 1; /* El div .button crece para ocupar el espacio */
  display: flex !important;
  justify-content: center !important; /* Centrado horizontal */
  align-items: center !important; /* Centrado vertical */
  padding: 0 !important; /* Eliminar padding que pueda interferir */
  margin: 0 !important; /* Eliminar margin que pueda interferir */
}

.edit-form-date .row.g-3 .btn {
  width: 100% !important; /* El botón ocupa todo el ancho de su contenedor */
  height: 100% !important; /* El botón ocupa toda la altura de su contenedor */
  display: flex !important; /* Flexbox para centrar el contenido del botón - sobreescribe inline-block */
  justify-content: center !important; /* Centrar texto horizontalmente */
  align-items: center !important; /* Centrar texto verticalmente */
  text-align: center !important; /* Centrado de texto adicional */
  margin-right: 0 !important; /* Eliminar margin que interfiere con el centrado */
  margin-left: 0 !important; /* Eliminar cualquier margin izquierdo */
  margin-top: 0 !important; /* Eliminar margin superior */
  margin-bottom: 0 !important; /* Eliminar margin inferior */
}

/* Responsive adjustments */
@media (max-width: 576px) {
  .edit-form-date .row.g-3 .btn {
    font-size: 13px;
    white-space: normal;
    line-height: 1.3;
    padding-top: 10px;
    padding-bottom: 10px;
    min-height: 60px;
  }
}

@media (max-width: 400px) {
  .edit-form-date .row.g-3 .btn {
    font-size: 12px;
    min-height: 65px;
  }
}

/* Regla específica para pantallas GRANDES (>577px) donde ocurre el problema */
@media (min-width: 577px) {
  .edit-form-date .row.g-3 {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }

  .edit-form-date .row.g-3 > .col-6 {
    padding-left: 5px !important;
    padding-right: 5px !important;
  }

  .edit-form-date .row.g-3 .button {
    margin: 0 !important;
    padding: 0 !important;
  }

  .edit-form-date .row.g-3 .btn {
    margin: 0 !important;
    padding: 13px 30px !important; /* Mantener padding interno del botón */
  }
}

/* Separador visual */
hr {
  margin: 1rem 0;
  color: inherit;
  background-color: currentColor;
  border: 0;
  opacity: 0.25;
}

/* Estilos específicos para el botón delete para que mantenga coherencia */
.btn-delete {
  background-color: #dc3545 !important;
  border-color: #dc3545 !important;
  color: white !important;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  border-radius: 5px;
  min-height: 50px; /* Usar min-height en lugar de height */
}

.btn-delete:hover {
  background-color: #c82333 !important;
  border-color: #bd2130 !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(220, 53, 69, 0.3);
} /* Mejoras de accesibilidad */
#change-password-form label {
  font-weight: 500;
  color: #495057;
  margin-bottom: 0.5rem;
}

#change-password-form .form-control::placeholder {
  color: #adb5bd;
  opacity: 1;
}

/* Estados de hover para botones del formulario de contraseña */
#btn-back-to-profile:hover {
  background-color: #495057;
  border-color: #495057;
  transform: translateY(-1px);
}

#btn-submit-password:hover:not(.disabled) {
  background-color: #004d7a;
  border-color: #004d7a;
  transform: translateY(-1px);
}

/* Contenedor principal de botones - asegurar que se mantenga dentro del formulario */
.row.g-3 {
  width: 100%;
}

/* NOTA: Esta regla se sobreescribe específicamente para .edit-form-date */
.row.g-3 .button {
  padding-left: 0;
  padding-right: 0;
  box-sizing: border-box;
}

/* Regla específica que sobreescribe la global para nuestros botones */
.edit-form-date .row.g-3 .button {
  padding: 0 !important;
  margin: 0 !important;
}

/* Evitar que los botones se salgan del contenedor */
.register-form {
  overflow: hidden;
}

.register-form .button {
  box-sizing: border-box;
}

/* =====================================
FIN Estilos para Sistema de Cambio de Contraseña
======================================= */

.button .btn {
  display: inline-block;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 600;
  padding: 13px 30px;
  background-color: #00bba1;
  color: #fff;
  border: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 3px;
  position: relative;
  z-index: 1;
  margin-right: 7px;
  overflow: hidden;
}

.button .btn-delete {
  /* Centrar boton y contenido del boton*/
  margin-left: 70%;
  margin-top: 70px;
  text-transform: capitalize;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 20px;
  background-color: #ec5353;
  color: #fff;
  border: none;
  -webkit-transition: 0.2s;
  transition: 0.2s;
  border-radius: 3px;
  position: relative;
  z-index: 1;
  overflow: hidden;
}

.button .btn-delete:hover {
  color: #fff;
  background-color: #0b2244;
  -webkit-box-shadow: 0px 4px 4px #0000000f;
  box-shadow: 0px 4px 4px #0000000f;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .button .btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
  }
}

@media (max-width: 767px) {
  .button .btn {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
  }
}

.button .btn i {
  display: inline-block;
  margin-right: 5px;
}

.button .btn:last-child {
  margin: 0;
}

.button .btn:hover {
  color: #fff;
  background-color: #0b2244;
  -webkit-box-shadow: 0px 4px 4px #0000000f;
  box-shadow: 0px 4px 4px #0000000f;
}

.button .btn-alt {
  background-color: #0b2244 !important;
  color: #fff !important;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .button .btn-alt {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
  }
}

@media (max-width: 767px) {
  .button .btn-alt {
    padding: 12px 25px;
    font-size: 14px;
    font-weight: 500;
  }
}

.button .btn-alt:hover {
  background-color: #00bba1 !important;
  color: #fff !important;
}

.align-left {
  text-align: left;
}

.align-right {
  text-align: right;
}

.align-center {
  text-align: center;
}

/* Preloader */
.preloader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999999999;
  width: 100%;
  height: 100%;
  background-color: #fff;
  overflow: hidden;
}

.preloader-inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.preloader-icon {
  width: 100px;
  height: 100px;
  display: inline-block;
  padding: 0px;
}

.preloader-icon span {
  position: absolute;
  display: inline-block;
  width: 100px;
  height: 100px;
  border-radius: 100%;
  background: #00bba1;
  -webkit-animation: preloader-fx 1.6s linear infinite;
  animation: preloader-fx 1.6s linear infinite;
}

.preloader-icon span:last-child {
  animation-delay: -0.8s;
  -webkit-animation-delay: -0.8s;
}

@keyframes preloader-fx {
  0% {
    -webkit-transform: scale(0, 0);
    transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1, 1);
    transform: scale(1, 1);
    opacity: 0;
  }
}

@-webkit-keyframes preloader-fx {
  0% {
    -webkit-transform: scale(0, 0);
    opacity: 0.5;
  }
  100% {
    -webkit-transform: scale(1, 1);
    opacity: 0;
  }
}

/*======================================
	01. Start Header CSS
========================================*/
/* Start Navbar Announcements */
.announcement-bar {
  background-color: #ffc107;
  overflow: hidden;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
}

.header.navbar-area {
  padding-top: 40px;
}

.announcement-content {
  color: #0b2244;
  font-size: 1rem;
  font-weight: 500;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.announcement-wrapper {
  min-height: 25px;
}

/* .announcement-item {
  opacity: 0;
  position: absolute;
  width: 100%;
  transform: translateY(20px);
  animation: fadeInUp 0.5s ease forwards;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
} */

.announcement-item {
  opacity: 0;
  position: absolute;
  width: 100%;
  transform: translateX(100%);
  animation: slideInRight 0.5s ease forwards, slideOutLeft 0.5s ease forwards 4.5s;
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideOutLeft {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-100%);
  }
}

.highlight {
  color: #f73232;
  font-weight: 600;
}

@media (max-width: 768px) {
  .announcement-content {
    font-size: 0.75rem;
  }
}

.announcement-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #fff;
  opacity: 0.9;
  padding: 0.25rem;
  z-index: 10;
  cursor: pointer;
  transition: opacity 0.3s ease;
  display: flex;
  align-items: center;
  height: 100%;
}

.announcement-nav:hover {
  opacity: 1;
}

.prev-announcement {
  left: 0.5rem;
}

.next-announcement {
  right: 0.5rem;
}

.announcement-nav i {
  font-size: 1rem;
}

@media (min-width: 992px) {
  .prev-announcement {
    left: 25%;
  }

  .next-announcement {
    right: 25%;
  }
}

@media (max-width: 576px) {
  .announcement-nav {
    padding: 0.15rem;
  }

  .announcement-nav i {
    font-size: 0.875rem;
  }
}

@media (max-width: 768px) {
  .header.navbar-area {
    padding-top: 35px;
  }

  .announcement-content {
    font-size: 0.75rem;
  }
}
/* Fin CSS navbar Anuncios */

.header {
  width: 100%;
  background: #fff;
  position: relative;
  width: 100%;
  /* Start Topbar */
  /* End Topbar */
  /* Start Main Menu Search */
  /* End Main Menu Search */
}

.header .topbar {
  background-color: #0b2244;
  padding: 18px 0;
}

@media (max-width: 767px) {
  .header .topbar .top-left {
    text-align: center;
  }
}

.header .topbar .top-left .menu-top-link .select-position {
  position: relative;
}

.header .topbar .top-left .menu-top-link .select-position select {
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  border: none;
  padding: 0 10px 0 0px;
  color: #fff !important;
  font-weight: 500;
  font-size: 14px;
  background-color: #0b2244 !important;
}

.header .topbar .top-left .menu-top-link .select-position select:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.header .topbar .top-left .menu-top-link .select-position::after {
  border-bottom: 2px solid #fff;
  border-right: 2px solid #fff;
  content: "";
  display: block;
  height: 6px;
  margin-top: -3px;
  pointer-events: none;
  position: absolute;
  right: 0px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 6px;
}

.header .topbar .top-left .menu-top-link li {
  display: inline-block;
  margin-right: 20px;
}

.header .topbar .top-left .menu-top-link li:last-child {
  margin: 0;
}

.header .topbar .top-middle {
  text-align: center;
}

@media (max-width: 767px) {
  .header .topbar .top-middle {
    display: none;
  }
}

.header .topbar .top-middle .useful-links li {
  display: inline-block;
  margin-right: 10px;
  padding-right: 10px;
}

.header .topbar .top-middle .useful-links li:last-child {
  margin: 0;
  border: none;
}

.header .topbar .top-middle .useful-links li a {
  color: #fff;
  font-size: 14px;
  font-weight: 500;
}

.header .topbar .top-middle .useful-links li a:hover {
  color: #00bba1;
}

/* .header .topbar .top-end {
  float: right;
  display: inline-block;
} */

@media (max-width: 767px) {
  .header .topbar .top-end {
    float: none;
    text-align: center;
    display: block;
    margin-top: 15px;
  }
}

.header .topbar .top-end .user {
  color: #fff;
  display: inline-block;
  margin-right: 5px;
  font-weight: 500;
  font-size: 14px;
  /* Activar las siguientes lineas cuando se quiera usar el boton logout animado */
  /* display: flex;
  align-items: center; */
}

.header .topbar .top-end .user i {
  color: #fff;
  display: inline-block;
  margin-right: 5px;
  font-size: 16px;
}

.header .topbar .top-end .user a {
  cursor: pointer;
}

.header .topbar .top-end .user-login {
  display: inline-block;
  white-space: nowrap;
}

.header .topbar .top-end .user-login li {
  display: inline-block;
  border-right: 1px solid rgba(255, 255, 255, 0.459);
  padding: 0px 10px;
  white-space: nowrap;
}

.header .topbar .top-end .user-login li:first-child {
  padding-right: 12px;
}

.header .topbar .top-end .user-login li:last-child {
  margin-right: 0;
  padding-right: 0;
  border-right: none;
}

.header .topbar .top-end .user-login li a {
  color: #fff;
  font-weight: 500;
  font-size: 14px;
  white-space: nowrap;
}

.header .topbar .top-end .user-login li a:hover {
  color: #00bba1;
}

.header .header-middle {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 25px 0;
  border-bottom: 1px solid #eee;
}

@media (max-width: 767px) {
  .header .header-middle .d-xs-none {
    display: none;
  }
}

.header .middle-right-area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

@media (max-width: 767px) {
  .header .middle-right-area {
    -webkit-box-pack: right;
    -ms-flex-pack: right;
    justify-content: right;
    float: right;
  }
}

.header .nav-hotline {
  position: relative;
  padding-left: 50px;
  margin-right: 35px;
}

@media (max-width: 767px) {
  .header .nav-hotline {
    display: none;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .nav-hotline {
    display: none;
  }
}

.header .nav-hotline i {
  color: #0b2244;
  font-size: 18px;
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 40px;
  width: 40px;
  line-height: 40px;
  text-align: center;
  display: block;
  border: 1px solid #eee;
  border-radius: 50%;
}

.header .nav-hotline h3 {
  font-size: 15px;
  font-weight: 600;
  color: #0b2244;
}

.header .nav-hotline h3 span {
  color: #000000;
  font-weight: 500;
  font-size: 14px;
  display: block;
  margin-top: 2px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header .nav-hotline h3 span {
    font-size: 12px;
    font-weight: 600;
  }
}

.header .navbar-cart {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}

.header .navbar-cart .wishlist {
  margin-right: 12px;
}

.header .navbar-cart .wishlist a {
  height: 40px;
  width: 40px;
  line-height: 40px;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #eee;
  color: #555;
  font-size: 18px;
  text-align: center;
  position: relative;
}

.header .navbar-cart .wishlist a:hover {
  color: #fff;
  background-color: #00bba1;
  border-color: transparent;
}

.header .navbar-cart .wishlist a .total-items {
  position: absolute;
  right: -6px;
  top: -5px;
  height: 19px;
  width: 19px;
  line-height: 19px;
  background-color: #0b2244;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  border-radius: 50%;
}

.header .navbar-cart .cart-items {
  position: relative;
}

.header .navbar-cart .cart-items:hover .main-btn {
  color: #fff;
  background-color: #00bba1;
  border-color: transparent;
}

.header .navbar-cart .cart-items .main-btn {
  height: 40px;
  width: 40px;
  line-height: 40px;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #eee;
  color: #555;
  font-size: 18px;
  text-align: center;
  position: relative;
}

.header .navbar-cart .cart-items .main-btn .total-items {
  position: absolute;
  right: -6px;
  top: -5px;
  height: 19px;
  width: 19px;
  line-height: 19px;
  background-color: #0b2244;
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  text-align: center;
  border-radius: 50%;
}

.header .navbar-cart .cart-items:hover .shopping-item {
  opacity: 1;
  visibility: visible;
}

.header .navbar-cart .cart-items .shopping-item {
  position: absolute;
  top: 72px;
  right: 0;
  width: 300px;
  background: #fff;
  padding: 20px 25px;
  -webkit-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
  z-index: 99;
  border-radius: 4px;
  -webkit-box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.137);
  box-shadow: 0px 0px 5px rgba(0, 0, 0, 0.137);
  opacity: 0;
  visibility: hidden;
}

@media (max-width: 767px) {
  .header .navbar-cart .cart-items .shopping-item {
    width: 250px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .navbar-cart .cart-items .shopping-item {
    top: 68px;
  }
}

@media (max-width: 767px) {
  .header .navbar-cart .cart-items .shopping-item {
    top: 66px;
  }
}

.header .navbar-cart .cart-items .shopping-item .dropdown-cart-header {
  padding-bottom: 10px;
  margin-bottom: 15px;
  border-bottom: 1px solid #e6e6e6;
}

.header .navbar-cart .cart-items .shopping-item .dropdown-cart-header span {
  text-transform: capitalize;
  color: #222;
  font-size: 14px;
  font-weight: 600;
}

.header .navbar-cart .cart-items .shopping-item .dropdown-cart-header a {
  float: right;
  text-transform: capitalize;
  color: #222;
  font-size: 14px;
  font-weight: 600;
}

.header .navbar-cart .cart-items .shopping-item .dropdown-cart-header a:hover {
  color: #00bba1;
}

.header .navbar-cart .cart-items .shopping-item .shopping-list li {
  overflow: hidden;
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 15px;
  margin-bottom: 15px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .navbar-cart .cart-items .shopping-item .shopping-list li .remove {
  position: absolute;
  right: 0;
  top: 0;
  height: 20px;
  width: 20px;
  line-height: 18px;
  text-align: center;
  background: #fff;
  color: #222;
  border-radius: 50%;
  font-size: 9px;
  border: 1px solid #ededed;
  padding-left: 1px;
}

.header .navbar-cart .cart-items .shopping-item .shopping-list li .remove:hover {
  border-color: transparent;
  color: #fff;
  background-color: #00bba1;
}

.header .navbar-cart .cart-items .shopping-item .shopping-list li .cart-img-head {
  width: 40%;
}

@media (max-width: 767px) {
  .header .navbar-cart .cart-items .shopping-item .shopping-list li .cart-img-head {
    width: 30%;
    margin-right: 12px;
  }
}

.header .navbar-cart .cart-items .shopping-item .shopping-list li .cart-img {
  border: 1px solid #ededed;
  overflow: hidden;
  height: 80px;
  width: 80px;
  border-radius: 4px;
  float: left;
  margin-right: 20px;
}

@media (max-width: 767px) {
  .header .navbar-cart .cart-items .shopping-item .shopping-list li .cart-img {
    height: 60px;
    width: 60px;
    margin-right: 10px;
  }
}

.header .navbar-cart .cart-items .shopping-item .shopping-list li .content {
  padding-right: 25px;
  width: 60%;
}

@media (max-width: 767px) {
  .header .navbar-cart .cart-items .shopping-item .shopping-list li .content {
    width: 70%;
  }
}

.header .navbar-cart .cart-items .shopping-item .shopping-list li .content h4 {
  margin-bottom: 5px;
  line-height: 22px;
}

.header .navbar-cart .cart-items .shopping-item .shopping-list li .content h4 a {
  font-size: 14px;
  font-weight: 600;
  color: #0b2244;
}

@media (max-width: 767px) {
  .header .navbar-cart .cart-items .shopping-item .shopping-list li .content h4 a {
    font-size: 13px;
  }
}

.header .navbar-cart .cart-items .shopping-item .shopping-list li .content h4 a:hover {
  color: #00bba1;
}

.header .navbar-cart .cart-items .shopping-item .shopping-list li .content .quantity {
  line-height: 22px;
  font-size: 14px;
}

.header .navbar-cart .cart-items .shopping-item .bottom {
  text-align: center;
}

.header .navbar-cart .cart-items .shopping-item .bottom .total {
  overflow: hidden;
  display: block;
  padding-bottom: 10px;
}

.header .navbar-cart .cart-items .shopping-item .bottom .total span {
  text-transform: capitalize;
  color: #222;
  font-size: 14px;
  font-weight: 600;
  float: left;
}

.header .navbar-cart .cart-items .shopping-item .bottom .total .total-amount {
  float: right;
  font-size: 14px;
}

.header .navbar-cart .cart-items .shopping-item .bottom .button {
  margin-top: 10px;
  width: 100%;
}

.header .navbar-cart .cart-items .shopping-item .bottom .button .btn {
  width: 100%;
}

@media (max-width: 767px) {
  .header .main-menu-search {
    display: none;
  }
}

.header .main-menu-search .navbar-search {
  position: relative;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .main-menu-search .select-position {
  position: relative;
}

.header .main-menu-search .select-position:after {
  border-bottom: 1.5px solid #0b2244;
  border-right: 1.5px solid #0b2244;
  content: "";
  display: block;
  height: 8px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 15px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 8px;
}

.header .main-menu-search .select-position select {
  height: 45px;
  border: 1px solid #e2e2e2;
  border-right: 0px;
  padding: 0 20px;
  background: transparent;
  border-radius: 4px 0 0 4px;
  position: relative;
  padding-right: 30px;
  -moz-appearance: none;
  appearance: none;
  -webkit-appearance: none;
  font-size: 14px;
}

.header .main-menu-search .select-position select:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.header .main-menu-search .search-input {
  width: 100%;
}

.header .main-menu-search .search-input input {
  width: 100%;
  height: 45px;
  border: 1px solid #e2e2e2;
  background-color: #fff;
  color: #000;
  border-radius: 0;
  padding: 0 15px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  font-size: 14px;
}

.header .main-menu-search .search-btn button {
  background-color: #00bba1;
  color: #fff;
  width: 45px;
  height: 45px;
  padding: 0;
  border: 0;
  border-radius: 0 4px 4px 0;
  margin-left: -2px;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  font-size: 18px;
}

.header .main-menu-search .search-btn button:hover {
  color: #fff;
  background-color: #0b2244;
}

/* Media Queries para el menu superior Home */
@media only screen and (min-width: 1201px) and (max-width: 1400px) {
  .header .navbar .ms-auto .nav-item a {
    display: flex; /* Cambia a flexbox */
    white-space: nowrap; /* Evita los saltos de línea */
    margin: 0 -3px;
  }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header .navbar .ms-auto .nav-item a {
    display: flex; /* Cambia a flexbox */
    white-space: nowrap; /* Evita los saltos de línea */
    margin: 0 -7.5px; /* Reduce el espacio entre cada elemento <a> */
    font-size: small;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .mobile-menu-btn .toggler-icon {
    background-color: #0b2244;
  }
  .header .button {
    margin: 0 !important;
  }
  .header .nav-inner {
    display: block !important;
    padding: 18px 0;
  }
  .header .navbar-collapse {
    position: absolute;
    top: 46px !important;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    max-height: 350px;
    overflow-y: scroll;
    border-top: 1px solid #eee;
    border-radius: 6px;
  }
  .header .navbar .navbar-nav .nav-item a:hover {
    color: #00bba1 !important;
  }
  .header .navbar .navbar-nav .nav-item a.active {
    color: #00bba1 !important;
  }
  .header .navbar-nav .nav-item {
    margin: 0;
  }
  .header .navbar-nav .nav-item:hover a {
    color: #00bba1;
  }
  .header .navbar-nav .nav-item a {
    padding: 12px 16px !important;
  }
  .header .navbar-nav .nav-item a::before {
    display: none;
  }
  .header .navbar-nav .nav-item .sub-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    border: none;
    margin-left: 15px;
    margin-right: 15px;
  }
  .header .navbar-nav .nav-item .sub-menu .nav-item a {
    padding: 12px 12px;
  }
  .header .navbar-nav .nav-item .sub-menu .nav-item a:hover {
    color: #00bba1 !important;
  }
  .header .navbar-nav .nav-item a {
    color: #051441;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 0;
  }
  .header .navbar-nav .nav-item a::after {
    opacity: 1;
    visibility: visible;
  }
  .header .navbar-nav .nav-item .sub-menu li.active {
    background: #fff !important;
    color: #00bba1 !important;
  }
  .header .navbar-nav .nav-item .sub-menu .nav-item {
    margin: 0 !important;
  }
  .header .navbar-nav .nav-item .sub-menu .nav-item a {
    padding: 10px 12px !important;
  }
  .header .navbar-nav .nav-item .sub-menu li:hover {
    background: #fff !important;
    color: #00bba1 !important;
  }
  .header .navbar-nav .nav-item a {
    font-size: 14px;
  }
  .header .navbar-nav .nav-item a:hover {
    color: #00bba1;
  }
}

@media (max-width: 767px) {
  .header .mobile-menu-btn .toggler-icon {
    background-color: #0b2244;
  }
  .header .button {
    margin: 0 !important;
  }
  .header .nav-inner {
    display: block !important;
    padding: 18px 0;
  }
  .header .navbar-collapse {
    position: absolute;
    top: 46px !important;
    left: 0;
    width: 100%;
    background-color: #fff;
    z-index: 9;
    -webkit-box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 15px 20px 0px rgba(0, 0, 0, 0.1);
    padding: 10px 20px;
    max-height: 350px;
    overflow-y: scroll;
    border-top: 1px solid #eee;
    border-radius: 6px;
  }

  .header .navbar .navbar-nav .nav-item a:hover {
    color: #00bba1 !important;
  }
  .header .navbar .navbar-nav .nav-item a.active {
    color: #00bba1 !important;
  }
  .header .navbar-nav .nav-item {
    margin: 0;
  }
  .header .navbar-nav .nav-item:hover a {
    color: #00bba1;
  }
  .header .navbar-nav .nav-item a {
    padding: 12px 16px !important;
  }
  .header .navbar-nav .nav-item a::before {
    display: none;
  }
  .header .navbar-nav .nav-item .sub-menu {
    position: static;
    width: 100%;
    opacity: 1;
    visibility: visible;
    -webkit-box-shadow: none;
    box-shadow: none;
    padding: 0;
    border: none;
    margin-left: 15px;
    margin-right: 15px;
  }
  .header .navbar-nav .nav-item .sub-menu .nav-item a {
    padding: 12px 12px;
  }
  .header .navbar-nav .nav-item .sub-menu .nav-item a:hover {
    color: #00bba1 !important;
  }
  .header .navbar-nav .nav-item a {
    color: #051441;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 10px 0;
  }
  .header .navbar-nav .nav-item a::after {
    opacity: 1;
    visibility: visible;
  }

  .header .navbar-nav .nav-item .sub-menu li.active {
    background: #fff !important;
    color: #00bba1 !important;
  }
  .header .navbar-nav .nav-item .sub-menu .nav-item {
    margin: 0 !important;
  }
  .header .navbar-nav .nav-item .sub-menu .nav-item a {
    padding: 10px 12px !important;
  }
  .header .navbar-nav .nav-item .sub-menu li:hover {
    background: #fff !important;
    color: #00bba1 !important;
  }
  .header .navbar-nav .nav-item a {
    font-size: 14px;
  }
  .header .navbar-nav .nav-item a:hover {
    color: #00bba1;
  }
}

.header .navbar-nav .nav-item .sub-menu li a {
  color: black;
}

.header .nav-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header .mega-category-menu {
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-right: 1px solid #eee;
  margin-right: 40px;
  padding-right: 112px;
  cursor: pointer;
}

/* Inicio Animacion Linea sub menu Productos */
.custom-dropdown-item a {
  position: relative;
  text-decoration: none;
  color: inherit;
}

.custom-dropdown-item a span {
  position: relative;
  display: inline-block;
}

.custom-dropdown-item a span::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 2px;
  background: #0b2244; /* Color de la línea animada */
  width: 100%; /* Ancho inicial de la línea */
  transform: scaleX(0); /* Oculta la línea inicialmente */
  transition: transform 0.3s ease-in-out; /* Transición suave de la transformación */
  transform-origin: left; /* La transformación comienza desde la izquierda */
}

.custom-dropdown-item a:hover span::after {
  transform: scaleX(1); /* Al pasar el mouse, la línea animada se expande al ancho del texto */
}
/* Fin Animacion Linea sub menu Productos */

/* INICIO Animacion para el Boton Mac usados */

.animate-saldos span {
  position: relative;
  outline: 0;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  background: #0b2244;
  width: fit-content;
  border: 0;
  border-radius: 4px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  box-sizing: border-box;
  padding: 2px 5px;
  color: #ffffff;
  font-size: 13px;
  font-weight: bold;
  overflow: hidden;
  cursor: pointer;
}

/* FIN Animacion para el Boton Mac usados */

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .header .mega-category-menu {
    padding-right: 35px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .mega-category-menu {
    display: none;
  }
}

@media (max-width: 767px) {
  .header .mega-category-menu {
    display: none;
  }
}

.header .mega-category-menu .cat-button {
  display: flex; /* Cambia a flexbox */
  align-items: center; /* Alinea verticalmente el texto y el icono */
  color: #0b2244;
  font-size: 15px;
  font-weight: 600;
}

.header .mega-category-menu .cat-button i {
  margin-right: 12px;
  font-size: 20px;
}

.header .mega-category-menu:hover .sub-category {
  opacity: 1;
  visibility: visible;
  top: 61px;
}

.header .mega-category-menu .sub-category {
  position: absolute;
  left: 0;
  top: 68px;
  width: 241px;
  height: auto;
  border: 1px solid #eee;
  background-color: #fff;
  opacity: 0;
  visibility: hidden;
  border-radius: 0;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 15px 0;
}

.header .mega-category-menu .sub-category li {
  display: block;
  position: relative;
}

.header .mega-category-menu .sub-category li:hover .inner-sub-category {
  opacity: 1;
  visibility: visible;
  top: 0;
}

.header .mega-category-menu .sub-category li .inner-sub-category {
  padding: 15px 0;
  position: absolute;
  top: 8px;
  width: 240px;
  height: auto;
  border: 1px solid #eee;
  background-color: #fff;
  border-radius: 0;
  left: 239px;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.header .mega-category-menu .sub-category li .inner-sub-category li {
  display: block;
  position: relative;
}

.header .mega-category-menu .sub-category li .inner-sub-category li:last-child {
  margin: 0;
}

.header .mega-category-menu .sub-category li .inner-sub-category li a {
  color: #0b2244;
  text-transform: capitalize;
  font-size: 14px;
  position: relative;
  width: 100%;
  padding: 8px 30px;
}

.header .mega-category-menu .sub-category li .inner-sub-category li a:hover {
  color: #00bba1;
}

.header .mega-category-menu .sub-category li:last-child {
  margin: 0;
}

.header .mega-category-menu .sub-category li a {
  color: #0b2244;
  text-transform: capitalize;
  font-size: 14px;
  position: relative;
  width: 100%;
  padding: 8px 30px;
}

.header .mega-category-menu .sub-category li a i {
  font-size: 12px;
  float: right;
  position: relative;
  top: 5px;
}

.header .mega-category-menu .sub-category li a:hover {
  color: #00bba1;
}

.header .nav-social {
  float: right;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

@media (max-width: 767px) {
  .header .nav-social {
    position: relative;
    margin-top: -50px;
  }
}

.header .nav-social .title {
  font-size: 14px;
  font-weight: 600;
  color: #0b2244;
  display: inline-block;
  margin-right: 15px;
}

@media (max-width: 767px) {
  .header .nav-social .title {
    display: none;
  }
}

.header .nav-social ul li {
  display: inline-block;
  margin-right: 5px;
}

.header .nav-social ul li:last-child {
  margin: 0;
}

.header .nav-social ul li a {
  height: 35px;
  width: 35px;
  line-height: 35px;
  text-align: center;
  display: block;
  border: 1px solid #eee;
  border-radius: 50%;
  font-size: 14px;
  color: #555;
}

.header .nav-social ul li a:hover {
  color: #fff;
  background-color: #00bba1;
  border-color: transparent;
}

.header .navbar-brand {
  margin: 0;
}

@media (max-width: 767px) {
  .header .navbar-brand {
    display: block;
    text-align: left;
    padding: 0;
  }
}

.header .navbar-brand img {
  width: 200px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .header .navbar-brand img {
    width: 190px;
  }
}

@media (max-width: 767px) {
  .header .navbar-brand img {
    width: 180px;
  }
}

.header.sticky .navbar-brand .white-logo {
  opacity: 0;
  visibility: hidden;
}

.header.sticky .navbar-brand .dark-logo {
  opacity: 1;
  visibility: visible;
}

.header.sticky .button .btn {
  background-color: #00bba1;
  color: #fff;
  border-color: transparent;
}

.header.sticky .button .btn:hover {
  background-color: #0b2244;
  color: #fff;
}

.sticky {
  position: fixed;
  z-index: 99;
  background-color: #fff;
  -webkit-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  top: 0;
  width: 100%;
}

.navbar-expand-lg .navbar-nav {
  margin: 0;
  margin-left: 0 !important;
  margin-right: auto !important;
}

.header .navbar .navbar-nav .nav-item a.active {
  color: #00bba1;
}

.sticky .navbar .navbar-nav .nav-item a.active {
  color: #00bba1;
}

.sticky .navbar .mobile-menu-btn .toggler-icon {
  background: #333;
}

/*===== NAVBAR =====*/
.navbar-area {
  width: 100%;
  z-index: 99;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  padding: 0;
  border-bottom: 1px solid #eee;
}

.navbar-area.sticky {
  position: fixed;
  z-index: 99;
  background: #00bba1;
  -webkit-box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  box-shadow: 0px 20px 50px 0px rgba(0, 0, 0, 0.05);
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  background: #fff;
  padding: 0px 0;
}

.navbar {
  padding: 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.navbar-brand {
  padding-left: 0;
  border-radius: 0;
}

.mobile-menu-btn {
  padding: 0px;
}

.mobile-menu-btn:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.mobile-menu-btn .toggler-icon {
  width: 30px;
  height: 2px;
  background-color: #222;
  display: block;
  margin: 5px 0;
  position: relative;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
}

.mobile-menu-btn.active .toggler-icon:nth-of-type(1) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  top: 7px;
}

.mobile-menu-btn.active .toggler-icon:nth-of-type(2) {
  opacity: 0;
}

.mobile-menu-btn.active .toggler-icon:nth-of-type(3) {
  -webkit-transform: rotate(135deg);
  transform: rotate(135deg);
  top: -7px;
}

.navbar-nav .nav-item {
  z-index: 1;
  position: relative;
  margin-right: 40px;
}

.navbar-nav .nav-item:last-child {
  margin-right: 0 !important;
}

.navbar-nav .nav-item:hover a {
  color: #00bba1;
}

.sticky .navbar-nav .nav-item:hover a {
  color: #00bba1;
}

.navbar-nav .nav-item a {
  font-size: 14px;
  color: #0b2244;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  position: relative;
  padding: 20px 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 600;
  transition: all 0.3s ease-out 0s;
  position: relative;
  text-transform: capitalize;
}

.navbar-nav .nav-item:hover .dd-menu::before {
  border-bottom-color: #00bba1;
  border-right-color: #00bba1;
}

.navbar-nav .nav-item a.active {
  color: #00bba1;
}

.navbar-nav .nav-item a.dd-menu::after {
  content: "\ea5e";
  font: normal normal normal 1em/1 "LineIcons";
  position: absolute;
  right: -20px;
  font-size: 12px;
  top: 50%;
  margin-left: 5px;
  margin-top: -4px;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  height: 10px;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .navbar-nav .nav-item a.dd-menu::after {
    right: -15;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item a.dd-menu::after {
    top: 18px;
    right: 0;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item a.collapsed::after {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
}

.navbar-nav .nav-item:hover > .sub-menu {
  top: 100%;
  opacity: 1;
  visibility: visible;
}

.navbar-nav .nav-item:hover > .sub-menu .sub-menu {
  left: 100%;
  top: 0;
}

.navbar-nav .nav-item .sub-menu {
  padding: 30px;
  min-width: 240px;
  background: #fff;
  border: 1px solid #eee;
  position: absolute;
  top: 110% !important;
  left: 0;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 0.3s ease-out 0s;
  transition: all 0.3s ease-out 0s;
  border-radius: 0 0 4px 4px;
}

.navbar-nav .nav-item:hover .sub-menu {
  top: 100% !important;
}

.navbar-nav .nav-item .sub-menu .nav-item {
  width: 100%;
  margin-bottom: 15px;
}

.navbar-nav .nav-item .sub-menu .nav-item:last-child {
  margin: 0;
}

.navbar-nav .nav-item .sub-menu .nav-item a {
  padding: 0;
  color: #888;
  display: block;
  width: 100%;
  font-size: 14px;
  font-weight: 500;
  text-transform: capitalize;
  position: relative;
  z-index: 1;
  border-radius: 4px;
  overflow: hidden;
  -webkit-transition: all 0.1s ease;
  transition: all 0.1s ease;
}

.navbar-nav .nav-item .sub-menu .nav-item a:hover {
  color: #00bba1;
}

.navbar-nav .nav-item .sub-menu.left-menu {
  left: -100%;
}

.navbar-nav .nav-item .sub-menu.collapse:not(.show) {
  display: block;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .navbar-nav .nav-item .sub-menu.collapse:not(.show) {
    display: none;
  }
}

.navbar-nav .nav-item .sub-menu > li {
  display: block;
  margin-left: 0;
}

.navbar-nav .nav-item .sub-menu > li:last-child {
  border: none;
}

.navbar-nav .nav-item .sub-menu > li.active > a {
  color: #00bba1 !important;
}

.navbar-nav .nav-item .sub-menu > li > a {
  font-weight: 400;
  display: block;
  padding: 12px 15px;
  font-size: 14px;
  color: #222;
  font-weight: 400;
}

.navbar-nav .nav-item .sub-menu > li:first-child a {
  border: none;
}

.add-list-button {
  display: inline-block;
  margin-left: 10px;
}

.add-list-button .btn i {
  font-size: 14px;
  display: inline-block;
  margin-right: 5px;
}

/*======================================
End Header CSS
  ========================================*/

/* Stylo para el boton del banner Vende tu Mac*/

.single-slider .box-vender-mac {
  display: flex;
  width: 100%;
  padding-top: 15% !important;
  margin-left: 170px;
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .single-slider .box-vender-mac {
    margin-left: 120px;
  }
}

@media only screen and (min-width: 997px) and (max-width: 1199px) {
  .single-slider .box-vender-mac {
    margin-left: 60px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 996px) {
  .single-slider .box-vender-mac {
    margin-left: 120px;
  }
}

@media (max-width: 767px) {
  .single-slider .box-vender-mac {
    margin-left: 35px;
  }
}

@media only screen and (min-width: 320px) and (max-width: 375px) {
  .single-slider .box-vender-mac {
    margin-left: 10px;
  }
}

/* Estilo base del botón */
.btn-banner-hero {
  background-color: #ffdf6e !important;
  color: #0b2244 !important;
  font-size: medium !important;
  font-weight: bold !important;
  position: absolute !important;
  bottom: 30% !important;
  right: 25% !important;
  z-index: 2 !important;
}

/* Hover del botón */
.btn-banner-hero:hover {
  background-color: #0b2244 !important;
  color: #ffffff !important;
}

/* Media queries con mayor especificidad */
@media only screen and (max-width: 767px) {
  .single-slider .button .btn-banner-hero {
    bottom: 25% !important;
    right: 12% !important;
  }
}

@media only screen and (min-width: 768px) and (max-width: 1024px) {
  .single-slider .button .btn-banner-hero {
    bottom: 25% !important;
    right: 22% !important;
  }
}

@media only screen and (min-width: 1025px) and (max-width: 1199px) {
  .single-slider .button .btn-banner-hero {
    bottom: 30% !important;
    right: 17% !important;
  }
}

@media only screen and (min-width: 1200px) and (max-width: 1399px) {
  .single-slider .button .btn-banner-hero {
    bottom: 30% !important;
    right: 22% !important;
  }
}

/*======================================
   Start Shopping Cart CSS
========================================*/
.cart-list-head {
  border-radius: 4px;
  overflow: hidden;
  border: 1px solid #eee;
}

.cart-list-title {
  background-color: #fff;
  padding: 18px 20px;
  border-bottom: 1px solid #eee;
}

@media (max-width: 767px) {
  .cart-list-title {
    text-align: center;
  }
}

.cart-list-title p {
  color: #0b2244;
  font-weight: 500;
  font-size: 14px;
}

@media (max-width: 767px) {
  .cart-list-title p {
    padding: 2px 0;
  }
}

@media (max-width: 767px) {
  .cart-single-list {
    text-align: center;
  }
}

@media (max-width: 767px) {
  .cart-single-list a img {
    width: 50%;
    margin-bottom: 10px;
  }
}

.cart-single-list .remove-item {
  color: #fff;
  background-color: #f44336;
  font-size: 8px;
  height: 20px;
  width: 20px;
  line-height: 20px;
  border-radius: 50%;
  text-align: center;
}

@media (max-width: 767px) {
  .cart-single-list .remove-item {
    margin-top: 5px;
  }
}

.cart-single-list .remove-item:hover {
  color: #fff;
  background-color: #0b2244;
}

.cart-single-list .product-name {
  line-height: 22px;
}

.cart-single-list .product-name a {
  font-size: 14px;
  color: #333;
  font-weight: 500;
}

.cart-single-list .product-des {
  display: block;
}

.cart-single-list .product-des span {
  font-size: 13px;
  font-weight: 500;
  display: block;
}

.cart-single-list .product-des span em {
  font-style: normal;
  color: #555;
}

.cart-single-list {
  padding: 30px 20px;
  background-color: #fff;
  border-bottom: 1px solid #eee;
}

.cart-single-list:last-child {
  border: none !important;
  border-radius: 0 0 4px 4px;
}

.cart-single-list a:hover {
  color: #00bba1;
}

.shopping-cart {
  background-color: #f9f9f9;
}

.shopping-cart .total-amount .right ul li {
  font-size: 14px;
  font-weight: 500;
  color: #0b2244;
  margin-bottom: 12px;
}

/* .shopping-cart .total-amount .right ul li span {
  display: inline-block;
  float: right;
} */

.shopping-cart .total-amount .coupon {
  padding: 40px;
  border: 1px solid #eee;
  background-color: #fff;
  border-radius: 4px;
  margin-top: 40px;
  display: inline-block;
}

@media (max-width: 767px) {
  .shopping-cart .total-amount .coupon {
    width: 100%;
    padding: 30px;
    margin-top: 30px;
  }
}

.shopping-cart .total-amount .coupon input {
  width: 300px;
  height: 46px;
  border: 1px solid #dddddd;
  overflow: hidden;
  border-radius: 4px;
  color: #333;
  padding: 0px 20px;
  display: inline-block;
}

@media (max-width: 767px) {
  .shopping-cart .total-amount .coupon input {
    width: 100%;
  }
}

.shopping-cart .total-amount .coupon .button {
  display: inline-block;
}

@media (max-width: 767px) {
  .shopping-cart .total-amount .coupon .button {
    display: block;
  }
}

.shopping-cart .total-amount .coupon button {
  border: none;
  height: 46px;
  display: inline-block;
  margin-left: 8px;
  position: relative;
  top: -2px;
}

@media (max-width: 767px) {
  .shopping-cart .total-amount .coupon button {
    margin: 0;
    margin-top: 10px;
    width: 100%;
  }
}

.shopping-cart .total-amount .right {
  padding: 40px;
  border: 1px solid #eee;
  background-color: #fff;
  border-radius: 4px;
  margin-top: 40px;
}

@media (max-width: 767px) {
  .shopping-cart .total-amount .right {
    padding: 30px;
    margin-top: 30px;
  }
}

.shopping-cart .total-amount .right .button {
  margin-top: 30px;
}

.shopping-cart .total-amount .right .btn {
  width: 100%;
  margin-bottom: 8px;
  text-align: center;
  padding: 12px 20px;
}

.shopping-cart .total-amount .right .btn:last-child {
  margin: 0;
}

@media (max-width: 767px) {
  .shopping-cart .count-input {
    padding: 10px 65px;
  }
}

@media (max-width: 767px) {
  .shopping-cart p {
    padding: 3px 0;
  }
}

.shopping-cart select.form-control:not([size]):not([multiple]) {
  height: 46px;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  width: 120px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .shopping-cart select.form-control:not([size]):not([multiple]) {
    width: 100%;
  }
}

@media (max-width: 767px) {
  .shopping-cart select.form-control:not([size]):not([multiple]) {
    width: 100%;
  }
}

.shopping-cart select.form-control:not([size]):not([multiple]):focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.shopping-cart select.form-control {
  padding-right: 38px;
  background-position: center right 17px;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDE4NS4zNDQgMTg1LjM0NCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTg1LjM0NCAxODUuMzQ0OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTkyLjY3MiwxNDQuMzczYy0yLjc1MiwwLTUuNDkzLTEuMDQ0LTcuNTkzLTMuMTM4TDMuMTQ1LDU5LjMwMWMtNC4xOTQtNC4xOTktNC4xOTQtMTAuOTkyLDAtMTUuMTggICAgYzQuMTk0LTQuMTk5LDEwLjk4Ny00LjE5OSwxNS4xOCwwbDc0LjM0Nyw3NC4zNDFsNzQuMzQ3LTc0LjM0MWM0LjE5NC00LjE5OSwxMC45ODctNC4xOTksMTUuMTgsMCAgICBjNC4xOTQsNC4xOTQsNC4xOTQsMTAuOTgxLDAsMTUuMThsLTgxLjkzOSw4MS45MzRDOTguMTY2LDE0My4zMjksOTUuNDE5LDE0NC4zNzMsOTIuNjcyLDE0NC4zNzN6IiBmaWxsPSIjNTA1MDUwIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
  background-repeat: no-repeat;
  background-size: 10px 10px;
}

.shopping-cart .form-control {
  padding: 0 18px;
  -webkit-transition: color 0.25s, background-color 0.25s, border-color 0.25s;
  transition: color 0.25s, background-color 0.25s, border-color 0.25s;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  background-color: #fff;
  color: #505050;
  font-size: 14px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.shopping-cart .form-control:focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

/*======================================
   End Shopping Cart CSS
========================================*/
/*======================================
   Checkout CSS
========================================*/
.checkout-wrapper {
  background-color: #f9f9f9;
}

.checkout-steps-form-style-1 #accordionExample li {
  margin-bottom: 20px;
}

.checkout-steps-form-style-1 #accordionExample li:last-child {
  margin: 0;
}

.checkout-steps-form-style-1 .title {
  font-size: 15px;
  font-weight: 600;
  line-height: 40px;
  position: relative;
  cursor: pointer;
  border: 1px solid #e6e6e6;
  border-radius: 4px 4px 0 0;
  padding: 8px 25px;
  color: #00bba1;
  background-color: #fff;
}

.checkout-steps-form-style-1 .title.collapsed {
  border-radius: 4px;
  color: #0b2244;
}

.checkout-steps-form-style-1 .title:before {
  position: absolute;
  top: 50%;
  right: 16px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  font-family: "Lineicons";
  content: "\ea5e";
  font-size: 13px;
  color: #7d7d7d;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

.checkout-steps-form-style-1 .checkout-steps-form-content {
  padding: 25px;
  padding-top: 0;
  border: 1px solid #e6e6e6;
  border-top-color: transparent;
  background-color: #fff;
  border-radius: 0 0 4px 4px;
}

.checkout-steps-form-style-1 .single-form {
  margin-top: 16px;
  position: relative;
}

.checkout-steps-form-style-1 .single-form .form-input {
  position: relative;
}

@media (max-width: 767px) {
  .checkout-steps-form-style-1 .single-form .form-input {
    margin-bottom: 16px;
  }
  .checkout-steps-form-style-1 .single-form .form-input:last-child {
    margin-bottom: 0;
  }
}

.checkout-steps-form-style-1 .single-form .form-input textarea,
.checkout-steps-form-style-1 .single-form .form-input input {
  width: 100%;
  height: 46px;
  padding: 0 20px;
  border-radius: 4px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border: 1px solid #e6e6e6;
}

.checkout-steps-form-style-1 .single-form .form-input textarea:focus,
.checkout-steps-form-style-1 .single-form .form-input input:focus {
  border-color: #00bba1;
}

.checkout-steps-form-style-1 .form-default label {
  color: #888;
  margin-bottom: 8px;
}

.checkout-steps-form-style-1 .select-items select.form-control:not([size]):not([multiple]) {
  height: 46px;
  border: 1px solid #dbdbdb;
  border-radius: 4px;
  width: 100%;
}

.checkout-steps-form-style-1 .select-items select.form-control:not([size]):not([multiple]):focus {
  text-decoration: none;
  outline: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.checkout-steps-form-style-1 .select-items select.form-control {
  padding-right: 38px;
  padding-left: 20px;
  background-position: center right 17px;
  background-image: url(data:image/svg+xml;utf8;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0iaXNvLTg4NTktMSI/Pgo8IS0tIEdlbmVyYXRvcjogQWRvYmUgSWxsdXN0cmF0b3IgMTguMS4xLCBTVkcgRXhwb3J0IFBsdWctSW4gLiBTVkcgVmVyc2lvbjogNi4wMCBCdWlsZCAwKSAgLS0+CjxzdmcgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIiB4bWxuczp4bGluaz0iaHR0cDovL3d3dy53My5vcmcvMTk5OS94bGluayIgdmVyc2lvbj0iMS4xIiBpZD0iQ2FwYV8xIiB4PSIwcHgiIHk9IjBweCIgdmlld0JveD0iMCAwIDE4NS4zNDQgMTg1LjM0NCIgc3R5bGU9ImVuYWJsZS1iYWNrZ3JvdW5kOm5ldyAwIDAgMTg1LjM0NCAxODUuMzQ0OyIgeG1sOnNwYWNlPSJwcmVzZXJ2ZSIgd2lkdGg9IjI0cHgiIGhlaWdodD0iMjRweCI+CjxnPgoJPGc+CgkJPHBhdGggZD0iTTkyLjY3MiwxNDQuMzczYy0yLjc1MiwwLTUuNDkzLTEuMDQ0LTcuNTkzLTMuMTM4TDMuMTQ1LDU5LjMwMWMtNC4xOTQtNC4xOTktNC4xOTQtMTAuOTkyLDAtMTUuMTggICAgYzQuMTk0LTQuMTk5LDEwLjk4Ny00LjE5OSwxNS4xOCwwbDc0LjM0Nyw3NC4zNDFsNzQuMzQ3LTc0LjM0MWM0LjE5NC00LjE5OSwxMC45ODctNC4xOTksMTUuMTgsMCAgICBjNC4xOTQsNC4xOTQsNC4xOTQsMTAuOTgxLDAsMTUuMThsLTgxLjkzOSw4MS45MzRDOTguMTY2LDE0My4zMjksOTUuNDE5LDE0NC4zNzMsOTIuNjcyLDE0NC4zNzN6IiBmaWxsPSIjNTA1MDUwIi8+Cgk8L2c+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPGc+CjwvZz4KPC9zdmc+Cg==);
  background-repeat: no-repeat;
  background-size: 10px 10px;
}

.checkout-steps-form-style-1 .single-checkbox {
  margin-top: 15px;
}

.checkout-steps-form-style-1 .single-checkbox label {
  font-size: 16px;
  margin-bottom: 0;
  position: relative;
  bottom: -2px;
}

.checkout-steps-form-style-1 .single-checkbox input[type="checkbox"] {
  display: none;
}

.checkout-steps-form-style-1 .single-checkbox input[type="checkbox"] + label span {
  border-color: #00bba1;
  width: 20px;
  height: 20px;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  margin: 0 5px -3px 0;
  border: 1px solid #d5d5d5;
}

.checkout-steps-form-style-1 .single-checkbox input[type="checkbox"] + label span::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -webkit-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(0);
  transform: scale(0);
  font-size: 10px;
  line-height: 1.2;
  background-color: #00bba1;
  font-family: "Lineicons";
  content: "\ea5b";
  padding-left: 4px;
  padding-top: 3px;
  border-radius: 4px;
}

.checkout-steps-form-style-1 .single-checkbox .single-checkbox input[type="checkbox"] + label span {
  width: 20px;
  height: 20px;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  cursor: pointer;
  position: relative;
  display: inline-block;
  margin: 0 5px -3px 0;
}

.checkout-steps-form-style-1 .single-checkbox input[type="checkbox"]:checked + label span {
  border-color: transparent;
}

.checkout-steps-form-style-1 .single-checkbox input[type="checkbox"]:checked + label span::before {
  -webkit-transform: scale(1);
  transform: scale(1);
  border-radius: 4px;
  color: #fff;
}

.checkout-steps-form-style-1 .single-checkbox p {
  display: inline;
  color: #777;
  padding-left: 5px;
}

.checkout-steps-form-style-1 .checkout-payment-option {
  margin-top: 16px;
}

.checkout-steps-form-style-1 .heading-6 {
  font-size: 14px;
  line-height: 18px;
  color: #666;
}

.checkout-steps-form-style-1 .payment-option-wrapper {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-left: -4px;
  margin-right: -4px;
}

.checkout-steps-form-style-1 .single-payment-option {
  width: 25%;
  margin-top: 16px;
  padding: 0 4px;
}

@media (max-width: 767px) {
  .checkout-steps-form-style-1 .single-payment-option {
    width: 100%;
  }
}

.checkout-steps-form-style-1 .single-payment-option label {
  text-align: center;
  padding: 12px;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  margin-bottom: 0;
  width: 100%;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  cursor: pointer;
  border: 1px solid #eee;
}

.checkout-steps-form-style-1 .single-payment-option input[type="radio"] {
  display: none;
}

.checkout-steps-form-style-1 .single-payment-option input[type="radio"]:checked + label {
  border-color: #00bba1;
  background-color: #fff;
}

.checkout-steps-form-style-1 .single-payment-option p {
  font-size: 14px;
  font-weight: 400;
  color: #444;
}

.checkout-steps-form-style-1 .single-payment-option span {
  display: block;
}

.checkout-steps-form-style-1 .single-payment-option .price {
  font-weight: 500;
  font-size: 15px;
  line-height: 22px;
  color: #444;
  margin-top: 4px;
}

.checkout-steps-form-style-1 .steps-form-btn {
  margin-top: 30px;
}

@media (max-width: 767px) {
  .checkout-steps-form-style-1 .steps-form-btn .btn {
    width: 100%;
    margin: 0;
    margin-bottom: 10px;
  }
  .checkout-steps-form-style-1 .steps-form-btn .btn:last-child {
    margin-bottom: 0;
  }
}

.checkout-steps-form-style-1 .checkout-payment-form .single-form .form-input img {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.checkout-steps-form-style-1 .checkout-payment-form .payment-card-info .single-form {
  display: inline-block;
}

.checkout-steps-form-style-1 .checkout-payment-form .payment-card-info .single-form .form-input {
  width: 145px;
}

.checkout-steps-form-style-1 .checkout-payment-form .payment-card-info .single-form.mm-yy .form-input {
  margin-right: 15px;
}

.checkout-sidebar-coupon {
  background-color: #fff;
  padding: 25px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .checkout-sidebar-coupon {
    margin-top: 30px;
  }
}

.checkout-sidebar-coupon .single-form {
  position: relative;
}

.checkout-sidebar-coupon .single-form .button {
  position: absolute;
  right: 0;
  top: 0;
}

.checkout-sidebar-coupon .single-form .button .btn {
  height: 46px;
}

.checkout-sidebar-coupon p {
  font-size: 14px;
  line-height: 20px;
  color: #888;
  margin-bottom: 12px;
}

.checkout-sidebar-coupon input {
  width: 100%;
  height: 46px;
  padding: 0 20px;
  border-radius: 4px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  padding-right: 120px;
}

.checkout-sidebar-price-table {
  background-color: #fff;
  padding: 25px;
  border: 1px solid #e6e6e6;
  border-radius: 4px;
}

.checkout-sidebar-price-table .sub-total-price .total-price {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 4px 0;
}

.checkout-sidebar-price-table .price-table-btn {
  margin-top: 20px;
}

.checkout-sidebar-price-table .title {
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #0b2244;
  padding-bottom: 12px;
  margin-bottom: 10px;
  border-bottom: 1px solid #e6e6e6;
}

.checkout-sidebar-price-table .total-payable {
  padding: 8px 0;
  padding: 10px 0;
  border-top: 1px solid #e6e6e6;
  margin-top: 10px;
}

.checkout-sidebar-price-table .total-payable .payable-price {
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.checkout-sidebar-banner {
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  overflow: hidden;
}

.checkout-sidebar-banner a {
  width: 100%;
}

.checkout-sidebar-banner a img {
  width: 100%;
}

/*======================================
	Error 404 CSS
========================================*/
.error-area {
  height: 100vh;
  text-align: center;
  width: auto;
  margin-left: auto;
  margin-right: auto;
  background-color: #fff;
  position: relative;
  background-image: url("../images/error/404-bg.png");
  background-repeat: no-repeat;
  background-position: center;
}

.d-table {
  width: 100%;
  height: 100%;
}

.d-table {
  display: table !important;
}

.d-table-cell {
  vertical-align: middle;
}

.d-table-cell {
  display: table-cell !important;
}

.error-area .error-content h1 {
  font-size: 100px;
  color: #00bba1;
  margin-bottom: 25px;
  font-weight: 800;
  line-height: 100px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .error-area .error-content h1 {
    font-size: 60px;
    line-height: 50px;
  }
}

@media (max-width: 767px) {
  .error-area .error-content h1 {
    font-size: 45px;
    line-height: 30px;
  }
}

.error-area .error-content h2 {
  font-size: 25px;
  margin-bottom: 10px;
  color: #0b2244;
  font-weight: 700;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .error-area .error-content h2 {
    font-size: 22px;
  }
}

@media (max-width: 767px) {
  .error-area .error-content h2 {
    font-size: 18px;
  }
}

.error-area .error-content p {
  font-weight: 400;
  margin-bottom: 40px;
  color: #888;
}

/*======================================
	Footer CSS
========================================*/
.footer {
  background-color: #0b2244;
  position: relative;
  /* Single Footer */
  /* End Single Footer */
}

.footer .footer-top .inner-content {
  padding: 60px 0;
  border-bottom: 1px solid #ffffff26;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .footer-top .inner-content {
    padding: 50px 0;
  }
}

@media (max-width: 767px) {
  .footer .footer-top .inner-content {
    padding: 40px 0;
    text-align: center;
  }
}

.footer .footer-top .footer-logo a img {
  width: 200px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .footer-top .footer-logo a img {
    width: 190px;
  }
}

@media (max-width: 767px) {
  .footer .footer-top .footer-logo a img {
    width: 180px;
  }
}

@media (max-width: 767px) {
  .footer .footer-top .footer-newsletter {
    padding: 0px 20px;
  }
}

.footer .footer-top .footer-newsletter .title {
  color: #fff;
  font-size: 20px;
  font-weight: 800;
  float: left;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .footer-top .footer-newsletter .title {
    margin-bottom: 20px;
    display: block;
  }
}

@media (max-width: 767px) {
  .footer .footer-top .footer-newsletter .title {
    margin-bottom: 20px;
    display: block;
    font-size: 18px;
    width: 100%;
  }
}

.footer .footer-top .footer-newsletter .title span {
  color: #c2c2c2;
  display: block;
  font-size: 14px;
  margin-top: 5px;
  font-weight: 400;
}

@media (max-width: 767px) {
  .footer .footer-top .footer-newsletter .title span {
    margin-top: 10px;
  }
}

.footer .footer-top .footer-newsletter .newsletter-form {
  float: right;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .footer-top .footer-newsletter .newsletter-form {
    float: none;
  }
}

@media (max-width: 767px) {
  .footer .footer-top .footer-newsletter .newsletter-form {
    float: none;
    margin-top: 20px;
  }
}

.footer .footer-top .footer-newsletter .newsletter-form input {
  height: 50px;
  background-color: rgba(255, 255, 255, 0.308);
  border-radius: 4px;
  width: 300px;
  display: inline-block;
  border: none;
  padding: 0px 20px;
  color: #fff;
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
  .footer .footer-top .footer-newsletter .newsletter-form input {
    width: 240px;
  }
}

@media (max-width: 767px) {
  .footer .footer-top .footer-newsletter .newsletter-form input {
    width: 100%;
    text-align: center;
  }
}

.footer .footer-top .footer-newsletter .newsletter-form input::-webkit-input-placeholder {
  color: #fff;
}

.footer .footer-top .footer-newsletter .newsletter-form input:-ms-input-placeholder {
  color: #fff;
}

.footer .footer-top .footer-newsletter .newsletter-form input::-ms-input-placeholder {
  color: #fff;
}

.footer .footer-top .footer-newsletter .newsletter-form input::placeholder {
  color: #fff;
}

.footer .footer-top .footer-newsletter .newsletter-form .button {
  display: inline-block;
  margin-left: 6px;
  position: relative;
  top: -2px;
}

@media (max-width: 767px) {
  .footer .footer-top .footer-newsletter .newsletter-form .button {
    margin: 0;
    margin-top: 10px;
    top: 0;
    width: 100%;
  }
}

.footer .footer-top .footer-newsletter .newsletter-form .button .btn {
  height: 50px;
}

@media (max-width: 767px) {
  .footer .footer-top .footer-newsletter .newsletter-form .button .btn {
    width: 100%;
  }
}

.footer .footer-top .footer-newsletter .newsletter-form .button .btn:hover {
  color: #0b2244;
  background-color: #fff;
}

.footer .footer-middle {
  padding-top: 40px;
  padding-bottom: 80px;
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
  .footer .footer-middle {
    padding-top: 30px;
    padding-bottom: 70px;
  }
}

@media (max-width: 767px) {
  .footer .footer-middle {
    padding-top: 10px;
    padding-bottom: 50px;
  }
}

.footer .footer-middle .newsletter-form input {
  width: 100%;
  border-radius: 4px;
  padding: 0px 20px;
  height: 50px;
  border: 1px solid #eee;
}

.footer .footer-middle .newsletter-form .button {
  margin-top: 12px;
}

.footer .footer-middle .newsletter-form .button .btn {
  background-color: #0b2244;
  color: #fff;
}

.footer .footer-middle .newsletter-form .button .btn:hover {
  background-color: #00bba1;
  color: #fff;
}

.footer .footer-middle .newsletter-form p {
  color: #888;
  margin-top: 20px;
}

.footer .single-footer {
  margin-top: 40px;
}

@media (max-width: 767px) {
  .footer .single-footer {
    margin-top: 30px;
    text-align: center;
  }
}

.footer .single-footer h3 {
  position: relative;
  margin-bottom: 32px;
  padding-bottom: 15px;
  color: #fff;
  font-size: 17px;
  font-weight: 600;
  line-height: 24px;
}

.footer .single-footer h3::before {
  display: block;
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 40px;
  height: 3px;
  background-color: #00bba1;
  content: "";
}

@media (max-width: 767px) {
  .footer .single-footer h3::before {
    left: 50%;
    margin-left: -20px;
  }
}

.footer .single-footer.f-link ul li {
  display: block;
  margin-bottom: 12px;
  position: relative;
}

.footer .single-footer.f-link ul li:last-child {
  margin-bottom: 0;
}

.footer .single-footer.f-link ul li a {
  color: #d6d6d6;
  font-size: 14px;
  font-weight: 500;
  position: relative;
}

.footer .single-footer.f-link ul li a:hover {
  padding-left: 5px;
  color: #00bba1;
}

.footer .single-footer.f-link.cat ul li {
  display: block;
  margin-bottom: 12px;
  position: relative;
}

.footer .single-footer.f-link.cat ul li:last-child {
  margin-bottom: 0;
}

.footer .single-footer.f-link.cat ul li h4 {
  color: #d6d6d6;
  font-size: 14px;
  font-weight: 500;
  position: relative;
  transition: padding-left 0.4s ease;
}

.footer .single-footer.f-link.cat ul li h4:hover {
  padding-left: 2.5px;
  color: #00bba1;
}

.footer .single-footer.f-contact .phone {
  color: #d6d6d6;
}

.footer .single-footer.f-contact ul {
  margin: 10px 0;
}

.footer .single-footer.f-contact ul li {
  display: block;
  margin-bottom: 10px;
  color: #d6d6d6;
}

.footer .single-footer.f-contact ul li span {
  display: block;
}

.footer .single-footer.f-contact ul li:last-child {
  margin: 0;
}

.footer .single-footer.f-contact ul li span {
  color: #d6d6d6;
}

.footer .single-footer.f-contact .mail a {
  color: #d6d6d6;
}

.footer .single-footer.f-contact .mail a:hover {
  color: #00bba1;
}

.footer .single-footer.our-app .app-btn li {
  display: block;
  margin-bottom: 15px;
}

.footer .single-footer.our-app .app-btn li:last-child {
  margin-bottom: 0;
}

.footer .single-footer.our-app .app-btn li span {
  display: block !important;
}

.footer .single-footer.our-app .app-btn li a {
  position: relative;
  padding-left: 40px;
  border-radius: 4px;
  padding: 15px 30px;
  padding-left: 60px;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  background-color: #ffffff0f;
}

.footer .single-footer.our-app .app-btn li a i {
  font-size: 27px;
  position: absolute;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer .single-footer.our-app .app-btn li a .small-title {
  font-size: 13px;
  display: block;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer .single-footer.our-app .app-btn li a .big-title {
  font-size: 14px;
  font-weight: 500;
  display: block;
  color: #fff;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.footer .single-footer.our-app .app-btn li a:hover {
  background-color: #00bba1;
  color: #fff;
  border-color: transparent;
}

.footer .single-footer.our-app .app-btn li a:hover .small-title {
  color: #fff;
}

.footer .single-footer.our-app .app-btn li a:hover .big-title {
  color: #fff;
}

.footer .footer-bottom .inner-content {
  border-top: 1px solid #ffffff26;
  padding: 25px 0;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer .footer-bottom .inner-content {
    text-align: center;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer .footer-bottom .payment-gateway {
    margin-bottom: 12px;
  }
}

.footer .footer-bottom .payment-gateway span {
  display: inline-block;
  margin-right: 12px;
  color: #fff;
}

@media (max-width: 767px) {
  .footer .footer-bottom .payment-gateway span {
    display: block;
    margin: 0;
    margin-bottom: 10px;
  }
}

.footer .footer-bottom .payment-gateway img {
  width: 200px;
}

.footer .footer-bottom .copyright {
  text-align: center;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer .footer-bottom .copyright {
    margin-bottom: 12px;
  }
}

.footer .footer-bottom .copyright p {
  color: #fff;
}

.footer .footer-bottom .copyright p a {
  color: #eee;
  display: inline-block;
  margin-left: 4px;
}

.footer .footer-bottom .copyright p a:hover {
  color: #00bba1;
}

.footer .footer-bottom .socila {
  display: block;
  float: right;
}

@media only screen and (min-width: 768px) and (max-width: 991px), (max-width: 767px) {
  .footer .footer-bottom .socila {
    float: none;
    text-align: center;
  }
}

.footer .footer-bottom .socila li {
  margin: 0;
  margin-right: 5px;
  display: inline-block;
}

.footer .footer-bottom .socila li:last-child {
  margin: 0;
}

.footer .footer-bottom .socila li a {
  height: 35px;
  width: 35px;
  text-align: center;
  display: block;
  color: #fff;
  border-radius: 50%;
  line-height: 35px;
  font-size: 15px;
}

.footer .footer-bottom .socila li a:hover {
  background-color: #00bba1;
  color: #fff;
  border-color: transparent;
}

.footer .footer-bottom .socila li span {
  display: inline-block;
  color: #fff;
  margin-right: 12px;
}

@media (max-width: 767px) {
  .footer .footer-bottom .socila li span {
    display: none;
  }
}

/* posicion del boton Whatsapp */
.boton-whatsapp {
  position: fixed;
  bottom: 20px;
  right: 20px;
  transition: all 0.3s ease-in-out;
  z-index: 100;
}

.boton-whatsapp img {
  transform: scale(1.85);
}

/* Animacion de elevacion*/
.boton-whatsapp:hover {
  transform: translateY(-5px);
}

@media only screen and (max-width: 600px) {
  .boton-whatsapp {
    bottom: 10px;
    right: 10px;
  }
}

/* Estilos optimizados para el botón WhatsApp - Versión Global */
.boton-whatsapp,
.boton-whatsapp-home {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 100;
  text-decoration: none;
  min-width: 64px;
  min-height: 64px;
  display: block;
}

.whatsapp-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Nuevo indicador de atención */
.attention-indicator {
  position: absolute;
  top: -30px;
  right: -7px;
  background-color: #25d366;
  color: white;
  padding: 4px 8px;
  border-radius: 12px;
  font-size: 12px;
  font-weight: bold;
  transform-origin: center;
  animation: bounce 1s ease infinite;
  will-change: transform;
  pointer-events: none;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  white-space: nowrap;
}

/* Contenedor del icono optimizado */
.whatsapp-icon-wrapper {
  background-color: #25d366;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
  will-change: transform;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.whatsapp-icon {
  width: 100%;
  height: 100%;
  display: block;
}

/* Efectos hover optimizados */
.whatsapp-icon-wrapper:hover {
  transform: translateY(-5px);
  background-color: #20ba5a;
}

/* Animación de rebote optimizada */
@keyframes bounce {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-5px);
  }
}

/* Eliminar animaciones anteriores que causaban CLS */
.boton-whatsapp:before,
.boton-whatsapp-home:before {
  content: none;
}

/* Media queries optimizadas */
@media only screen and (max-width: 768px) {
  .boton-whatsapp,
  .boton-whatsapp-home {
    bottom: 16px;
    right: 16px;
  }

  .attention-indicator {
    right: -4px;
    font-size: 11px;
    padding: 3px 6px;
  }

  .whatsapp-icon-wrapper {
    width: 50px;
    height: 50px;
  }

  .whatsapp-icon {
    width: 100%;
    height: 100%;
  }
}

/* Soporte para dispositivos de alta densidad de píxeles */
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .whatsapp-icon {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
  }
}

/* Optimización para reducir CLS en diferentes viewports */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
  .boton-whatsapp,
  .boton-whatsapp-home {
    bottom: 25px;
    right: 25px;
  }
}

/* Soporte para modo oscuro */
@media (prefers-color-scheme: dark) {
  .whatsapp-icon-wrapper {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
  }
}

/* =================================
       MOBILE FIRST STYLES (Base)
       ================================= */

/* Carrito vacío - Mobile First */
.empty-cart-container {
  padding: 2rem 1rem;
  text-align: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-radius: 15px;
  margin: 1rem 0;
}

.empty-cart-content {
  margin-bottom: 2rem;
}

.empty-cart-icon i {
  font-size: 4rem;
  color: #6c757d;
  margin-bottom: 1rem;
  display: block;
}

.empty-cart-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
}

.empty-cart-message {
  color: #6c757d;
  margin-bottom: 2rem;
  font-size: 1rem;
}

.empty-cart-actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 2rem;
}

.empty-cart-actions .btn {
  padding: 0.75rem 1.5rem;
  font-weight: 600;
  border-radius: 8px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  transition: all 0.3s ease;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100%;
  box-sizing: border-box;
  line-height: 1.2;
  min-height: 44px;
}

.btn-shop-now {
  background: #007bff;
  color: white;
  border: 2px solid #007bff;
}

.btn-offers {
  background: transparent;
  color: #007bff;
  border: 2px solid #007bff;
}

.popular-categories {
  background: white;
  padding: 1.5rem;
  border-radius: 10px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.popular-categories h5 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 1rem;
  text-align: center;
}

.category-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.category-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
  text-decoration: none;
  color: #495057;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.category-link:hover {
  background: #007bff;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 123, 255, 0.3);
}

.category-link i {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}

.category-link span {
  font-size: 0.9rem;
  font-weight: 500;
  text-align: center;
}

/* Headers de carrito - Mobile First */
.mobile-cart-header {
  background: #007bff;
  color: white;
  padding: 1rem;
  border-radius: 10px;
  margin-bottom: 1rem;
  text-align: center;
}

.mobile-cart-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

.mobile-cart-subtitle {
  font-size: 0.9rem;
  opacity: 0.9;
  margin: 0;
}

/* Items del carrito - Mobile First */
.cart-single-list.mobile-optimized {
  background: white;
  border: 1px solid #e9ecef;
  border-radius: 15px;
  padding: 1rem;
  margin-bottom: 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
}

.cart-single-list.mobile-optimized:hover {
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-1px);
}

/* Layout Mobile para items */
.mobile-cart-item {
  display: block;
}

.mobile-item-header {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid #e9ecef;
}

.mobile-item-image {
  flex-shrink: 0;
  width: 80px;
  height: 80px;
  border-radius: 10px;
  overflow: hidden;
  background: #f8f9fa;
}

.mobile-item-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.mobile-item-info {
  flex: 1;
  min-width: 0;
}

.mobile-product-name {
  font-size: 1rem;
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  word-wrap: break-word;
}

.mobile-product-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
}

.mobile-product-meta span {
  font-size: 0.8rem;
  background: #e9ecef;
  color: #495057;
  padding: 0.25rem 0.5rem;
  border-radius: 12px;
}

.mobile-price-info {
  margin-top: 0.5rem;
}

.unit-price-label {
  font-size: 0.9rem;
  color: #495057;
}

.mobile-remove-action {
  flex-shrink: 0;
}

.mobile-remove {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  background: #dc3545;
  color: white;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mobile-remove:hover {
  background: #c82333;
  transform: scale(1.1);
  color: white;
}

/* Controles móviles */
.mobile-item-controls {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1rem;
  padding: 1rem;
  background: #f8f9fa;
  border-radius: 10px;
}

.mobile-quantity-section {
  flex: 1;
}

.mobile-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: #495057;
  margin-bottom: 0.5rem;
  display: block;
}

.mobile-quantity-wrapper {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.mobile-quantity-select {
  width: 80px;
  padding: 0.5rem;
  border-radius: 5px;
  border: 1px solid #ced4da;
  font-size: 0.9rem;
}

.mobile-stock-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.low-stock-warning {
  font-size: 0.8rem;
  color: #ffc107;
  font-weight: 600;
}

/* Totales optimizados para móvil */
.total-amount .right ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.total-amount .right ul li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 0;
  border-bottom: 1px solid #e9ecef;
  font-size: 0.95rem;
}

.total-amount .right ul li.last {
  border-bottom: none;
  border-top: 2px solid #007bff;
  font-weight: 700;
  font-size: 1.1rem;
  color: #2c3e50;
  background: #f8f9fa;
  padding: 1rem;
  border-radius: 10px;
  margin-top: 1rem;
}

.total-amount .right .button {
  margin-top: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}

/* Cupones en móvil */
.coupon {
  margin-bottom: 2rem;
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.coupon form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.coupon input {
  width: 100%;
  padding: 1rem;
  border-radius: 10px;
  border: 1px solid #ced4da;
  font-size: 1rem;
  box-sizing: border-box;
}

/* =================================
       ESTILOS LIMPIOS PARA BOTONES DEL CARRITO - OVERRIDE TOTAL
       ================================= */

/* Selector ultra específico para override total del tema */
.shopping-cart .total-amount .right .button .btn,
.shopping-cart .total-amount .right .button .btn.btn-alt {
  all: unset !important;
  box-sizing: border-box !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  gap: 0.5rem !important;
  padding: 14px 28px !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  font-family: inherit !important;
  border-radius: 8px !important;
  text-decoration: none !important;
  border: 1px solid !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
  min-height: 48px !important;
  flex: 1 !important;
  max-width: none !important;
  white-space: nowrap !important;
  overflow: hidden !important;
  text-overflow: ellipsis !important;
  text-transform: none !important;
  margin-right: 0 !important;
  z-index: auto !important;
  position: static !important;
}

/* Botón principal - Verde */
.shopping-cart .total-amount .right .button .btn:first-child {
  background-color: #00bba1 !important;
  color: white !important;
  border-color: #00bba1 !important;
}

.shopping-cart .total-amount .right .button .btn:first-child:hover {
  background-color: #009688 !important;
  border-color: #009688 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(0, 187, 161, 0.25) !important;
}

/* Botón secundario - Azul oscuro */
.shopping-cart .total-amount .right .button .btn.btn-alt {
  background-color: #0b2244 !important;
  color: white !important;
  border-color: #0b2244 !important;
}

.shopping-cart .total-amount .right .button .btn.btn-alt:hover {
  background-color: #081a33 !important;
  border-color: #081a33 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(11, 34, 68, 0.25) !important;
}

/* Iconos */
.shopping-cart .total-amount .right .button .btn i {
  font-size: 1rem !important;
  flex-shrink: 0 !important;
  margin-right: 0 !important;
  display: inline-block !important;
}

/* =================================
       FIX BOTÓN CUPÓN - OVERRIDE TEMA
       ================================= */
.shopping-cart .coupon .btn {
  all: unset !important;
  box-sizing: border-box !important;
  display: block !important;
  width: 100% !important;
  text-align: center !important;
  padding: 12px 20px !important;
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  font-family: inherit !important;
  border-radius: 6px !important;
  text-decoration: none !important;
  border: 1px solid !important;
  transition: all 0.2s ease !important;
  cursor: pointer !important;
  min-height: 44px !important;
  white-space: nowrap !important;
  background-color: #00bba1 !important;
  color: white !important;
  border-color: #00bba1 !important;
  text-transform: none !important;
  margin-right: 0 !important;
  margin-bottom: 1.5rem !important;
}

.shopping-cart .coupon .btn:hover {
  background-color: #009688 !important;
  border-color: #009688 !important;
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(0, 187, 161, 0.25) !important;
}

/* =================================
       CONTENEDORES RESPONSIVOS - ASEGURAR ESPACIADO
       ================================= */
.shopping-cart .total-amount .right {
  width: 100% !important;
  max-width: 100% !important;
  padding: 1rem !important;
  box-sizing: border-box !important;
}

.shopping-cart .total-amount .right .button {
  width: 100% !important;
  max-width: 100% !important;
  box-sizing: border-box !important;
  overflow: hidden !important;
}

.shopping-cart .coupon {
  width: 100% !important;
  max-width: 100% !important;
  margin-bottom: 2rem !important;
  padding: 1.5rem 1rem 1.5rem 1rem !important;
  box-sizing: border-box !important;
}

/* Responsive con selectores específicos */
@media (max-width: 576px) {
  .shopping-cart .total-amount .right .button .btn,
  .shopping-cart .total-amount .right .button .btn.btn-alt {
    padding: 12px 24px !important;
    font-size: 0.85rem !important;
    min-height: 44px !important;
  }

  /* BOTÓN CUPÓN - MISMO ANCHO QUE INPUT EN MÓVILES */
  .shopping-cart .coupon .btn {
    width: 100% !important;
    max-width: 100% !important;
    display: block !important;
    text-align: center !important;
    box-sizing: border-box !important;
  }

  /* ASEGURAR QUE INPUT Y BOTÓN TENGAN MISMO ANCHO */
  .coupon input {
    width: 100% !important;
    box-sizing: border-box !important;
  }

  .coupon form {
    width: 100% !important;
    display: flex !important;
    flex-direction: column !important;
    gap: 1rem !important;
  }
}

/* =================================
       TABLET STYLES (577px - 1024px) - FIX TEXTO CORTADO
       ================================= */
@media (min-width: 577px) and (max-width: 1024px) {
  .shopping-cart .total-amount .right .button {
    flex-direction: row !important;
    gap: 0.75rem !important;
    justify-content: space-between !important;
  }

  .shopping-cart .total-amount .right .button .btn,
  .shopping-cart .total-amount .right .button .btn.btn-alt {
    padding: 10px 12px !important;
    font-size: 0.75rem !important;
    min-height: 42px !important;
    flex: 1 !important;
    min-width: 110px !important;
    max-width: 140px !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1.2 !important;
  }

  /* Iconos más pequeños para tablet */
  .shopping-cart .total-amount .right .button .btn i {
    font-size: 0.8rem !important;
    margin-right: 0.25rem !important;
  }

  /* Cupón responsive para tablet - FIX DESBORDAMIENTO */
  .coupon {
    margin-bottom: 1.5rem !important;
    width: 100% !important;
    max-width: 100% !important;
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .coupon form {
    display: flex !important;
    flex-direction: column !important;
    gap: 0.75rem !important;
    width: 100% !important;
    max-width: 100% !important;
  }

  .coupon input {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.75rem !important;
    font-size: 0.9rem !important;
    box-sizing: border-box !important;
  }

  .coupon .btn {
    width: 100% !important;
    max-width: 100% !important;
    padding: 0.75rem 1rem !important;
    font-size: 0.9rem !important;
    box-sizing: border-box !important;
    margin-bottom: 1.5rem !important;
  }
}

/* =================================
       SOLUCIÓN DEFINITIVA - TEXTOS CORTOS SOLO PARA 991px-1200px
       ================================= */
@media (min-width: 991px) and (max-width: 1200px) {
  /* OCULTAR TEXTO ORIGINAL COMPLETAMENTE */
  .shopping-cart .total-amount .right .button .btn,
  .shopping-cart .total-amount .right .button .btn.btn-alt {
    color: transparent !important;
    text-indent: -9999px !important;
    font-size: 0 !important;
    line-height: 0 !important;
    overflow: hidden !important;
    position: relative !important;
    padding: 12px 16px !important;
  }

  /* RESETEAR PSEUDO-ELEMENTOS */
  .shopping-cart .total-amount .right .button .btn::before,
  .shopping-cart .total-amount .right .button .btn.btn-alt::before,
  .shopping-cart .total-amount .right .button .btn::after,
  .shopping-cart .total-amount .right .button .btn.btn-alt::after {
    content: none !important;
  }

  /* TEXTO REEMPLAZO PARA BOTÓN PRINCIPAL */
  .shopping-cart .total-amount .right .button .btn:first-child::after {
    content: "Pagar" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: white !important;
    white-space: nowrap !important;
    text-indent: 0 !important;
    display: block !important;
    z-index: 10 !important;
  }

  /* TEXTO REEMPLAZO PARA BOTÓN SECUNDARIO */
  .shopping-cart .total-amount .right .button .btn.btn-alt::after {
    content: "Seguir" !important;
    position: absolute !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    color: white !important;
    white-space: nowrap !important;
    text-indent: 0 !important;
    display: block !important;
    z-index: 10 !important;
  }

  /* OCULTAR ICONOS COMPLETAMENTE */
  .shopping-cart .total-amount .right .button .btn i,
  .shopping-cart .total-amount .right .button .btn.btn-alt i {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
  }

  /* FORZAR ESTILOS DE FONDO */
  .shopping-cart .total-amount .right .button .btn:first-child {
    background-color: #00bba1 !important;
    border-color: #00bba1 !important;
  }

  .shopping-cart .total-amount .right .button .btn.btn-alt {
    background-color: #0b2244 !important;
    border-color: #0b2244 !important;
  }
}

/* =================================
       LAPTOP STYLES (1025px - 1199px) - FIX TEXTO CORTADO
       ================================= */
@media (min-width: 1025px) and (max-width: 1199px) {
  .shopping-cart .total-amount .right .button {
    flex-direction: row !important;
    gap: 1rem !important;
    justify-content: space-between !important;
  }

  .shopping-cart .total-amount .right .button .btn,
  .shopping-cart .total-amount .right .button .btn.btn-alt {
    padding: 12px 18px !important;
    font-size: 0.82rem !important;
    min-height: 44px !important;
    flex: 1 !important;
    min-width: 0 !important;
    max-width: none !important;
    white-space: nowrap !important;
    overflow: hidden !important;
    text-overflow: ellipsis !important;
    line-height: 1.3 !important;
  }

  /* Iconos optimizados para laptop */
  .shopping-cart .total-amount .right .button .btn i {
    font-size: 0.85rem !important;
    margin-right: 0.4rem !important;
  }
}

/* =================================
       LAPTOP ESPECÍFICO 1024px - MÁS PADDING HORIZONTAL
       ================================= */
@media (min-width: 1024px) and (max-width: 1024px) {
  .shopping-cart .total-amount .right .button .btn,
  .shopping-cart .total-amount .right .button .btn.btn-alt {
    padding: 12px 18px !important;
    font-size: 0.82rem !important;
    min-height: 44px !important;
    flex: 1 !important;
    min-width: 0 !important;
    max-width: none !important;
    width: auto !important;
  }
}

/* =================================
       DESKTOP LARGE (1200px+) - OPTIMO
       ================================= */
@media (min-width: 1200px) {
  .shopping-cart .total-amount .right .button .btn,
  .shopping-cart .total-amount .right .button .btn.btn-alt {
    padding: 14px 28px !important;
    font-size: 0.9rem !important;
    min-height: 48px !important;
  }
}

/* =================================
       PANTALLAS EXTRA PEQUEÑAS (< 576px)
       ================================= */
@media (max-width: 575px) {
  .total-amount .right .button {
    gap: 0.4rem;
    width: 100%;
  }

  .total-amount .right .button .btn {
    font-size: 0.85rem;
    padding: 0.7rem 0.8rem;
    gap: 0.3rem;
    flex: 1;
    min-width: 0;
  }
}

/* =================================
       TABLET STYLES (768px and up)
       ================================= */
@media (min-width: 768px) {
  .empty-cart-actions {
    flex-direction: row;
    justify-content: center;
  }

  .empty-cart-actions .btn {
    flex: 0 0 auto;
    min-width: 140px;
    padding: 0.75rem 1.25rem;
  }

  .category-links {
    grid-template-columns: repeat(4, 1fr);
  }

  .mobile-item-controls {
    flex-direction: row;
    align-items: flex-end;
  }

  /* Asegurar padding superior del cupón en tablet/desktop */
  .coupon {
    padding-top: 1.5rem !important;
    padding-bottom: 1.5rem !important;
  }

  .coupon form {
    flex-direction: row;
    align-items: stretch;
  }

  .coupon input {
    flex: 1;
  }

  /* EN TABLET/DESKTOP: BOTÓN CON ANCHO AUTOMÁTICO */
  .shopping-cart .coupon .btn {
    width: auto !important;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
    min-width: 120px !important;
  }

  .total-amount .right .button {
    flex-direction: row;
    justify-content: space-between;
    gap: 0.75rem;
    width: 100%;
  }

  .total-amount .right .button .btn {
    flex: 1;
    min-width: 0;
    font-size: 0.9rem;
    padding: 0.75rem 1rem;
  }
}

/* =================================
       DESKTOP STYLES (992px and up)
       ================================= */
@media (min-width: 992px) {
  .empty-cart-container {
    padding: 3rem 2rem;
  }

  .empty-cart-title {
    font-size: 2rem;
  }

  .empty-cart-message {
    font-size: 1.1rem;
  }

  /* Desktop layout para items del carrito */
  .cart-single-list.mobile-optimized {
    padding: 1.5rem;
  }

  .desktop-layout img.cart-item-image {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 8px;
  }

  .desktop-layout .product-name a {
    color: #2c3e50;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
  }

  .desktop-layout .product-name a:hover {
    color: #007bff;
  }

  .desktop-layout .product-des span {
    display: block;
    font-size: 0.9rem;
    color: #6c757d;
    margin-bottom: 0.25rem;
  }

  .desktop-layout .quantity-selector {
    max-width: 80px;
  }

  .desktop-layout .unit-price {
    font-weight: 600;
    color: #2c3e50;
    font-size: 1rem;
  }

  .desktop-layout .remove-item {
    color: #dc3545;
    font-size: 1.2rem;
    text-decoration: none;
    padding: 0.5rem;
    border-radius: 50%;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
  }

  .desktop-layout .remove-item:hover {
    background: #dc3545;
    color: white;
    transform: scale(1.1);
  }
}

/* =================================
       LARGE DESKTOP STYLES (1200px and up)
       ================================= */
@media (min-width: 1200px) {
  .cart-single-list.mobile-optimized {
    padding: 2rem;
  }

  .desktop-layout .product-name a {
    font-size: 1.2rem;
  }

  .desktop-layout .unit-price {
    font-size: 1.1rem;
  }

  .total-amount .right .button .btn {
    flex: 1;
    min-width: 0;
    font-size: 0.95rem;
    padding: 0.8rem 1.2rem;
  }
}

/* =================================
       UTILITY CLASSES
       ================================= */
.text-warning {
  font-weight: 600;
  color: #ffc107 !important;
}

.cart-loading-spinner {
  text-align: center;
  padding: 3rem 1rem;
}

.cart-loading-spinner p {
  color: #6c757d;
  margin: 0;
  font-size: 1rem;
}

/* Animaciones suaves */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cart-single-list.mobile-optimized {
  animation: fadeInUp 0.3s ease;
}

/* Mejoras de accesibilidad */
@media (prefers-reduced-motion: reduce) {
  .cart-single-list.mobile-optimized,
  .mobile-remove,
  .category-link,
  .desktop-layout .remove-item {
    transition: none;
    animation: none;
  }
}

/* Estados de carga mejorados */
.cart-single-list.loading {
  opacity: 0.6;
  pointer-events: none;
}

.cart-single-list.loading::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid #007bff;
  border-radius: 50%;
  border-top-color: transparent;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
