@charset "UTF-8";
/* Definimos los gradientes */
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;600;700;900&display=swap");
*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

*::-webkit-scrollbar-thumb {
  background-color: #fdad08;
  border-radius: 0.5rem;
  border: 0.25rem solid #fdad08;
}

*::-webkit-scrollbar-track {
  background: #2c3137;
}

a:hover {
  text-decoration: none;
}

details {
  width: 100%;
}

::marker {
  text-align: end !important;
}

/*!
----------------------------------------------------------------------------------------------------
* Important! - To edit this CSS, you must use the SCSS source file.
* Resilient 3.2.0
----------------------------------------------------------------------------------------------------
*/
/* -----Flexbox----- */
/*--------------------Text Stroke--------------------*/
*,
*:after,
*:before, summary, details {
  box-sizing: border-box;
  padding: 0;
  border: 0;
  margin: 0;
  outline: 0;
  font-family: inherit;
  font-weight: inherit;
  font-style: inherit;
  color: inherit;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section, main {
  display: block;
}

details {
  width: 100%;
}

ul, ol {
  list-style: none;
  margin-bottom: 0;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*--------------------General Base--------------------*/
html {
  /* Common Breakpoint [bs] */
  font-size: 100%;
  font-size: 16px;
  background-color: #fdad08;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
}
@media screen and (min-width: 768px) {
  html {
    /* Common Breakpoint [md] */
    font-size: 100%;
  }
}
@media screen and (min-width: 1024px) {
  html {
    /* Common Breakpoint [lg] */
    font-size: 100%;
  }
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 12pt;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1;
  color: #5a3921;
  background-color: white;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  color: inherit;
  position: relative;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
}
h1 > small, h2 > small, h3 > small, h4 > small, h5 > small, h6 > small {
  display: block;
  color: inherit;
}
h1 strong, h2 strong, h3 strong, h4 strong, h5 strong, h6 strong {
  font-weight: 800;
  color: inherit;
}

h1 {
  font-size: 25.2pt;
  font-size: 2.1rem;
}
@media screen and (min-width: 1024px) {
  h1 {
    font-size: 30pt;
    font-size: 2.5rem;
  }
}

h2 {
  font-size: 22.8pt;
  font-size: 1.9rem;
}
@media screen and (min-width: 1024px) {
  h2 {
    font-size: 27.6pt;
    font-size: 2.3rem;
  }
}

h3 {
  font-size: 20.4pt;
  font-size: 1.7rem;
}
@media screen and (min-width: 1024px) {
  h3 {
    font-size: 24pt;
    font-size: 2rem;
  }
}

h4 {
  font-size: 18pt;
  font-size: 1.5rem;
}
@media screen and (min-width: 1024px) {
  h4 {
    font-size: 24pt;
    font-size: 2rem;
  }
}

h5 {
  font-size: 15.6pt;
  font-size: 1.3rem;
}
@media screen and (min-width: 1024px) {
  h5 {
    font-size: 18pt;
    font-size: 1.5rem;
  }
}

h6 {
  font-size: 13.2pt;
  font-size: 1.1rem;
}
@media screen and (min-width: 1024px) {
  h6 {
    font-size: 15.6pt;
    font-size: 1.3rem;
  }
}

p {
  margin-bottom: 1em;
}

a {
  text-decoration: none;
}
a:hover, a:focus {
  outline: none;
  color: inherit;
}

b,
strong,
mark {
  font-weight: 700;
  color: inherit;
  background: none;
}

i,
em {
  font-weight: 400;
  font-style: normal;
}

em {
  color: inherit;
}

blockquote {
  margin: 0.75em 2em;
  font-size: 14.4pt;
  font-size: 1.2rem;
}

img {
  width: 100%;
  display: block;
}

form button {
  background-color: transparent;
  cursor: pointer;
}

/* Variables de color para una paleta "Gummy" */
:root {
  --color-primary: $c-primary;
  --color-secondary: $c-secondary;
  --color-text-dark: $c-dark;
  --color-text-light: white;
  --color-background: white;
  --color-accent: $c-terciary;
  --shadow-soft: 0 4px 12px rgba($c-dark, 0.1);
}

/* Importar fuente moderna y juguetona (Poppins) */
/* Estilos Globales y Body */
body {
  font-family: "Poppins", sans-serif;
  background-color: white;
  color: #2c3137;
  line-height: 1.6;
  margin: 0;
  padding: 0;
}

#main-page {
  padding-top: 80px; /* Espacio igual a la altura del header */
}

.eg-loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fdad08;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s;
  /*animation: fadeOut 0.5s forwards 2s;*/
}

.eg-loader-logo2 {
  background-image: url("../img/logo1024.png");
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 300px;
  height: 300px
}

@keyframes fadeOut {
  to {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
            user-select: none;
  }
}
.eg-loader--active {
  opacity: 1;
  visibility: visible;
}

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

.eg-loader__logo {
  font-size: 3rem;
  font-weight: 900;
  color: #f4f4f4;
  margin-bottom: 1.25rem;
  text-shadow: 0.25rem 0.25rem 4px rgba(0, 0, 0, 0.2);
}

.eg-loader__logo span {
  color: #ff6b00;
}

/* Animación del Spinner */
.eg-loader__animation {
  position: relative;
  width: 60px;
  height: 60px;
  margin: 0 auto;
}

.eg-loader__spinner, .eg-loader__spinner--inner {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 0.2rem solid transparent;
  border-top-color: #ff6b00;
  position: absolute;
  animation: spin 1.5s linear infinite;
}

.eg-loader__spinner--inner {
  border-top-color: #f28303;
  width: 40px;
  height: 40px;
  top: 0.5rem;
  left: 0.5rem;
  animation: spin-reverse 1.2s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
@keyframes spin-reverse {
  to {
    transform: rotate(-360deg);
  }
}
header {
  background-color: #f4f4f4;
  box-shadow: #2c3137;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

header .container {
  padding: 0.5rem;
}

.header-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
}

.logo {
  font-size: 0;
  color: transparent;
  background-image: url("../img/logo.png");
  background-repeat: no-repeat;
  background-position: center left;
  background-size: contain;
  width: 50px;
  height: 2.5rem;
  display: block;
  flex-shrink: 0;
}

.logo i {
  display: none;
}

.header-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-shrink: 0;
}

.language-selector {
  position: relative;
}

.language-btn {
  background: transparent;
  border: 1px solid #dadada;
  border-radius: 1.25rem;
  padding: 0.375rem 0.75rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-size: 0.875rem;
  color: #5a3921;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.language-btn:hover {
  border-color: #fdad08;
  color: #fdad08;
}

.language-options {
  position: absolute;
  top: 100%;
  right: 0;
  background: #ffffff;
  border-radius: 0.5rem;
  box-shadow: 0 0.25rem 0.5rem rgba(253, 173, 8, 0.15);
  padding: 0.5rem;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  min-width: 10rem;
  z-index: 100;
  margin-top: 0.5rem;
}
.language-options.active {
  display: flex;
}
.language-options button {
  background: transparent;
  border: none;
  padding: 0.5rem 0.5rem;
  text-align: left;
  cursor: pointer;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #5a3921;
  transition: all 0.2s;
}
.language-options button:hover {
  background: #f4f4f4;
  color: #fdad08;
}

.cart-btn {
  background: #ff6b00;
  color: #ffffff;
  border: none;
  border-radius: 1.25rem;
  padding: 0.375rem 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.375rem;
  cursor: pointer;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  box-shadow: 0 0.25rem 0.5rem rgba(253, 173, 8, 0.15);
  position: relative;
  white-space: nowrap;
}
.cart-btn:hover {
  background: #e69c07;
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(253, 173, 8, 0.25);
  color: #ffffff;
}
.cart-btn i {
  font-size: 1rem;
}

.cart-count {
  background: #f28303;
  color: #ffffff;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.25rem 6px;
  border-radius: 0.5rem;
  position: absolute;
  top: -0.25rem;
  right: -0.25rem;
  box-shadow: 0 0.25rem 0.5rem rgba(44, 49, 55, 0.2);
  min-width: 1.5rem;
  justify-content: center;
}

.flag {
  width: 1.25rem;
  height: 1rem;
  display: inline-block;
  background-size: cover;
  background-position: center;
  border-radius: 0.25rem;
  box-shadow: 0 0 0.25rem rgba(44, 49, 55, 0.3);
}
.flag-mx {
  background-image: url("https://flagcdn.com/w40/mx.png");
}
.flag-us {
  background-image: url("https://flagcdn.com/w40/us.png");
}

@media (min-width: 768px) {
  .logo {
    width: 50px;
    height: 3.5rem;
  }
  .header-controls {
    gap: 1rem;
  }
  .language-btn {
    padding: 0.5rem 1rem;
    font-size: 1rem;
    gap: 0.5rem;
  }
  .cart-btn {
    padding: 0.5rem 1.25rem;
    gap: 0.5rem;
    font-size: 1rem;
  }
  .cart-btn i {
    font-size: 1.1rem;
  }
}
footer {
  background-color: #2c3137;
  color: #f4f4f4;
  padding: 1.25rem 0;
  margin-top: 50px;
  text-align: center;
  font-size: 1rem;
}

.language-options button {
  transition: all-color 0.2s, color 0.2s;
}

.language-options button:hover {
  background-color: #fdad08;
  color: #f4f4f4;
}

.flag {
  display: inline-block;
  width: 1.25rem;
  height: 1rem;
  background-size: cover;
  border: 1px solid #ccc;
  box-shadow: 0 1px 0.25rem rgba(0, 0, 0, 0.1);
  margin-right: 0.5rem;
}

.flag-mx {
  background: linear-gradient(to right, #006847 0 33%, white 33% 66%, #ce1126 66% 100%);
}

.flag-us {
  background: repeating-linear-gradient(to bottom, #bb133e 0, #bb133e 20%, white 20%, white 40%);
}

nav ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  gap: 1.25rem;
}

nav a {
  text-decoration: none;
  color: #2c3137;
  font-weight: 600;
  padding: 0.5rem 0;
  border-bottom: 0.25rem solid transparent;
  transition: border-color 0.3s, color 0.3s;
}

nav a:hover {
  color: #fdad08;
  border-color: #fdad08;
}

.container {
  gap: 0.25rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.container > * {
  width: 100%;
}

/* Banner */
.banner {
  position: relative;
  overflow: hidden;
  color: #f4f4f4;
  padding: 1rem;
  border-radius: 1rem;
  text-align: center;
  margin: 1rem auto;
  box-shadow: 0 0 1rem rgba(44, 49, 55, 0.15);
}
.banner::before {
  content: "";
  position: absolute;
  top: 30%;
  left: 0;
  right: 0;
  bottom: 0;
  height: 130%;
  background: linear-gradient(90deg, #ff4500 0%, #ff4500 20%, #ffff00 20%, #ffff00 40%, #00ff00 40%, #00ff00 60%, #00bfff 60%, #00bfff 80%, #ff00ff 80%, #ff00ff 100%);
  border-radius: 1rem;
  transform: perspective(100px) rotateX(345deg);
  z-index: 0;
}
.banner::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  height: 15rem;
  bottom: 0;
  z-index: 0;
  background: linear-gradient(to bottom, transparent, rgba(242, 131, 3, 0.5), rgba(242, 131, 3, 0.75));
}
@media screen and (min-width: 720px) {
  .banner {
    padding: 2rem;
  }
}

#banner-title {
  position: relative;
  width: 75%;
  z-index: 1;
  font-size: 0;
  color: transparent;
  background-image: url("../img/logo.png");
  background-repeat: no-repeat;
  background-position: right;
  background-size: contain;
  height: 7rem;
  margin: 0 auto;
  padding: 0;
  display: block;
}
@media screen and (min-width: 720px) {
  #banner-title {
    width: 50%;
    background-position: center;
  }
}
#banner-title span {
  display: none;
}

#banner-text {
  position: relative;
  z-index: 1;
  font-size: 1.5rem;
  line-height: 1;
  font-weight: 600;
  margin: 0;
  margin-top: 1rem;
  text-shadow: 0.15rem 0.15rem 0.25rem rgba(44, 49, 55, 0.35);
}
#banner-text::before {
  transform: scale(0.4);
  content: "";
  position: absolute;
  left: -1rem;
  bottom: -1.5rem;
  z-index: 2;
  pointer-events: none;
  /* 1. DIMENSIONES EXACTAS DEL FRAME */
  width: 200px;
  height: 285px;
  /* 2. CARGAR LA IMAGEN */
  background-image: url("../img/frames.png");
  background-repeat: no-repeat;
  /* 3. TAMAÑO DEL SPRITE SHEET COMPLETO */
  background-size: 2000px 1710px;
  /* 4. ANIMACIÓN DOBLE SINCRONIZADA */
  animation: play-x 0.8s steps(10) infinite, play-y 4.8s steps(6) infinite;
}
@media screen and (min-width: 720px) {
  #banner-text {
    font-size: 1.75rem;
    margin-top: 1.5rem;
  }
  #banner-text::before {
    display: block;
    left: 0;
    bottom: -1.75rem;
    transform: scale(0.75);
  }
}

/* Catálogo (Grid de productos) */
.catalog {
  display: grid;
  /*grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));*/
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 2rem;
  /*margin: 2rem auto;*/
  justify-content: center;
}

/* Estado sin resultados */
.eg-pag-no-results {
  text-align: center;
  padding: 50px 1.25rem;
  background-color: #ffffff;
  border-radius: 1rem;
  border: 0.25rem dashed #ffcccb;
  margin: 40px auto;
  max-width: 500px;
  box-shadow: #2c3137;
}

.eg-pag-no-results i {
  font-size: 3rem;
  color: #fdad08;
  margin-bottom: 1rem;
}

.eg-pag-no-results h3 {
  font-weight: 700;
}

.eg-pag-no-results p {
  color: #666;
}

@media (min-width: 768px) {
  #banner-title {
    font-size: 2.25rem;
    height: 10rem;
  }
}
/* Keyframes para el movimiento horizontal */
@keyframes play-x {
  0% {
    background-position-x: 0px;
  }
  100% {
    background-position-x: -2000px;
  }
}
/* Keyframes para el movimiento vertical */
@keyframes play-y {
  0% {
    background-position-y: 0px;
  }
  100% {
    background-position-y: -1710px;
  }
}
.eg-pag-search-container {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0;
  width: 100%;
}

/* Caja de búsqueda */
.eg-pag-search-box {
  position: relative;
  flex: 1;
  min-width: 0;
  box-shadow: 0 0.25rem 0.5rem rgba(253, 173, 8, 0.15);
  border-radius: 2rem;
  background-color: #ffffff;
}

.eg-pag-search-input {
  width: 100%;
  padding: 0.625rem 2.5rem 0.625rem 1rem;
  border: 1px solid #dadada;
  border-radius: 2rem;
  font-size: 0.875rem;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
  background-color: #ffffff;
  color: #5a3921;
}
.eg-pag-search-input::-moz-placeholder {
  color: #8f8f8f;
}
.eg-pag-search-input::placeholder {
  color: #8f8f8f;
}
.eg-pag-search-input:focus {
  border-color: #e69c07;
  box-shadow: 0 0 0.75rem rgba(253, 173, 8, 0.3);
}

.eg-pag-search-icon {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: #fdad08;
  font-size: 1rem;
  pointer-events: none;
}

/* Filtros de Temporada */
.eg-pag-season-filters {
  display: flex;
  gap: 0.375rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  padding: 0.5rem 0;
  flex-shrink: 0;
  /* Scrollbar personalizado */
  scrollbar-width: thin;
  scrollbar-color: #fedc7f #f4f4f4;
}
.eg-pag-season-filters::-webkit-scrollbar {
  height: 0.25rem;
}
.eg-pag-season-filters::-webkit-scrollbar-track {
  background: #f4f4f4;
  border-radius: 0.25rem;
}
.eg-pag-season-filters::-webkit-scrollbar-thumb {
  background: #fedc7f;
  border-radius: 0.25rem;
}
.eg-pag-season-filters::-webkit-scrollbar-thumb:hover {
  background: #fdad08;
}

.eg-pag-season-filter {
  background-color: #ffffff;
  color: #5a3921;
  padding: 0.5rem 0.875rem;
  border-radius: 2rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  border: 1px solid #b0b0b0;
  transition: all 0.3s ease;
  box-shadow: 0 0.25rem 0.5rem rgba(253, 173, 8, 0.15);
  white-space: nowrap;
  flex-shrink: 0;
}
.eg-pag-season-filter i {
  font-size: 0.875rem;
  transition: transform 0.3s ease;
}
.eg-pag-season-filter:active {
  transform: scale(0.95);
}
.eg-pag-season-filter.active {
  background-color: #fdad08;
  color: #ffffff;
  border-color: #fdad08;
  box-shadow: 0 0.5rem 1rem rgba(253, 173, 8, 0.25);
}
.eg-pag-season-filter.active i {
  color: #ffffff;
}

@media (min-width: 768px) {
  .eg-pag-search-container {
    gap: 1rem;
    margin-bottom: 2rem;
    /*max-width: calc(50% - 0.5rem);*/
    max-width: 20%;
  }
  .eg-pag-search-input {
    padding: 0.75rem 3rem 0.75rem 1.25rem;
    font-size: 0.95rem;
  }
  .eg-pag-search-icon {
    right: 1.25rem;
    font-size: 1.1rem;
  }
  .eg-pag-season-filters {
    gap: 0.5rem;
    /*max-width: calc(50% - 0.5rem);*/
    max-width: 79%;
  }
  .eg-pag-season-filter {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
  .eg-pag-season-filter i {
    font-size: 1rem;
  }
  .eg-pag-season-filter:hover {
    border-color: #fdad08;
    color: #fdad08;
    box-shadow: 0 0.5rem 1rem rgba(253, 173, 8, 0.25);
    transform: translateY(-1px);
  }
  .eg-pag-season-filter:hover i {
    transform: scale(1.1);
  }
  .eg-pag-season-filter.active:hover {
    color: #ffffff;
  }
  .eg-pag-season-filter.active:hover i {
    transform: scale(1);
  }
}
/* ========== DESKTOP (1024px+) ========== */
@media (min-width: 1024px) {
  .eg-pag-search-container {
    gap: 1.25rem;
  }
  .eg-pag-search-input {
    padding: 1rem 2.5rem 1rem 1rem;
    font-size: 1rem;
  }
  .eg-pag-search-icon {
    font-size: 1.3rem;
  }
  .eg-pag-season-filters {
    gap: 0.5rem;
    overflow-x: visible;
  }
  .eg-pag-season-filter {
    padding: 1rem;
    font-size: 1rem;
    min-width: 120px;
  }
  .eg-pag-season-filter i {
    font-size: 1.1rem;
  }
  .eg-pag-season-filter:hover i {
    transform: scale(1.2);
  }
}
.product-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
.product-button {
  background-color: #ff6b00;
  color: white;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 1.25rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
  transition: all-color 0.3s, transform 0.1s;
}
.product-button:hover {
  background-color: #f28303;
}
.product-button:active {
  transform: scale(0.98);
}
.product-count {
  background-color: #ff6b00;
  color: #2c3137;
  border-radius: 50%;
  padding: 0.25rem 0.5rem;
  font-size: 0.75rem;
  font-weight: 700;
  line-height: 1;
}

.checkout-button {
  width: 100%;
  background-color: #fdad08;
  color: #f4f4f4;
  border: none;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  margin-top: 1rem;
  cursor: pointer;
  transition: all-color 0.3s;
}
.checkout-button:hover {
  background-color: #fdad08;
}

.language-selector {
  position: relative;
}
.language-selector .language-button {
  background: none;
  border: 1px solid white;
  padding: 0.5rem 0.75rem;
  border-radius: 1.25rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 600;
  color: #2c3137;
  transition: all-color 0.3s;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.25rem;
}
.language-selector .language-button:hover {
  background-color: #f4f4f4;
}
.language-selector .language-options {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.25rem;
  background-color: #f4f4f4;
  box-shadow: #2c3137;
  border-radius: 0.5rem;
  overflow: hidden;
  min-width: 10rem;
  display: none;
  z-index: 10;
}
.language-selector .language-options button {
  width: 100%;
  padding: 0.5rem 1rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  font-size: 1rem;
  color: #2c3137;
  transition: all-color 0.2s;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.language-selector .language-options button:hover {
  background-color: #fdad08;
  color: #f4f4f4;
}

.eg-pag-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem 0;
  margin: 0.5rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
@media (max-width: 768px) {
  .eg-pag-container {
    flex-direction: column;
    gap: 1.5rem;
  }
}

.eg-pag-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  gap: 1rem;
  list-style: none;
  padding: 0;
  margin: 0;
}
.eg-pag-pagination .eg-pag-item {
  display: flex;
  min-width: 48px;
  height: 48px;
  padding: 0 1rem;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  color: #495057;
  border: 2px solid #dee2e6;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 600;
  font-size: 1rem;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.eg-pag-pagination .eg-pag-item:hover:not(.disabled) {
  background: linear-gradient(135deg, #fff7ed 0%, #ffe4cc 100%);
  border-color: #ff8c00;
  color: #ff8c00;
  transform: translateY(-3px);
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.3);
}
.eg-pag-pagination .eg-pag-item:active:not(.disabled) {
  transform: translateY(-1px);
  box-shadow: 0 3px 10px rgba(255, 140, 0, 0.25);
}
.eg-pag-pagination .eg-pag-item.disabled {
  opacity: 0.3;
  cursor: not-allowed;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  border-color: #dee2e6;
  color: #adb5bd;
}
.eg-pag-pagination .eg-pag-item.disabled:hover {
  transform: none;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}
.eg-pag-pagination .eg-pag-item.control {
  background: linear-gradient(135deg, #6c757d 0%, #495057 100%);
  color: white;
  border-color: #6c757d;
}
.eg-pag-pagination .eg-pag-item.control:hover:not(.disabled) {
  background: linear-gradient(135deg, #5a6268 0%, #343a40 100%);
  border-color: #5a6268;
  color: white;
}
.eg-pag-pagination .eg-pag-item.control.disabled {
  background: linear-gradient(135deg, #e9ecef 0%, #dee2e6 100%);
  color: #adb5bd;
  border-color: #dee2e6;
}
.eg-pag-pagination .eg-pag-item.control i {
  font-size: 0.875rem;
  font-weight: 900;
}
.eg-pag-pagination .eg-pag-item.page.active {
  background: linear-gradient(135deg, #ff8c00 0%, #ff9f1c 100%);
  color: white;
  border-color: #ff8c00;
  box-shadow: 0 6px 20px rgba(255, 140, 0, 0.5), 0 0 0 4px rgba(255, 140, 0, 0.15);
  transform: translateY(-3px) scale(1.1);
  cursor: default;
  font-weight: 700;
}
.eg-pag-pagination .eg-pag-item.page.active:hover {
  background: linear-gradient(135deg, #ff8c00 0%, #ff9f1c 100%);
  transform: translateY(-3px) scale(1.1);
}
.eg-pag-pagination .eg-pag-item button {
  background: none;
  border: none;
  color: inherit;
  font: inherit;
  cursor: inherit;
  padding: 0;
  width: 100%;
  height: 100%;
}
.eg-pag-pagination .dots {
  padding: 0 0.5rem;
  color: #6c757d;
  font-weight: 700;
  font-size: 1.5rem;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}

.eg-pag-info {
  font-size: 0.9375rem;
  color: #6b7280;
  font-weight: 600;
  white-space: nowrap;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 768px) {
  .eg-pag-info {
    order: -1;
    width: 100%;
    text-align: center;
  }
}

/* Animaciones */
@keyframes pulse {
  0%, 100% {
    opacity: 0.3;
    transform: translate(-50%, -50%) scale(1);
  }
  50% {
    opacity: 0.6;
    transform: translate(-50%, -50%) scale(1.5);
  }
}
#catalog {
  animation: fadeInCatalog 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes fadeInCatalog {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.98);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}
.eg-pag-info {
  order: -1;
}

/* Modales (General) */
.modal {
  display: none;
  position: fixed;
  z-index: 2000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(44, 49, 55, 0.5);
  -webkit-backdrop-filter: blur(0.25rem);
          backdrop-filter: blur(0.25rem);
  animation: fadeIn 0.3s;
}
.modal-content {
  background-color: white;
  max-height: 95vh;
  overflow: auto;
  margin: 0 auto;
  margin-top: 2vh;
  padding: 1rem;
  border-radius: 1rem;
  box-shadow: 0 0.5rem 2rem rgba(44, 49, 55, 0.3);
  position: relative;
  max-width: calc(100% - 1rem);
  width: 90%;
  animation: slideInTop 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.modal.cart-modal .modal-content {
  padding: 0;
  max-height: none;
}

.modal-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.25rem solid #fdad08;
  padding: 0;
  margin-bottom: 1rem;
}
.modal-header h2 {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fdad08;
  margin: 0;
}

.close {
  color: #2c3137;
  font-size: 2.5rem;
  font-weight: 300;
  cursor: pointer;
  border: none;
  background: none;
  line-height: 1;
  transition: color 0.2s;
}

.close:hover, .close:focus {
  color: #fdad08;
  text-decoration: none;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideInTop {
  from {
    opacity: 0;
    transform: translateY(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
@media (max-width: 768px) {
  .cart-modal .modal-content {
    max-width: 100%;
  }
}
#product-details-modal .modal-body {
  padding: 0;
}

.cart-modal .modal-content {
  margin: 0;
  right: 0;
  top: 0;
  height: 100%;
  border-radius: 0;
  animation: slideInRight 0.4s ease-out;
  display: flex;
  flex-direction: column;
}

.cart-modal .modal-header {
  background: linear-gradient(135deg, #fdad08 0%, #e69c07 100%);
  color: #ffffff;
  padding: 0.25rem 1rem;
  border-bottom: none;
  margin-bottom: 0;
}
.cart-modal .modal-header h2 {
  color: #ffffff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-modal .modal-header h2 i {
  font-size: 1.5rem;
}
.cart-modal .modal-header .close {
  color: #ffffff;
  opacity: 0.9;
  font-size: 2rem;
}
.cart-modal .modal-header .close:hover {
  color: #ffffff;
  opacity: 1;
}

.cart-modal .modal-body {
  flex-grow: 1;
  overflow-y: auto;
  padding: 0.5rem;
  background-color: #fff8f0;
}

/* Estado vacío del carrito */
.empty-cart {
  text-align: center;
  padding: 60px 1rem;
  color: #2c3137;
}
.empty-cart i {
  font-size: 4rem;
  color: #fdad08;
  margin-bottom: 1rem;
  opacity: 0.6;
}
.empty-cart h3 {
  color: #5a3921;
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.empty-cart p {
  color: #2c3137;
  font-size: 0.95rem;
}

.cart-table-container {
  background: #ffffff;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 0.5rem rgba(253, 173, 8, 0.15);
  margin-bottom: 1rem;
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  /* Scrollbar personalizado */
  scrollbar-width: thin;
  scrollbar-color: #fedc7f #f4f4f4;
}
.cart-table-container::-webkit-scrollbar {
  height: 0.375rem;
}
.cart-table-container::-webkit-scrollbar-track {
  background: #f4f4f4;
  border-radius: 0.25rem;
}
.cart-table-container::-webkit-scrollbar-thumb {
  background: #fedc7f;
  border-radius: 0.25rem;
}
.cart-table-container::-webkit-scrollbar-thumb:hover {
  background: #fdad08;
}

.cart-table {
  width: 100%;
  /*min-width: 600px;*/
  min-width: 100%;
  border-collapse: collapse;
}
.cart-table thead {
  background-color: #ffe8d6;
}
.cart-table thead th {
  padding: 0.625rem 0.5rem;
  text-align: left;
  font-size: 0.75rem;
  font-weight: 700;
  color: #5a3921;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
}
.cart-table tbody tr {
  border-bottom: 1px solid #dadada;
  transition: background-color 0.2s;
}
.cart-table tbody tr:last-child {
  border-bottom: none;
}
.cart-table tbody td {
  padding: 0.75rem 0.5rem;
  vertical-align: middle;
  font-size: 0.875rem;
}

/* Información del producto en el carrito */
.cart-item-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  min-width: 140px;
}

.cart-item-name {
  font-weight: 600;
  color: #5a3921;
  font-size: 0.875rem;
  line-height: 1.3;
}

.cart-item-category {
  font-size: 0.75rem;
  color: #2c3137;
  font-style: italic;
}

.cart-item-price {
  font-weight: 700;
  color: #fdad08;
  font-size: 0.875rem;
  white-space: nowrap;
}

.cart-item-subtotal {
  font-weight: 700;
  color: #5a3921;
  font-size: 0.95rem;
  white-space: nowrap;
}

/* Control de cantidad */
.quantity-cell {
  min-width: 9rem;
}

.cart-quantity-control {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  background-color: #f4f4f4;
  border-radius: 0.5rem;
  padding: 0.25rem;
  width: -moz-fit-content;
  width: fit-content;
}

.cart-quantity-btn {
  width: 26px;
  height: 26px;
  border: none;
  background-color: #fdad08;
  color: #ffffff;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  line-height: 1;
  flex-shrink: 0;
}
.cart-quantity-btn:active {
  transform: scale(0.9);
}

.cart-quantity-input {
  width: 40px;
  height: 26px;
  border: none;
  background-color: #ffffff;
  text-align: center;
  font-weight: 600;
  font-size: 0.875rem;
  color: #5a3921;
  border-radius: 0.25rem;
  padding: 0;
  /* Ocultar controles de número */
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}
.cart-quantity-input::-webkit-outer-spin-button, .cart-quantity-input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.cart-quantity-input:focus {
  outline: 2px solid #fedc7f;
}

/* Botón de eliminar producto */
.remove-item {
  background-color: transparent;
  color: #cd2a1e;
  border: 1px solid #cd2a1e;
  padding: 0.375rem 0.5rem;
  border-radius: 0.375rem;
  cursor: pointer;
  font-size: 0.75rem;
  font-weight: 600;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.375rem;
  white-space: nowrap;
}
.remove-item span {
  display: none;
}
.remove-item:active {
  transform: scale(0.95);
  background-color: #cd2a1e;
  color: #ffffff;
}
.remove-item i {
  font-size: 0.875rem;
}

.cart-summary {
  padding: 1rem;
  background-color: #ffffff;
  border-top: 3px solid #fdad08;
}

.free-shipping {
  line-height: 1;
  background: linear-gradient(135deg, #f28303 0%, #da7502 100%);
  color: #ffffff;
  padding: 0.5rem;
  text-align: center;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-weight: 600;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  box-shadow: 0 0.25rem 0.5rem rgba(253, 173, 8, 0.15);
}
.free-shipping i {
  font-size: 1.2rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 1rem;
  color: #5a3921;
}
.summary-row span:first-child {
  font-weight: 500;
}
.summary-row span:last-child {
  font-weight: 700;
  color: #5a3921;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0;
  font-size: 1.4rem;
  font-weight: 800;
  color: #fdad08;
  border-top: 0.25rem solid #fedc7f;
  padding-top: 1rem;
  margin-top: 1rem;
}
.summary-total span:last-child {
  color: #fdad08;
}

.checkout-btn {
  width: 100%;
  background: linear-gradient(135deg, #fdad08 0%, #e69c07 100%);
  color: #ffffff;
  border: none;
  padding: 16px;
  border-radius: 12px;
  font-size: 1.1rem;
  font-weight: 700;
  margin-top: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(253, 173, 8, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.checkout-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 0.5rem 1rem rgba(253, 173, 8, 0.4);
}
.checkout-btn:active {
  transform: translateY(-1px);
}
.checkout-btn i {
  font-size: 1.2rem;
}

.security-notice {
  text-align: center;
  font-size: 0.75rem;
  color: #2c3137;
  margin-top: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.security-notice i {
  color: #4caf50;
  font-size: 1rem;
}

/* Animación de entrada */
@keyframes slideInRight {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(0);
  }
}
/* ========== TABLET (768px+) ========== */
@media (min-width: 768px) {
  .cart-modal .modal-content {
    max-width: 35vw;
  }
  .cart-table {
    min-width: auto;
  }
  .cart-table thead th {
    padding: 0.75rem;
    font-size: 0.8rem;
  }
  .cart-table tbody td {
    padding: 1rem 0.75rem;
    font-size: 0.95rem;
  }
  .cart-table-container {
    overflow-x: visible;
    scrollbar-width: none;
  }
  .cart-table-container::-webkit-scrollbar {
    display: none;
  }
  .cart-item-info {
    min-width: auto;
  }
  .cart-item-name {
    font-size: 0.95rem;
  }
  .cart-item-price {
    font-size: 1rem;
  }
  .cart-item-subtotal {
    font-size: 1.1rem;
  }
  .quantity-cell {
    min-width: 11rem;
  }
  .cart-quantity-control {
    gap: 0.5rem;
    padding: 0.25rem;
  }
  .cart-quantity-btn {
    width: 28px;
    height: 28px;
    font-size: 1.1rem;
  }
  .cart-quantity-btn:hover {
    background-color: #e69c07;
    transform: scale(1.1);
  }
  .cart-quantity-btn:active {
    transform: scale(0.95);
  }
  .cart-quantity-input {
    width: 45px;
    height: 28px;
    font-size: 0.95rem;
  }
  .remove-item {
    padding: 0.375rem 0.75rem;
    font-size: 0.8rem;
  }
  .remove-item span {
    display: inline;
  }
  .remove-item:hover {
    background-color: #cd2a1e;
    color: #ffffff;
    transform: scale(1.05);
  }
  .remove-item i {
    font-size: 1rem;
  }
  tbody tr:hover {
    background-color: #fff8f0;
  }
}
.checkout-wizard {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0.5rem;
  background: #fff;
  border-radius: 0.75rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 0.5rem rgba(0, 0, 0, 0.1);
  position: relative;
}
.checkout-wizard::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 1.5rem;
  right: 1.5rem;
  height: 2px;
  background: #e0e0e0;
  transform: translateY(-50%);
  z-index: 0;
}

.wizard-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  position: relative;
  z-index: 1;
  cursor: pointer;
  /* Estado activo */
  /* Estado completado */
}
.wizard-step .step-number {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #e0e0e0;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 3px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.wizard-step .step-label {
  font-size: 0.7rem;
  color: #666;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  line-height: 1.2;
}
.wizard-step.active .step-number {
  background: linear-gradient(135deg, #ff8c00 0%, #ffd700 100%);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 0.5rem rgba(255, 140, 0, 0.3);
}
.wizard-step.active .step-label {
  color: #ff8c00;
  font-weight: 700;
}
.wizard-step.completed .step-number {
  background: #4caf50;
  color: #fff;
}
.wizard-step.completed .step-number::before {
  content: "✓";
  font-weight: 900;
}
.wizard-step.completed .step-number span {
  display: none;
}
.wizard-step.completed .step-label {
  color: #4caf50;
}

.checkout-step {
  display: none;
  animation: fadeInUp 0.4s ease;
}
.checkout-step.active {
  display: block;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* Botones de navegación del wizard */
.wizard-navigation {
  display: flex;
  gap: 1rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 2px solid #e0e0e0;
}
.wizard-navigation .wizard-btn {
  flex: 1;
  padding: 0.875rem 1.5rem;
  border: none;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.wizard-navigation .wizard-btn i {
  font-size: 1rem;
}
.wizard-navigation .wizard-btn:active {
  transform: scale(0.98);
}
.wizard-navigation .wizard-btn-prev {
  background: transparent;
  color: #ff8c00;
  border: 2px solid #ff8c00;
}
.wizard-navigation .wizard-btn-prev:hover {
  background-color: rgba(255, 140, 0, 0.1);
}
.wizard-navigation .wizard-btn-prev:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}
.wizard-navigation .wizard-btn-prev:disabled:hover {
  background: transparent;
}
.wizard-navigation .wizard-btn-next,
.wizard-navigation .wizard-btn-finish {
  background: linear-gradient(135deg, #ff8c00 0%, #ffd700 100%);
  color: #fff;
  box-shadow: 0 2px 0.5rem rgba(0, 0, 0, 0.1);
}
.wizard-navigation .wizard-btn-next:hover,
.wizard-navigation .wizard-btn-finish:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(255, 140, 0, 0.4);
}
.wizard-navigation .wizard-btn-next:active,
.wizard-navigation .wizard-btn-finish:active {
  transform: translateY(0);
}
.wizard-navigation .wizard-btn-next:disabled,
.wizard-navigation .wizard-btn-finish:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.wizard-navigation .wizard-btn-next:disabled:hover,
.wizard-navigation .wizard-btn-finish:disabled:hover {
  transform: none;
  box-shadow: 0 2px 0.5rem rgba(0, 0, 0, 0.1);
}

/* Modal de Checkout */
.checkout-modal .modal-content {
  max-width: 100%;
  width: 100%;
  margin: 0;
  border-radius: 0;
  max-height: 100vh;
  overflow-y: auto;
}
.checkout-modal .modal-header {
  background: linear-gradient(135deg, #ff6b00 0%, #fdad08 100%);
  color: #ffffff;
  padding: 1rem;
  position: sticky;
  top: 0;
  z-index: 10;
  box-shadow: 0 0.25rem 0.5rem rgba(253, 173, 8, 0.15);
}
.checkout-modal .modal-header h2 {
  color: #ffffff;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}
.checkout-modal .modal-header h2 i {
  font-size: 1.5rem;
}
.checkout-modal .modal-header .close {
  color: #ffffff;
  opacity: 0.9;
  font-size: 2rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 2rem;
  height: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.checkout-modal .modal-header .close:hover {
  opacity: 1;
}
.checkout-modal .modal-body {
  padding: 1rem;
  background-color: #fff8f0;
}
.checkout-modal .modal-content {
  padding: 0;
}

/* Contenido del Checkout */
.checkout-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Formulario de Checkout */
.checkout-form {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 0.25rem 0.5rem rgba(253, 173, 8, 0.15);
}

.checkout-section {
  margin-bottom: 1.5rem;
}
.checkout-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #5a3921;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f4f4f4;
}
.checkout-section h3 i {
  color: #ff6b00;
  font-size: 1.2rem;
}
.checkout-section:last-child {
  margin-bottom: 0;
}

/* Filas de formulario */
.form-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0;
}
.form-group label {
  font-weight: 600;
  font-size: 0.875rem;
  color: #5a3921;
}
.form-group input {
  padding: 0.75rem;
  border: 1px solid #dadada;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  transition: all 0.3s ease;
  background-color: #ffffff;
  color: #5a3921;
}
.form-group input::-moz-placeholder {
  color: #8f8f8f;
}
.form-group input::placeholder {
  color: #8f8f8f;
}
.form-group input:focus {
  outline: none;
  border-color: #ff6b00;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

/* Opciones de envío */
.shipping-options {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.shipping-option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border: 2px solid #f4f4f4;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #ffffff;
}
.shipping-option:has(input:checked) {
  border-color: #ff6b00;
  background-color: rgba(255, 107, 0, 0.05);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}
.shipping-option input[type=radio] {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  accent-color: #ff6b00;
  flex-shrink: 0;
}

.shipping-option-details {
  flex: 1;
}

.shipping-option-title {
  font-weight: 700;
  font-size: 1rem;
  color: #5a3921;
  margin-bottom: 0.25rem;
}

.shipping-option-desc {
  font-size: 0.875rem;
  color: #2c3137;
}

/* Checkboxes */
.form-check {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  padding: 0;
  margin-bottom: 0;
}
.form-check input[type=checkbox] {
  width: 1.125rem;
  height: 1.125rem;
  cursor: pointer;
  accent-color: #ff6b00;
  margin-top: 0.125rem;
  flex-shrink: 0;
}
.form-check label {
  font-size: 0.875rem;
  color: #5a3921;
  cursor: pointer;
  line-height: 1.4;
}
.form-check:last-child {
  margin-bottom: 0;
}

/* Resumen del Pedido */
.order-summary {
  background: #ffffff;
  border-radius: 0.75rem;
  padding: 1rem;
  box-shadow: 0 0.25rem 0.5rem rgba(253, 173, 8, 0.15);
  position: sticky;
  top: 4.5rem;
}
.order-summary h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #5a3921;
  margin-bottom: 1rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f4f4f4;
}

/* Sección de descuento */
.discount-section {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 1rem;
}

.discount-input {
  flex: 1;
  padding: 0.75rem;
  border: 1px solid #ddd;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  color: #333;
  background: #fff;
  transition: all 0.3s ease;
}
.discount-input::-moz-placeholder {
  color: #999;
}
.discount-input::placeholder {
  color: #999;
}
.discount-input:focus {
  outline: none;
  border-color: #ff8c00;
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.discount-btn {
  padding: 0.75rem 1.25rem;
  background: #ff8c00;
  color: #fff;
  border: none;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.3s ease;
  white-space: nowrap;
}
.discount-btn:hover {
  background: #e67e00;
}
.discount-btn:active {
  transform: scale(0.95);
}

.summary-details {
  margin-bottom: 1rem;
}

.summary-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 0.75rem;
  font-size: 0.875rem;
  color: #5a3921;
}
.summary-row span:first-child {
  font-weight: 500;
}
.summary-row span:last-child {
  font-weight: 700;
}

.summary-total {
  display: flex;
  justify-content: space-between;
  font-size: 1.25rem;
  font-weight: 800;
  color: #ff6b00;
  border-top: 2px solid #f4f4f4;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
}

/* Botones de acción */
.place-order-btn {
  width: 100%;
  background: linear-gradient(135deg, #ff6b00 0%, #fdad08 100%);
  color: #ffffff;
  border: none;
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(253, 173, 8, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.place-order-btn:active {
  transform: scale(0.98);
}
.place-order-btn i {
  font-size: 1.1rem;
}

.back-to-cart-btn {
  width: 100%;
  background: transparent;
  color: #ff6b00;
  border: 2px solid #ff6b00;
  padding: 0.875rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}
.back-to-cart-btn:active {
  transform: scale(0.98);
  background-color: rgba(255, 107, 0, 0.1);
}
.back-to-cart-btn i {
  font-size: 1rem;
}

/* ========== TABLET (768px+) ========== */
@media (min-width: 768px) {
  .checkout-modal .modal-content {
    max-width: 95%;
    width: 95%;
    margin: 2rem auto;
    border-radius: 1rem;
    max-height: calc(100vh - 4rem);
  }
  .checkout-modal .modal-header {
    padding: 1rem;
  }
  .checkout-modal .modal-header h2 {
    font-size: 1.5rem;
  }
  .checkout-modal .modal-body {
    padding: 1.5rem;
  }
  .checkout-wizard {
    padding: 1.25rem;
  }
  .checkout-wizard::before {
    left: 2.5rem;
    right: 2.5rem;
  }
  .wizard-step .step-number {
    width: 3rem;
    height: 3rem;
    font-size: 1.1rem;
  }
  .wizard-step .step-label {
    font-size: 0.875rem;
  }
  .checkout-content {
    flex-direction: row;
    gap: 1.5rem;
    align-items: flex-start;
  }
  .checkout-form {
    flex: 1;
    padding: 1.5rem;
  }
  .checkout-section h3 {
    font-size: 1.25rem;
  }
  .form-row {
    flex-direction: row;
    gap: 1rem;
  }
  .form-row .form-group {
    flex: 1;
  }
  .form-group label {
    font-size: 1rem;
  }
  .form-group input {
    padding: 0.875rem;
    font-size: 1rem;
  }
  .shipping-option-title {
    font-size: 1rem;
  }
  .shipping-option-desc {
    font-size: 1rem;
  }
  .form-check label {
    font-size: 1rem;
  }
  .order-summary {
    flex: 0 0 380px;
    padding: 1.5rem;
    top: 6rem;
  }
  .order-summary h3 {
    font-size: 1.25rem;
  }
  .order-item {
    font-size: 1rem;
  }
  .discount-input,
  .discount-btn {
    font-size: 1rem;
  }
  .summary-row {
    font-size: 1rem;
  }
  .summary-total {
    font-size: 1.4rem;
  }
  .place-order-btn {
    padding: 1.125rem;
    font-size: 1.1rem;
  }
  .place-order-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(255, 107, 0, 0.4);
  }
  .place-order-btn:active {
    transform: translateY(0);
  }
  .back-to-cart-btn {
    padding: 1rem;
    font-size: 1rem;
  }
  .back-to-cart-btn:hover {
    background-color: rgba(255, 107, 0, 0.1);
  }
  .back-to-cart-btn:active {
    transform: scale(0.98);
  }
  .discount-btn:hover {
    background-color: rgb(191.6244897959, 103.7306122449, 2.3755102041);
    transform: translateY(-1px);
  }
}
/* ========== ESTILOS PARA PASO DE PAGO ========== */
.payment-warning {
  background: rgba(242, 131, 3, 0.1);
  border-left: 4px solid #f28303;
  padding: 0.875rem;
  margin-bottom: 1rem;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #5a3921;
}
.payment-warning i {
  color: #f28303;
  font-size: 1.25rem;
}

.payment-options {
  margin-bottom: 1.5rem;
}

.payment-option {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border: 2px solid #f4f4f4;
  border-radius: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #ffffff;
}
.payment-option.active {
  border-color: #ff6b00;
  background-color: rgba(255, 107, 0, 0.05);
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}
.payment-option input[type=radio] {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  accent-color: #ff6b00;
  flex-shrink: 0;
  margin-top: 0.125rem;
}

.payment-option-details {
  flex: 1;
}

.payment-option-title {
  font-weight: 700;
  font-size: 1rem;
  color: #5a3921;
  margin-bottom: 0.25rem;
}

.payment-option-desc {
  font-size: 0.875rem;
  color: #2c3137;
  margin-bottom: 0.5rem;
}

.payment-logos {
  display: flex;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.payment-logos i {
  font-size: 1.75rem;
  color: #8f8f8f;
}

.payment-form .form-group {
  margin-bottom: 1rem;
}

.card-input-placeholder {
  padding: 0.875rem;
  border: 1px solid #dadada;
  border-radius: 0.5rem;
  background: #ffffff;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #8f8f8f;
  font-size: 0.875rem;
}
.card-input-placeholder i {
  font-size: 1.25rem;
  color: #ff6b00;
}
.card-input-placeholder .card-security {
  margin-left: auto;
  font-size: 0.75rem;
}

.card-note {
  font-size: 0.75rem;
  color: #2c3137;
  margin-top: 0.5rem;
  padding: 0.5rem;
  background: rgba(253, 173, 8, 0.05);
  border-radius: 0.375rem;
  border-left: 3px solid #fdad08;
}

/* ========== ESTILOS PARA PASO DE CONFIRMACIÓN ========== */
.confirmation-subtitle {
  font-size: 0.875rem;
  color: #2c3137;
  margin-bottom: 1.5rem;
}

.confirmation-summary {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.confirmation-block {
  background: rgba(253, 173, 8, 0.03);
  border: 1px solid #f4f4f4;
  border-radius: 0.75rem;
  padding: 1rem;
}
.confirmation-block h4 {
  font-size: 1rem;
  font-weight: 700;
  color: #5a3921;
  margin-bottom: 0.875rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.625rem;
  border-bottom: 1px solid #f4f4f4;
}
.confirmation-block h4 i {
  color: #ff6b00;
  font-size: 1rem;
}

.confirmation-content {
  font-size: 0.875rem;
  color: #5a3921;
}
.confirmation-content p {
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.confirmation-content p:last-child {
  margin-bottom: 0;
}
.confirmation-content p strong {
  font-weight: 700;
  color: #2c3137;
  min-width: 100px;
  display: inline-block;
}

.confirmation-row {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.confirmation-col strong {
  display: block;
  font-weight: 700;
  color: #2c3137;
  margin-bottom: 0.375rem;
}
.confirmation-col p {
  font-size: 0.875rem;
  color: #5a3921;
  line-height: 1.5;
}

.confirmation-notice {
  background: rgba(242, 131, 3, 0.1);
  border: 1px solid rgba(242, 131, 3, 0.2);
  border-radius: 0.5rem;
  padding: 0.875rem;
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-top: 1rem;
}
.confirmation-notice i {
  color: #f28303;
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.confirmation-notice p {
  font-size: 0.875rem;
  color: #5a3921;
  line-height: 1.5;
  margin: 0;
}

/* ========== DESKTOP (1024px+) ========== */
@media (min-width: 1024px) {
  .checkout-modal .modal-content {
    max-width: 1200px;
  }
  .checkout-form {
    padding: 2rem;
  }
  .order-summary {
    flex: 0 0 420px;
    padding: 2rem;
  }
  .confirmation-row {
    flex-direction: row;
    gap: 2rem;
  }
  .confirmation-col {
    flex: 1;
  }
}
.eg-payment-wizard {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
@media (min-width: 768px) {
  .eg-payment-wizard {
    flex-direction: row;
  }
}

.eg-payment-steps-container {
  flex: 1;
}

.eg-payment-steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.5rem 0.5rem;
  background: #fff;
  border-radius: 0.75rem;
  margin-bottom: 0.75rem;
  position: relative;
}
.eg-payment-steps::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 2rem;
  right: 2rem;
  height: 2px;
  background: #e0e0e0;
  transform: translateY(-50%);
  z-index: 0;
}

.eg-payment-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  flex: 1;
  position: relative;
  z-index: 1;
}
.eg-payment-step .eg-payment-step-circle {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: #e0e0e0;
  color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  border: 3px solid #fff;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.eg-payment-step .eg-payment-step-label {
  font-size: 0.75rem;
  color: #666;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  line-height: 1.2;
}
.eg-payment-step.active .eg-payment-step-circle {
  background: linear-gradient(135deg, #ff8c00 0%, #ffd700 100%);
  color: #fff;
  transform: scale(1.1);
  box-shadow: 0 4px 0.5rem rgba(255, 140, 0, 0.3);
}
.eg-payment-step.active .eg-payment-step-label {
  color: #ff8c00;
  font-weight: 700;
}
.eg-payment-step.completed .eg-payment-step-circle {
  background: #4caf50;
  color: #fff;
}
.eg-payment-step.completed .eg-payment-step-label {
  color: #4caf50;
}

.eg-payment-step-content {
  display: none;
  animation: fadeInUp 0.4s ease;
}
.eg-payment-step-content.active {
  display: block;
}

.eg-payment-summary {
  flex: 0 0 100%;
}
@media (min-width: 768px) {
  .eg-payment-summary {
    flex: 0 0 380px;
  }
}

/* Estilos para DataTables */
.dataTables_wrapper .dataTables_filter input {
  width: 100%;
  padding: 10px 15px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 14px;
  box-sizing: border-box;
  margin-bottom: 15px;
}
.dataTables_wrapper .dataTables_filter input:focus {
  outline: none;
  border-color: #ff8c00;
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}
.dataTables_wrapper .dataTables_paginate {
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  margin-top: 1rem;
}
.dataTables_wrapper .dataTables_paginate .paginate_button {
  padding: 0.5rem 0.75rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
  color: #666;
}
.dataTables_wrapper .dataTables_paginate .paginate_button:hover:not(.disabled) {
  background: #f5f5f5;
  border-color: #ff8c00;
  color: #ff8c00;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: linear-gradient(135deg, #ff8c00 0%, #ffd700 100%);
  color: #fff;
  border-color: #ff8c00;
}
.dataTables_wrapper .dataTables_paginate .paginate_button.disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table thead {
  background: #f8f9fa;
}
.cart-table thead th {
  padding: 1rem;
  text-align: left;
  font-weight: 600;
  color: #333;
  border-bottom: 2px solid #e0e0e0;
}
.cart-table thead th.sorting, .cart-table thead th.sorting_asc, .cart-table thead th.sorting_desc {
  cursor: pointer;
}
.cart-table thead th.sorting:hover, .cart-table thead th.sorting_asc:hover, .cart-table thead th.sorting_desc:hover {
  background: #e9ecef;
}
.cart-table tbody tr {
  border-bottom: 1px solid #e0e0e0;
}
.cart-table tbody tr:hover {
  background: #f8f9fa;
}
.cart-table tbody tr td {
  padding: 1rem;
  vertical-align: middle;
}

.cart-quantity-control {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.cart-quantity-control .cart-quantity-btn {
  width: 2rem;
  height: 2rem;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  background: #fff;
  color: #333;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
}
.cart-quantity-control .cart-quantity-btn:hover {
  background: #ff8c00;
  color: #fff;
  border-color: #ff8c00;
}
.cart-quantity-control .cart-quantity-input {
  width: 3rem;
  text-align: center;
  border: 1px solid #e0e0e0;
  border-radius: 0.5rem;
  padding: 0.5rem;
}

.remove-item-btn {
  background: #ff4444;
  color: #fff;
  border: none;
  padding: 0.5rem 1rem;
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.3s ease;
}
.remove-item-btn:hover {
  background: #cc0000;
}
.remove-item-btn i {
  margin-right: 0.25rem;
}

.discount-btn-minimal {
  padding: 0.5rem 1rem;
  background: #e0e0e0;
  border: none;
  border-radius: 0.5rem;
  cursor: not-allowed;
  opacity: 0.6;
}

/* Entrega Section - Estilo mejorado */
.checkout-section {
  background: #fff;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}
.checkout-section h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.25rem;
  font-weight: 700;
  color: #ff8c00;
  margin-bottom: 1.5rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f0f0f0;
}
.checkout-section h3 i {
  font-size: 1.5rem;
  color: #ff8c00;
}

/* Campos de formulario mejorados */
.form-group {
  margin-bottom: 1rem;
}
.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #333;
  margin-bottom: 0.25rem;
}
.form-group input,
.form-group select {
  width: 100%;
  padding: 0.5rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #fff;
}
.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: #ff8c00;
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}
.form-group input::-moz-placeholder, .form-group select::-moz-placeholder {
  color: #9ca3af;
}
.form-group input::placeholder,
.form-group select::placeholder {
  color: #9ca3af;
}
.form-group select {
  cursor: pointer;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3E%3Cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='M6 8l4 4 4-4'/%3E%3C/svg%3E");
  background-position: right 0.75rem center;
  background-repeat: no-repeat;
  background-size: 1.25rem;
  padding-right: 2.5rem;
}

.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.row > [class*=col-] {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

.col-2 {
  flex: 0 0 16.666667%;
  max-width: 16.666667%;
}

.col-3 {
  flex: 0 0 25%;
  max-width: 25%;
}

.col-4 {
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}

.col-5 {
  flex: 0 0 41.666667%;
  max-width: 41.666667%;
}

.col-6 {
  flex: 0 0 50%;
  max-width: 50%;
}

.col-10 {
  flex: 0 0 83.333333%;
  max-width: 83.333333%;
}

@media (max-width: 768px) {
  .row > [class*=col-] {
    flex: 0 0 100%;
    max-width: 100%;
    margin-bottom: 1rem;
  }
}
.checkout-security-message {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #92400e;
  font-weight: 500;
  font-size: 1rem;
}
.checkout-security-message i {
  color: #f59e0b;
  font-size: 1.25rem;
}

.payment-methods {
  margin-bottom: 1.5rem;
}

.payment-method {
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
}
.payment-method:hover {
  border-color: #ff8c00;
  background-color: #fff7ed;
}
.payment-method label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: #1f2937;
  margin: 0;
}
.payment-method label input[type=radio] {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  accent-color: #ff8c00;
  flex-shrink: 0;
}

.payment-card-icons {
  display: flex;
  gap: 0.5rem;
  margin-left: auto;
}
.payment-card-icons i {
  font-size: 2rem;
  color: #6b7280;
}
.payment-card-icons i.fa-cc-visa {
  color: #1434cb;
}
.payment-card-icons i.fa-cc-mastercard {
  color: #eb001b;
}
.payment-card-icons i.fa-cc-amex {
  color: #006fcf;
}

.payment-details {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

.numPayCard-form-group {
  width: 100%;
}
.numPayCard-form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 0.5rem;
}

.numPayCard-form-control {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background-color: #fff;
  transition: all 0.3s ease;
  min-height: 45px;
}
.numPayCard-form-control:focus-within {
  border-color: #ff8c00;
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}
.numPayCard-form-control.StripeElement--focus {
  border-color: #ff8c00;
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}
.numPayCard-form-control.StripeElement--invalid {
  border-color: #ef4444;
}

.card-errors {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  min-height: 1.25rem;
}

.card-brand {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}
.card-brand i {
  font-size: 1.5rem;
}

/* Shipping Options mejorado */
.shipping-options h4 {
  font-size: 1rem;
  font-weight: 600;
  color: #374151;
  margin-bottom: 1rem;
}

.shipping-option {
  display: flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  background-color: #fff;
}
.shipping-option:hover {
  border-color: #ff8c00;
  background-color: #fff7ed;
}
.shipping-option input[type=radio] {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  accent-color: #ff8c00;
  flex-shrink: 0;
  margin-right: 1rem;
}
.shipping-option input[type=radio]:checked ~ .shipping-option-details {
  color: #ff8c00;
}
.shipping-option:has(input:checked) {
  border-color: #ff8c00;
  background-color: #fff7ed;
  box-shadow: 0 0 0 3px rgba(255, 140, 0, 0.1);
}

.shipping-option-details {
  flex: 1;
}

.shipping-option-title {
  font-weight: 600;
  font-size: 1rem;
  color: #1f2937;
  margin-bottom: 0.25rem;
}

.shipping-option-desc {
  font-size: 0.875rem;
  color: #6b7280;
}

.shipping-option-price {
  font-weight: 700;
  font-size: 1rem;
  color: #ff8c00;
  white-space: nowrap;
}

/* Summary taxes */
.summary-taxes {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  background-color: #f9fafb;
  border-radius: 6px;
  font-size: 0.875rem;
  color: #6b7280;
  margin-top: 1rem;
}
.summary-taxes i {
  color: #10b981;
}

.wizard-navigation {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 2px solid #e5e7eb;
}
.wizard-navigation .wizard-btn {
  flex: 1;
  padding: 1rem 1.5rem;
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}
.wizard-navigation .wizard-btn i {
  font-size: 1.1rem;
}
.wizard-navigation .wizard-btn:active {
  transform: scale(0.98);
}
.wizard-navigation .wizard-btn-prev {
  background: #fff;
  color: #ff8c00;
  border: 2px solid #ff8c00;
}
.wizard-navigation .wizard-btn-prev:hover {
  background-color: #fff7ed;
}
.wizard-navigation .wizard-btn-next,
.wizard-navigation .wizard-btn-finish {
  background: linear-gradient(135deg, #ff8c00 0%, #ffd700 100%);
  color: #fff;
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
}
.wizard-navigation .wizard-btn-next:hover,
.wizard-navigation .wizard-btn-finish:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 140, 0, 0.4);
}

.checkout-modal .modal-content {
  max-width: 1400px;
}
@media (min-width: 1200px) {
  .checkout-modal .modal-content {
    width: 95%;
    margin: 2rem auto;
    border-radius: 12px;
  }
}

@media (min-width: 768px) {
  .eg-payment-wizard {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
  }
  .eg-payment-steps-container {
    flex: 1 1 65%;
  }
  .eg-payment-summary {
    flex: 0 0 380px;
    position: sticky;
    top: 3.5rem;
  }
}
.confirmation-container {
  max-width: 900px;
  margin: 0 auto;
}

.confirmation-header {
  text-align: center;
  margin-bottom: 2rem;
}
.confirmation-header .confirmation-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}
.confirmation-header .confirmation-icon i {
  font-size: 2rem;
  color: #fff;
}
.confirmation-header h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0;
  padding-bottom: 0;
}
.confirmation-header .confirmation-subtitle {
  font-size: 1rem;
  color: #6b7280;
  margin: 0;
}

.confirmation-sections {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.confirmation-section {
  background: #fff;
  border: 2px solid #e5e7eb;
  border-radius: 12px;
  padding: 1rem;
  transition: all 0.3s ease;
}
.confirmation-section:hover {
  border-color: #ff8c00;
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.1);
}
.confirmation-section h3 {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 1.1rem;
  font-weight: 700;
  color: #ff8c00;
  margin-bottom: 1rem;
  padding-bottom: 0.75rem;
  border-bottom: 2px solid #f3f4f6;
}
.confirmation-section h3 i {
  font-size: 1.25rem;
}

.confirmation-data p {
  margin: 0.75rem 0;
  color: #1f2937;
  line-height: 1.8;
  font-size: 1rem;
}
.confirmation-data p:first-child {
  margin-top: 0;
}
.confirmation-data p:last-child {
  margin-bottom: 0;
}
.confirmation-data p strong {
  color: #6b7280;
  font-weight: 600;
  display: inline-block;
  min-width: 80px;
}
.confirmation-data p span {
  color: #1f2937;
  font-weight: 500;
}
.confirmation-data .address-text {
  color: #1f2937;
  line-height: 1.8;
  font-size: 1rem;
}
.confirmation-data div {
  color: #1f2937;
  line-height: 1.8;
  font-size: 1rem;
}
.confirmation-data div strong {
  color: #6b7280;
  font-weight: 600;
}

.modal-footer {
  background: #fff;
  border-top: 2px solid #e5e7eb;
  padding: 1rem;
  position: sticky;
  bottom: 0;
  z-index: 10;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.05);
}
.modal-footer > div {
  width: 100%;
}
.modal-footer #boxCartProductosBtns {
  display: flex !important;
  margin: 0;
  width: 100%;
  margin-bottom: 12px;
}
.modal-footer #boxCartProductosBtns .col-9 {
  flex: 0 0 100%;
  max-width: 100%;
  padding: 0;
}
.modal-footer #boxCartProductosBtns .col-9 .security-notice {
  justify-content: flex-start;
  width: 100%;
  margin-bottom: 0;
}
.modal-footer #boxCartProductosBtns .col-3 {
  display: none !important;
}
.modal-footer #boxCartFinishBuyBtns {
  display: flex;
  flex-wrap: nowrap;
  align-items: center;
  gap: 12px;
  padding: 4px 0;
}
.modal-footer #boxCartFinishBuyBtns > div:first-child {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-right: auto;
  flex: 0 0 auto;
}
.modal-footer #boxCartFinishBuyBtns .back-to-cart-btn,
.modal-footer #boxCartFinishBuyBtns .place-order-btn {
  flex: 0 0 auto;
  width: auto;
  min-width: -moz-fit-content;
  min-width: fit-content;
  align-self: center;
}
.modal-footer #boxCartFinishBuyBtns #back-to-step-w,
.modal-footer #boxCartFinishBuyBtns #back-to-cart-btn,
.modal-footer #boxCartFinishBuyBtns #next-to-step-w,
.modal-footer #boxCartFinishBuyBtns #paymentNow {
  display: none !important;
}
.modal-footer #boxCartFinishBuyBtns[data-step="1"] #back-to-cart-btn {
  display: flex !important;
}
.modal-footer #boxCartFinishBuyBtns[data-step="1"] #next-to-step-w {
  display: flex !important;
}
.modal-footer #boxCartFinishBuyBtns[data-step="2"] #back-to-step-w, .modal-footer #boxCartFinishBuyBtns[data-step="3"] #back-to-step-w {
  display: flex !important;
}
.modal-footer #boxCartFinishBuyBtns[data-step="2"] #next-to-step-w, .modal-footer #boxCartFinishBuyBtns[data-step="3"] #next-to-step-w {
  display: flex !important;
}
.modal-footer #boxCartFinishBuyBtns[data-step="4"] #back-to-step-w {
  display: flex !important;
}
.modal-footer #boxCartFinishBuyBtns[data-step="4"] #paymentNow {
  display: flex !important;
}

.back-to-cart-btn {
  padding: 0.75rem 1.25rem;
  border: 2px solid #ff8c00;
  background: #fff;
  color: #ff8c00;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  align-items: center;
  gap: 0.5rem;
  white-space: nowrap;
  width: auto;
}
.back-to-cart-btn:hover {
  background: #fff7ed;
}
.back-to-cart-btn:active {
  transform: scale(0.98);
}
.back-to-cart-btn i {
  font-size: 0.9rem;
}
.back-to-cart-btn#next-to-step-w {
  background: #ff8c00;
  color: white;
  border-color: #ff8c00;
}
.back-to-cart-btn#next-to-step-w:hover {
  background: #e67e00;
  border-color: #e67e00;
}

.place-order-btn {
  padding: 0.5rem 1rem;
  border: none;
  background: linear-gradient(135deg, #ff8c00 0%, #ffd700 100%);
  color: #fff;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
  white-space: nowrap;
  width: auto;
}
.place-order-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 140, 0, 0.4);
}
.place-order-btn:active {
  transform: translateY(0);
}
.place-order-btn i {
  font-size: 1rem;
}

.security-notice {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #10b981;
  font-size: 0.875rem;
  font-weight: 500;
}
.security-notice i {
  font-size: 1.125rem;
}

.checkout-btn {
  padding: 0.875rem 1.75rem;
  border: none;
  background: linear-gradient(135deg, #ff8c00 0%, #ffd700 100%);
  color: #fff;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 4px 12px rgba(255, 140, 0, 0.3);
  white-space: nowrap;
}
.checkout-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 16px rgba(255, 140, 0, 0.4);
}
.checkout-btn i {
  font-size: 1rem;
}

/* Estilo de la Card de Producto */
.product-card {
  background-color: #f4f4f4;
  position: relative;
  border-radius: 0.75rem;
  border: 1px solid #f4f4f4;
  overflow: hidden;
  box-shadow: #2c3137;
  transition: transform 0.3s, box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  height: 100%;
  box-shadow: 0 0.5rem 0.5rem rgba(44, 49, 55, 0.1);
}
.product-card:hover {
  transform: translateY(-0.25rem);
  box-shadow: 0 0.5rem 1.25rem rgba(255, 107, 0, 0.25);
}
.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-image {
  background-color: white;
}
.product-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.25s ease;
}

.product-info {
  padding: 1rem;
  text-align: center;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.product-info h4 {
  color: #fdad08;
  font-weight: 700;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-size: 1.1rem;
}

.product-info .price {
  font-size: 1.4rem;
  font-weight: 800;
  color: #2c3137;
  margin-bottom: 1rem;
}

.season-badge {
  position: absolute;
  cursor: pointer;
  top: 0.5rem;
  left: 0.5rem;
  font-size: 1rem;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #f4f4f4;
  padding: 0.35rem;
  border-radius: 0.5rem;
}
.season-badge i {
  font-size: 1.25rem;
}
.season-badge:hover {
  background: #fdad08;
  color: #ffffff;
  box-shadow: 0 0 0 2px rgba(253, 173, 8, 0.3);
}

.add-to-cart-btn {
  display: block;
  width: 100%;
  background-color: #f28303;
  color: #f4f4f4;
  border: none;
  padding: 0.5rem;
  margin-top: auto;
  border-radius: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  transition: all-color 0.3s, transform 0.1s;
}

.add-to-cart-btn:hover {
  background-color: #38b1a8;
  transform: scale(1.02);
}

.add-to-cart-btn i {
  margin-right: 0.5rem;
}

/* Estilos para los botones de productos */
.product-title {
  font-size: 1.1rem;
  font-weight: 700;
  color: #5a3921;
  margin-bottom: 0;
  min-height: 2em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-description {
  font-size: 1rem;
  color: rgb(164.6341463415, 104.2682926829, 60.3658536585);
  margin-bottom: 0.75rem;
  min-height: 3em;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: #ff6b00;
  margin-bottom: 0.5rem;
}

.product-actions {
  display: flex;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
}

.product-button {
  flex: 1;
  background-color: #ff6b00;
  color: #ffffff;
  border: none;
  padding: 0.75rem 1.25rem;
  border-radius: 25px;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 0.25rem 0.5rem rgba(253, 173, 8, 0.15);
}
.product-button:hover:not(:disabled) {
  background-color: #e69c07;
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(253, 173, 8, 0.25);
}
.product-button:active:not(:disabled) {
  transform: translateY(0);
}
.product-button:disabled {
  background-color: #dadada;
  color: #2c3137;
  cursor: not-allowed;
  opacity: 0.6;
}
.product-button i {
  font-size: 1.5rem;
}
.product-button.secondary {
  background-color: transparent;
  color: #ff6b00;
  border: 1px solid #ff6b00;
  flex: 0 0 auto;
  width: 3rem;
  height: 3rem;
  padding: 0;
  box-shadow: none;
}
.product-button.secondary:hover {
  background-color: #f28303;
  color: white;
  transform: scale(1.1);
  box-shadow: 0 0.25rem 0.5rem rgba(253, 173, 8, 0.15);
}
.product-button.secondary:active {
  transform: scale(1);
}

.modal-product-content {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

/* Galería de imágenes */
.modal-product-gallery {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.main-image-container {
  position: relative;
  width: 100%;
  max-height: 60vh;
  aspect-ratio: 1;
  background-color: #f4f4f4;
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 0.25rem 0.5rem rgba(253, 173, 8, 0.15);
}
.main-image-container img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
}

.gallery-indicator {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  transform: translateX(-50%);
  background-color: rgba(44, 49, 55, 0.85);
  color: #ffffff;
  padding: 0.375rem 0.875rem;
  border-radius: 2rem;
  font-size: 0.75rem;
  font-weight: 600;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  z-index: 1;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(255, 255, 255, 0.95);
  color: #2c3137;
  border: none;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  font-size: 1.5rem;
  font-weight: 300;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0.25rem 0.5rem rgba(253, 173, 8, 0.15);
  z-index: 2;
}
.gallery-nav:active {
  transform: translateY(-50%) scale(0.9);
}
.gallery-nav.prev {
  left: 0.5rem;
}
.gallery-nav.next {
  right: 0.5rem;
}

.image-thumbnails {
  display: flex;
  gap: 0.5rem;
  overflow-x: auto;
  padding: 0.25rem 0;
  -webkit-overflow-scrolling: touch;
}
.image-thumbnails::-webkit-scrollbar {
  height: 4px;
}
.image-thumbnails::-webkit-scrollbar-track {
  background: #f4f4f4;
  border-radius: 2px;
}
.image-thumbnails::-webkit-scrollbar-thumb {
  background: #dadada;
  border-radius: 2px;
}

.thumbnail {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  border-radius: 0.375rem;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
  background-color: #f4f4f4;
  padding: 0.25rem;
}
.thumbnail.active {
  border-color: #ff6b00;
  box-shadow: 0 0 0 2px rgba(255, 107, 0, 0.2);
}

/* Información del producto */
.modal-product-info {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-name {
  font-size: 1.25rem;
  font-weight: 700;
  color: #5a3921;
  margin: 0;
  line-height: 1.3;
}

.product-price {
  font-size: 1.5rem;
  font-weight: 700;
  color: #ff6b00;
  margin: 0.25rem 0;
}

.product-info-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid #f4f4f4;
  font-size: 0.875rem;
}
.product-info-item strong {
  color: #5a3921;
  font-weight: 600;
}
.product-info-item:last-of-type {
  border-bottom: none;
}

.availability {
  padding: 0.625rem 0.875rem;
  border-radius: 0.5rem;
  font-weight: 600;
  font-size: 0.875rem;
  text-align: center;
  margin: 0.25rem 0;
}
.availability.available {
  background-color: rgba(16, 185, 129, 0.1);
  color: #059669;
  border: 1px solid rgba(16, 185, 129, 0.3);
}
.availability.unavailable {
  background-color: rgba(239, 68, 68, 0.1);
  color: #dc2626;
  border: 1px solid rgba(239, 68, 68, 0.3);
}

/* Pestañas del producto */
.product-tabs-container {
  margin-top: 0.75rem;
  position: relative;
}

.product-tabs {
  /* Mostrar scrollbar en móvil */
  scrollbar-width: thin;
  scrollbar-color: #fedc7f #f4f4f4;
}
.product-tabs {
  border-bottom: 2px solid #f4f4f4;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.5rem;
  padding: 0.5rem 0;
  margin-bottom: 0.75rem;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}
.product-tabs::-webkit-scrollbar {
  height: 0.375rem;
}
.product-tabs::-webkit-scrollbar-track {
  background: #f4f4f4;
  border-radius: 0.5rem;
}
.product-tabs::-webkit-scrollbar-thumb {
  background: #fedc7f;
  border-radius: 0.5rem;
}
.product-tabs::-webkit-scrollbar-thumb:hover {
  background: #fdad08;
}
.product-tabs .nav-item {
  flex-shrink: 0;
}
.product-tabs .nav-link {
  border: none;
  background: transparent;
  color: #5a3921;
  font-weight: 600;
  font-size: 0.75rem;
  padding: 0.5rem 0.75rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: 0.5rem 0.5rem 0 0;
  border-bottom: 3px solid transparent;
  width: 100%;
  text-align: center;
  white-space: nowrap;
}
.product-tabs .nav-link:active {
  background-color: rgba(255, 107, 0, 0.1);
}
.product-tabs .nav-link.active {
  color: #ff6b00;
  border-bottom-color: #ff6b00;
  background-color: rgba(255, 107, 0, 0.05);
}

.tab-content {
  min-height: 120px;
  padding: 0.875rem;
  background-color: #f4f4f4;
  border-radius: 0.5rem;
}
.tab-content .tab-pane {
  font-size: 0.875rem;
  line-height: 1.6;
  color: #5a3921;
}
.tab-content .tab-pane p {
  margin: 0;
}

/* Reseñas */
.review-item {
  background-color: #ffffff;
  padding: 0.875rem;
  border-radius: 0.5rem;
  margin-bottom: 0.75rem;
  box-shadow: 0 0.25rem 0.5rem rgba(253, 173, 8, 0.15);
}
.review-item:last-child {
  margin-bottom: 0;
}

.review-form .user-icon {
  background: #b0b0b0;
}
.review-form .star-rating .rating-star .far.fa-star::before {
  color: #b0b0b0;
}

.review-header {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  margin-bottom: 0.625rem;
}

.review-user-info {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.review-user-info strong {
  font-weight: 600;
  color: #5a3921;
  font-size: 0.875rem;
}

.user-icon {
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b00 0%, #fdad08 100%);
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.875rem;
  flex-shrink: 0;
}

.review-rating {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.star-rating {
  color: #fbbf24;
  font-size: 0.875rem;
  letter-spacing: 1px;
}
.star-rating.rating-selector {
  display: flex;
  gap: 4px;
}
.star-rating.rating-selector .rating-star {
  cursor: pointer;
  transition: transform 0.2s;
}
.star-rating.rating-selector .rating-star:hover {
  transform: scale(1.2);
}
.star-rating.rating-selector .rating-star i {
  font-size: 1.25rem;
}
.star-rating.rating-selector .rating-star i.hover-active {
  color: #fbbf24;
}

.review-date {
  font-size: 0.875rem;
  color: #6b7280;
  font-weight: 500;
}

.review-comment {
  color: #5a3921;
  line-height: 1.6;
  margin: 0;
  font-size: 0.875rem;
}

.add-to-cart-container {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.quantity-selector {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 2px solid #f4f4f4;
  border-radius: 2rem;
  padding: 0.25rem;
  background-color: #ffffff;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.quantity-btn {
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background-color: #ff6b00;
  color: #ffffff;
  border-radius: 50%;
  cursor: pointer;
  font-size: 1.25rem;
  font-weight: 600;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quantity-btn:active {
  transform: scale(0.9);
}

.quantity-input {
  width: 3rem;
  border: none;
  text-align: center;
  font-weight: 600;
  font-size: 1.1rem;
  color: #5a3921;
  background: transparent;
}
.quantity-input:focus {
  outline: none;
}
.quantity-input::-webkit-inner-spin-button, .quantity-input::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

.btn-add-to-cart {
  width: 100%;
  background: linear-gradient(135deg, #ff6b00 0%, #fdad08 100%);
  color: #ffffff;
  border: none;
  padding: 0.875rem 1.25rem;
  border-radius: 2rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  box-shadow: 0 0.25rem 0.5rem rgba(253, 173, 8, 0.15);
}
.btn-add-to-cart:active:not(:disabled) {
  transform: scale(0.98);
}
.btn-add-to-cart:disabled {
  background: #dadada;
  cursor: not-allowed;
  opacity: 0.6;
}
.btn-add-to-cart i {
  font-size: 1.1rem;
}

/* ========== TABLET (768px+) ========== */
@media (min-width: 768px) {
  .modal-product-content {
    padding: 1rem;
    gap: 1.5rem;
  }
  .modal-product-gallery {
    gap: 1rem;
  }
  .main-image-container {
    border-radius: 1rem;
  }
  .gallery-indicator {
    bottom: 1rem;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
  }
  .gallery-nav {
    width: 3rem;
    height: 3rem;
    font-size: 2rem;
  }
  .gallery-nav:hover {
    background-color: #ffffff;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 0.5rem 1rem rgba(253, 173, 8, 0.25);
  }
  .gallery-nav.prev {
    left: 1rem;
  }
  .gallery-nav.next {
    right: 1rem;
  }
  .image-thumbnails {
    gap: 0.75rem;
    padding: 0.5rem 0;
  }
  .image-thumbnails::-webkit-scrollbar {
    height: 6px;
  }
  .thumbnail {
    width: 80px;
    height: 80px;
  }
  .thumbnail:hover {
    border-color: #dadada;
    transform: scale(1.05);
  }
  .thumbnail.active {
    box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.2);
  }
  .modal-product-info {
    gap: 1rem;
  }
  .product-name {
    font-size: 1.75rem;
  }
  .product-price {
    font-size: 2rem;
    margin: 0.5rem 0;
  }
  .product-info-item {
    flex-direction: row;
    align-items: center;
    font-size: 0.95rem;
  }
  .product-info-item strong {
    min-width: 120px;
  }
  .availability {
    padding: 0.75rem 1rem;
    font-size: 0.95rem;
    margin: 0.5rem 0;
  }
  .product-tabs-container {
    margin-top: 1rem;
  }
  .product-tabs {
    gap: 0.5rem;
    margin-bottom: 1rem;
    overflow-x: visible;
    padding-bottom: 0;
    scrollbar-width: none;
  }
  .product-tabs::-webkit-scrollbar {
    display: none;
  }
  .product-tabs .nav-item {
    flex: 1;
  }
  .product-tabs .nav-link {
    font-size: 0.875rem;
    padding: 0.75rem 1rem;
  }
  .product-tabs .nav-link:hover {
    background-color: rgba(255, 107, 0, 0.1);
    color: #ff6b00;
  }
  .tab-content {
    min-height: 150px;
    padding: 1rem;
  }
  .tab-content .tab-pane {
    font-size: 0.95rem;
  }
  .review-item {
    padding: 1rem;
    margin-bottom: 1rem;
  }
  .review-header {
    flex-direction: row;
    align-items: center;
    gap: 1rem;
  }
  .review-user-info {
    flex: 1;
  }
  .review-user-info strong {
    font-size: 1rem;
  }
  .user-icon {
    width: 2.5rem;
    height: 2.5rem;
    font-size: 1.1rem;
  }
  .review-rating {
    justify-content: flex-start;
  }
  .star-rating {
    font-size: 1rem;
    letter-spacing: 2px;
  }
  .review-date {
    font-size: 0.875rem;
  }
  .review-comment {
    font-size: 0.95rem;
  }
  .add-to-cart-container {
    flex-direction: row;
    gap: 1rem;
    margin-top: 1.5rem;
  }
  .quantity-selector {
    margin: 0;
  }
  .btn-add-to-cart {
    flex: 1;
    padding: 0.75rem 1.5rem;
  }
  .btn-add-to-cart:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 0.5rem 1rem rgba(253, 173, 8, 0.25);
  }
  .btn-add-to-cart:active:not(:disabled) {
    transform: translateY(0);
  }
  .quantity-btn:hover {
    background-color: #e69c07;
    transform: scale(1.1);
  }
  .quantity-btn:active {
    transform: scale(0.95);
  }
}
/* ========== DESKTOP (992px+) ========== */
@media (min-width: 992px) {
  .modal-product-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    padding: 1rem;
  }
  .product-name {
    font-size: 2rem;
  }
  .product-price {
    font-size: 2.25rem;
  }
}
#preview-modal {
  -webkit-backdrop-filter: blur(8px);
          backdrop-filter: blur(8px);
  background-color: rgba(44, 49, 55, 0.95);
}
#preview-modal .modal-content {
  background: linear-gradient(145deg, #ffffff 0%, #fff8f0 100%);
  border: none;
  border-radius: 1.5rem;
  box-shadow: 0 20px 60px rgba(44, 49, 55, 0.3);
  overflow: hidden;
  max-width: 900px;
  margin: 2rem auto;
}
#preview-modal .modal-header {
  background: linear-gradient(135deg, #fdad08 0%, #f28303 100%);
  color: #ffffff;
  padding: 1.5rem 2rem;
  border: none;
  position: relative;
  overflow: hidden;
  margin: 0;
}
#preview-modal .modal-header::before {
  content: "";
  position: absolute;
  top: -50%;
  right: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
  animation: shimmer 3s ease-in-out infinite;
}
#preview-modal .modal-header h2 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  text-shadow: 0 2px 4px rgba(44, 49, 55, 0.2);
  position: relative;
  z-index: 1;
}
#preview-modal .modal-header h2 i {
  margin-right: 0.5rem;
  animation: pulse 2s ease-in-out infinite;
}
#preview-modal .modal-header .close {
  background: rgba(255, 255, 255, 0.2);
  color: #ffffff;
  border: 2px solid rgba(255, 255, 255, 0.3);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  font-size: 1.5rem;
  transition: all 0.3s ease;
  position: relative;
  z-index: 1;
}
#preview-modal .modal-header .close:hover {
  background: #ffffff;
  color: #fdad08;
  transform: rotate(90deg);
  box-shadow: 0 4px 12px rgba(44, 49, 55, 0.2);
}
#preview-modal .modal-body {
  padding: 0;
  background: linear-gradient(180deg, #2c3137 0%, rgb(55.3333333333, 61.6212121212, 69.1666666667) 100%);
  position: relative;
  max-height: 65vh;
}
#preview-modal .modal-footer {
  background: linear-gradient(180deg, #fff8f0 0%, #ffffff 100%);
  padding: 2rem;
  border: none;
  box-shadow: 0 -4px 20px rgba(44, 49, 55, 0.1);
}

@keyframes shimmer {
  0%, 100% {
    transform: translate(0, 0) rotate(0deg);
  }
  50% {
    transform: translate(-10%, -10%) rotate(10deg);
  }
}
@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
}
/* Contenedor de imagen principal */
.egummy-main-image-container {
  width: 100%;
  height: 45vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background: white;
  position: relative;
  overflow: hidden;
  padding: 2rem;
}
.egummy-main-image-container::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: repeating-linear-gradient(45deg, rgba(253, 173, 8, 0.5), rgba(253, 173, 8, 0.5) 10px, rgba(253, 173, 8, 0.1) 10px, rgba(253, 173, 8, 0.1) 20px);
  pointer-events: none;
  opacity: 0.05;
}
@media (min-width: 768px) {
  .egummy-main-image-container {
    height: 50vh;
    padding: 3rem;
  }
}
@media (min-width: 1200px) {
  .egummy-main-image-container {
    height: 55vh;
  }
}

.egummy-main-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  border-radius: 1rem;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 1;
  padding: 1rem;
}
.egummy-main-image:hover {
  transform: scale(1.02);
}

/* Slider de miniaturas */
.egummy-slider-container {
  position: relative;
  width: 100%;
  overflow: hidden;
  padding: 0 3.5rem;
}

.egummy-slider-imgs {
  display: flex;
  gap: 1rem;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 1rem 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: #fdad08 #f4f4f4;
}
.egummy-slider-imgs::-webkit-scrollbar {
  height: 6px;
}
.egummy-slider-imgs::-webkit-scrollbar-track {
  background: #f4f4f4;
  border-radius: 10px;
}
.egummy-slider-imgs::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, #fdad08 0%, #f28303 100%);
  border-radius: 10px;
}
.egummy-slider-imgs::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(90deg, #f28303 0%, #ff6b00 100%);
}

.egummy-slider-item {
  flex-shrink: 0;
  width: 90px;
  height: 90px;
  border-radius: 1rem;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid #f4f4f4;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  background: #ffffff;
  position: relative;
}
.egummy-slider-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(253, 173, 8, 0.1) 0%, transparent 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .egummy-slider-item {
    width: 110px;
    height: 110px;
  }
}
.egummy-slider-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  padding: 0.5rem;
  transition: transform 0.3s ease;
}
.egummy-slider-item:hover {
  border-color: #fdad08;
  transform: translateY(-5px);
  box-shadow: 0 8px 20px rgba(253, 173, 8, 0.3);
}
.egummy-slider-item:hover::before {
  opacity: 1;
}
.egummy-slider-item:hover img {
  transform: scale(1.1);
}
.egummy-slider-item.active {
  border-color: #ff6b00;
  transform: translateY(-5px) scale(1.05);
}
.egummy-slider-item.active::before {
  opacity: 1;
  background: linear-gradient(135deg, rgba(255, 107, 0, 0.15) 0%, transparent 100%);
}

/* Navegación del slider */
.egummy-slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #ffffff 0%, #fff8f0 100%);
  color: #fdad08;
  border: 2px solid #fdad08;
  width: 3rem;
  height: 3rem;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 10;
  box-shadow: 0 4px 15px rgba(253, 173, 8, 0.3);
}
.egummy-slider-nav::before {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  border-radius: 50%;
  background: linear-gradient(135deg, #fdad08 0%, #ff6b00 100%);
  z-index: -1;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.egummy-slider-nav:hover {
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-50%) scale(1.15);
  box-shadow: 0 6px 20px rgba(255, 107, 0, 0.5);
}
.egummy-slider-nav:hover::before {
  opacity: 1;
}
.egummy-slider-nav:active {
  transform: translateY(-50%) scale(1.05);
}
.egummy-slider-nav i {
  font-size: 1.1rem;
  font-weight: 700;
}
.egummy-slider-nav.egummy-slider-prev {
  left: 0.5rem;
}
.egummy-slider-nav.egummy-slider-next {
  right: 0.5rem;
}

/* Indicadores (dots) */
.egummy-slider-indicator {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.75rem;
  padding: 1.5rem 0 0.5rem;
}

.egummy-slider-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #dadada;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  border: 2px solid transparent;
}
.egummy-slider-dot::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 0;
  height: 0;
  border-radius: 50%;
  background: radial-gradient(circle, #fdad08 0%, #ff6b00 100%);
  transition: all 0.3s ease;
}
.egummy-slider-dot:hover {
  background: linear-gradient(135deg, #fdad08 0%, #f28303 100%);
  transform: scale(1.3);
  box-shadow: 0 0 10px rgba(253, 173, 8, 0.5);
}
.egummy-slider-dot.active {
  width: 32px;
  height: 12px;
  border-radius: 6px;
  background: linear-gradient(90deg, #fdad08 0%, #ff6b00 100%);
  border-color: rgba(255, 107, 0, 0.3);
  box-shadow: 0 0 15px rgba(255, 107, 0, 0.4);
}
.egummy-slider-dot.active::before {
  width: 100%;
  height: 100%;
  opacity: 0.3;
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% {
    transform: translate(-50%, -50%) scale(0.8);
    opacity: 0.3;
  }
  50% {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.1;
  }
}
.noty_theme__gummy {
  position: fixed;
  top: 2.5rem;
  right: 1.25rem;
  z-index: 10000;
  min-width: 320px;
  max-width: 400px;
  border-radius: 0.75rem;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15), 0 4px 12px rgba(0, 0, 0, 0.1);
  animation: slideInRight 0.3s ease-out;
  -webkit-backdrop-filter: blur(10px);
          backdrop-filter: blur(10px);
  overflow: hidden;
}
.noty_theme__gummy::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: currentColor;
}

.noty_body {
  padding: 1.25rem 1.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  font-size: 0.95rem;
  font-weight: 500;
  line-height: 1.5;
}
.noty_body span {
  flex: 1;
  color: inherit;
}

.noty_close_button {
  background: transparent;
  border: none;
  color: inherit;
  opacity: 0.6;
  cursor: pointer;
  padding: 0.25rem;
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 0.375rem;
  transition: all 0.2s ease;
  flex-shrink: 0;
}
.noty_close_button:hover {
  opacity: 1;
  background: rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
}
.noty_close_button i {
  font-size: 0.875rem;
}

/* Tipos de notificaciones */
.noty_type__success {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
}
.noty_type__success::before {
  background: linear-gradient(180deg, #34d399 0%, #10b981 100%);
}
.noty_type__success .noty_body::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.5rem;
  margin-right: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.noty_type__error {
  background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
  color: white;
}
.noty_type__error::before {
  background: linear-gradient(180deg, #f87171 0%, #ef4444 100%);
}
.noty_type__error .noty_body::before {
  content: "\f057";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.5rem;
  margin-right: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.noty_type__warning {
  background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
  color: white;
}
.noty_type__warning::before {
  background: linear-gradient(180deg, #fbbf24 0%, #f59e0b 100%);
}
.noty_type__warning .noty_body::before {
  content: "\f071";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.5rem;
  margin-right: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

.noty_type__info {
  background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
  color: white;
}
.noty_type__info::before {
  background: linear-gradient(180deg, #60a5fa 0%, #3b82f6 100%);
}
.noty_type__info .noty_body::before {
  content: "\f05a";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 1.5rem;
  margin-right: 0.75rem;
  color: rgba(255, 255, 255, 0.9);
}

/* Animaciones */
@keyframes slideInRight {
  from {
    transform: translateX(120%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes slideOutRight {
  from {
    transform: translateX(0);
    opacity: 1;
  }
  to {
    transform: translateX(120%);
    opacity: 0;
  }
}
/* Responsive */
@media (max-width: 768px) {
  .noty_theme__gummy {
    right: 1rem;
    left: 1rem;
    min-width: auto;
    max-width: none;
    top: 1rem;
  }
  .noty_body {
    padding: 1rem;
    font-size: 0.875rem;
  }
}
.noty_theme__gummy:nth-child(2) {
  top: calc(1.25rem + 80px);
}

.noty_theme__gummy:nth-child(3) {
  top: calc(1.25rem + 160px);
}

.noty_theme__gummy:nth-child(4) {
  top: calc(1.25rem + 240px);
}

.noty_theme__gummy:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2), 0 6px 16px rgba(0, 0, 0, 0.15);
}

.maintenance-page {
  background: linear-gradient(135deg, #fff8f0 0%, #ffe8d6 50%, #fff8f0 100%);
  color: #5a3921;
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
  font-family: "Poppins", sans-serif;
}
.maintenance-page * {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

.maintenance-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  background: linear-gradient(135deg, #ff6b00 0%, #fdad08 100%);
  opacity: 0.08;
}

.floating-candies {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  pointer-events: none;
  z-index: 0;
}

.candy {
  position: absolute;
  width: 50px;
  height: 50px;
  font-size: 2.5rem;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  animation: floatUp 20s infinite linear;
  filter: drop-shadow(0 4px 8px rgba(44, 49, 55, 0.15));
  top: -200px;
}
.candy:nth-child(2n) {
  animation-duration: 25s;
}
.candy:nth-child(3n) {
  animation-duration: 18s;
}
.candy:nth-child(4n) {
  animation-duration: 22s;
}
.candy:nth-child(5n) {
  animation-duration: 28s;
}

@keyframes floatUp {
  0% {
    transform: translateY(-200px) rotate(0deg) scale(0.8);
    opacity: 0;
  }
  5% {
    opacity: 0.6;
  }
  95% {
    opacity: 0.6;
  }
  100% {
    transform: translateY(calc(100vh + 100px)) rotate(720deg) scale(1.2);
    opacity: 0;
  }
}
.maintenance-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  text-align: center;
  position: relative;
  z-index: 1;
}

.maintenance-logo-container {
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeInDown 1s ease;
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.maintenance-logo-img {
  width: 200px;
  height: 200px;
  margin-bottom: 1.5rem;
  animation: pulse 3s infinite ease-in-out;
  filter: drop-shadow(0 10px 25px rgba(253, 173, 8, 0.3));
}
.maintenance-logo-img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.maintenance-logo h1 {
  font-size: 4rem;
  font-weight: 900;
  color: #fdad08;
  text-shadow: 0 5px 20px rgba(253, 173, 8, 0.3);
  letter-spacing: -1px;
}
.maintenance-logo h1 span {
  color: #5a3921;
}

@keyframes pulse {
  0%, 100% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.08);
  }
}
.maintenance-content {
  background: rgba(255, 255, 255, 0.95);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 0 0 2rem 2rem;
  padding: 3.5rem;
  box-shadow: 0 20px 60px rgba(44, 49, 55, 0.12), 0 0 0 1px rgba(253, 173, 8, 0.1);
  max-width: 850px;
  margin-bottom: 2.5rem;
  border: 2px solid rgba(253, 173, 8, 0.15);
  border-top: none;
  animation: fadeInUp 1s ease 0.3s both;
  position: relative;
}
.maintenance-content::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  right: 0;
  height: 12px;
  background: linear-gradient(90deg, #ff6b00 0%, #fdad08 50%, #f28303 100%);
  border-radius: 0;
}
.maintenance-content h2 {
  font-size: 2.75rem;
  margin-bottom: 1.5rem;
  color: #5a3921;
  font-weight: 700;
  line-height: 1.2;
  animation: shining 3s ease-in-out infinite;
}
@keyframes shining {
  0%, 100% {
    filter: brightness(1) drop-shadow(0 2px 10px rgba(253, 173, 8, 0.2));
  }
  50% {
    filter: brightness(1.2) drop-shadow(0 5px 20px rgba(253, 173, 8, 0.5));
  }
}
.maintenance-content p {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: rgb(71.3414634146, 45.1829268293, 26.1585365854);
  font-weight: 400;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.maintenance-countdown {
  display: none;
  justify-content: center;
  gap: 1.5rem;
  margin: 2.5rem 0;
  flex-wrap: wrap;
}

.countdown-item {
  background: linear-gradient(135deg, #ff6b00 0%, #fdad08 100%);
  color: #ffffff;
  padding: 1.5rem;
  border-radius: 1rem;
  min-width: 90px;
  box-shadow: 0 8px 20px rgba(253, 173, 8, 0.3);
  transition: transform 0.3s ease;
}
.countdown-item:hover {
  transform: translateY(-5px) scale(1.05);
}

.countdown-number {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
  text-shadow: 0 2px 4px rgba(44, 49, 55, 0.2);
}

.countdown-label {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-top: 0.5rem;
  font-weight: 600;
}

.toggle-countdown {
  background: linear-gradient(135deg, #fdad08 0%, #f28303 100%);
  color: #ffffff;
  border: none;
  padding: 0.875rem 2rem;
  border-radius: 3rem;
  cursor: pointer;
  margin: 1.5rem 0;
  font-weight: 700;
  font-size: 1rem;
  transition: all 0.3s ease;
  box-shadow: 0 6px 15px rgba(253, 173, 8, 0.3);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.toggle-countdown:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 25px rgba(253, 173, 8, 0.4);
}
.toggle-countdown:active {
  transform: translateY(-1px);
}

.maintenance-newsletter {
  margin-top: 2.5rem;
  width: 100%;
}
.maintenance-newsletter h3 {
  margin-bottom: 1.5rem;
  color: #5a3921;
  font-size: 1.5rem;
  font-weight: 600;
}

.newsletter-form {
  display: flex;
  max-width: 550px;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(44, 49, 55, 0.1);
  border-radius: 3rem;
}

.newsletter-input {
  flex: 1;
  padding: 0.75rem 1.75rem;
  border: 2px solid #fdad08;
  border-right: none;
  border-radius: 1rem 0 0 1rem;
  background: #ffffff;
  font-size: 1.05rem;
  outline: none;
  transition: all 0.3s ease;
  font-family: "Poppins", sans-serif;
}
.newsletter-input::-moz-placeholder {
  color: #b0b0b0;
}
.newsletter-input::placeholder {
  color: #b0b0b0;
}
.newsletter-input:focus {
  border-color: #ff6b00;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

.newsletter-button {
  padding: 0.75rem 2.5rem;
  background: linear-gradient(135deg, #ff6b00 0%, #fdad08 100%);
  color: #ffffff;
  border: none;
  border-radius: 0 1rem 1rem 0;
  cursor: pointer;
  font-weight: 700;
  font-size: 1.05rem;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}
.newsletter-button:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px rgba(255, 107, 0, 0.4);
}
.newsletter-button:active {
  transform: scale(0.98);
}

.maintenance-social-links {
  display: flex;
  gap: 1.25rem;
  margin-top: 2.5rem;
  animation: fadeIn 1s ease 0.6s both;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.maintenance-social-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: transparent;
  color: #ffffff;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}
.maintenance-social-link img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.3s ease;
}
.maintenance-social-link:hover {
  transform: translateY(-8px) scale(1.1);
}
.maintenance-social-link:hover img {
  filter: brightness(1.2);
}
.maintenance-social-link[data-social=twitter] {
  background: #ffffff;
  padding: 8px;
  box-shadow: 0 4px 10px rgba(44, 49, 55, 0.15);
}
.maintenance-social-link[data-social=twitter]:hover {
  box-shadow: 0 8px 20px rgba(44, 49, 55, 0.25);
}

/* Footer */
.maintenance-footer {
  margin-top: 2.5rem;
  text-align: center;
  color: rgb(150.5, 150.5, 150.5);
  font-size: 0.95rem;
  font-weight: 500;
  animation: fadeIn 1s ease 0.9s both;
  background: transparent;
}
.maintenance-footer p {
  margin: 0;
  background: transparent;
}

/* Responsive */
@media (max-width: 768px) {
  .maintenance-content {
    padding: 2.5rem 1.75rem;
    border-radius: 1.5rem;
  }
  .maintenance-logo h1 {
    font-size: 3rem;
  }
  .maintenance-content h2 {
    font-size: 2rem;
  }
  .maintenance-content p {
    font-size: 1.1rem;
  }
  .maintenance-countdown {
    gap: 1rem;
  }
  .countdown-item {
    min-width: 75px;
    padding: 1.25rem 1rem;
  }
  .countdown-number {
    font-size: 2rem;
  }
  .newsletter-form {
    flex-direction: column;
    border-radius: 1rem;
    box-shadow: none;
  }
  .newsletter-input,
  .newsletter-button {
    border-radius: 1rem;
    width: 100%;
    margin-bottom: 0.75rem;
    border: 2px solid #fdad08;
    box-shadow: 0 4px 10px rgba(44, 49, 55, 0.08);
  }
  .maintenance-social-link {
    width: 50px;
    height: 50px;
    font-size: 1.1rem;
  }
  .maintenance-logo-img {
    width: 150px;
    height: 150px;
  }
  .candy {
    font-size: 2rem;
    width: 40px;
    height: 40px;
  }
}
@media (max-width: 480px) {
  .maintenance-container {
    padding: 1.5rem;
  }
  .maintenance-logo h1 {
    font-size: 2.5rem;
  }
  .maintenance-content {
    padding: 2rem 1.5rem;
  }
  .maintenance-content h2 {
    font-size: 1.75rem;
  }
  .countdown-item {
    min-width: 70px;
    padding: 1rem 0.75rem;
  }
  .countdown-number {
    font-size: 1.75rem;
  }

  .order-header {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .counter-badge {
    padding: 2px 6px;
    font-size: 0.65rem;
    min-width: 28px;
  }
}
/* Estilos para el modal de prueba de Stripe */
#stripe-test-modal .modal-header {
  background: linear-gradient(135deg, #ff6b00 0%, #fdad08 100%);
  color: #fff;
  padding: 1rem;
  border-bottom: none;
}

#stripe-test-modal .modal-header h2 {
  color: #fff;
  font-size: 1.4rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0;
}

#stripe-test-modal .modal-header h2 i {
  font-size: 1.5rem;
}

#stripe-test-modal .modal-header .close {
  color: #fff;
  opacity: 0.9;
  font-size: 2rem;
}

#stripe-test-modal .modal-header .close:hover {
  color: #fff;
  opacity: 1;
}

#stripe-test-modal .modal-body {
  padding: 1.5rem;
  background-color: #fff8f0;
}

#stripe-test-modal .checkout-section {
  background: #fff;
  padding: 1.5rem;
  border-radius: 0.75rem;
  box-shadow: 0 0.25rem 0.5rem rgba(253, 173, 8, 0.15);
}

#stripe-test-modal .checkout-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #5a3921;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 2px solid #f4f4f4;
}

#stripe-test-modal .checkout-section h3 i {
  color: #ff6b00;
  font-size: 1.2rem;
}

#stripe-test-modal .checkout-security-message {
  background: #fef3c7;
  border-left: 4px solid #f59e0b;
  padding: 1rem 1.25rem;
  border-radius: 6px;
  margin-bottom: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  color: #92400e;
  font-weight: 500;
  font-size: 1rem;
}

#stripe-test-modal .checkout-security-message i {
  color: #f59e0b;
  font-size: 1.25rem;
}

#stripe-test-modal .payment-methods {
  margin-bottom: 1.5rem;
}

#stripe-test-modal .payment-method {
  border: 2px solid #e5e7eb;
  border-radius: 0.5rem;
  padding: 0.75rem 1rem;
  margin-bottom: 1rem;
  transition: all 0.3s ease;
  cursor: pointer;
  background: #fff;
}

#stripe-test-modal .payment-method:hover {
  border-color: #ff8c00;
  background-color: #fff7ed;
}

#stripe-test-modal .payment-method label {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  cursor: pointer;
  font-weight: 600;
  font-size: 1rem;
  color: #1f2937;
  margin: 0;
}

#stripe-test-modal .payment-method label input[type=radio] {
  width: 1.25rem;
  height: 1.25rem;
  cursor: pointer;
  accent-color: #ff8c00;
  flex-shrink: 0;
}

#stripe-test-modal .payment-card-icons {
  display: flex;
  gap: 0.5rem;
  margin-left: auto;
}

#stripe-test-modal .payment-card-icons i {
  font-size: 2rem;
  color: #6b7280;
}

#stripe-test-modal .payment-card-icons i.fa-cc-visa {
  color: #1434cb;
}

#stripe-test-modal .payment-card-icons i.fa-cc-mastercard {
  color: #eb001b;
}

#stripe-test-modal .payment-card-icons i.fa-cc-amex {
  color: #006fcf;
}

#stripe-test-modal .payment-details {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid #e5e7eb;
}

#stripe-test-modal .form-group {
  margin-bottom: 1rem;
}

#stripe-test-modal .form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.9rem;
  color: #374151;
  margin-bottom: 0.5rem;
}

#stripe-test-modal .form-group input {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  font-size: 1rem;
  transition: all 0.3s ease;
  background-color: #fff;
  color: #5a3921;
}

#stripe-test-modal .form-group input::-moz-placeholder {
  color: #8f8f8f;
}

#stripe-test-modal .form-group input::placeholder {
  color: #8f8f8f;
}

#stripe-test-modal .form-group input:focus {
  outline: none;
  border-color: #ff6b00;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

#stripe-test-modal #card-element {
  padding: 12px;
  border: 1px solid #d1d5db;
  border-radius: 6px;
  background-color: white;
  transition: all 0.3s ease;
}

#stripe-test-modal #card-element.StripeElement--focus {
  border-color: #ff6b00;
  box-shadow: 0 0 0 3px rgba(255, 107, 0, 0.1);
}

#stripe-test-modal #card-element.StripeElement--invalid {
  border-color: #ef4444;
}

#stripe-test-modal #card-errors {
  color: #ef4444;
  font-size: 0.875rem;
  margin-top: 0.5rem;
  min-height: 1.25rem;
}

#stripe-test-modal #card-brand {
  display: flex;
  justify-content: flex-end;
  margin-top: 0.5rem;
}

#stripe-test-modal #card-brand img {
  max-width: 24px;
  max-height: 24px;
}

#stripe-test-modal .btn-primary {
  width: 100%;
  background: linear-gradient(135deg, #ff6b00 0%, #fdad08 100%);
  color: #fff;
  border: none;
  padding: 1rem;
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 0.5rem 1rem rgba(253, 173, 8, 0.25);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

#stripe-test-modal .btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 0.5rem 1rem rgba(255, 107, 0, 0.4);
}

#stripe-test-modal .btn-primary:active {
  transform: translateY(0);
}

#stripe-test-modal .btn-primary:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
}

#stripe-test-modal .btn-primary i {
  font-size: 1.1rem;
}

@media (min-width: 768px) {
  #stripe-test-modal .modal-content {
    max-width: 720px;
    margin: 2vh auto;
    border-radius: 1rem;
  }
  #stripe-test-modal .modal-header h2 {
    font-size: 1.75rem;
  }
  #stripe-test-modal .modal-body {
    padding: 2rem;
  }
  #stripe-test-modal .checkout-section {
    padding: 2rem;
  }
  #stripe-test-modal .checkout-section h3 {
    font-size: 1.5rem;
  }
  #stripe-test-modal .form-group label {
    font-size: 1rem;
  }
  #stripe-test-modal .btn-primary {
    padding: 1.125rem;
    font-size: 1.1rem;
  }
}
/*--------------------Boxes--------------------*/
.box-reset {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.box-reset .row {
  margin-left: 0;
  margin-right: 0;
}
.box-reset .row > * {
  padding-left: 0;
  padding-right: 0;
}

.box-table {
  display: table;
}
.box-table > div {
  display: table-cell;
  float: none;
  vertical-align: middle;
}

.child-inline > * {
  display: inline-block;
  vertical-align: middle;
}

/*--------------------Hide Elements--------------------*/
.hide {
  display: none;
}

.hidden {
  display: none;
  visibility: hidden;
}

@media screen and (min-width: 240px) and (max-width: 359px) {
  .hidden-bs {
    display: none !important;
  }
}
@media screen and (min-width: 240px) {
  .hidden-bs-up {
    display: none !important;
  }
}
@media screen and (max-width: 359px) {
  .hidden-bs-down {
    display: none !important;
  }
}
@media screen and (min-width: 360px) and (max-width: 479px) {
  .hidden-xs {
    display: none !important;
  }
}
@media screen and (min-width: 360px) {
  .hidden-xs-up {
    display: none !important;
  }
}
@media screen and (max-width: 479px) {
  .hidden-xs-down {
    display: none !important;
  }
}
@media screen and (min-width: 480px) and (max-width: 767px) {
  .hidden-sm {
    display: none !important;
  }
}
@media screen and (min-width: 480px) {
  .hidden-sm-up {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .hidden-sm-down {
    display: none !important;
  }
}
@media screen and (min-width: 768px) and (max-width: 1023px) {
  .hidden-md {
    display: none !important;
  }
}
@media screen and (min-width: 768px) {
  .hidden-md-up {
    display: none !important;
  }
}
@media screen and (max-width: 1023px) {
  .hidden-md-down {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) and (max-width: 1279px) {
  .hidden-lg {
    display: none !important;
  }
}
@media screen and (min-width: 1024px) {
  .hidden-lg-up {
    display: none !important;
  }
}
@media screen and (max-width: 1279px) {
  .hidden-lg-down {
    display: none !important;
  }
}
@media screen and (min-width: 1280px) and (max-width: 1439px) {
  .hidden-xl {
    display: none !important;
  }
}
@media screen and (min-width: 1280px) {
  .hidden-xl-up {
    display: none !important;
  }
}
@media screen and (max-width: 1439px) {
  .hidden-xl-down {
    display: none !important;
  }
}
@media screen and (min-width: 1440px) and (max-width: 190.25rem) {
  .hidden-xxl {
    display: none !important;
  }
}
@media screen and (min-width: 1440px) {
  .hidden-xxl-up {
    display: none !important;
  }
}
@media screen and (max-width: 190.25rem) {
  .hidden-xxl-down {
    display: none !important;
  }
}
@media screen and (min-width: 191.25rem) and (max-width: 10000px) {
  .hidden-hd {
    display: none !important;
  }
}
@media screen and (min-width: 191.25rem) {
  .hidden-hd-up {
    display: none !important;
  }
}
@media screen and (max-width: 10000px) {
  .hidden-hd-down {
    display: none !important;
  }
}
/*--------------------Padding & Margin Classes--------------------*/
.padding-5 {
  padding: 5px;
}

.padding-10 {
  padding: 10px;
}

.padding-15 {
  padding: 15px;
}

.padding-20 {
  padding: 20px;
}

.padding-25 {
  padding: 25px;
}

.padding-30 {
  padding: 30px;
}

.padding-35 {
  padding: 35px;
}

.padding-40 {
  padding: 40px;
}

.padding-45 {
  padding: 45px;
}

.padding-50 {
  padding: 50px;
}

.padding-55 {
  padding: 55px;
}

.padding-60 {
  padding: 60px;
}

.padding-65 {
  padding: 65px;
}

.padding-70 {
  padding: 70px;
}

.padding-75 {
  padding: 75px;
}

.padding-80 {
  padding: 80px;
}

.padding-85 {
  padding: 85px;
}

.padding-90 {
  padding: 90px;
}

.padding-95 {
  padding: 95px;
}

.padding-100 {
  padding: 100px;
}

.padding-t-5 {
  padding-top: 5px;
}

.padding-t-10 {
  padding-top: 10px;
}

.padding-t-15 {
  padding-top: 15px;
}

.padding-t-20 {
  padding-top: 20px;
}

.padding-t-25 {
  padding-top: 25px;
}

.padding-t-30 {
  padding-top: 30px;
}

.padding-t-35 {
  padding-top: 35px;
}

.padding-t-40 {
  padding-top: 40px;
}

.padding-t-45 {
  padding-top: 45px;
}

.padding-t-50 {
  padding-top: 50px;
}

.padding-t-55 {
  padding-top: 55px;
}

.padding-t-60 {
  padding-top: 60px;
}

.padding-t-65 {
  padding-top: 65px;
}

.padding-t-70 {
  padding-top: 70px;
}

.padding-t-75 {
  padding-top: 75px;
}

.padding-t-80 {
  padding-top: 80px;
}

.padding-t-85 {
  padding-top: 85px;
}

.padding-t-90 {
  padding-top: 90px;
}

.padding-t-95 {
  padding-top: 95px;
}

.padding-t-100 {
  padding-top: 100px;
}

.padding-b-5 {
  padding-bottom: 5px;
}

.padding-b-10 {
  padding-bottom: 10px;
}

.padding-b-15 {
  padding-bottom: 15px;
}

.padding-b-20 {
  padding-bottom: 20px;
}

.padding-b-25 {
  padding-bottom: 25px;
}

.padding-b-30 {
  padding-bottom: 30px;
}

.padding-b-35 {
  padding-bottom: 35px;
}

.padding-b-40 {
  padding-bottom: 40px;
}

.padding-b-45 {
  padding-bottom: 45px;
}

.padding-b-50 {
  padding-bottom: 50px;
}

.padding-b-55 {
  padding-bottom: 55px;
}

.padding-b-60 {
  padding-bottom: 60px;
}

.padding-b-65 {
  padding-bottom: 65px;
}

.padding-b-70 {
  padding-bottom: 70px;
}

.padding-b-75 {
  padding-bottom: 75px;
}

.padding-b-80 {
  padding-bottom: 80px;
}

.padding-b-85 {
  padding-bottom: 85px;
}

.padding-b-90 {
  padding-bottom: 90px;
}

.padding-b-95 {
  padding-bottom: 95px;
}

.padding-b-100 {
  padding-bottom: 100px;
}

.padding-l-5 {
  padding-left: 5px;
}

.padding-l-10 {
  padding-left: 10px;
}

.padding-l-15 {
  padding-left: 15px;
}

.padding-l-20 {
  padding-left: 20px;
}

.padding-l-25 {
  padding-left: 25px;
}

.padding-l-30 {
  padding-left: 30px;
}

.padding-l-35 {
  padding-left: 35px;
}

.padding-l-40 {
  padding-left: 40px;
}

.padding-l-45 {
  padding-left: 45px;
}

.padding-l-50 {
  padding-left: 50px;
}

.padding-l-55 {
  padding-left: 55px;
}

.padding-l-60 {
  padding-left: 60px;
}

.padding-l-65 {
  padding-left: 65px;
}

.padding-l-70 {
  padding-left: 70px;
}

.padding-l-75 {
  padding-left: 75px;
}

.padding-l-80 {
  padding-left: 80px;
}

.padding-l-85 {
  padding-left: 85px;
}

.padding-l-90 {
  padding-left: 90px;
}

.padding-l-95 {
  padding-left: 95px;
}

.padding-l-100 {
  padding-left: 100px;
}

.padding-r-5 {
  padding-right: 5px;
}

.padding-r-10 {
  padding-right: 10px;
}

.padding-r-15 {
  padding-right: 15px;
}

.padding-r-20 {
  padding-right: 20px;
}

.padding-r-25 {
  padding-right: 25px;
}

.padding-r-30 {
  padding-right: 30px;
}

.padding-r-35 {
  padding-right: 35px;
}

.padding-r-40 {
  padding-right: 40px;
}

.padding-r-45 {
  padding-right: 45px;
}

.padding-r-50 {
  padding-right: 50px;
}

.padding-r-55 {
  padding-right: 55px;
}

.padding-r-60 {
  padding-right: 60px;
}

.padding-r-65 {
  padding-right: 65px;
}

.padding-r-70 {
  padding-right: 70px;
}

.padding-r-75 {
  padding-right: 75px;
}

.padding-r-80 {
  padding-right: 80px;
}

.padding-r-85 {
  padding-right: 85px;
}

.padding-r-90 {
  padding-right: 90px;
}

.padding-r-95 {
  padding-right: 95px;
}

.padding-r-100 {
  padding-right: 100px;
}

.margin-5 {
  margin: 5px;
}

.margin-10 {
  margin: 10px;
}

.margin-15 {
  margin: 15px;
}

.margin-20 {
  margin: 20px;
}

.margin-25 {
  margin: 25px;
}

.margin-30 {
  margin: 30px;
}

.margin-35 {
  margin: 35px;
}

.margin-40 {
  margin: 40px;
}

.margin-45 {
  margin: 45px;
}

.margin-50 {
  margin: 50px;
}

.margin-55 {
  margin: 55px;
}

.margin-60 {
  margin: 60px;
}

.margin-65 {
  margin: 65px;
}

.margin-70 {
  margin: 70px;
}

.margin-75 {
  margin: 75px;
}

.margin-80 {
  margin: 80px;
}

.margin-85 {
  margin: 85px;
}

.margin-90 {
  margin: 90px;
}

.margin-95 {
  margin: 95px;
}

.margin-100 {
  margin: 100px;
}

.margin-t-5 {
  margin-top: 5px;
}

.margin-t-10 {
  margin-top: 10px;
}

.margin-t-15 {
  margin-top: 15px;
}

.margin-t-20 {
  margin-top: 20px;
}

.margin-t-25 {
  margin-top: 25px;
}

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

.margin-t-35 {
  margin-top: 35px;
}

.margin-t-40 {
  margin-top: 40px;
}

.margin-t-45 {
  margin-top: 45px;
}

.margin-t-50 {
  margin-top: 50px;
}

.margin-t-55 {
  margin-top: 55px;
}

.margin-t-60 {
  margin-top: 60px;
}

.margin-t-65 {
  margin-top: 65px;
}

.margin-t-70 {
  margin-top: 70px;
}

.margin-t-75 {
  margin-top: 75px;
}

.margin-t-80 {
  margin-top: 80px;
}

.margin-t-85 {
  margin-top: 85px;
}

.margin-t-90 {
  margin-top: 90px;
}

.margin-t-95 {
  margin-top: 95px;
}

.margin-t-100 {
  margin-top: 100px;
}

.margin-b-5 {
  margin-bottom: 5px;
}

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

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

.margin-b-20 {
  margin-bottom: 20px;
}

.margin-b-25 {
  margin-bottom: 25px;
}

.margin-b-30 {
  margin-bottom: 30px;
}

.margin-b-35 {
  margin-bottom: 35px;
}

.margin-b-40 {
  margin-bottom: 40px;
}

.margin-b-45 {
  margin-bottom: 45px;
}

.margin-b-50 {
  margin-bottom: 50px;
}

.margin-b-55 {
  margin-bottom: 55px;
}

.margin-b-60 {
  margin-bottom: 60px;
}

.margin-b-65 {
  margin-bottom: 65px;
}

.margin-b-70 {
  margin-bottom: 70px;
}

.margin-b-75 {
  margin-bottom: 75px;
}

.margin-b-80 {
  margin-bottom: 80px;
}

.margin-b-85 {
  margin-bottom: 85px;
}

.margin-b-90 {
  margin-bottom: 90px;
}

.margin-b-95 {
  margin-bottom: 95px;
}

.margin-b-100 {
  margin-bottom: 100px;
}

.margin-l-5 {
  margin-left: 5px;
}

.margin-l-10 {
  margin-left: 10px;
}

.margin-l-15 {
  margin-left: 15px;
}

.margin-l-20 {
  margin-left: 20px;
}

.margin-l-25 {
  margin-left: 25px;
}

.margin-l-30 {
  margin-left: 30px;
}

.margin-l-35 {
  margin-left: 35px;
}

.margin-l-40 {
  margin-left: 40px;
}

.margin-l-45 {
  margin-left: 45px;
}

.margin-l-50 {
  margin-left: 50px;
}

.margin-l-55 {
  margin-left: 55px;
}

.margin-l-60 {
  margin-left: 60px;
}

.margin-l-65 {
  margin-left: 65px;
}

.margin-l-70 {
  margin-left: 70px;
}

.margin-l-75 {
  margin-left: 75px;
}

.margin-l-80 {
  margin-left: 80px;
}

.margin-l-85 {
  margin-left: 85px;
}

.margin-l-90 {
  margin-left: 90px;
}

.margin-l-95 {
  margin-left: 95px;
}

.margin-l-100 {
  margin-left: 100px;
}

.margin-r-5 {
  margin-right: 5px;
}

.margin-r-10 {
  margin-right: 10px;
}

.margin-r-15 {
  margin-right: 15px;
}

.margin-r-20 {
  margin-right: 20px;
}

.margin-r-25 {
  margin-right: 25px;
}

.margin-r-30 {
  margin-right: 30px;
}

.margin-r-35 {
  margin-right: 35px;
}

.margin-r-40 {
  margin-right: 40px;
}

.margin-r-45 {
  margin-right: 45px;
}

.margin-r-50 {
  margin-right: 50px;
}

.margin-r-55 {
  margin-right: 55px;
}

.margin-r-60 {
  margin-right: 60px;
}

.margin-r-65 {
  margin-right: 65px;
}

.margin-r-70 {
  margin-right: 70px;
}

.margin-r-75 {
  margin-right: 75px;
}

.margin-r-80 {
  margin-right: 80px;
}

.margin-r-85 {
  margin-right: 85px;
}

.margin-r-90 {
  margin-right: 90px;
}

.margin-r-95 {
  margin-right: 95px;
}

.margin-r-100 {
  margin-right: 100px;
}

.padding-v-5 {
  padding-top: 5px;
  padding-bottom: 5px;
}

.padding-v-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}

.padding-v-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}

.padding-v-20 {
  padding-top: 20px;
  padding-bottom: 20px;
}

.padding-v-25 {
  padding-top: 25px;
  padding-bottom: 25px;
}

.padding-v-30 {
  padding-top: 30px;
  padding-bottom: 30px;
}

.padding-v-35 {
  padding-top: 35px;
  padding-bottom: 35px;
}

.padding-v-40 {
  padding-top: 40px;
  padding-bottom: 40px;
}

.padding-v-45 {
  padding-top: 45px;
  padding-bottom: 45px;
}

.padding-v-50 {
  padding-top: 50px;
  padding-bottom: 50px;
}

.padding-v-55 {
  padding-top: 55px;
  padding-bottom: 55px;
}

.padding-v-60 {
  padding-top: 60px;
  padding-bottom: 60px;
}

.padding-v-65 {
  padding-top: 65px;
  padding-bottom: 65px;
}

.padding-v-70 {
  padding-top: 70px;
  padding-bottom: 70px;
}

.padding-v-75 {
  padding-top: 75px;
  padding-bottom: 75px;
}

.padding-v-80 {
  padding-top: 80px;
  padding-bottom: 80px;
}

.padding-v-85 {
  padding-top: 85px;
  padding-bottom: 85px;
}

.padding-v-90 {
  padding-top: 90px;
  padding-bottom: 90px;
}

.padding-v-95 {
  padding-top: 95px;
  padding-bottom: 95px;
}

.padding-v-100 {
  padding-top: 100px;
  padding-bottom: 100px;
}

.padding-h-5 {
  padding-left: 5px;
  padding-right: 5px;
}

.padding-h-10 {
  padding-left: 10px;
  padding-right: 10px;
}

.padding-h-15 {
  padding-left: 15px;
  padding-right: 15px;
}

.padding-h-20 {
  padding-left: 20px;
  padding-right: 20px;
}

.padding-h-25 {
  padding-left: 25px;
  padding-right: 25px;
}

.padding-h-30 {
  padding-left: 30px;
  padding-right: 30px;
}

.padding-h-35 {
  padding-left: 35px;
  padding-right: 35px;
}

.padding-h-40 {
  padding-left: 40px;
  padding-right: 40px;
}

.padding-h-45 {
  padding-left: 45px;
  padding-right: 45px;
}

.padding-h-50 {
  padding-left: 50px;
  padding-right: 50px;
}

.padding-h-55 {
  padding-left: 55px;
  padding-right: 55px;
}

.padding-h-60 {
  padding-left: 60px;
  padding-right: 60px;
}

.padding-h-65 {
  padding-left: 65px;
  padding-right: 65px;
}

.padding-h-70 {
  padding-left: 70px;
  padding-right: 70px;
}

.padding-h-75 {
  padding-left: 75px;
  padding-right: 75px;
}

.padding-h-80 {
  padding-left: 80px;
  padding-right: 80px;
}

.padding-h-85 {
  padding-left: 85px;
  padding-right: 85px;
}

.padding-h-90 {
  padding-left: 90px;
  padding-right: 90px;
}

.padding-h-95 {
  padding-left: 95px;
  padding-right: 95px;
}

.padding-h-100 {
  padding-left: 100px;
  padding-right: 100px;
}

.margin-v-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.margin-v-10 {
  margin-top: 10px;
  margin-bottom: 10px;
}

.margin-v-15 {
  margin-top: 15px;
  margin-bottom: 15px;
}

.margin-v-20 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.margin-v-25 {
  margin-top: 25px;
  margin-bottom: 25px;
}

.margin-v-30 {
  margin-top: 30px;
  margin-bottom: 30px;
}

.margin-v-35 {
  margin-top: 35px;
  margin-bottom: 35px;
}

.margin-v-40 {
  margin-top: 40px;
  margin-bottom: 40px;
}

.margin-v-45 {
  margin-top: 45px;
  margin-bottom: 45px;
}

.margin-v-50 {
  margin-top: 50px;
  margin-bottom: 50px;
}

.margin-v-55 {
  margin-top: 55px;
  margin-bottom: 55px;
}

.margin-v-60 {
  margin-top: 60px;
  margin-bottom: 60px;
}

.margin-v-65 {
  margin-top: 65px;
  margin-bottom: 65px;
}

.margin-v-70 {
  margin-top: 70px;
  margin-bottom: 70px;
}

.margin-v-75 {
  margin-top: 75px;
  margin-bottom: 75px;
}

.margin-v-80 {
  margin-top: 80px;
  margin-bottom: 80px;
}

.margin-v-85 {
  margin-top: 85px;
  margin-bottom: 85px;
}

.margin-v-90 {
  margin-top: 90px;
  margin-bottom: 90px;
}

.margin-v-95 {
  margin-top: 95px;
  margin-bottom: 95px;
}

.margin-v-100 {
  margin-top: 100px;
  margin-bottom: 100px;
}

.margin-h-5 {
  margin-left: 5px;
  margin-right: 5px;
}

.margin-h-10 {
  margin-left: 10px;
  margin-right: 10px;
}

.margin-h-15 {
  margin-left: 15px;
  margin-right: 15px;
}

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

.margin-h-25 {
  margin-left: 25px;
  margin-right: 25px;
}

.margin-h-30 {
  margin-left: 30px;
  margin-right: 30px;
}

.margin-h-35 {
  margin-left: 35px;
  margin-right: 35px;
}

.margin-h-40 {
  margin-left: 40px;
  margin-right: 40px;
}

.margin-h-45 {
  margin-left: 45px;
  margin-right: 45px;
}

.margin-h-50 {
  margin-left: 50px;
  margin-right: 50px;
}

.margin-h-55 {
  margin-left: 55px;
  margin-right: 55px;
}

.margin-h-60 {
  margin-left: 60px;
  margin-right: 60px;
}

.margin-h-65 {
  margin-left: 65px;
  margin-right: 65px;
}

.margin-h-70 {
  margin-left: 70px;
  margin-right: 70px;
}

.margin-h-75 {
  margin-left: 75px;
  margin-right: 75px;
}

.margin-h-80 {
  margin-left: 80px;
  margin-right: 80px;
}

.margin-h-85 {
  margin-left: 85px;
  margin-right: 85px;
}

.margin-h-90 {
  margin-left: 90px;
  margin-right: 90px;
}

.margin-h-95 {
  margin-left: 95px;
  margin-right: 95px;
}

.margin-h-100 {
  margin-left: 100px;
  margin-right: 100px;
}

/*--------------------Borders--------------------*/
.border-primary {
  border: 1px solid #fdad08;
}

.border-v-primary {
  border-top: 1px solid #fdad08;
  border-bottom: 1px solid #fdad08;
}

.border-t-primary {
  border-top: 1px solid #fdad08;
}

.border-b-primary {
  border-bottom: 1px solid #fdad08;
}

.border-h-primary {
  border-left: 1px solid #fdad08;
  border-right: 1px solid #fdad08;
}

.border-l-primary {
  border-left: 1px solid #fdad08;
}

.border-r-primary {
  border-right: 1px solid #fdad08;
}

.border-secondary {
  border: 1px solid #f28303;
}

.border-v-secondary {
  border-top: 1px solid #f28303;
  border-bottom: 1px solid #f28303;
}

.border-t-secondary {
  border-top: 1px solid #f28303;
}

.border-b-secondary {
  border-bottom: 1px solid #f28303;
}

.border-h-secondary {
  border-left: 1px solid #f28303;
  border-right: 1px solid #f28303;
}

.border-l-secondary {
  border-left: 1px solid #f28303;
}

.border-r-secondary {
  border-right: 1px solid #f28303;
}

.border-dark {
  border: 1px solid #2c3137;
}

.border-v-dark {
  border-top: 1px solid #2c3137;
  border-bottom: 1px solid #2c3137;
}

.border-t-dark {
  border-top: 1px solid #2c3137;
}

.border-b-dark {
  border-bottom: 1px solid #2c3137;
}

.border-h-dark {
  border-left: 1px solid #2c3137;
  border-right: 1px solid #2c3137;
}

.border-l-dark {
  border-left: 1px solid #2c3137;
}

.border-r-dark {
  border-right: 1px solid #2c3137;
}

.border-white {
  border: 1px solid white;
}

.border-v-white {
  border-top: 1px solid white;
  border-bottom: 1px solid white;
}

.border-t-white {
  border-top: 1px solid white;
}

.border-b-white {
  border-bottom: 1px solid white;
}

.border-h-white {
  border-left: 1px solid white;
  border-right: 1px solid white;
}

.border-l-white {
  border-left: 1px solid white;
}

.border-r-white {
  border-right: 1px solid white;
}

.border-black {
  border: 1px solid black;
}

.border-v-black {
  border-top: 1px solid black;
  border-bottom: 1px solid black;
}

.border-t-black {
  border-top: 1px solid black;
}

.border-b-black {
  border-bottom: 1px solid black;
}

.border-h-black {
  border-left: 1px solid black;
  border-right: 1px solid black;
}

.border-l-black {
  border-left: 1px solid black;
}

.border-r-black {
  border-right: 1px solid black;
}

/*--------------------Center--------------------*/
.absolute-center {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: inherit;
}

.vertical-center {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.horizontal-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.horizontal-center-auto {
  margin-left: auto;
  margin-right: auto;
}

/*--------------------Generic Classes--------------------*/
*.float-left {
  float: left;
}

*.float-right {
  float: right;
}

*.clear-both {
  clear: both;
}

*.clearfix {
  content: "";
  display: block;
  clear: both;
}

*.num-font {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  white-space: nowrap;
}

*.llamar {
  cursor: default;
}
*.llamar:hover {
  text-decoration: none;
  color: none;
}

.content-stand {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
  border: 1px dotted rgb(218.5, 218.5, 218.5);
  margin-bottom: 0.5rem;
}

span.mensaje {
  font-size: 18pt;
  font-size: 1.5rem;
  color: rgb(52.6829268293, 33.3658536585, 19.3170731707);
}

/*--------------------Typography--------------------*/
.font-title {
  font-family: "Poppins", sans-serif;
}

.font-body {
  font-family: "Poppins", sans-serif;
}

.font-number {
  font-family: "Poppins", sans-serif;
}

.font-2 {
  font-size: 2pt;
  font-size: 0.1666666667rem;
}

.font-4 {
  font-size: 4pt;
  font-size: 0.3333333333rem;
}

.font-6 {
  font-size: 6pt;
  font-size: 0.5rem;
}

.font-8 {
  font-size: 8pt;
  font-size: 0.6666666667rem;
}

.font-10 {
  font-size: 10pt;
  font-size: 0.8333333333rem;
}

.font-12 {
  font-size: 12pt;
  font-size: 1rem;
}

.font-14 {
  font-size: 14pt;
  font-size: 1.1666666667rem;
}

.font-16 {
  font-size: 16pt;
  font-size: 1.3333333333rem;
}

.font-18 {
  font-size: 18pt;
  font-size: 1.5rem;
}

.font-20 {
  font-size: 20pt;
  font-size: 1.6666666667rem;
}

.font-22 {
  font-size: 22pt;
  font-size: 1.8333333333rem;
}

.font-24 {
  font-size: 24pt;
  font-size: 2rem;
}

.font-26 {
  font-size: 26pt;
  font-size: 2.1666666667rem;
}

.font-28 {
  font-size: 28pt;
  font-size: 2.3333333333rem;
}

.font-30 {
  font-size: 30pt;
  font-size: 2.5rem;
}

.font-32 {
  font-size: 32pt;
  font-size: 2.6666666667rem;
}

.font-34 {
  font-size: 34pt;
  font-size: 2.8333333333rem;
}

.font-36 {
  font-size: 36pt;
  font-size: 3rem;
}

.font-38 {
  font-size: 38pt;
  font-size: 3.1666666667rem;
}

.font-40 {
  font-size: 40pt;
  font-size: 3.3333333333rem;
}

.font-42 {
  font-size: 42pt;
  font-size: 3.5rem;
}

.font-44 {
  font-size: 44pt;
  font-size: 3.6666666667rem;
}

.font-46 {
  font-size: 46pt;
  font-size: 3.8333333333rem;
}

.font-48 {
  font-size: 48pt;
  font-size: 4rem;
}

.font-50 {
  font-size: 50pt;
  font-size: 4.1666666667rem;
}

.font-52 {
  font-size: 52pt;
  font-size: 4.3333333333rem;
}

.font-54 {
  font-size: 54pt;
  font-size: 4.5rem;
}

.font-56 {
  font-size: 56pt;
  font-size: 4.6666666667rem;
}

.font-58 {
  font-size: 58pt;
  font-size: 4.8333333333rem;
}

.font-60 {
  font-size: 60pt;
  font-size: 5rem;
}

.font-62 {
  font-size: 62pt;
  font-size: 5.1666666667rem;
}

.font-64 {
  font-size: 64pt;
  font-size: 5.3333333333rem;
}

.font-66 {
  font-size: 66pt;
  font-size: 5.5rem;
}

.font-68 {
  font-size: 68pt;
  font-size: 5.6666666667rem;
}

.font-70 {
  font-size: 70pt;
  font-size: 5.8333333333rem;
}

.font-72 {
  font-size: 72pt;
  font-size: 6rem;
}

.font-74 {
  font-size: 74pt;
  font-size: 6.1666666667rem;
}

.font-76 {
  font-size: 76pt;
  font-size: 6.3333333333rem;
}

.font-78 {
  font-size: 78pt;
  font-size: 6.5rem;
}

.font-80 {
  font-size: 80pt;
  font-size: 6.6666666667rem;
}

.font-82 {
  font-size: 82pt;
  font-size: 6.8333333333rem;
}

.font-84 {
  font-size: 84pt;
  font-size: 7rem;
}

.font-86 {
  font-size: 86pt;
  font-size: 7.1666666667rem;
}

.font-88 {
  font-size: 88pt;
  font-size: 7.3333333333rem;
}

.font-90 {
  font-size: 90pt;
  font-size: 7.5rem;
}

.font-92 {
  font-size: 92pt;
  font-size: 7.6666666667rem;
}

.font-94 {
  font-size: 94pt;
  font-size: 7.8333333333rem;
}

.font-96 {
  font-size: 96pt;
  font-size: 8rem;
}

.font-98 {
  font-size: 98pt;
  font-size: 8.1666666667rem;
}

.font-100 {
  font-size: 100pt;
  font-size: 8.3333333333rem;
}

.font-thin {
  font-weight: 100;
}

.font-x-light {
  font-weight: 200;
}

.font-light {
  font-weight: 300;
}

.font-regular {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600;
}

.font-bold {
  font-weight: 700;
}

.font-x-bold {
  font-weight: 800;
}

.font-black {
  font-weight: 900;
}

.font-primary {
  color: #fdad08 !important;
}

.font-secondary {
  color: #f28303 !important;
}

.font-dark {
  color: #2c3137 !important;
}

.font-white {
  color: white !important;
}

.font-black {
  color: black !important;
}

.font-lowercase {
  text-transform: lowercase;
}

.font-uppercase {
  text-transform: uppercase;
}

.font-capitalize {
  text-transform: capitalize;
}

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

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

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

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

.text-nowrap {
  white-space: nowrap;
}

/*--------------------Unordered Lists--------------------*/
ul.unordered-list {
  padding-left: 1.5em;
  list-style-type: disc;
}

/*--------------------Ordered Lists--------------------*/
ol.ordered-list {
  padding-left: 30px;
  list-style-type: decimal-leading-zero;
}

/*--------------------Images--------------------*/
.img-center {
  max-width: 100%;
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.img-cien {
  width: 100%;
  display: block;
}

/*--------------------Rules--------------------*/
.rule-primary {
  height: 1px;
  background-color: #fdad08;
}

.rule-secondary {
  height: 1px;
  background-color: #f28303;
}

.rule-dark {
  height: 1px;
  background-color: #2c3137;
}

.rule-white {
  height: 1px;
  background-color: white;
}

.rule-black {
  height: 1px;
  background-color: black;
}

/*--------------------Backgrounds--------------------*/
.bg-primary {
  background-color: #fdad08;
}

.bg-primary-opacity-10 {
  background-color: rgba(253, 173, 8, 0.1);
}

.bg-primary-opacity-20 {
  background-color: rgba(253, 173, 8, 0.2);
}

.bg-primary-opacity-30 {
  background-color: rgba(253, 173, 8, 0.3);
}

.bg-primary-opacity-40 {
  background-color: rgba(253, 173, 8, 0.4);
}

.bg-primary-opacity-50 {
  background-color: rgba(253, 173, 8, 0.5);
}

.bg-primary-opacity-60 {
  background-color: rgba(253, 173, 8, 0.6);
}

.bg-primary-opacity-70 {
  background-color: rgba(253, 173, 8, 0.7);
}

.bg-primary-opacity-80 {
  background-color: rgba(253, 173, 8, 0.8);
}

.bg-primary-opacity-90 {
  background-color: rgba(253, 173, 8, 0.9);
}

.bg-primary-opacity-100 {
  background-color: #fdad08;
}

.bg-secondary {
  background-color: #f28303;
}

.bg-secondary-opacity-10 {
  background-color: rgba(242, 131, 3, 0.1);
}

.bg-secondary-opacity-20 {
  background-color: rgba(242, 131, 3, 0.2);
}

.bg-secondary-opacity-30 {
  background-color: rgba(242, 131, 3, 0.3);
}

.bg-secondary-opacity-40 {
  background-color: rgba(242, 131, 3, 0.4);
}

.bg-secondary-opacity-50 {
  background-color: rgba(242, 131, 3, 0.5);
}

.bg-secondary-opacity-60 {
  background-color: rgba(242, 131, 3, 0.6);
}

.bg-secondary-opacity-70 {
  background-color: rgba(242, 131, 3, 0.7);
}

.bg-secondary-opacity-80 {
  background-color: rgba(242, 131, 3, 0.8);
}

.bg-secondary-opacity-90 {
  background-color: rgba(242, 131, 3, 0.9);
}

.bg-secondary-opacity-100 {
  background-color: #f28303;
}

.bg-dark {
  background-color: #2c3137;
}

.bg-dark-opacity-10 {
  background-color: rgba(44, 49, 55, 0.1);
}

.bg-dark-opacity-20 {
  background-color: rgba(44, 49, 55, 0.2);
}

.bg-dark-opacity-30 {
  background-color: rgba(44, 49, 55, 0.3);
}

.bg-dark-opacity-40 {
  background-color: rgba(44, 49, 55, 0.4);
}

.bg-dark-opacity-50 {
  background-color: rgba(44, 49, 55, 0.5);
}

.bg-dark-opacity-60 {
  background-color: rgba(44, 49, 55, 0.6);
}

.bg-dark-opacity-70 {
  background-color: rgba(44, 49, 55, 0.7);
}

.bg-dark-opacity-80 {
  background-color: rgba(44, 49, 55, 0.8);
}

.bg-dark-opacity-90 {
  background-color: rgba(44, 49, 55, 0.9);
}

.bg-dark-opacity-100 {
  background-color: #2c3137;
}

.bg-white {
  background-color: white;
}

.bg-white-opacity-10 {
  background-color: rgba(255, 255, 255, 0.1);
}

.bg-white-opacity-20 {
  background-color: rgba(255, 255, 255, 0.2);
}

.bg-white-opacity-30 {
  background-color: rgba(255, 255, 255, 0.3);
}

.bg-white-opacity-40 {
  background-color: rgba(255, 255, 255, 0.4);
}

.bg-white-opacity-50 {
  background-color: rgba(255, 255, 255, 0.5);
}

.bg-white-opacity-60 {
  background-color: rgba(255, 255, 255, 0.6);
}

.bg-white-opacity-70 {
  background-color: rgba(255, 255, 255, 0.7);
}

.bg-white-opacity-80 {
  background-color: rgba(255, 255, 255, 0.8);
}

.bg-white-opacity-90 {
  background-color: rgba(255, 255, 255, 0.9);
}

.bg-white-opacity-100 {
  background-color: white;
}

.bg-black {
  background-color: black;
}

.bg-black-opacity-10 {
  background-color: rgba(0, 0, 0, 0.1);
}

.bg-black-opacity-20 {
  background-color: rgba(0, 0, 0, 0.2);
}

.bg-black-opacity-30 {
  background-color: rgba(0, 0, 0, 0.3);
}

.bg-black-opacity-40 {
  background-color: rgba(0, 0, 0, 0.4);
}

.bg-black-opacity-50 {
  background-color: rgba(0, 0, 0, 0.5);
}

.bg-black-opacity-60 {
  background-color: rgba(0, 0, 0, 0.6);
}

.bg-black-opacity-70 {
  background-color: rgba(0, 0, 0, 0.7);
}

.bg-black-opacity-80 {
  background-color: rgba(0, 0, 0, 0.8);
}

.bg-black-opacity-90 {
  background-color: rgba(0, 0, 0, 0.9);
}

.bg-black-opacity-100 {
  background-color: black;
}

.bg-contain-center {
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}

.bg-contain-top-center {
  background-position: top center;
  background-size: contain;
  background-repeat: no-repeat;
}

.bg-cover-center {
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-cover-top-center {
  background-position: top center;
  background-size: cover;
  background-repeat: no-repeat;
}

.bg-parallax {
  min-height: 100%;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

.bg-parallax-center {
  min-height: 100%;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}

.bg-parallax-top {
  min-height: 100%;
  overflow: hidden;
  background-position: center top;
  background-size: cover;
  background-attachment: fixed;
}

/*--------------------Overlays--------------------*/
.overlay {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  visibility: hidden;
  opacity: 0;
  background: rgba(255, 255, 255, 0.5);
  transition: all 0.3s;
}
.overlay--minicart {
  z-index: -1000;
}
.overlay--sign-up {
  background-color: rgba(255, 255, 255, 0.5);
}
.overlay.active, .overlay.is-active {
  visibility: visible;
  opacity: 1;
}

/*--------------------Close Modal--------------------*/
.close-modal {
  width: 1em;
  height: 1em;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 10;
  border-radius: 50%;
  font-size: 1em;
  text-transform: uppercase;
  opacity: 0.8;
  transition: all 0.3s;
  cursor: pointer;
}
.close-modal:hover {
  opacity: 1;
}
.close-modal--sign-up {
  width: 1.5em;
  height: 1.5em;
  top: 0;
  right: 0;
  z-index: 500;
  font-size: 2.5em;
  font-weight: 300;
  line-height: 0.5;
  color: #fdad08;
}
.close-modal--atc {
  z-index: 5000;
  font-size: 2rem;
  color: white;
  background-color: #2c3137;
}

/*--------------------Loading--------------------*/
.loading__image-wrapper {
  display: none;
  margin-top: 50px;
}

/*--------------------Page Main to Home page, Internal page--------------------*/
.page-main--home-page,
.page-main--internal-page {
  transition: padding-top 0.2s;
  /* Common Breakpoint [bs] */
  padding-top: 105px;
}
@media screen and (min-width: 768px) {
  .page-main--home-page,
  .page-main--internal-page {
    /* Common Breakpoint [md] */
    padding-top: 125px;
  }
}
@media screen and (min-width: 1024px) {
  .page-main--home-page,
  .page-main--internal-page {
    /* Common Breakpoint [lg] */
    padding-top: 200px;
  }
}
body.has-cintillo .page-main--home-page,
body.has-cintillo .page-main--internal-page {
  /* Common Breakpoint [bs] */
  padding-top: 105px;
}
@media screen and (min-width: 768px) {
  body.has-cintillo .page-main--home-page,
  body.has-cintillo .page-main--internal-page {
    /* Common Breakpoint [md] */
    padding-top: 125px;
  }
}
@media screen and (min-width: 1024px) {
  body.has-cintillo .page-main--home-page,
  body.has-cintillo .page-main--internal-page {
    /* Common Breakpoint [lg] */
    padding-top: 125px;
  }
}
body.has-cintillo.cintillo-shown .page-main--home-page,
body.has-cintillo.cintillo-shown .page-main--internal-page {
  /* Common Breakpoint [bs] */
  padding-top: 165px;
}
@media screen and (min-width: 768px) {
  body.has-cintillo.cintillo-shown .page-main--home-page,
  body.has-cintillo.cintillo-shown .page-main--internal-page {
    /* Common Breakpoint [md] */
    padding-top: 205px;
  }
}
@media screen and (min-width: 1024px) {
  body.has-cintillo.cintillo-shown .page-main--home-page,
  body.has-cintillo.cintillo-shown .page-main--internal-page {
    /* Common Breakpoint [lg] */
    padding-top: 225px;
  }
}

.page-main--internal-page {
  /* Common Breakpoint [bs] */
  padding-top: 105px;
}
@media screen and (min-width: 768px) {
  .page-main--internal-page {
    /* Common Breakpoint [md] */
    padding-top: 125px;
  }
}
@media screen and (min-width: 1024px) {
  .page-main--internal-page {
    /* Common Breakpoint [lg] */
    padding-top: 200px;
  }
}

.page-main--product-list {
  /* Common Breakpoint [bs] */
  padding-top: 65px;
}
@media screen and (min-width: 768px) {
  .page-main--product-list {
    /* Common Breakpoint [md] */
    padding-top: 80px;
  }
}
@media screen and (min-width: 1024px) {
  .page-main--product-list {
    /* Common Breakpoint [lg] */
    padding-top: 75px;
  }
}

/*--------------------Header to Internal page, Product list, Product detail--------------------*/
.internal-page-header {
  padding-top: 0px;
  padding-bottom: 0px;
}
.internal-page-header h1 {
  margin-top: 15px;
  margin-bottom: 0px;
}

.product-list-page-header {
  padding-top: 0px;
  padding-bottom: 0px;
}
.product-list-page-header h1 {
  margin-top: 15px;
  margin-bottom: 0px;
}

.product-detail-page-header {
  padding-top: 0px;
  padding-bottom: 0px;
}
.product-detail-page-header h1 {
  margin-top: 15px;
  margin-bottom: 0px;
}

/*--------------------Tag Titles--------------------*/
.tag-title {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 18pt;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.2;
  color: #fdad08;
}
@media screen and (min-width: 768px) {
  .tag-title {
    font-size: 21pt;
    font-size: 1.75rem;
  }
}
@media screen and (min-width: 1440px) {
  .tag-title {
    font-size: 21pt;
    font-size: 1.75rem;
  }
}

.tag-subtitle {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 24pt;
  font-size: 2rem;
  line-height: 1.2;
  text-transform: uppercase;
}
@media screen and (min-width: 1440px) {
  .tag-subtitle {
    font-size: 36pt;
    font-size: 3rem;
  }
}
.tag-subtitle strong {
  margin-left: -1.5em;
  font-size: 1.2em;
  font-weight: 400;
  color: inherit;
}
.tag-subtitle small {
  display: block;
  margin-right: -1.5em;
}

.tag-legend {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 21pt;
  font-size: 1.75rem;
  font-weight: 300;
  line-height: 1.3;
}
@media screen and (min-width: 1440px) {
  .tag-legend {
    font-size: 30pt;
    font-size: 2.5rem;
  }
}

.tag-other-products {
  font-size: 24pt;
  font-size: 2rem;
  text-transform: capitalize;
  color: #5a3921;
}

/*--------------------General accordion--------------------*/
.accordion__content {
  display: none;
}/*# sourceMappingURL=styles.css.map */

/*Badget para envio gratis*/
.eg-free-shipping-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: white;
  border-radius: 100px;
  /*padding: 0.5rem 1.2rem;*/
  width: auto;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05), 0 1px 2px rgba(0, 0, 0, 0.03);
  transition: all 0.2s ease;
  border: 1px solid rgba(253, 173, 8, 0.25);
  padding-left: 5px;
  padding-bottom: 3px;
}

.eg-free-icon {
  font-size: 1.3rem;
  line-height: 1;
  display: inline-flex;
  align-items: center;
}

.eg-free-text {
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: -0.2px;
  background: linear-gradient(135deg, #fdad08 0%, #f28303 100%);
  background-clip: border-box;
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  text-transform: uppercase;
  font-family: inherit;
}

.eg-free-badge-star {
  font-size: 0.75rem;
  color: #fdad08;
  font-weight: 600;
}
/*FIN Badget para envio gratis*/


/*Button tracking*/
.btn-tracking{
  background: white;
  color: #ff6b00;
  border: 1px solid rgba(255, 107, 0, 1);
}
/*FIN Button tracking*/



/*:::::::::::::::::::::::::::::: STYLES TO CONTENT TRACKING MODAL ::::::::::::::::::::::::::::*/
/* ========== CONTENEDOR PRINCIPAL ========== */
.eg-tracking-container {
  max-width: 620px;
  width: 100%;
  margin: 0 auto;
}

/* ========== TARJETA PREMIUM ========== */
.eg-tracking-card {
  /*background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(0px);
  border-radius: 56px;
  box-shadow: 0 30px 60px -20px rgba(0, 0, 0, 0.2),
  0 0 0 1px rgba(255, 107, 0, 0.1),
  0 8px 20px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);*/
}

/*.eg-tracking-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 35px 65px -20px rgba(0, 0, 0, 0.25);
}*/

/* Header decorativo */
.eg-tracking-header {
  background: linear-gradient(135deg, #ffffff 0%, #fffaf5 100%);
  /*padding: 40px 36px 28px 36px;*/
  text-align: center;
  border-bottom: 2px solid rgba(255, 107, 0, 0.08);
  /*position: relative;*/
}

.eg-tracking-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  /*background: linear-gradient(90deg, #ff6b00, #ffaa44, #ff8c00, #ff6b00);*/
  background-size: 200% 100%;
  animation: egTrackingGradient 3s ease infinite;
}

/* ========== BOTÓN DESHABILITADO ========== */
.eg-tracking-btn:disabled,
.eg-tracking-btn.disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  background: linear-gradient(135deg, #ccb39a, #d4bea8);
  box-shadow: none;
  pointer-events: none;
}

.eg-tracking-btn:disabled:hover,
.eg-tracking-btn.disabled:hover {
  transform: none;
  box-shadow: none;
  background: linear-gradient(135deg, #ccb39a, #d4bea8);
}

@keyframes egTrackingGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

@keyframes egTrackingFloat {
  0%, 100% { transform: translateY(0px); }
  50% { transform: translateY(-10px); }
}

.eg-tracking-title {
  font-size: 32px;
  font-weight: 800;
  background: linear-gradient(135deg, #ff6b00, #ff8c00, #ffaa44);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 10px;
  letter-spacing: -0.5px;
}

.eg-tracking-subtitle {
  color: #a07a54;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.3px;
}

/* ========== FORMULARIO ========== */
.eg-tracking-form {
  padding: 36px 36px 24px 36px;
}

.eg-tracking-input-group {
  margin-bottom: 28px;
}

.eg-tracking-label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  color: #5a3a1a;
  margin-bottom: 10px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.eg-tracking-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}

.eg-tracking-input-icon {
  position: absolute;
  left: 20px;
  font-size: 20px;
  pointer-events: none;
  transition: transform 0.2s ease;
}

.eg-tracking-input {
  width: 100%;
  padding: 17px 24px 17px 56px;
  font-size: 16px;
  border: 2px solid #f0e0d0;
  border-radius: 80px;
  background: #ffffff;
  transition: all 0.3s ease;
  font-weight: 500;
  color: #2d2d2d;
  outline: none;
  font-family: inherit;
}

.eg-tracking-input:focus {
  border-color: #ff8c00;
  box-shadow: 0 0 0 5px rgba(255, 107, 0, 0.12);
  transform: scale(1.01);
}

.eg-tracking-input:focus + .eg-tracking-input-icon {
  transform: scale(1.1);
}

.eg-tracking-input::placeholder {
  color: #d4c0a8;
  font-weight: 400;
}

/* Botón principal */
.eg-tracking-btn {
  width: 100%;
  padding: 17px;
  background: linear-gradient(135deg, #ff6b00, #ff8c00);
  border: none;
  border-radius: 80px;
  color: white;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.2, 0.9, 0.4, 1.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: 0 10px 25px -5px rgba(255, 107, 0, 0.3);
  font-family: inherit;
  letter-spacing: 0.5px;
}

.eg-tracking-btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px -8px rgba(255, 107, 0, 0.4);
  background: linear-gradient(135deg, #ff5a00, #ff7a00);
}

.eg-tracking-btn:active {
  transform: translateY(0px);
}

/* ========== CONTENEDOR DE RESULTADOS MEJORADO ========== */
.eg-tracking-result-wrapper {
  padding: 0 36px 28px 36px;
}

#eg-tracking-result-container {
  margin-top: 8px;
}

/* ========== ESTADOS ========== */
/* Estado: Cargando */
.eg-tracking-loading {
  text-align: center;
  padding: 48px 28px;
  background: linear-gradient(135deg, #fefaf5, #fff8f0);
  border-radius: 40px;
  border: 1px solid rgba(255, 107, 0, 0.1);
}

.eg-tracking-spinner {
  width: 56px;
  height: 56px;
  margin: 0 auto 20px;
  border: 3px solid #ffe0cc;
  border-top-color: #ff6b00;
  border-right-color: #ff8c00;
  border-radius: 50%;
  animation: egTrackingSpin 0.8s linear infinite;
}

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

.eg-tracking-loading-text {
  color: #ff6b00;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.3px;
}

/* Estado: Encontrado (Éxito) - VERSIÓN ELEGANTE */
/* Estado: No encontrado - VERSIÓN ELEGANTE */
.eg-tracking-error {
  background: linear-gradient(135deg, #fffbfb, #fff5f5);
  border-radius: 40px;
  padding: 40px 32px;
  text-align: center;
  border: 1px solid rgba(239, 68, 68, 0.15);
  box-shadow: 0 15px 35px -12px rgba(239, 68, 68, 0.1);
  animation: egTrackingSlideIn 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1);
}

.eg-tracking-error-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, #ef4444, #dc2626);
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  color: white;
  margin: 0 auto 20px;
  box-shadow: 0 10px 25px rgba(239, 68, 68, 0.25);
}

.eg-tracking-error-title {
  font-size: 22px;
  font-weight: 800;
  color: #991b1b;
  margin-bottom: 10px;
}

.eg-tracking-error-message {
  color: #9b4a4a;
  font-size: 14px;
  margin-bottom: 28px;
  line-height: 1.5;
}

.eg-tracking-retry-btn {
  background: transparent;
  border: 2px solid #ef4444;
  border-radius: 60px;
  padding: 12px 32px;
  color: #ef4444;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  font-family: inherit;
  font-size: 14px;
}

.eg-tracking-retry-btn:hover {
  background: #ef4444;
  color: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(239, 68, 68, 0.25);
}

/* Estado: Vacío / Inicial - VERSIÓN ELEGANTE */
.eg-tracking-empty {
  text-align: center;
  padding: 56px 28px;
  background: linear-gradient(135deg, #fefcf9, #fffaf5);
  border-radius: 40px;
  border: 1px dashed rgba(255, 107, 0, 0.2);
  transition: all 0.3s ease;
}

.eg-tracking-empty-icon {
  font-size: 72px;
  margin-bottom: 20px;
  opacity: 0.6;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.05));
}

.eg-tracking-empty-text {
  color: #c4aa8a;
  font-size: 14px;
  font-weight: 500;
}

/* Animaciones */
@keyframes egTrackingSlideIn {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ========== RESPONSIVE PARA MÓVILES ========== */
@media (max-width: 640px) {
  body {
    padding: 16px;
  }

  .eg-tracking-card {
    border-radius: 40px;
  }

  .eg-tracking-header {
    padding: 28px 20px 20px 20px;
  }

  .eg-tracking-title {
    font-size: 26px;
  }

  .eg-tracking-subtitle {
    font-size: 12px;
  }

  .eg-tracking-form {
    padding: 24px 24px 16px 24px;
  }

  .eg-tracking-input {
    padding: 15px 20px 15px 52px;
    font-size: 15px;
  }

  .eg-tracking-input-icon {
    left: 18px;
    font-size: 18px;
  }

  .eg-tracking-btn {
    padding: 15px;
    font-size: 15px;
  }

  /* Resultados responsivos */
  .eg-tracking-result-wrapper {
    padding: 0 24px 24px 24px;
  }

  .eg-tracking-success {
    padding: 24px 20px;
  }

  .eg-tracking-success-header {
    gap: 16px;
    flex-direction: column;
    text-align: center;
  }

  .eg-tracking-success-icon {
    width: 56px;
    height: 56px;
    font-size: 28px;
  }

  .eg-tracking-success-title {
    font-size: 20px;
  }

  .eg-tracking-package-details {
    padding: 18px;
  }

  .eg-tracking-detail-row {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
    padding: 12px 0;
  }

  .eg-tracking-detail-label {
    font-size: 12px;
  }

  .eg-tracking-detail-value {
    font-size: 13px;
    padding: 3px 10px;
  }

  .eg-tracking-error {
    padding: 32px 24px;
  }

  .eg-tracking-error-icon {
    width: 60px;
    height: 60px;
    font-size: 30px;
  }

  .eg-tracking-error-title {
    font-size: 20px;
  }

  .eg-tracking-error-message {
    font-size: 13px;
  }

  .eg-tracking-empty {
    padding: 40px 24px;
  }

  .eg-tracking-empty-icon {
    font-size: 60px;
  }

  .eg-tracking-empty-text {
    font-size: 13px;
  }
}

/* Móviles muy pequeños */
@media (max-width: 420px) {
  .eg-tracking-card {
    border-radius: 32px;
  }

  .eg-tracking-header {
    padding: 24px 16px 16px 16px;
  }

  .eg-tracking-title {
    font-size: 24px;
  }

  .eg-tracking-form {
    padding: 20px 20px 12px 20px;
  }

  .eg-tracking-result-wrapper {
    padding: 0 20px 20px 20px;
  }

  .eg-tracking-success {
    padding: 20px 16px;
  }

  .eg-tracking-package-details {
    padding: 14px;
  }
}

/* Soporte para landscape en móviles */
@media (max-height: 600px) and (orientation: landscape) {
  body {
    padding: 12px;
  }

  .eg-tracking-header {
    padding: 16px 20px;
  }

  .eg-tracking-title {
    font-size: 22px;
  }

  .eg-tracking-form {
    padding: 16px 20px;
  }

  .eg-tracking-result-wrapper {
    padding: 0 20px 16px 20px;
  }

  .eg-tracking-empty {
    padding: 24px;
  }
}
/*:::::::::::::::::::::::::::: FIN STYLES TO CONTENT TRACKING MODAL ::::::::::::::::::::::::::::*/




/*:::::::::::::::::::::::::::: ESTILOS PARA LINE DEL TIEMPO DE EVENTOS DEL RASREO ::::::::::::::::::::::::::::*/
/* ========== LÍNEA DE TIEMPO - SCROLLABLE ========== */
.eg-timeline-container {
  max-width: 650px;
  width: 100%;
  margin: 0 auto;
}

/* ========== TARJETA PREMIUM ========== */
.eg-timeline-card {
  background: #ffffff;
  border-radius: 48px;
  box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.15), 0 0 0 1px rgba(255, 107, 0, 0.08);
  overflow: hidden;
}

/* Header */
.eg-timeline-header {
  background: linear-gradient(135deg, #ffffff 0%, #fffaf5 100%);
  padding: 32px 32px 24px 32px;
  text-align: center;
  border-bottom: 2px solid rgba(255, 107, 0, 0.1);
  position: relative;
}

.eg-timeline-header::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 5px;
  background: linear-gradient(90deg, #ff6b00, #ff8c00, #ff6b00);
}

.eg-timeline-icon {
  font-size: 48px;
  margin-bottom: 12px;
  display: inline-block;
}

.eg-timeline-title {
  font-size: 26px;
  font-weight: 800;
  background: linear-gradient(135deg, #ff6b00, #ff8c00);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  margin-bottom: 6px;
}

.eg-timeline-subtitle {
  color: #a07a54;
  font-size: 13px;
  font-weight: 500;
}

/* ========== LÍNEA DE TIEMPO - SCROLLABLE ========== */
.eg-timeline-scroll {
  max-height: 500px;
  overflow-y: auto;
  padding: 24px 32px 32px 32px;
}

/* Custom scrollbar */
.eg-timeline-scroll::-webkit-scrollbar {
  width: 5px;
}

.eg-timeline-scroll::-webkit-scrollbar-track {
  background: #f0e0d0;
  border-radius: 10px;
}

.eg-timeline-scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(135deg, #ff6b00, #ff8c00);
  border-radius: 10px;
}

/* Timeline vertical */
.eg-timeline {
  position: relative;
  padding-left: 35px;
}

/* Línea vertical */
.eg-timeline::before {
  content: '';
  position: absolute;
  left: 12px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, #ff6b00, #ff8c00, #e0c8b0);
  border-radius: 2px;
}

/* Cada item de la timeline */
.eg-timeline-item {
  position: relative;
  margin-bottom: 28px;
  animation: egTimelineFadeIn 0.4s ease-out forwards;
  opacity: 0;
  animation-delay: calc(var(--index, 0) * 0.08s);
}

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

/* Círculo del timeline - TODOS COMPLETADOS */
.eg-timeline-dot {
  position: absolute;
  left: -35px;
  top: 0;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff6b00, #ff8c00);
  border: 3px solid #ff8c00;
  box-shadow: 0 0 0 4px rgba(255, 107, 0, 0.15);
  z-index: 2;
}

/* Contenido del evento */
.eg-timeline-content {
  background: linear-gradient(135deg, #ffffff, #fffaf5);
  border-radius: 24px;
  padding: 16px 20px;
  transition: all 0.3s ease;
  border-left: 3px solid #ff8c00;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.eg-timeline-content:hover {
  transform: translateX(5px);
  box-shadow: 0 4px 12px rgba(255, 107, 0, 0.1);
}

/* Header del evento */
.eg-timeline-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 10px;
}

.eg-timeline-event-name {
  font-weight: 800;
  font-size: 16px;
  color: #2d2d2d;
  display: flex;
  align-items: center;
  gap: 8px;
}

.eg-timeline-event-icon {
  font-size: 18px;
}

.eg-timeline-date {
  font-size: 11px;
  color: #b8956a;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.eg-timeline-comments {
  font-size: 13px;
  color: #6b4c2a;
  line-height: 1.45;
  margin-top: 8px;
  padding-top: 8px;
  border-top: 1px dashed rgba(255, 107, 0, 0.15);
}

/* Mensaje vacío */
.eg-timeline-empty {
  text-align: center;
  padding: 60px 32px;
  color: #c4aa8a;
}

.eg-timeline-empty-icon {
  font-size: 64px;
  margin-bottom: 16px;
  opacity: 0.5;
}

/* Footer */
.eg-timeline-footer {
  padding: 20px 32px 28px;
  text-align: center;
  border-top: 1px solid rgba(255, 107, 0, 0.08);
  background: #fefcf9;
}

.eg-timeline-footer-text {
  font-size: 11px;
  color: #d4bb9a;
}

/* Animaciones */
@keyframes egTimelineFadeIn {
  from {
    opacity: 0;
    transform: translateX(-15px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* ========== RESPONSIVE ========== */
@media (max-width: 640px) {
  body {
    padding: 16px;
  }

  .eg-timeline-card {
    border-radius: 32px;
  }

  .eg-timeline-header {
    padding: 24px 20px 18px 20px;
  }

  .eg-timeline-title {
    font-size: 22px;
  }

  .eg-timeline-scroll {
    padding: 20px 20px 24px 20px;
    max-height: 450px;
  }

  .eg-timeline {
    padding-left: 28px;
  }

  .eg-timeline::before {
    left: 8px;
  }

  .eg-timeline-dot {
    left: -28px;
    width: 22px;
    height: 22px;
  }

  .eg-timeline-content {
    padding: 14px 16px;
  }

  .eg-timeline-event-name {
    font-size: 14px;
  }

  .eg-timeline-date {
    font-size: 10px;
  }

  .eg-timeline-comments {
    font-size: 12px;
  }

  .eg-timeline-footer {
    padding: 16px 20px 22px;
  }
}

@media (max-width: 480px) {
  .eg-timeline-content-header {
    flex-direction: column;
    align-items: flex-start;
  }
}
/*::::::::::::::::::::::::: END ESTILOS PARA LINE DEL TIEMPO DE EVENTOS DEL RASREO ::::::::::::::::::::::::::*/

/*::::::::::::::::::::::::::: LISTA RESUMEN PRODUCTOS EN WIZARD RESPONSIVE :::::::::::::::::::::::::::*/
.order-items {
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #fedc7f #f4f4f4;
}

/* Cada producto - diseño flexible */
.order-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /*padding: 12px 0;*/
  border-bottom: 1px solid #eee;
  gap: 12px;
  flex-wrap: wrap;
}

.order-item:last-child {
  border-bottom: none;
}

/* Info del producto - toma el espacio disponible */
.product-info {
  flex: 1;
  min-width: 180px;
}

/* Nombre del producto con badge al lado */
.order-item-name {
  font-weight: 600;
  color: #5a3921;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

/* Badge contador - más pequeño y compacto */
.counter-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #ff8c00;
  color: white;
  padding: 2px 8px;
  border-radius: 16px;
  font-size: 0.7rem;
  font-weight: bold;
  min-width: 32px;
  line-height: 1.4;
}

.counter-number {
  text-align: center;
  font-weight: bold;
}

.product-price2 {
  color: #999;
  font-size: 0.75rem;
  margin-top: 4px;
  text-align: left;
  font-weight: inherit;
}

/* Precio total del producto - alineado a la derecha */
.product-total {
  text-align: right;
  font-weight: bold;
  color: #ff6b00;
  font-size: 0.95rem;
  min-width: 80px;
  white-space: nowrap;
  margin-top: -30px;
}

@media (max-width: 600px) {
  .order-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }

  .product-info {
    width: 100%;
    min-width: auto;
  }

  .order-item-name {
    font-size: 0.9rem;
  }

  .product-total {
    text-align: left;
    width: 100%;
    padding-left: 15px;
    font-size: 0.9rem;
    white-space: normal;
  }

  .order-footer {
    padding: 12px 16px;
    font-size: 1rem;
  }

  .total-amount {
    font-size: 1.2rem;
  }
}

/* Desktop */
@media (min-width: 601px) {
  .order-item {
    flex-direction: row;
  }

  .product-total {
    text-align: right;
  }
}
/*::::::::::::::::::::::::: FIN LISTA RESUMEN PRODUCTOS EN WIZARD RESPONSIVE :::::::::::::::::::::::::*/

.eg-required{
  color: #ff6b00;
}



/*======================= Boton Whats APP========================*/
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 999;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
}

/* Tooltip o mensaje flotante opcional (estilo moderno) */
.wa-tooltip {
  background: #ffffffdd;
  backdrop-filter: blur(8px);
  background: rgba(255, 255, 255, 0.9);
  padding: 6px 14px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 600;
  color: #075E54;
  box-shadow: 0 5px 12px rgba(0,0,0,0.1);
  border: 1px solid #25D366;
  pointer-events: none;
  white-space: nowrap;
  font-family: monospace;
  letter-spacing: 0.3px;
  transition: opacity 0.2s;
}

/* Botón principal */
.wa-button {
  background-color: #25D366;
  width: 70px;
  height: 70px;
  border-radius: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.25), 0 0 0 0 rgba(37, 211, 102, 0.5);
  transition: all 0.2s ease;
  cursor: pointer;
  text-decoration: none;
  color: white;
  font-size: 2.8rem;
  border: none;
  position: relative;
  animation: bounceInWa 0.8s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
  transform-origin: center bottom;
}

/* Efecto hover adicional: latido suave */
.wa-button:hover {
  transform: scale(1.07);
  background-color: #20b859;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.3);
  transition: all 0.2s;
}

/* Efecto de onda / ripple al hacer clic (simulado con active) */
.wa-button:active {
  transform: scale(0.96);
  transition: 0.05s;
}


/* Animación de rebote completa: aparecer rebotando desde arriba con efecto elástico */
@keyframes bounceInWa {
  0% {
    opacity: 0;
    transform: translateY(200px) scale(0.3);
  }
  40% {
    opacity: 1;
    transform: translateY(-18px) scale(1.08);
  }
  65% {
    transform: translateY(8px) scale(0.98);
  }
  85% {
    transform: translateY(-5px) scale(1.02);
  }
  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Pequeña vibración suave en el botón después del rebote (opcional, se puede mantener sutil) */
.wa-button {
  animation: bounceInWa 0.8s cubic-bezier(0.34, 1.2, 0.64, 1) forwards;
}

/* efecto de pulso sutil en el borde del botón al cargar para dar dinamismo */
.wa-button::after {
  content: '';
  position: absolute;
  top: -6px;
  left: -6px;
  right: -6px;
  bottom: -6px;
  border-radius: 60px;
  background: rgba(37, 211, 102, 0.4);
  opacity: 0;
  animation: pulseRing 1.2s ease-in-out 0.8s infinite;
  pointer-events: none;
}

@keyframes pulseRing {
  0% {
    opacity: 0.6;
    transform: scale(0.9);
  }
  70% {
    opacity: 0;
    transform: scale(1.3);
  }
  100% {
    opacity: 0;
    transform: scale(1.4);
  }
}

/* Pequeña animación de rebote complementaria en tooltip (entrada) */
.wa-tooltip {
  animation: fadeSlideUp 0.5s ease-out 0.3s both;
}

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

/* Adaptación a móviles */
@media (max-width: 550px) {
  .wa-button {
    width: 60px;
    height: 60px;
    font-size: 2.4rem;
  }
  .whatsapp-float {
    bottom: 20px;
    right: 20px;
  }
  .hero-card {
    padding: 1.8rem;
  }
  /*h1 {
    font-size: 1.7rem;
  }*/
  .wa-tooltip {
    font-size: 0.7rem;
    white-space: nowrap;
  }
}

/* Botón flotante secundario creativo: una etiqueta que simula "¡Chatea ahora!" (opcional) */
.bubble-label {
  background: #fff;
  border-radius: 60px;
  padding: 5px 15px;
  font-size: 0.8rem;
  font-weight: bold;
  color: #075E54;
  margin-bottom: 8px;
  box-shadow: 0 4px 10px rgba(0,0,0,0.1);
  border: 1px solid #25D366;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  backdrop-filter: blur(4px);
}

.bubble-label i {
  font-size: 0.9rem;
  color: #25D366;
}

/* Mejora de accesibilidad y cursor */
.wa-button:focus-visible {
  outline: 3px solid #fff;
  outline-offset: 3px;
}
/*=====================END Boton Whats APP========================*/

.eg-season-label {
   display: flex;
   align-items: center;
   gap: 8px;
   font-weight: 600;
   font-size: 14px;
   color: #555;
   margin: 20px 0 10px 5px;
 }

.eg-season-label i {
  color: #ff8c00; /* matches your orange theme */
  font-size: 16px;
}

.eg-season-label span {
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

/*===================== BANNER SECURITY INFO ========================*/
.eg-ban-wrapper {
  max-width: 1280px;
  width: 100%;
  background: #ffffff;
  border-radius: 2rem;
  box-shadow: 0 20px 35px -12px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.02);
  padding: 2.5rem 2rem;
  transition: all 0.2s;
}

/* Grid de 3 columnas: horizontal en desktop, vertical en móvil */
.eg-ban-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}

/* Cada tarjeta: estructura horizontal (icono izquierda + texto derecha) */
.eg-ban-card {
  flex: 1 1 300px;          /* mínimo 300px, permite 3 columnas en desktop */
  min-width: 260px;
  background: transparent;
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 0.75rem 0.5rem;
  transition: transform 0.2s ease;
}

/* Icono izquierdo: círculo sutil con fondo neutro y color #ff6b00 obligatorio */
.eg-ban-icon-left {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background-color: #fef5ed;
  border-radius: 50%;
  transition: all 0.2s;
}

.eg-ban-icon-left i {
  font-size: 2.4rem;
  color: #ff6b00;    /* color especificado naranja */
}

/* Bloque de texto a la derecha */
.eg-ban-text-block {
  flex: 1;
  text-align: left;
}

/* Título en mayúsculas (como la imagen), peso semibold */
.eg-ban-title {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #2c241f;
  margin-bottom: 0.5rem;
  line-height: 1.3;
  text-transform: uppercase;
}

/* Descripción: exactamente el texto de la imagen, con altura de línea para 2 renglones.
   Aseguramos que visualmente ocupe al menos 2 líneas (dependiendo del ancho puede variar,
   pero con un max-width y un line-height adecuado se ve como dos líneas en la mayoría de pantallas).
   En diseño original la descripción suele ocupar dos renglones; se fuerza con un ancho apropiado.
*/
.eg-ban-desc {
  font-size: 0.92rem;
  line-height: 1.45;
  color: #5f4f40;
  font-weight: 450;
  max-width: 280px;
}

/* Efecto hover elegante y profesional */
.eg-ban-card:hover .eg-ban-icon-left {
  background-color: #ffe2cf;
  transform: scale(1.02);
}
.eg-ban-card:hover .eg-ban-title {
  color: #c95a0e;
}

/* Responsive: en pantallas menores a 950px se mantiene la cuadrícula pero puede ajustarse.
   Para que en desktop los 3 queden exactamente en horizontal y en móvil se apilen:
   - Usamos flex-wrap: wrap, y con media query cambiamos dirección si es necesario.
   - Con los flex valores adecuados, cuando el ancho es menor a 768px, forzamos que cada tarjeta ocupe el 100%
     y se muestre una debajo de otra.
*/
@media (max-width: 880px) {
  .eg-ban-grid {
    gap: 1.5rem;
  }
  .eg-ban-card {
    flex: 1 1 280px;
  }
  .eg-ban-title {
    font-size: 1.1rem;
  }
  .eg-ban-icon-left {
    width: 64px;
    height: 64px;
  }
  .eg-ban-icon-left i {
    font-size: 2.1rem;
  }
}

@media (max-width: 768px) {
  .eg-season-label {
    justify-content: center;   /* center it */
    margin: 15px 0 8px 0;
    font-size: 13px;
  }

  .eg-season-label i {
    font-size: 14px;
  }

  /* Optional: subtle divider line for clarity */
  .eg-season-label::before,
  .eg-season-label::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #eee;
  }

  .eg-season-label span {
    padding: 0 10px;
  }
}

@media (max-width: 768px) {
  .eg-ban-wrapper {
    padding: 1.8rem 1.5rem;
  }
  /* Modo móvil: cada tarjeta ocupa todo el ancho, apiladas verticalmente */
  .eg-ban-grid {
    flex-direction: column;
    align-items: stretch;
    gap: 1.25rem;
  }
  .eg-ban-card {
    flex: auto;
    width: 100%;
    max-width: 100%;
    padding: 0.5rem 0;
  }
  .eg-ban-desc {
    max-width: 100%;
  }
  /* Para móvil, icono sigue a la izquierda, texto a la derecha, perfecto */
}

/* Ajuste para pantallas muy pequeñas: reducimos padding y tamaño de iconos */
@media (max-width: 480px) {
  .eg-ban-card {
    gap: 1rem;
  }
  .eg-ban-icon-left {
    width: 56px;
    height: 56px;
  }
  .eg-ban-icon-left i {
    font-size: 1.8rem;
  }
  .eg-ban-title {
    font-size: 1rem;
  }
  .eg-ban-desc {
    font-size: 0.85rem;
  }
}
/*=================== END BANNER SECURITY INFO ========================*/




/*=================== BANNER PAYMENT BLACK INFO ========================*/
.eg-sec-head-container {
  background-color: #000000;
  width: 100%;
  max-width: 1100px;
  border-radius: 60px;               /* más redondeado para look moderno en línea */
  border: 1px solid rgba(212, 175, 55, 0.35);
  box-shadow: 0 8px 20px -8px rgba(0,0,0,0.6), 0 0 0 1px rgba(212,175,55,0.1);
  overflow: hidden;
  transition: all 0.2s ease;
}

/* Estructura de DOS COLUMNAS en UNA SOLA LÍNEA (flex sin wrap fuerte) */
.eg-sec-head-twoColumns {
  display: flex;
  flex-wrap: nowrap;          /* clave: evitar salto de línea */
  justify-content: space-between;
  align-items: center;
  gap: 1.8rem;
  padding: 0.8rem 2rem;       /* padding vertical reducido para menor altura */
}

/* COLUMNA IZQUIERDA: texto + logos en horizontal */
.eg-sec-head-leftPayment {
  flex: 2;
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;           /* en pantallas muy pequeñas puede permitir wrap, pero priorizamos una línea flexible */
}

.eg-sec-head-tagline {
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: -0.2px;
  color: #ffffff;
  white-space: nowrap;
}

/* Grupo de íconos de marcas (Visa, Mastercard, Mercado Pago) en línea */
.eg-sec-head-brandRow {
  display: flex;
  align-items: center;
  gap: 1.4rem;
  flex-wrap: wrap;
}

/* Cada item de marca (icono + texto) en disposición horizontal más compacta */
.eg-sec-head-brandItem {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: transparent;
  transition: transform 0.2s;
}

.eg-sec-head-brandItem i {
  font-size: 1.8rem;          /* tamaño ligeramente reducido para balance en una línea */
  color: #D4AF37;
  filter: drop-shadow(0 0 2px rgba(212,175,55,0.4));
}

.eg-sec-head-brandItem span {
  font-size: 0.7rem;
  font-weight: 600;
  color: #e0c87c;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  background: rgba(212,175,55,0.12);
  padding: 0.2rem 0.6rem;
  border-radius: 30px;
}

.eg-sec-head-brandItem:hover {
  transform: translateY(-2px);
}
.eg-sec-head-brandItem:hover i {
  text-shadow: 0 0 4px rgba(212,175,55,0.5);
}

/* COLUMNA DERECHA: certificado SSL - también compacta y en línea */
.eg-sec-head-rightSsl {
  flex: 1.2;
  background: rgba(20, 20, 20, 0.5);
  backdrop-filter: blur(2px);
  border-radius: 48px;
  padding: 0.5rem 1.2rem;
  border-left: 2px solid #D4AF37;
  box-shadow: 0 2px 8px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
}

.eg-sec-head-sslContent {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  flex-wrap: nowrap;
}

.eg-sec-head-sslContent i {
  font-size: 1.6rem;
  color: #D4AF37;
}

.eg-sec-head-sslTextBlock {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.eg-sec-head-sslTitle {
  font-weight: 800;
  font-size: 0.85rem;
  letter-spacing: 0.2px;
  color: #ffffff;
  white-space: nowrap;
}

.eg-sec-head-sslTitle strong {
  color: #D4AF37;
  font-weight: 800;
}

.eg-sec-head-sslSub {
  font-size: 0.65rem;
  color: #b9b9b9;
  display: flex;
  align-items: center;
  gap: 4px;
  margin-top: 2px;
}

.eg-sec-head-sslSub i {
  font-size: 0.6rem;
  color: #D4AF37;
}

/* -------------------------------
   RESPONSIVE: garantizar que en pantallas pequeñas se mantenga en una línea o se ajuste sin romper altura excesiva
   Para pantallas entre 800px y 1024px se comprime un poco el padding y tamaños.
   Por debajo de 780px, hacemos que los elementos se envuelvan pero sigan siendo compactos (dos filas suaves)
   pero la altura seguirá siendo reducida. Para mantener el espíritu de "una sola linea" lo máximo posible.
*/
@media (max-width: 850px) {
  .eg-sec-head-twoColumns {
    gap: 1rem;
    padding: 0.6rem 1.5rem;
  }
  .eg-sec-head-tagline {
    font-size: 1.1rem;
  }
  .eg-sec-head-brandItem i {
    font-size: 1.5rem;
  }
  .eg-sec-head-brandItem span {
    font-size: 0.65rem;
  }
  .eg-sec-head-sslTitle {
    font-size: 0.75rem;
    white-space: normal;
  }
  .eg-sec-head-sslContent i {
    font-size: 1.4rem;
  }
}

/* Punto de quiebre: cuando el ancho es menor a 720px, los elementos se redistribuyen en dos líneas horizontales
   pero aún así se ve ordenado y sin altura exagerada. La izquierda y derecha se mantienen una al lado de la otra?
   Para evitar que la derecha baje, podemos usar flex-wrap: wrap en el contenedor principal solo si es necesario.
   La idea: queremos que se vea en una sola línea, pero si el móvil es muy pequeño se reorganice manteniendo el bloque SSL junto al texto?
   Logramos que en móviles angostos los items internos puedan envolver, pero el diseño general sigue siendo compacto. */
@media (max-width: 700px) {
  .eg-sec-head-twoColumns {
    flex-wrap: wrap;          /* permite que la columna SSL baje debajo si es extremo, pero para evitar romper la experiencia "línea"
                                             preferimos que en móvil se ajuste pero sin perder información, la altura será mínima */
    row-gap: 0.8rem;
    padding: 0.8rem 1.2rem;
  }
  .eg-sec-head-leftPayment {
    flex: auto;
    width: 100%;
    justify-content: space-between;
  }
  .eg-sec-head-rightSsl {
    width: 100%;
    border-left: none;
    border-top: 1px solid rgba(212,175,55,0.3);
    border-radius: 40px;
    justify-content: center;
  }
  .eg-sec-head-sslContent {
    justify-content: center;
  }
  .eg-sec-head-tagline {
    white-space: normal;
    font-size: 1rem;
  }
  .eg-sec-head-brandRow {
    gap: 1rem;
  }
}

/* Para pantallas muy pequeñas (menos de 480px) reducimos aún más el espaciado */
@media (max-width: 480px) {
  .eg-sec-head-brandItem i {
    font-size: 1.3rem;
  }
  .eg-sec-head-brandItem span {
    font-size: 0.55rem;
    padding: 0.1rem 0.4rem;
  }
  .eg-sec-head-sslTitle {
    font-size: 0.7rem;
    white-space: normal;
  }
  .eg-sec-head-sslSub {
    font-size: 0.55rem;
  }
  .eg-sec-head-sslContent i {
    font-size: 1.2rem;
  }
  .eg-sec-head-twoColumns {
    padding: 0.6rem 1rem;
  }
}
/*================= END BANNER PAYMENT BLACK INFO ========================*/





/*============================================= BANNER MESSAGES INFO =============================================*/
/* Contenedor que envolverá al slider - ocupará espacio disponible */
.eg-delight-wrapper {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  position: relative;
}

/* Slider tipo carrusel */
.eg-delight-horizontalRow {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  transition: transform 0.5s ease-in-out;
  will-change: transform;
}

/* Cada item del slider */
.eg-delight-miniItem {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  background: #ffffff;
  border-radius: 50px;
  padding: 0.35rem 1rem 0.35rem 0.8rem;
  border: 1px solid rgba(255, 107, 0, 0.2);
  transition: all 0.2s ease;
  box-shadow: 0 1px 3px rgba(0,0,0,0.02);
  flex: 0 0 auto;
  margin-right: 0.6rem;
  cursor: pointer;
}

/* Último item sin margen derecho */
.eg-delight-miniItem:last-child {
  margin-right: 0;
}

.eg-delight-miniItem:hover {
  border-color: #ff9f1c;
  background: linear-gradient(135deg, #ffffff, #fffaf2);
  transform: translateY(-2px);
  box-shadow: 0 6px 12px -8px rgba(255, 107, 0, 0.2);
}

/* Icono circular */
.eg-delight-iconMicro {
  width: 36px;
  height: 36px;
  background: linear-gradient(135deg, #ff6b00 0%, #ff9f1c 100%);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 6px rgba(255, 107, 0, 0.2);
}

.eg-delight-iconMicro i {
  font-size: 1.2rem;
  color: white;
}

/* Contenedor del texto desktop */
.eg-delight-textBlock {
  flex: 1;
  line-height: 1.2;
  white-space: nowrap;
}

.eg-delight-mainText {
  font-size: 0.75rem;
  font-weight: 700;
  color: #2d2a24;
  letter-spacing: -0.2px;
  white-space: nowrap;
}

.eg-delight-tag {
  font-size: 0.6rem;
  font-weight: 500;
  color: #ff7b1c;
  background: rgba(255, 107, 0, 0.08);
  display: inline-block;
  padding: 0.1rem 0.5rem;
  border-radius: 30px;
  margin-top: 2px;
  white-space: nowrap;
}

/* ========== MEJORA PARA MÓVIL ========== */
@media (max-width: 768px) {
  .eg-delight-wrapper {
    flex: 1;
    min-width: 0;
  }

  .eg-delight-miniItem {
    padding: 4px;
    background: transparent;
    border: none;
    box-shadow: none;
    margin-right: 0.4rem;
  }

  .eg-delight-textBlock {
    display: none;
  }

  .eg-delight-iconMicro {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, #ff6b00 0%, #ff9f1c 100%);
    cursor: pointer;
  }

  .eg-delight-iconMicro i {
    font-size: 1.5rem;
  }

  /* Tooltip personalizado */
  .eg-delight-miniItem {
    position: relative;
  }

  .eg-delight-miniItem::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 110%;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #2d2a24, #1f1c18);
    color: #ffdd99;
    font-size: 0.7rem;
    font-weight: 500;
    white-space: nowrap;
    padding: 0.4rem 0.9rem;
    border-radius: 40px;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.2s ease;
    z-index: 1000;
    font-family: 'Poppins', system-ui;
    letter-spacing: 0.2px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.2);
    border: 1px solid rgba(255, 107, 0, 0.3);
    backdrop-filter: blur(4px);
  }

  .eg-delight-miniItem::before {
    content: '';
    position: absolute;
    bottom: 100%;
    left: 50%;
    transform: translateX(-50%);
    border-width: 6px;
    border-style: solid;
    border-color: #2d2a24 transparent transparent transparent;
    opacity: 0;
    transition: opacity 0.2s ease;
    pointer-events: none;
    z-index: 1000;
  }

  .eg-delight-miniItem:hover::after,
  .eg-delight-miniItem:active::after {
    opacity: 1;
    bottom: 120%;
  }

  .eg-delight-miniItem:hover::before,
  .eg-delight-miniItem:active::before {
    opacity: 1;
    bottom: 106%;
  }

  /* Ajustar controles del header en móvil */
  .header-controls {
    gap: 0.25rem;
    flex-shrink: 1;
    min-width: 0;
  }

  .language-btn, .cart-btn {
    padding: 0.375rem 0.5rem;
    font-size: 0.75rem;
    white-space: nowrap;
  }

  .cart-btn span:not(.cart-count) {
    display: none;
  }

  .cart-btn i {
    margin: 0;
  }
}

@media (max-width: 480px) {
  .eg-delight-iconMicro {
    width: 32px;
    height: 32px;
  }
  .eg-delight-iconMicro i {
    font-size: 0.9rem;
  }

  .language-btn span:not(.flag) {
    display: none;
  }

  .language-btn {
    padding: 0.375rem 0.5rem;
  }
}

/* Desktop: ocultar tooltips */
@media (min-width: 769px) {
  .eg-delight-miniItem::after,
  .eg-delight-miniItem::before {
    display: none;
  }
}
/*=========================================== END BANNER MESSAGES INFO =============================================*/






/*================ SOCIAL MEDIA FOOTER ========================*/
.social-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  /*min-height: 100vh;*/
}

.social-container {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
  justify-content: center;
}

.social-btn {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  border: none;
  cursor: pointer;

  display: flex;
  align-items: center;
  justify-content: center;

  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);

  color: white;
  font-size: 24px;

  transition: all 0.3s ease;
  box-shadow: 0 8px 20px rgba(0,0,0,0.3);
}

.social-btn:hover {
  transform: translateY(-8px) scale(1.1);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
}

/* Colores */
.facebook:hover { background: #1877f2; }
.instagram:hover { background: linear-gradient(45deg, #f58529, #dd2a7b, #8134af, #515bd4); }
.twitter:hover { background: #1da1f2; }
.youtube:hover { background: #ff0000; }
.tiktok:hover { background: #000000; }

@media (max-width: 600px) {
  .social-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}
/*============== END SOCIAL MEDIA FOOTER ========================*/


/*============================ SECCIÓN DE LINKS LEGALES ============================*/
.legal-footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 0.5rem 0.9rem;
  row-gap: 0.6rem;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
}

.legal-btn {
  background: none;
  border: none;
  color: #ffb347;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.2rem 0;
  font-family: inherit;
  transition: all 0.2s ease;
  border-bottom: 1px dotted transparent;
}

.legal-btn:hover {
  color: #ffcc77;
  border-bottom-color: #ff9f1c;
  transform: translateY(-1px);
}

/* Separador elegante */
.sep {
  color: #ff9f1c;
  font-size: 0.8rem;
  font-weight: 400;
  opacity: 0.7;
  user-select: none;
  margin: 0 0.1rem;
}

.legal-footer p {
  color: #cbd5e1;
  font-size: 0.85rem;
  font-weight: 500;
  margin: 0;
  letter-spacing: 0.2px;
}

/* Responsive: todo se mantiene centrado */
@media (max-width: 550px) {
  .legal-footer {
    flex-direction: column;
    gap: 0.5rem;
  }
  .legal-links {
    justify-content: center;
  }
}

/* pequeños ajustes */
.legal-btn:active {
  transform: translateY(1px);
}
/*========================= END SECCIÓN DE LINKS LEGALES ============================*/


/*============================= PAYMENTS FOOTER MAIN  =============================*/
.payment-methods {
  width: 100%;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  padding: 1.2rem 0;
  margin: 0.2rem 0;
}

.payment-icons {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1.8rem;
}

.payment-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255, 255, 255, 0.03);
  padding: 0.4rem 1rem;
  border-radius: 48px;
  transition: all 0.2s;
}

.payment-icon {
  font-size: 2rem;
  color: #cdcddf;
  transition: transform 0.2s, color 0.2s;
}

.payment-item span {
  font-size: 0.7rem;
  font-weight: 500;
  color: #8e8ea2;
  letter-spacing: 0.3px;
}

.payment-item:hover .payment-icon {
  color: #ff9f1c;
  transform: scale(1.05);
}

/* Estilos específicos para tarjetas y mercado pago */
.fa-cc-visa, .fa-cc-mastercard {
  font-size: 2rem;
}

.custom-mp {
  display: flex;
  align-items: center;
  gap: 0.3rem;
}
.custom-mp i {
  font-size: 1.6rem;
}

/* responsive */
@media (max-width: 680px) {
  .payment-icons {
    gap: 1rem;
  }
  .payment-item {
    padding: 0.3rem 0.7rem;
  }
  .payment-icon {
    font-size: 1.5rem;
  }
}
/*=========================== END PAYMENTS FOOTER MAIN  ===========================*/











/* Placeholder mientras carga */
.image-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #fff5e8 0%, #ffe8d4 100%);
  transition: opacity 0.4s ease;
  z-index: 1;
}

/* Loader elegante tipo pulso */
.elegant-loader {
  position: relative;
  width: 60px;
  height: 60px;
  margin-bottom: 20px;
}

.loader-ring {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 3px solid rgba(255, 107, 0, 0.1);
  border-top-color: #ff6b00;
  animation: spin 1s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.loader-ring:nth-child(2) {
  width: 80%;
  height: 80%;
  top: 10%;
  left: 10%;
  border: 3px solid rgba(255, 107, 0, 0.15);
  border-bottom-color: #ff8c00;
  animation: spin-reverse 1.2s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

.loader-ring:nth-child(3) {
  width: 50%;
  height: 50%;
  top: 25%;
  left: 25%;
  border: 2px solid rgba(255, 107, 0, 0.2);
  border-left-color: #ff9f1c;
  animation: spin 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55) infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@keyframes spin-reverse {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(-360deg); }
}

/* Texto de carga elegante */
.loading-text {
  font-size: 12px;
  font-weight: 500;
  color: #ff6b00;
  letter-spacing: 1px;
  text-transform: uppercase;
  background: linear-gradient(135deg, #ff6b00, #ff9f1c);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}
/* Skeleton shimmer effect */
.image-placeholder::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 107, 0, 0.05), transparent);
  animation: shimmer 1.5s infinite;
}

@keyframes shimmer {
  0% { left: -100%; }
  100% { left: 100%; }
}

/* Imagen real */
.card-image {
  opacity: 0;
  transition: opacity 0.5s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

.card-image.loaded {
  opacity: 1;
}