@charset "UTF-8";
/* ===========================
   CONFIGURACIÓN GLOBAL
=========================== */
@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,900&display=swap");
@font-face {
  font-family: "Font456";
  src: url("../fonts/Font456.woff2") format("woff2"), url("../fonts/Font456.woff") format("woff");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
/* ===========================
   BASE DE ESTILOS
=========================== */
*,
html,
body {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  scrollbar-width: none;
}
*::-webkit-scrollbar,
html::-webkit-scrollbar,
body::-webkit-scrollbar {
  height: 0 !important;
  display: none !important;
}
*::-webkit-scrollbar-track,
html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: transparent !important;
}
*::-webkit-scrollbar-thumb,
html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: transparent !important;
}
*::-webkit-scrollbar-corner,
html::-webkit-scrollbar-corner,
body::-webkit-scrollbar-corner {
  background: transparent !important;
}
*::-webkit-resizer,
html::-webkit-resizer,
body::-webkit-resizer {
  background: transparent !important;
}
*,
html,
body {
  scrollbar-gutter: stable both-edges;
}

a {
  text-decoration: none;
  color: #944a84;
}

img {
  vertical-align: middle;
  border-style: none;
  max-width: 100%;
}

ul, ol {
  list-style: none;
}

hr {
  border: none;
  border-top: 1px solid #e8eced;
  margin: 30px 0;
}
hr.hr-primary {
  border-top-color: rgba(148, 74, 132, 0.3);
}
hr.line-dashed {
  border-top-style: dashed;
}
hr.line-dashed--secondary {
  border-top-color: #de9fc7;
}
hr.line-dashed--primary {
  border-top-color: #944a84;
}
hr.line-dashed--light {
  border-top-color: #F3F6F7;
}
hr.line-dashed--dark {
  border-top-color: #1b1918;
}
hr.line-solid {
  border-top-style: solid;
}
hr.line-solid--secondary {
  border-top-color: #de9fc7;
}
hr.line-solid--primary {
  border-top-color: #944a84;
}
hr.line-solid--light {
  border-top-color: #F3F6F7;
}
hr.line-solid--dark {
  border-top-color: #1b1918;
}
hr.line-dotted {
  border-top-style: dotted;
}
hr.line-dotted--secondary {
  border-top-color: #de9fc7;
}
hr.line-dotted--primary {
  border-top-color: #944a84;
}
hr.line-dotted--light {
  border-top-color: #F3F6F7;
}
hr.line-dotted--dark {
  border-top-color: #1b1918;
}

button {
  border: none;
  background: none;
  cursor: pointer;
  font-family: inherit;
  outline: 0;
}

body {
  font-family: "Poppins", sans-serif;
  font-size: 15px;
}

h1, h2, h3, h4, h5, h6 {
  font-family: "Font456", sans-serif;
  font-weight: normal;
}

.is-overflow-hidden {
  overflow: hidden !important;
}

.uppercase {
  text-transform: uppercase;
}

.container,
.container--md,
.container--sm,
.container--xs,
.container--xxs,
.container--min {
  width: 100%;
  margin: 0 auto;
  box-sizing: border-box;
  padding: 0 20px;
}

.container {
  max-width: 1350px;
}

.container--md {
  max-width: 1200px;
}

.container--sm {
  max-width: 1000px;
}

.container--xs {
  max-width: 900px;
}

.container--xxs {
  max-width: 800px;
}

.container--min {
  max-width: 600px;
}

@media screen and (min-width: 768px) {
  .container,
  .container--md,
  .container--sm,
  .container--xs,
  .container--xxs,
  .container--min {
    padding: 0 40px;
  }
}
.hidden {
  display: none !important;
}

.hide {
  display: none !important;
}

.pdt {
  padding-top: 70px;
}

.pdb {
  padding-bottom: 70px;
}

.hide-desktop {
  display: none !important;
}

.hide-mobile {
  display: block !important;
}

.hide-tablet {
  display: block !important;
}

@media screen and (max-width: 1024px) {
  .hide-tablet {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pdt {
    padding-top: 50px;
  }
  .pdb {
    padding-bottom: 50px;
  }
  .hide-desktop {
    display: block !important;
  }
  .hide-mobile {
    display: none !important;
  }
}
.link-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
}

.no-scroll {
  overflow: hidden;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: #fff;
  background-color: #fff;
  z-index: 100000000;
  overflow: hidden;
  text-align: center;
  background-color: #fff;
}
#loader .loader {
  left: 50%;
  position: absolute;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 300px;
}
#loader .loader img {
  width: 150px;
  max-width: 150px;
  height: auto;
  object-fit: cover;
  vertical-align: middle;
  position: relative;
}

.h-full {
  height: 100% !important;
}

.w-full {
  width: 100% !important;
}

.h-auto {
  height: auto !important;
}

.w-auto {
  width: auto !important;
}

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

input, textarea, select, button {
  font-family: "Poppins", sans-serif;
}
input::placeholder, textarea::placeholder, select::placeholder, button::placeholder {
  font-family: "Poppins", sans-serif;
}

.pointer {
  cursor: pointer;
}

.section-title {
  font-size: 1.5rem;
  font-weight: bold;
  color: #1b1918;
}

.text-primary {
  color: #944a84 !important;
}

.text-secondary {
  color: #de9fc7 !important;
}

.text-dark {
  color: #1b1918 !important;
}

.text-light {
  color: #F3F6F7 !important;
}

.text-white {
  color: #ffffff !important;
}

.text-info {
  color: #17a2b8 !important;
}

.text-success {
  color: #06A52B !important;
}

.text-danger {
  color: #dc3545 !important;
}

.text-warning {
  color: #ffc107 !important;
}

.text-disabled {
  color: #A5A5A5 !important;
}

.text-gray {
  color: #838382 !important;
}

.text-xs {
  font-size: 12px !important;
}

.text-sm {
  font-size: 14px !important;
}

.text-base {
  font-size: 16px !important;
}

.text-lg {
  font-size: 18px !important;
}

.line-through {
  text-decoration: line-through;
}

.text-decoration {
  text-decoration: underline;
}

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

.font-bold {
  font-weight: bold !important;
}

.text-sm {
  font-size: 14px !important;
}

.text-xs {
  font-size: 12px !important;
}

.text-md {
  font-size: 16px !important;
}

.text-lg {
  font-size: 18px !important;
}

.svg-primary path, .svg-primary circle, .svg-primary rect {
  fill: #944a84 !important;
}

.svg-secondary path, .svg-secondary circle, .svg-secondary rect {
  fill: #de9fc7 !important;
}

.svg-dark path, .svg-dark circle, .svg-dark rect {
  fill: #1b1918 !important;
}

.svg-warning path, .svg-warning circle, .svg-warning rect {
  fill: #ffc107 !important;
}

.svg-info path, .svg-info circle, .svg-info rect {
  fill: #17a2b8 !important;
}

.max-content {
  width: max-content !important;
  min-width: max-content !important;
}

body.is-modal-open {
  overflow: hidden;
}

/* ocultar*/
.grecaptcha-badge {
  visibility: hidden;
}

.title-lg {
  font-size: 80px !important;
  font-weight: 800 !important;
}
@media screen and (max-width: 768px) {
  .title-lg {
    font-size: 33px !important;
  }
}

.title-sm {
  font-size: 50px !important;
  font-weight: 800 !important;
}
@media screen and (max-width: 768px) {
  .title-sm {
    font-size: 25px !important;
  }
}

.pdl-50-hide-movil {
  padding-left: 50px;
}
@media screen and (max-width: 768px) {
  .pdl-50-hide-movil {
    padding-left: 0px;
  }
}

.bg-light {
  background-color: #F3F6F7 !important;
}

.bg-dark {
  background-color: #1b1918 !important;
}

div:where(.swal2-container) {
  z-index: 1000000 !important;
}

.no-products {
  position: absolute;
  left: 0;
  top: 0;
  padding: 100px 50px;
  text-align: center;
  width: 100%;
  background: #F3F6F7;
  color: #1b1918;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.overflow-hidden {
  overflow: hidden;
}

.fixed {
  position: fixed;
}

.sticky {
  position: sticky;
  top: 100px;
}

.flex {
  display: flex;
}

.block {
  display: block;
}

.grid {
  display: grid;
}

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

.items-end {
  align-items: flex-end;
}

.items-start {
  align-items: flex-start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-end {
  justify-content: flex-end;
}

.justify-start {
  justify-content: flex-start;
}

.flex-column {
  flex-direction: column;
}

.flex-row {
  flex-direction: row;
}

.grid-cols-1 {
  grid-template-columns: repeat(1, minmax(0, 1fr));
}

.grid-cols-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-5 {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.grid-cols-6 {
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.grid-cols-7 {
  grid-template-columns: repeat(7, minmax(0, 1fr));
}

.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}

.grid-cols-9 {
  grid-template-columns: repeat(9, minmax(0, 1fr));
}

.grid-cols-10 {
  grid-template-columns: repeat(10, minmax(0, 1fr));
}

.grid-cols-11 {
  grid-template-columns: repeat(11, minmax(0, 1fr));
}

.grid-cols-12 {
  grid-template-columns: repeat(12, minmax(0, 1fr));
}

.fields-5 {
  grid-template-columns: 1fr 4% 1fr auto auto;
}

.fields-6 {
  grid-template-columns: 1fr 4% 1fr auto auto auto;
}

.grid-1fr-auto {
  grid-template-columns: 1fr auto;
}

.grid-1fr-auto-auto {
  grid-template-columns: 1fr auto auto;
}

.grid-auto-1fr {
  grid-template-columns: auto 1fr;
}

.grid-auto-auto-1fr {
  grid-template-columns: auto auto 1fr;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-12 {
  gap: 3rem;
}

.gap-x4 {
  column-gap: 4rem;
}

.gap-x5 {
  column-gap: 5rem;
}

.gap-x6 {
  column-gap: 6rem;
}

.gap-x7 {
  column-gap: 7rem;
}

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

.flexible {
  flex: 1;
}

.m-0 {
  margin: 0 !important;
}

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

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

.ml-0 {
  margin-left: 0 !important;
}

.mr-0 {
  margin-right: 0 !important;
}

.mx-0 {
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.my-0 {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}

.mt-1 {
  margin-top: 0.25rem !important;
}

.mb-1 {
  margin-bottom: 0.25rem !important;
}

.ml-1 {
  margin-left: 0.25rem !important;
}

.mr-1 {
  margin-right: 0.25rem !important;
}

.mx-1 {
  margin-left: 0.25rem !important;
  margin-right: 0.25rem !important;
}

.my-1 {
  margin-top: 0.25rem !important;
  margin-bottom: 0.25rem !important;
}

.mt-2 {
  margin-top: 0.5rem !important;
}

.mb-2 {
  margin-bottom: 0.5rem !important;
}

.ml-2 {
  margin-left: 0.5rem !important;
}

.mr-2 {
  margin-right: 0.5rem !important;
}

.mx-2 {
  margin-left: 0.5rem !important;
  margin-right: 0.5rem !important;
}

.my-2 {
  margin-top: 0.5rem !important;
  margin-bottom: 0.5rem !important;
}

.mt-3 {
  margin-top: 0.75rem !important;
}

.mb-3 {
  margin-bottom: 0.75rem !important;
}

.ml-3 {
  margin-left: 0.75rem !important;
}

.mr-3 {
  margin-right: 0.75rem !important;
}

.mx-3 {
  margin-left: 0.75rem !important;
  margin-right: 0.75rem !important;
}

.my-3 {
  margin-top: 0.75rem !important;
  margin-bottom: 0.75rem !important;
}

.mt-4 {
  margin-top: 1rem !important;
}

.mb-4 {
  margin-bottom: 1rem !important;
}

.ml-4 {
  margin-left: 1rem !important;
}

.mr-4 {
  margin-right: 1rem !important;
}

.mx-4 {
  margin-left: 1rem !important;
  margin-right: 1rem !important;
}

.my-4 {
  margin-top: 1rem !important;
  margin-bottom: 1rem !important;
}

.mt-5 {
  margin-top: 1.25rem !important;
}

.mb-5 {
  margin-bottom: 1.25rem !important;
}

.ml-5 {
  margin-left: 1.25rem !important;
}

.mr-5 {
  margin-right: 1.25rem !important;
}

.mx-5 {
  margin-left: 1.25rem !important;
  margin-right: 1.25rem !important;
}

.my-5 {
  margin-top: 1.25rem !important;
  margin-bottom: 1.25rem !important;
}

.mt-6 {
  margin-top: 1.5rem !important;
}

.mb-6 {
  margin-bottom: 1.5rem !important;
}

.ml-6 {
  margin-left: 1.5rem !important;
}

.mr-6 {
  margin-right: 1.5rem !important;
}

.mx-6 {
  margin-left: 1.5rem !important;
  margin-right: 1.5rem !important;
}

.my-6 {
  margin-top: 1.5rem !important;
  margin-bottom: 1.5rem !important;
}

.mt-8 {
  margin-top: 2rem !important;
}

.mb-8 {
  margin-bottom: 2rem !important;
}

.ml-8 {
  margin-left: 2rem !important;
}

.mr-8 {
  margin-right: 2rem !important;
}

.mx-8 {
  margin-left: 2rem !important;
  margin-right: 2rem !important;
}

.my-8 {
  margin-top: 2rem !important;
  margin-bottom: 2rem !important;
}

.mt-10 {
  margin-top: 2.5rem !important;
}

.mb-10 {
  margin-bottom: 2.5rem !important;
}

.ml-10 {
  margin-left: 2.5rem !important;
}

.mr-10 {
  margin-right: 2.5rem !important;
}

.mx-10 {
  margin-left: 2.5rem !important;
  margin-right: 2.5rem !important;
}

.my-10 {
  margin-top: 2.5rem !important;
  margin-bottom: 2.5rem !important;
}

.mt-12 {
  margin-top: 3rem !important;
}

.mb-12 {
  margin-bottom: 3rem !important;
}

.ml-12 {
  margin-left: 3rem !important;
}

.mr-12 {
  margin-right: 3rem !important;
}

.mx-12 {
  margin-left: 3rem !important;
  margin-right: 3rem !important;
}

.my-12 {
  margin-top: 3rem !important;
  margin-bottom: 3rem !important;
}

.p-0 {
  padding: 0 !important;
}

.pt-0 {
  padding-top: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.pl-0 {
  padding-left: 0 !important;
}

.pr-0 {
  padding-right: 0 !important;
}

.px-0 {
  padding-left: 0 !important;
  padding-right: 0 !important;
}

.py-0 {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.pt-1 {
  padding-top: 0.25rem !important;
}

.pb-1 {
  padding-bottom: 0.25rem !important;
}

.pl-1 {
  padding-left: 0.25rem !important;
}

.pr-1 {
  padding-right: 0.25rem !important;
}

.px-1 {
  padding-left: 0.25rem !important;
  padding-right: 0.25rem !important;
}

.py-1 {
  padding-top: 0.25rem !important;
  padding-bottom: 0.25rem !important;
}

.pt-2 {
  padding-top: 0.5rem !important;
}

.pb-2 {
  padding-bottom: 0.5rem !important;
}

.pl-2 {
  padding-left: 0.5rem !important;
}

.pr-2 {
  padding-right: 0.5rem !important;
}

.px-2 {
  padding-left: 0.5rem !important;
  padding-right: 0.5rem !important;
}

.py-2 {
  padding-top: 0.5rem !important;
  padding-bottom: 0.5rem !important;
}

.pt-3 {
  padding-top: 0.75rem !important;
}

.pb-3 {
  padding-bottom: 0.75rem !important;
}

.pl-3 {
  padding-left: 0.75rem !important;
}

.pr-3 {
  padding-right: 0.75rem !important;
}

.px-3 {
  padding-left: 0.75rem !important;
  padding-right: 0.75rem !important;
}

.py-3 {
  padding-top: 0.75rem !important;
  padding-bottom: 0.75rem !important;
}

.pt-4 {
  padding-top: 1rem !important;
}

.pb-4 {
  padding-bottom: 1rem !important;
}

.pl-4 {
  padding-left: 1rem !important;
}

.pr-4 {
  padding-right: 1rem !important;
}

.px-4 {
  padding-left: 1rem !important;
  padding-right: 1rem !important;
}

.py-4 {
  padding-top: 1rem !important;
  padding-bottom: 1rem !important;
}

.pt-5 {
  padding-top: 1.25rem !important;
}

.pb-5 {
  padding-bottom: 1.25rem;
}

.pl-5 {
  padding-left: 1.25rem;
}

.pr-5 {
  padding-right: 1.25rem;
}

.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.py-5 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}

.pt-6 {
  padding-top: 1.5rem;
}

.pb-6 {
  padding-bottom: 1.5rem;
}

.pl-6 {
  padding-left: 1.5rem;
}

.pr-6 {
  padding-right: 1.5rem;
}

.px-6 {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}

.pt-8 {
  padding-top: 2rem;
}

.pb-8 {
  padding-bottom: 2rem;
}

.pl-8 {
  padding-left: 2rem;
}

.pr-8 {
  padding-right: 2rem;
}

.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}

.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}

.pt-10 {
  padding-top: 2.5rem;
}

.pb-10 {
  padding-bottom: 2.5rem;
}

.pl-10 {
  padding-left: 2.5rem;
}

.pr-10 {
  padding-right: 2.5rem;
}

.px-10 {
  padding-left: 2.5rem;
  padding-right: 2.5rem;
}

.py-10 {
  padding-top: 2.5rem;
  padding-bottom: 2.5rem;
}

.pt-12 {
  padding-top: 3rem;
}

.pb-12 {
  padding-bottom: 3rem;
}

.pl-12 {
  padding-left: 3rem;
}

.pr-12 {
  padding-right: 3rem;
}

.px-12 {
  padding-left: 3rem;
  padding-right: 3rem;
}

.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}

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

.html p {
  color: #1b1918;
  font-size: 15px;
  line-height: 1.6;
}
.html p strong, .html p b {
  color: currentColor;
}
.html p + p {
  margin-top: 1rem;
}
.html h1, .html h2, .html h3, .html h4, .html h5, .html h6 {
  color: #944a84;
  font-weight: normal;
  margin-bottom: 1.5rem;
}
.html.title-primary h1, .html.title-primary h2, .html.title-primary h3, .html.title-primary h4, .html.title-primary h5, .html.title-primary h6 {
  color: #944a84;
}
.html h1 {
  font-size: 52.5px;
  font-weight: 700;
}
.html h2 {
  font-size: 37.5px;
  font-weight: 700;
}
.html h3 {
  font-size: 27px;
  font-weight: 600;
}
.html h4 {
  font-size: 21px;
  font-weight: 600;
}
.html h5 {
  font-size: 16.5px;
  font-weight: 600;
}
.html h6 {
  font-size: 13.5px;
  font-weight: 600;
}
.html ul,
.html ol {
  margin: 1em 0;
}
.html ul li,
.html ol li {
  margin-bottom: 1em;
  color: #1b1918;
  position: relative;
  padding-left: 1.8rem;
  font-size: 15px;
}
.html ul li strong, .html ul li b,
.html ol li strong,
.html ol li b {
  color: currentColor;
}
.html ul li::before,
.html ol li::before {
  content: "\f058";
  font-family: "Font Awesome 6 Free";
  font-weight: 300;
  position: absolute;
  left: 0;
  top: 1px;
  font-size: 20px;
  color: #944a84;
}
.html ul li.icono-x::before,
.html ol li.icono-x::before {
  content: "\f057";
  font-family: "Font Awesome 6 Free";
  font-weight: 300;
}
.html ul li ul li::before, .html ul li ol li::before,
.html ol li ul li::before,
.html ol li ol li::before {
  content: "\f111";
  font-family: "Font Awesome 6 Free";
  font-weight: 600;
  font-size: 11px;
  top: 3px;
}
.html ul.text-secondary li,
.html ol.text-secondary li {
  color: #de9fc7;
}
.html ul.text-secondary li::before,
.html ol.text-secondary li::before {
  color: #de9fc7;
}
.html ul.text-primary li,
.html ol.text-primary li {
  color: #944a84;
}
.html ul.text-primary li::before,
.html ol.text-primary li::before {
  color: #944a84;
}
.html ul.text-dark li,
.html ol.text-dark li {
  color: #1b1918;
}
.html ul.text-dark li::before,
.html ol.text-dark li::before {
  color: #1b1918;
}
.html ul.list-note li::before,
.html ol.list-note li::before {
  content: "*";
  font-weight: 300;
}
.html ul.list-cross li::before,
.html ol.list-cross li::before {
  content: "\f057";
  font-weight: 300;
}
.html ul.list-check li::before,
.html ol.list-check li::before {
  content: "\f058";
  font-weight: 300;
}
.html ul.list-points li,
.html ol.list-points li {
  padding-left: 1.4rem;
}
.html ul.list-points li::before,
.html ol.list-points li::before {
  content: "\f111";
  font-size: 12px;
  font-weight: 600;
  top: 3px;
}
.html a {
  text-decoration: underline;
}
.html em {
  font-style: italic;
}
.html hr {
  border: none;
  border-top: 1px solid #ddd;
  margin: 2em 0;
}
.html blockquote {
  border-left: 4px solid #944a84;
  padding: 0.5rem;
  padding-left: 1rem;
  margin: 1em 0;
  color: #944a84;
  background-color: #F3F6F7;
}
.html--white p, .html--white li {
  color: #ffffff;
}
.html--white ul li {
  color: #ffffff;
}
.html--white ul li::before {
  color: #ffffff;
}
.html--white h1, .html--white h2, .html--white h3, .html--white h4, .html--white h5, .html--white h6 {
  color: #ffffff;
}
.html--white strong, .html--white b {
  color: #ffffff !important;
}
.html--basic p, .html--basic li {
  color: #1b1918;
}
.html--basic ul li {
  color: #1b1918;
}
.html--basic ul li::before {
  color: #1b1918;
}
.html--basic h1, .html--basic h2, .html--basic h3, .html--basic h4, .html--basic h5, .html--basic h6 {
  color: #1b1918;
}
.html--basic a {
  color: #944a84;
}
.html--basic strong, .html--basic b {
  color: #1b1918 !important;
}
.html--flex p, .html--flex li {
  color: #de9fc7;
}
.html--flex ul li {
  color: #de9fc7;
}
.html--flex ul li::before {
  color: #de9fc7;
}
.html--flex h1, .html--flex h2, .html--flex h3, .html--flex h4, .html--flex h5, .html--flex h6 {
  color: #de9fc7;
}
.html--flex a {
  color: #944a84;
}
.html--flex strong, .html--flex b {
  color: #de9fc7 !important;
}
.html--plus p, .html--plus li {
  color: #944a84;
}
.html--plus ul li {
  color: #944a84;
}
.html--plus ul li::before {
  color: #944a84;
}
.html--plus h1, .html--plus h2, .html--plus h3, .html--plus h4, .html--plus h5, .html--plus h6 {
  color: #944a84;
}
.html--plus a {
  color: #de9fc7;
}
.html--plus strong, .html--plus b {
  color: #944a84 !important;
}

@media (max-width: 767px) {
  .html h1 {
    font-size: 37.5px;
  }
  .html h2 {
    font-size: 27px;
  }
  .html h3 {
    font-size: 21px;
  }
}
form, form input, form textarea {
  font-family: "Poppins", sans-serif;
}

.form__group {
  width: 100%;
  margin-bottom: 20px;
  position: relative;
}
.form__label {
  font-size: 14px;
  color: #a7a7a7;
  margin-bottom: 8px;
  display: block;
  font-weight: 400;
}
.form__label span {
  color: #dc3545;
}
.form__control {
  width: 100%;
  height: 50px;
  line-height: 28px;
  padding: 0 1.3rem;
  border: 1px solid #fff;
  border-radius: 0;
  outline: none;
  background-color: #fff;
  color: #1b1918;
  transition: 0.3s ease;
  box-sizing: border-box;
  font-size: 15px;
  font-weight: 500;
  appearance: none;
}
.form__control--border {
  border: 1px solid #d9d9d9;
}
.form__control::placeholder {
  color: #aaa;
  font-weight: 300;
  font-size: 15px;
}
.form__control.readonly {
  background-color: #ddd;
  user-select: none;
  cursor: not-allowed;
  pointer-events: none;
  color: #6d6d6d;
}
.form__control:hover, .form__control:focus {
  outline: none;
  border-color: rgba(148, 74, 132, 0.7);
  box-shadow: 0 0 0 4px rgba(148, 74, 132, 0.1);
}
.form__control--subscribe {
  padding: 0 1.3rem;
  height: 56px;
  font-size: 16px;
  background-color: #515154;
  border-color: #515154;
}
.form__control--subscribe:focus {
  border-color: rgba(148, 74, 132, 0.7);
  box-shadow: 0 0 0 4px rgba(148, 74, 132, 0.1);
}
.form__tel-group {
  display: flex;
  align-items: center;
  gap: 10px;
}
.form__tel-group .is-code {
  width: 30%;
}
.form__tel-group .is-input {
  width: calc(70% - 10px);
}
.form select.placeholder {
  color: #aaa;
}
.form__control_error {
  border-color: #dc3545;
}
.form__control_error:hover, .form__control_error:focus {
  outline: none;
  border-color: rgba(220, 53, 69, 0.7);
  box-shadow: 0 0 0 4px rgba(220, 53, 69, 0.1);
}
.form__control[type=number] {
  appearance: textfield;
}
.form__control[type=number]::-webkit-inner-spin-button, .form__control[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.form__select_down {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  right: 10px;
}
.form__select_down svg {
  width: 18px !important;
  height: 18px !important;
}
.form__select_down svg path, .form__select_down svg circle, .form__select_down svg rect {
  fill: #b9b9b9 !important;
}
.form__select_down i {
  font-size: 18px;
  color: #b9b9b9;
}
.form__textarea {
  width: 100%;
  max-width: 100%;
  min-width: 100%;
  min-height: 150px;
  max-height: 200px;
  padding: 20px !important;
}
.form__row {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 25px;
}
.form__row .form__group {
  margin-bottom: 0;
  width: calc(50% - 1rem);
}
.form__control_icon {
  position: absolute;
  top: 17px;
  right: 0;
  font-size: 18px;
  padding: 0 10px;
  color: #b9b9b9;
  cursor: pointer;
}
.form__control_icon:hover {
  color: #787878;
}
.form__control_password {
  font-size: 30px;
  font-weight: 700;
}
.form__control_password::placeholder {
  color: #aaa;
  font-weight: 400;
  font-size: 15px;
}
.form__readonly {
  background-color: rgba(17, 52, 76, 0.1098039216);
  opacity: 0.7;
}
.form__error {
  font-size: 13px;
  color: #dc3545;
  opacity: 1;
  margin-top: 4px;
  position: relative;
  display: block;
  font-weight: 400;
}
.form__subtitle {
  font-size: 18px;
  margin-bottom: 20px;
  color: #1b1918;
  font-family: "Poppins", sans-serif;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 10px;
}
.form__subtitle.subtitle-md {
  font-size: 16px;
}
.form__subtitle svg {
  width: 20px;
  height: 20px;
}
.form__subtitle svg path, .form__subtitle svg circle, .form__subtitle svg rect {
  fill: #944a84;
}
.form__text {
  font-size: 15px;
  color: #838382;
  font-weight: 14px;
  line-height: 24px;
  margin-bottom: 20px;
}
.form__radio-inputs {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  background-color: #f5f5f5;
  box-sizing: border-box;
  box-shadow: 0 0 0px 1px rgba(0, 0, 0, 0.06);
  padding: 0.25rem;
  width: 100%;
  font-size: 14px;
  margin-bottom: 20px;
}
.form__radio-inputs .radio {
  flex: 1 1 auto;
  text-align: center;
}
.form__radio-inputs .radio input {
  display: none;
}
.form__radio-inputs .radio input:checked + .name {
  background-color: #fff;
  font-weight: 600;
}
.form__radio-inputs .radio .name {
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  border: none;
  font-weight: 400;
  padding: 0.6rem 0;
  color: rgb(51, 65, 85);
  transition: all 0.15s ease-in-out;
}
.form__notice {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 400;
  color: #000;
  opacity: 0.7;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.form__notice i {
  margin-top: 5px;
  font-size: 18px;
}
.form--input-border .form__control {
  border: 1px solid #847D7D;
}
.form--input-border .form__control:hover, .form--input-border .form__control:focus {
  border-color: rgba(21, 69, 133, 0.7);
  box-shadow: 0 0 0 4px rgba(21, 69, 133, 0.1);
}
.form--input-border .custom-select__trigger {
  border: 1px solid #847D7D;
}
.form--input-border .custom-select__trigger:hover, .form--input-border .custom-select__trigger:focus {
  border-color: rgba(21, 69, 133, 0.7);
  box-shadow: 0 0 0 4px rgba(21, 69, 133, 0.1);
}
.form__forgot-password {
  font-size: 14px;
  color: #944a84;
  font-weight: bold;
  display: block;
}

/* CHECKBOX */
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 10px;
}
.checkbox-label p {
  width: calc(100% - 24px - 10px);
  font-size: 15px;
  color: #1b1918;
  cursor: pointer;
  user-select: none;
}
.checkbox-label p a {
  color: #944a84;
  text-decoration: underline;
}
.checkbox-label .checkbox {
  appearance: none;
  width: 24px;
  height: 24px;
  border: 2px solid #944a84;
  border-radius: 0;
  background-color: transparent;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.checkbox-label .checkbox:before {
  content: "";
  background-color: #944a84;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 14px;
  height: 14px;
  border-radius: 0;
  transition: all 0.3s ease-in-out;
}
.checkbox-label .checkbox:checked {
  border-color: #944a84;
}
.checkbox-label .checkbox:checked:before {
  transform: translate(-50%, -50%) scale(1);
}
.checkbox-label--white p {
  color: rgba(255, 255, 255, 0.6);
}
.checkbox-label--white p a {
  color: rgb(255, 255, 255);
}
.checkbox-label--white .checkbox {
  border-color: rgba(255, 255, 255, 0.6);
}
.checkbox-label--white .checkbox:checked {
  border-color: rgb(255, 255, 255);
}
.checkbox-label--white .checkbox:checked:before {
  background-color: rgb(255, 255, 255);
}
.checkbox-label--dark p {
  color: rgba(27, 25, 24, 0.6);
}
.checkbox-label--dark p a {
  color: #944a84;
}
.checkbox-label--dark .checkbox {
  border-color: rgba(27, 25, 24, 0.6);
}
.checkbox-label--dark .checkbox:checked {
  border-color: #1b1918;
}
.checkbox-label--dark .checkbox:checked:before {
  background-color: #1b1918;
}

/* ===========================
   COMPONENTES
=========================== */
.btn {
  color: #fff;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  padding: 12px 25px;
  border: none;
  outline: 3px solid transparent;
  transition: background-color 0.3s ease, outline 0.3s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-weight: bold;
  border-radius: 0;
}
.btn svg {
  width: 24px;
  height: 24px;
}
.btn svg path {
  fill: #fff;
}
.btn.disabled, .btn--disabled, .btn.is-disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}

.btn--border {
  background-color: transparent;
  color: #1b1918;
  border: 2px solid #1b1918;
  padding: 10px 25px;
}
.btn--border:hover {
  background-color: #1b1918;
  color: #fff;
}
.btn--border:hover svg path {
  fill: #fff;
}
.btn--border-primary {
  border-color: #944a84;
  color: #944a84;
}
.btn--border-primary:hover {
  background-color: #944a84;
  color: #fff;
}
.btn--border-primary:hover svg path {
  fill: #fff;
}
.btn--border-secondary {
  border-color: #de9fc7;
  color: #de9fc7;
}
.btn--border-secondary:hover {
  background-color: #de9fc7;
  color: #fff;
}
.btn--border-secondary:hover svg path {
  fill: #fff;
}
.btn--border-white {
  border-color: #fff;
  color: #fff;
}
.btn--border-white:hover {
  background-color: #fff;
  color: #1b1918;
}
.btn--border-white:hover svg path {
  fill: #1b1918;
}

.btn--sm {
  padding: 7px 15px;
  font-size: 13px;
}
.btn--sm svg {
  width: 20px;
  height: 20px;
}

.btn--primary {
  background-color: #944a84;
}
.btn--primary:hover {
  outline: 3px solid rgba(148, 74, 132, 0.46);
}
.btn--primary svg path {
  fill: #fff;
}

.btn--whatsapp {
  background-color: #25d366;
}
.btn--whatsapp:hover {
  outline: 3px solid rgba(37, 211, 102, 0.46);
}

.btn--secondary {
  background-color: #de9fc7;
}
.btn--secondary:hover {
  outline: 3px solid rgba(222, 159, 199, 0.46);
}
.btn--secondary svg path {
  fill: #fff;
}

.btn--white {
  background-color: #fff;
  color: #1b1918;
}
.btn--white:hover {
  outline: 3px solid rgba(255, 255, 255, 0.8);
}
.btn--white svg path {
  fill: #1b1918;
}

.btn--white-secondary {
  background-color: #fff;
  color: #de9fc7;
}
.btn--white-secondary:hover {
  outline: 3px solid rgba(255, 255, 255, 0.8);
}
.btn--white-secondary svg path {
  fill: #de9fc7;
}

.btn--white-primary {
  background-color: #fff;
  color: #944a84;
}
.btn--white-primary:hover {
  outline: 3px solid rgba(255, 255, 255, 0.8);
}
.btn--white-primary svg path {
  fill: #944a84;
}

.link {
  text-decoration: none;
  font-weight: 500;
  position: relative;
  font-size: 15px;
  display: inline-block;
}
.link:after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 100%;
  height: 2px;
  background-color: #944a84;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.3s ease;
}
.link:hover:after {
  transform: scaleX(1);
  transform-origin: left;
}

.link--secondary {
  color: #de9fc7;
}
.link--secondary:after {
  background-color: #de9fc7;
}

.link--dark {
  color: #1b1918;
}
.link--dark:after {
  background-color: #1b1918;
}

.link--gray {
  color: #838382;
}
.link--gray:after {
  background-color: #838382;
}

.link--primary {
  color: #944a84;
}
.link--primary:after {
  background-color: #944a84;
}

.link--white {
  color: #fff;
}
.link--white:after {
  background-color: #fff;
}

.link--basic {
  color: #1b1918;
}
.link--basic:after {
  background-color: #1b1918;
}

.link--flex {
  color: #de9fc7;
}
.link--flex:after {
  background-color: #de9fc7;
}

.link--plus {
  color: #944a84;
}
.link--plus:after {
  background-color: #944a84;
}

.btn-loading {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  opacity: 0.8;
  pointer-events: none;
}

.btn-loading .btn-spinner {
  width: 16px;
  height: 16px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.top-bar__item {
  height: 35px;
  width: 100%;
  background-color: #944a84;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.top-bar__text {
  color: #fff;
  font-size: 15px;
  font-weight: 300;
}
.top-bar__text strong {
  font-weight: 600;
}

.header {
  position: relative;
  top: 0;
  transition: all 0.4s ease-in-out;
  z-index: 999;
  will-change: transform;
  background-color: #fff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}
.header.is-home {
  position: fixed;
  top: 0;
  left: 0;
  transition: all 0.4s ease-in-out;
  z-index: 999;
  will-change: transform;
  background: transparent;
  border-bottom: none;
  width: 100%;
}
.header.is-home .header__logo img.logo-primary {
  display: block;
}
.header.is-home .header__logo img.logo-secondary {
  display: none;
}
.header.is-home .header__menu li a {
  color: #fff;
}
.header.is-home .header__menu li a:hover {
  color: #de9fc7;
}
.header.is-home .header__menu li.current-menu-item a {
  color: #de9fc7;
}
.header.is-home .header__icon svg path, .header.is-home .header__icon svg circle {
  fill: #fff;
}
.header.is-home .header__icon-count {
  background: #de9fc7;
  border: 2px solid #de9fc7;
  color: #944a84;
}
.header.is-home .header__mobile-toggle span {
  background: #fff;
}
.header__inner {
  padding: 12px 0;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__logo {
  flex: 0 0 auto;
  z-index: 2;
}
.header__logo img {
  display: block;
  width: 80px;
  height: auto;
}
.header__logo img.logo-primary {
  display: none;
}
.header__logo img.logo-secondary {
  display: block;
}
.header__icons {
  flex: 0 0 auto;
  display: flex;
  gap: 20px;
  z-index: 2;
  align-items: center;
}
.header__icon {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.header__icon svg {
  width: 24px;
  height: 24px;
}
.header__icon svg path, .header__icon svg circle {
  fill: #944a84;
  transition: all 0.3s ease;
}
.header__icon-count {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -6px;
  background: #de9fc7;
  border: 2px solid #fff;
  color: #944a84;
  font-size: 10px;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.header__mobile-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}
.header__mobile-toggle span {
  width: 25px;
  height: 3px;
  background: #944a84;
}
.header__nav {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
.header__menu {
  display: flex;
  gap: 30px;
  list-style: none;
  margin: 0;
  padding: 0;
}
.header__menu li a {
  color: #1b1918;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 14px;
}
.header__menu li a:hover {
  color: #944a84;
}
.header__menu li.current-menu-item a {
  color: #944a84;
}
.header.is-sticky {
  position: fixed;
  background: #fff;
  top: 0;
  left: 0;
  width: 100%;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  border-bottom: none;
  transform: translateY(-100%);
  animation: slideDown 0.4s ease forwards;
}
.header.is-sticky .header__logo img.logo-primary {
  display: none;
}
.header.is-sticky .header__logo img.logo-secondary {
  display: block;
}
.header.is-sticky .header__menu li a {
  color: #1b1918;
}
.header.is-sticky .header__menu li a:hover {
  color: #944a84;
}
.header.is-sticky .header__menu li.current-menu-item a {
  color: #944a84;
}
.header.is-sticky .header__icon svg path, .header.is-sticky .header__icon svg circle {
  fill: #944a84;
}
.header.is-sticky .header__icon-count {
  background: #de9fc7;
  border: 2px solid #fff;
  color: #944a84;
}
.header.is-sticky .header__mobile-toggle span {
  background: #944a84;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }
  to {
    transform: translateY(0);
  }
}
/**
 * MENÚ MOBILE
 */
.header_menu_mobile {
  display: none;
}

@media (max-width: 1024px) {
  .header__nav {
    display: none;
  }
  .header__mobile-toggle {
    display: flex;
  }
  .header_menu_mobile {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: block;
    background: rgba(0, 0, 0, 0.6);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
  }
  .header_menu_mobile.active {
    opacity: 1;
    pointer-events: auto;
  }
  .header_menu_mobile.active .container_mobile {
    transform: translateX(0);
  }
  .header_menu_mobile {
    /**
     * PANEL LATERAL (el azul)
     */
  }
  .header_menu_mobile .container_mobile {
    width: 100%;
    max-width: 100%;
    height: 100%;
    background-color: #944a84;
    padding: 60px 20px;
    overflow-y: auto;
    transform: translateX(-100%);
    transition: transform 0.4s ease;
    position: relative;
  }
  .header_menu_mobile {
    /**
     * BOTÓN CERRAR
     */
  }
  .header_menu_mobile .menu_mobile__close {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    background-color: #de9fc7;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .header_menu_mobile .menu_mobile__close svg {
    width: 18px;
    height: 18px;
  }
  .header_menu_mobile .menu_mobile__close svg path, .header_menu_mobile .menu_mobile__close svg line {
    stroke: #fff;
    fill: #fff;
  }
  .header_menu_mobile {
    /**
     * MENÚ
     */
  }
  .header_menu_mobile .menu_mobile nav > ul > li > a {
    display: block;
    padding: 12px 0;
    font-size: 14px;
    font-weight: 600;
    color: #fff;
    transition: opacity 0.3s ease;
  }
  .header_menu_mobile .menu_mobile nav > ul > li > a:hover {
    opacity: 0.7;
  }
  .header_menu_mobile .menu_mobile nav.nav-primary ul li a {
    text-transform: uppercase;
  }
  .header_menu_mobile .menu_mobile nav.nav-secondary ul li a {
    font-size: 15px;
    opacity: 0.6;
    font-weight: 400;
  }
  .header_menu_mobile .menu_mobile nav ul li {
    position: relative;
  }
  .header_menu_mobile .menu_mobile {
    /**
     * Flecha submenu
     */
  }
  .header_menu_mobile .menu_mobile nav ul li.sub-items::after {
    content: "\f054";
    font-family: "Font Awesome 5 Free";
    font-weight: 900;
    position: absolute;
    right: 0;
    top: 14px;
    font-size: 14px;
    color: #fff;
    transition: transform 0.3s ease;
  }
  .header_menu_mobile .menu_mobile {
    /**
     * Submenu
     */
  }
  .header_menu_mobile .menu_mobile .sub-menu {
    display: none;
    padding-left: 15px;
  }
  .header_menu_mobile .menu_mobile .sub-menu li a {
    display: block;
    padding: 8px 0;
    font-size: 14px;
    font-weight: 400;
    color: #fff;
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
  .header_menu_mobile .menu_mobile .sub-menu li a:hover {
    opacity: 1;
  }
  .header_menu_mobile .menu_mobile .sub-menu.active {
    display: block;
  }
  .header_menu_mobile .menu_mobile hr {
    border: none;
    height: 1px;
    background-color: rgba(255, 255, 255, 0.2);
    margin: 25px 0;
  }
}
.profile-options {
  position: absolute;
  top: 100%;
  right: 0;
  background: #fff;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
  padding: 10px 15px;
  display: none;
  flex-direction: column;
  min-width: 260px;
  margin-top: 20px;
  z-index: 100;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
}
.profile-options.is-active {
  display: flex;
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.profile-options__title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  cursor: default;
}
.profile-options__icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #944a84;
  display: flex;
  align-items: center;
  justify-content: center;
}
.profile-options__icon svg {
  width: 30px;
  height: 30px;
}
.profile-options__icon svg path, .profile-options__icon svg circle {
  fill: #fff !important;
}
.profile-options__greeting {
  flex: 1;
  font-size: 30px;
  color: #944a84;
  font-family: "Font456", sans-serif;
}
.profile-options__links {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
  gap: 3px;
}
.profile-options__link {
  color: #944a84;
  background-color: transparent;
  font-weight: 500;
  padding: 8px 12px;
  transition: all 0.3s ease;
  font-size: 16px;
}
.profile-options__link:hover {
  background-color: rgba(148, 74, 132, 0.1);
  color: #944a84;
}
.profile-options__favorites {
  margin-top: 15px;
  padding-top: 15px;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}
.profile-options__favorites-link {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 10px;
  padding-right: 40px;
}
.profile-options__favorites-link:hover {
  background-color: rgba(148, 74, 132, 0.1);
}
.profile-options__favorites-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}
.profile-options__favorites-content svg {
  width: 24px;
  height: 24px;
}
.profile-options__favorites-content svg path {
  fill: #944a84 !important;
}
.profile-options__favorites-content span {
  font-size: 14px;
  font-weight: 600;
  color: #1b1918;
}
.profile-options__favorites-description {
  font-size: 12px;
  color: #838382;
  font-weight: 300;
}
.profile-options__favorites-count {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: #944a84;
  color: #fff;
  font-size: 10px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer {
  position: relative;
  padding: 100px 0;
}
.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 40%;
  height: 100%;
  background-color: #292929;
  z-index: -1;
}
.footer::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background-color: #0f0f0c;
  z-index: -1;
}
.footer__wrap {
  display: flex;
  justify-content: space-between;
}
.footer__left {
  width: 40%;
  max-width: 460px;
  padding-right: 60px;
}
.footer__right {
  width: 60%;
  padding-left: 60px;
}
.footer__logo {
  width: 120px;
  margin-bottom: 60px;
}
.footer__logo img {
  width: 100%;
  height: auto;
}
.footer__title {
  font-family: "Poppins", sans-serif;
  text-transform: uppercase;
  font-size: 16px;
  color: #fff;
  margin-bottom: 10px;
  font-weight: 500;
}
.footer__title--mb30 {
  margin-bottom: 30px;
}
.footer__text {
  font-size: 14px;
  color: #838382;
  margin-bottom: 30px;
}
.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.footer__grid--bottom {
  margin-top: 50px;
}
.footer__menu {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer__menu a {
  color: rgba(243, 246, 247, 0.6);
  font-size: 14px;
  transition: all 0.15s ease-in-out;
}
.footer__menu a:hover {
  color: #de9fc7;
}
.footer__menu li.current-menu-item a {
  color: #de9fc7;
}
.footer__complaints-book a {
  display: flex;
  align-items: center;
  gap: 20px;
}
.footer__complaints-book a span {
  font-size: 14px;
  color: rgba(243, 246, 247, 0.6);
  transition: all 0.15s ease-in-out;
  text-transform: uppercase;
}
.footer__complaints-book a:hover span {
  color: #de9fc7;
}
.footer__complaints-book a svg {
  width: 50px;
  height: 50px;
}
.footer__complaints-book a svg path {
  fill: rgba(243, 246, 247, 0.6);
  transition: all 0.15s ease-in-out;
}
.footer__complaints-book a:hover svg path {
  fill: #de9fc7;
}
.footer__social-links {
  display: flex;
  align-items: center;
  gap: 15px;
}
.footer__social-links a {
  color: #de9fc7;
  font-size: 18px;
  transition: all 0.15s ease-in-out;
}
.footer__social-links a:hover {
  color: #944a84;
}
.footer__contacts {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.footer__contacts li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: rgba(243, 246, 247, 0.6);
  transition: all 0.15s ease-in-out;
}
.footer__contacts li a {
  color: rgba(243, 246, 247, 0.6);
  transition: all 0.15s ease-in-out;
}
.footer__contacts li a:hover {
  color: #de9fc7;
}
.footer__contacts li svg {
  width: 20px;
  height: 20px;
}
.footer__contacts li svg path {
  fill: rgba(243, 246, 247, 0.6);
  transition: all 0.15s ease-in-out;
}
.footer__contacts li:hover {
  color: #de9fc7;
}
.footer__contacts li:hover svg path {
  fill: #de9fc7;
}
.footer__cards-visa {
  width: 100%;
}
.footer__cards-visa img {
  width: auto;
  height: 25px;
}

.copy-right {
  background-color: #0f0f0c;
  padding: 20px 0;
}
.copy-right .text p {
  font-size: 14px;
  color: rgba(243, 246, 247, 0.6);
}
.copy-right .firma a {
  font-size: 14px;
  color: #fff;
  opacity: 0.3;
  font-weight: 400;
  display: flex;
  align-items: center;
  gap: 10px;
}
.copy-right .firma a svg {
  width: auto;
  height: 15px;
}
.copy-right .firma a svg path, .copy-right .firma a svg circle, .copy-right .firma a svg rect {
  fill: #fff;
}

@media (max-width: 1024px) {
  .footer {
    padding: 50px 0;
  }
  .footer::after, .footer::before {
    width: 100%;
    height: 50%;
  }
  .footer::after {
    top: auto;
    bottom: 0;
  }
  .footer__wrap {
    flex-direction: column;
    gap: 60px;
  }
  .footer__left, .footer__right {
    width: 100%;
    padding: 0;
  }
  .footer__grid {
    grid-template-columns: 1fr;
  }
  .footer__col--menu {
    display: none;
  }
  .copy-right .row {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }
}
.swiper {
  width: 100%;
  height: auto;
}
.swiper-slide {
  height: auto;
  display: flex;
}
.swiper-slide .imagen img {
  width: 100%;
  height: auto;
  display: block;
}

.custom-swiper-arrow {
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  border-radius: 50%;
}
.custom-swiper-arrow svg {
  width: 22px;
  height: 22px;
}
.custom-swiper-arrow.secondary {
  background-color: #de9fc7;
  color: #fff;
}
.custom-swiper-arrow.secondary:hover {
  background-color: rgba(222, 159, 199, 0.6);
}
.custom-swiper-arrow.dark {
  background-color: #1b1918;
  color: #fff;
}
.custom-swiper-arrow.dark:hover {
  background-color: rgba(27, 25, 24, 0.6);
}
.custom-swiper-arrow.white {
  background-color: transparent;
  color: #de9fc7;
}
.custom-swiper-arrow.white:hover {
  background-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}
.custom-swiper-arrow.primary {
  background-color: #944a84;
  color: #fff;
}
.custom-swiper-arrow.primary:hover {
  background-color: rgba(148, 74, 132, 0.6);
}
.custom-swiper-arrow.light {
  background-color: transparent;
  color: #944a84;
}
.custom-swiper-arrow.light:hover {
  background-color: rgba(243, 246, 247, 0.9);
}
.custom-swiper-arrow.prev.left-20 {
  left: 20px;
}
.custom-swiper-arrow.next.right-20 {
  right: 20px;
}

.nav-outside-swiper {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}
.nav-outside-swiper .custom-swiper-arrow {
  position: relative;
  left: auto;
  top: auto;
  right: auto;
  margin: 0;
}

.adw-title--mb {
  margin-bottom: 50px;
}
.adw-title--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 10px;
}
.adw-title--left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 10px;
}
.adw-title--right {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  text-align: right;
  gap: 10px;
}
.adw-title--gap20 {
  gap: 20px;
}
.adw-title--gap30 {
  gap: 30px;
}
.adw-title--gap40 {
  gap: 40px;
}
.adw-title__title {
  font-size: 48px;
  font-weight: normal;
  color: #944a84;
}
.adw-title__title span {
  color: #de9fc7;
}
.adw-title__subtitle {
  font-size: 16px;
  font-weight: 500;
  color: #1b1918;
}

@media (max-width: 767px) {
  .adw-title {
    text-align: center;
  }
  .adw-title--mb {
    margin-bottom: 30px;
  }
  .adw-title--center {
    align-items: center;
  }
  .adw-title--left {
    align-items: center;
  }
  .adw-title--right {
    align-items: center;
  }
  .adw-title__title {
    font-size: 32px;
    text-align: center;
  }
}
.product-item__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.product-item__image {
  position: relative;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.product-item__image-default, .product-item__image-hover {
  width: 100%;
  height: auto;
  transition: opacity 0.4s ease;
}
.product-item__image-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.product-item:hover .product-item__image-hover {
  opacity: 1;
}
.product-item:hover .product-item__image-default {
  opacity: 0;
}
.product-item__info {
  margin-top: 15px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.product-item__title {
  font-size: 15px;
  font-weight: 400;
  font-family: "Poppins", sans-serif;
  color: #1b1918;
}
.product-item__price {
  width: max-content;
  min-width: max-content;
  max-width: max-content;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.product-item__price-original {
  font-size: 14px;
  text-decoration: line-through;
  color: #de9fc7;
}
.product-item__price-discount {
  font-size: 16px;
  color: #944a84;
  font-weight: 700;
}
.product-item__price-current {
  font-size: 16px;
  color: #944a84;
  font-weight: 700;
}
.product-item__price-label {
  font-size: 12px;
  color: #838382;
  font-weight: 400;
}
.product-item--disabled {
  pointer-events: none;
  opacity: 0.6;
}
.product-item--disabled .product-item__image-default {
  filter: grayscale(100%);
}
.product-item--disabled .product-item__image-hover {
  filter: grayscale(100%);
}
.product-item--disabled .product-item__title {
  color: #838382;
}
.product-item--disabled .product-item__price-original {
  color: #838382;
}
.product-item--disabled .product-item__price-discount {
  color: #838382;
}
.product-item--disabled .product-item__price-current {
  color: #838382;
}
.product-item__tag {
  position: absolute;
  top: 10px;
  left: 10px;
  background-color: #de9fc7;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  font-weight: 700;
}
.product-item__tag--right {
  left: auto;
  right: 10px;
}
.product-item__tag--new {
  background-color: #06A52B;
}

.category-item__link {
  display: block;
  color: inherit;
  text-decoration: none;
}
.category-item__image-wrapper {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.category-item__image {
  width: 100%;
  height: auto;
  transition: transform 0.4s ease;
  transform: scale(1.05);
}
.category-item__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0);
  opacity: 1;
  transition: opacity 0.3s ease;
}
.category-item:hover .category-item__image {
  transform: scale(1);
}
.category-item__title {
  font-size: 30px;
  color: #fff;
  font-weight: 700;
}
.category-item__button {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}
.category-item:hover .category-item__button {
  opacity: 1;
}

.card-item {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.card-item--center {
  align-items: center;
  text-align: center;
}
.card-item--left {
  align-items: flex-start;
  text-align: left;
}
.card-item--right {
  align-items: flex-end;
  text-align: right;
}
.card-item__title {
  font-size: 18px;
  color: #944a84;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.card-item__title strong {
  font-weight: 800;
}
.card-item__description {
  font-size: 14px;
  color: #838382;
  border-top: 1px solid #ddd;
  padding-top: 20px;
}
.card-item__icon {
  width: 50px;
  height: auto;
}
.card-item__icon img {
  width: 100%;
  height: auto;
}

.information-col {
  display: grid;
  grid-template-columns: 40% 60%;
  background-color: #F3F6F7;
}
@media (max-width: 768px) {
  .information-col {
    grid-template-columns: 1fr;
  }
}
.information-col__imagen {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.information-col__imagen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.information-col__content {
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.information-col__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 25px;
  color: #944a84;
  font-weight: 600;
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.information-col__title svg {
  width: 26px;
  height: auto;
}
.information-col__title svg path {
  fill: #de9fc7;
}
.information-col__title img {
  width: 26px;
  height: auto;
}
.information-col__info {
  font-size: 14px;
  color: #1b1918;
  line-height: 24px;
}
.information-col__buttons {
  padding-top: 25px;
  border-top: 1px solid #e0e6e8;
}
.information-col:nth-child(even) {
  grid-template-columns: 60% 40%;
}
.information-col:nth-child(even) .information-col__imagen {
  order: -1;
}

@media (max-width: 991px) {
  .information-col__content {
    padding: 20px;
  }
  .information-col__imagen {
    order: -1;
  }
  .information-col__imagen img {
    height: auto;
  }
  .information-col:nth-child(even) {
    grid-template-columns: 1fr !important;
  }
  .information-col:nth-child(even) .information-col__imagen {
    order: -1;
  }
  .information-col__buttons {
    flex-direction: column;
    gap: 20px;
    margin-top: 20px;
  }
  .information-col__buttons .btn {
    width: 100% !important;
  }
}
.information-item {
  display: flex;
  flex-direction: column;
  background-color: #F3F6F7;
}
.information-item__imagen {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.information-item__imagen img {
  width: 100%;
  height: auto;
}
.information-item__content {
  flex: 1;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.information-item__title {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  color: #944a84;
  font-weight: 600;
}
.information-item__title svg {
  width: 26px;
  height: auto;
}
.information-item__title svg path {
  fill: #de9fc7;
}
.information-item__title img {
  width: 26px;
  height: auto;
}
.information-item__buttons {
  padding-top: 25px;
  border-top: 1px solid #e0e6e8;
}
.information-item__info {
  font-size: 14px;
  color: #1b1918;
  line-height: 24px;
  margin-top: 25px;
}
.information-item--center .information-item__content {
  width: 100%;
  align-items: center;
  text-align: center;
}
.information-item--center .information-item__title {
  justify-content: center;
}
.information-item--center .information-item__buttons {
  width: 100%;
  justify-content: center;
}
.information-item--right .information-item__content {
  width: 100%;
  align-items: flex-end;
  text-align: right;
}
.information-item--right .information-item__title {
  justify-content: flex-end;
}
.information-item--right .information-item__buttons {
  width: 100%;
  justify-content: flex-end;
}

.video-modal {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999999;
}
.video-modal.active {
  display: flex;
}
.video-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
}
.video-modal__content {
  position: relative;
  width: 90%;
  max-width: 1000px;
  z-index: 2;
}
.video-modal__close {
  position: absolute;
  top: -40px;
  right: 0;
  background: none;
  border: none;
  color: #fff;
  font-size: 28px;
  cursor: pointer;
}
.video-modal__iframe-wrap {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
  background: #000;
}
.video-modal__iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.modal {
  display: none;
  position: fixed;
  inset: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  z-index: 1000000;
  padding: 0;
  animation: fadeIn 0.3s ease forwards;
}
.modal--light .modal__content {
  background-color: #F3F6F7;
}
.modal--sm .modal__content {
  max-width: 480px;
}
.modal--md .modal__content {
  max-width: 760px;
}
.modal--lg .modal__content {
  max-width: 1024px;
}
.modal.is-active {
  display: block;
}
.modal.is-closing {
  animation: fadeOut 0.3s ease forwards !important;
}
.modal.center {
  display: flex;
  justify-content: center;
  align-items: center;
}
.modal.center .modal__content.is-closing {
  animation: slideUpOut 0.3s ease forwards !important;
}
.modal.left {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
}
.modal.left .modal__content.is-closing {
  animation: slideLeftOut 0.3s ease forwards !important;
}
.modal.right {
  display: flex;
  justify-content: flex-end;
  align-items: stretch;
}
.modal.right .modal__content.is-closing {
  animation: slideRightOut 0.3s ease forwards !important;
}
.modal__content {
  width: 100%;
  max-width: 480px;
  background: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  height: auto;
  overflow: hidden;
  margin: 0 20px;
}
.modal__content::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 10px;
  background-color: transparent;
  top: 0;
  left: 0;
}
.modal.center .modal__content {
  max-height: 85vh;
  animation: slideUp 0.35s ease;
}
.modal.left .modal__content {
  height: 100%;
  animation: slideLeft 0.35s ease;
}
.modal.right .modal__content {
  height: 100%;
  animation: slideRight 0.35s ease;
}
.modal__header {
  padding: 30px;
  padding-top: 50px;
  padding-bottom: 20px;
}
.modal__header-title {
  font-size: 24px;
  font-weight: normal;
  margin: 0;
  color: #944a84;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.modal__header-title svg {
  width: 28px;
  height: 28px;
}
.modal__header-title svg path {
  fill: #944a84;
}
.modal__header-icon {
  width: 60px;
}
.modal__header-icon svg {
  width: 60px;
  height: 60px;
}
.modal__header-icon.icon-success svg path, .modal__header-icon.icon-success svg circle, .modal__header-icon.icon-success svg rect {
  fill: #06A52B;
}
.modal__header-icon.icon-danger svg path, .modal__header-icon.icon-danger svg circle, .modal__header-icon.icon-danger svg rect {
  fill: #dc3545;
}
.modal__header-icon.icon-warning svg path, .modal__header-icon.icon-warning svg circle, .modal__header-icon.icon-warning svg rect {
  fill: #ffc107;
}
.modal__header-icon.icon-info svg path, .modal__header-icon.icon-info svg circle, .modal__header-icon.icon-info svg rect {
  fill: #17a2b8;
}
.modal__header-icon.icon-primary svg path, .modal__header-icon.icon-primary svg circle, .modal__header-icon.icon-primary svg rect {
  fill: #944a84;
}
.modal__header-icon.icon-secondary svg path, .modal__header-icon.icon-secondary svg circle, .modal__header-icon.icon-secondary svg rect {
  fill: #de9fc7;
}
.modal__title {
  font-size: 22px;
  font-weight: 700;
  margin: 0;
}
.modal__body {
  padding: 30px;
  padding-top: 0;
  overflow-y: auto;
  flex: 1;
}
.modal__close {
  font-size: 18px;
  font-weight: bold;
  cursor: pointer;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  border: 2px solid #de9fc7;
  color: #de9fc7;
  position: absolute;
  right: 15px;
  top: 15px;
}
.modal.is-basic .modal__content::before {
  background-color: #1b1918;
}
.modal.is-basic .fare-details__title {
  color: #1b1918;
}
.modal.is-basic .fare-details__baggage-icons svg path, .modal.is-basic .fare-details__baggage-icons svg circle, .modal.is-basic .fare-details__baggage-icons svg rect {
  fill: #1b1918;
}
.modal.is-basic .fare-details__baggage-icons .baggage-kg {
  color: #1b1918;
}
.modal.is-flex .modal__content::before {
  background-color: #de9fc7;
}
.modal.is-flex .fare-details__title {
  color: #de9fc7;
}
.modal.is-flex .fare-details__baggage-icons svg path, .modal.is-flex .fare-details__baggage-icons svg circle, .modal.is-flex .fare-details__baggage-icons svg rect {
  fill: #de9fc7;
}
.modal.is-flex .fare-details__baggage-icons .baggage-kg {
  color: #de9fc7;
}
.modal.is-plus .modal__content::before {
  background-color: #944a84;
}
.modal.is-plus .fare-details__title {
  color: #944a84;
}
.modal.is-plus .fare-details__baggage-icons svg path, .modal.is-plus .fare-details__baggage-icons svg circle, .modal.is-plus .fare-details__baggage-icons svg rect {
  fill: #944a84;
}
.modal.is-plus .fare-details__baggage-icons .baggage-kg {
  color: #944a84;
}

/* Animaciones */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes slideUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes slideLeft {
  from {
    opacity: 0;
    transform: translateX(-70px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes slideRight {
  from {
    opacity: 0;
    transform: translateX(70px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes slideUpOut {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(40px);
  }
}
@keyframes slideLeftOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(-70px);
  }
}
@keyframes slideRightOut {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(70px);
  }
}
/* Eliminar srcroll */
.modal::-webkit-scrollbar {
  width: 0;
}

.modal {
  scrollbar-width: none;
}

/* Modal carrito */
.cart-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s;
  z-index: 999999;
}
.cart-overlay.active {
  opacity: 1;
  visibility: visible;
}

.cart-modal {
  position: fixed;
  top: 0;
  right: 0;
  width: 420px;
  height: 100vh;
  background: #fff;
  transform: translateX(100%);
  transition: 0.4s ease;
  z-index: 999999;
  display: flex;
  flex-direction: column;
}
.cart-modal.active {
  transform: translateX(0);
}
.cart-modal__header {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px;
}
.cart-modal__header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.cart-modal__body {
  flex: 1;
  overflow-y: auto;
  padding: 20px;
}
.cart-modal__title {
  font-size: 20px;
  font-weight: bold;
  color: #944a84;
  position: relative;
  font-family: "Poppins", sans-serif;
}
.cart-modal__close {
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #944a84;
  font-size: 28px;
  cursor: pointer;
}
.cart-modal__footer {
  padding: 20px;
  border-top: 1px solid #eee;
  background: #fff;
}
.cart-modal__total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-bottom: 10px;
}
.cart-modal__total-label {
  font-size: 14px;
  color: #1b1918;
}
.cart-modal__total-price {
  font-size: 18px;
  font-weight: bold;
  color: #944a84;
}
.cart-modal__back {
  background: none;
  border: none;
  color: #944a84;
  font-size: 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 5px;
}
.cart-modal__back.dnone {
  display: none;
}
.cart-modal__products {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cart-modal__resumen {
  display: flex;
  flex-direction: column;
  gap: 15px;
  margin-bottom: 30px;
}
.cart-modal__empty-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  width: 100%;
  height: 100%;
}
.cart-modal__empty-message svg {
  width: 60px;
  height: 60px;
  opacity: 0.5;
}
.cart-modal__empty-message svg path, .cart-modal__empty-message svg circle, .cart-modal__empty-message svg rect {
  fill: #838382;
}
.cart-modal__empty-message span {
  text-align: center;
  color: #838382;
  font-size: 15px;
  font-weight: 300;
}
.cart-modal__empty-message.none {
  display: none;
}
.cart-modal__products-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.cart-modal__products-list.none {
  display: none;
}

.modal-cart-item {
  display: flex;
  justify-content: space-between;
  gap: 15px;
}
.modal-cart-item__imagen {
  width: 90px;
  height: auto;
}
.modal-cart-item__imagen img {
  width: 100%;
  height: auto;
}
.modal-cart-item__info {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
}
.modal-cart-item__name {
  font-size: 14px;
  color: #944a84;
  font-weight: 600;
}
.modal-cart-item__details {
  font-size: 13px;
  color: #838382;
}
.modal-cart-item__col--info {
  position: relative;
  padding-right: 40px;
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.modal-cart-item__col--actions {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.modal-cart-item__remove {
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  color: #944a84;
  font-size: 18px;
  cursor: pointer;
  border: none;
  outline: 0;
}
.modal-cart-item__subtotal {
  font-size: 15px;
  font-weight: bold;
  color: #1b1918;
}

@media (max-width: 767px) {
  .cart-modal {
    width: 100%;
  }
  .cart-modal__header {
    padding: 15px;
  }
  .cart-modal__body {
    padding: 15px;
  }
  .cart-modal__footer {
    padding: 15px;
  }
  .cart-modal__title {
    font-size: 18px;
  }
}
.search-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 999;
}
.search-modal.is-active {
  display: block;
}
.search-modal.is-active .search-modal__box {
  transform: translateY(0);
}
.search-modal__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
}
.search-modal__box {
  position: relative;
  background: white;
  padding: 2rem;
  z-index: 2;
  width: 100%;
  transform: translateY(-100%);
  transition: transform 0.35s ease;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}
.search-modal__box form {
  max-width: 700px;
  margin: auto;
}
.search-modal__close {
  position: absolute;
  top: 15px;
  right: 20px;
  font-size: 20px;
  cursor: pointer;
}
.search-modal input {
  width: 100%;
  border: 1px solid #ddd;
  padding: 12px;
}

.product-filters {
  width: 280px;
  font-size: 14px;
}
.product-filters .filter-group {
  border-bottom: 1px solid #eee;
}
.product-filters .filter-group__toggle {
  width: 100%;
  background: none;
  border: none;
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: 600;
  cursor: pointer;
  position: relative;
  color: #944a84;
  text-transform: uppercase;
  font-size: 14px;
}
.product-filters .filter-group__icon {
  width: 10px;
  height: 10px;
  border-right: 2px solid #944a84;
  border-bottom: 2px solid #944a84;
  transform: rotate(45deg);
  transition: 0.3s ease;
}
.product-filters .filter-group.active .filter-group__icon {
  transform: rotate(-135deg);
}
.product-filters .filter-group.active .filter-group__content {
  max-height: 500px;
  opacity: 1;
  overflow-y: auto;
}
.product-filters .filter-group__content {
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
  opacity: 0;
}
.product-filters .filter-group__list {
  list-style: none;
  padding: 0 0 15px 0;
  margin: 0;
}
.product-filters .filter-group.filter-sizes .filter-group__list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.product-filters .filter-group__item {
  margin-bottom: 10px;
}
.product-filters {
  /* Checkbox personalizado */
}
.product-filters .filter-checkbox {
  display: flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}
.product-filters .filter-checkbox input {
  display: none;
}
.product-filters .filter-checkbox__box {
  width: 20px;
  height: 20px;
  border: 1px solid #ccc;
  margin-right: 10px;
  position: relative;
  transition: 0.2s ease;
}
.product-filters .filter-checkbox input:checked + .filter-checkbox__box {
  background: #944a84;
  border-color: #944a84;
}
.product-filters .filter-checkbox input:checked + .filter-checkbox__box::after {
  content: "";
  position: absolute;
  width: 4px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  top: 3px;
  left: 6px;
  transform: rotate(45deg);
}
.product-filters .filter-checkbox__label {
  color: #838382;
}
.product-filters .filter-checkbox:hover .filter-checkbox__label {
  color: #1b1918;
}
.product-filters .filter-color {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 8px;
}

.filter-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  background: #f3f3f3;
  color: #838382;
  border-radius: 0;
  font-size: 13px;
  text-decoration: none;
}

.filter-tag__remove {
  font-weight: bold;
  cursor: pointer;
}

.filter-tag-clear {
  display: inline-block;
  background: none;
  border: none;
  color: #944a84;
  font-size: 13px;
  text-decoration: none;
  border-bottom: 1px solid #944a84;
}

.filters-actions {
  display: flex;
  gap: 5px;
  align-items: center;
}

.tippy-box[data-theme~=unique] {
  background-color: #06A52B;
  color: #fff;
}

.tippy-box[data-theme~=unique][data-placement^=top] .tippy-arrow::before {
  color: #06A52B;
}

.tippy-box[data-theme~=primary] {
  background-color: #944a84;
  color: #fff;
  font-weight: 500;
}

.tippy-box[data-theme~=primary][data-placement^=top] .tippy-arrow::before {
  color: #944a84;
}

.tippy-box[data-theme~=secondary] {
  background-color: #de9fc7;
  color: #fff;
}

.tippy-box[data-theme~=secondary][data-placement^=top] .tippy-arrow::before {
  color: #de9fc7;
}

.tippy-box[data-theme~=danger] {
  background-color: #dc3545;
  color: #fff;
}

.tippy-box[data-theme~=danger][data-placement^=top] .tippy-arrow::before {
  color: #dc3545;
}

.tippy-box[data-theme~=dark] {
  background-color: #1b1918;
  color: #fff;
}

.tippy-box[data-theme~=dark][data-placement^=top] .tippy-arrow::before {
  color: #1b1918;
}

.toast-container {
  position: fixed;
  bottom: 24px;
  left: 24px;
  z-index: 9999999;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.toast {
  background: #111;
  color: #fff;
  padding: 12px 16px;
  border-radius: 6px;
  font-size: 14px;
  animation: toast-in 0.25s ease;
}

.toast--error {
  background: #dc3545;
}

.toast--success {
  background: #944a84;
}

@keyframes toast-in {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.alert {
  padding: 12px 20px;
  border-radius: 0;
  font-family: "Poppins", sans-serif;
  font-size: 14px;
  position: relative;
}
.alert--progress::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50%;
  height: 3px;
  background-color: #936f00;
  border-radius: 25px;
}
.alert--primary {
  background-color: rgba(148, 74, 132, 0.1);
  color: #944a84;
}
.alert--secondary {
  background-color: rgba(222, 159, 199, 0.1);
  color: #944a84;
}
.alert--success {
  background-color: rgba(6, 165, 43, 0.1);
  color: #06A52B;
}
.alert--success .alert--progress::before {
  background-color: #06A52B;
}
.alert--warning {
  background-color: rgba(255, 193, 7, 0.1);
  color: #936f00;
}
.alert--warning .alert--progress::before {
  background-color: #936f00;
}
.alert--info {
  background-color: rgba(23, 162, 184, 0.1);
  color: #17a2b8;
}
.alert--danger {
  background-color: rgba(220, 53, 69, 0.1);
  color: #dc3545;
}
.alert--light {
  background-color: #f3f6f7;
  color: #944a84;
}

/* ===========================
   SECCIONES
=========================== */
.banner-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  background-color: rgba(0, 0, 0, 0.1);
}
.banner-overlay__title {
  font-size: 42px;
  color: #fff;
  letter-spacing: 6px;
}
.banner-overlay__text {
  font-size: 18px;
  color: #fff;
}

.banner-video-overlay {
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.banner-video-overlay__wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.banner-video-overlay__title {
  font-size: 45px;
  color: #fff;
  letter-spacing: 6px;
}
.banner-video-overlay__text {
  font-size: 20px;
  color: #fff;
}

.banner-video-wrapper {
  width: 100%;
  background-color: #000;
}

.banner-video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
}

.banner-video.movil {
  padding: 177.5% 0 0 0;
  position: relative;
}

.banner-video iframe,
.banner-video .banner-poster {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  transition: opacity 0.5s ease-in-out;
  object-fit: cover;
  pointer-events: none;
}

.banner-video.movil iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}

.banner-video.movil .banner-poster {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.banner-video iframe {
  z-index: 1;
}

.banner-video .banner-poster {
  z-index: 2;
}

.banner-video .banner-poster.is-loaded {
  opacity: 0;
  z-index: 0;
  pointer-events: none;
}

.home-video {
  position: relative;
}
.home-video__thumbnail {
  position: relative;
  cursor: pointer;
  overflow: hidden;
}
.home-video__thumbnail img {
  width: 100%;
  display: block;
}
.home-video__play {
  position: absolute;
  inset: 0;
  margin: auto;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s ease;
  animation: pulse 1.8s infinite;
}
.home-video__play svg {
  width: 28px;
  height: 28px;
}
.home-video__play svg path {
  fill: #fff;
}
.home-video__play:hover {
  transform: scale(1.1);
  animation: none;
}
@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.6);
  }
  70% {
    box-shadow: 0 0 0 20px rgba(255, 255, 255, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(255, 255, 255, 0);
  }
}

.home-video {
  width: 100%;
  background-color: rgb(0, 0, 0);
}

.home-video__embed {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  height: 0px;
  overflow: hidden;
}

.home-video__embed iframe {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-width: 0px;
  border-style: none;
  border-color: currentcolor;
  border-image: initial;
  transition: opacity 0.5s ease-in-out;
}

.video-server--intro {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #000;
}
.video-server--footer {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: #000;
}
.video-server__wrap {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.video-server__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 768px) {
  .video-server--intro {
    padding-bottom: 177.5%;
  }
}
.product-feature__inner {
  display: flex;
  justify-content: space-between;
  gap: 100px;
}
.product-feature__left {
  width: 300px;
  padding-top: 40px;
}
.product-feature__right {
  width: calc(100% - 300px - 100px);
  min-width: 0;
}

@media (max-width: 1024px) {
  .product-feature__inner {
    flex-direction: column;
    gap: 50px;
  }
  .product-feature__left {
    width: 100%;
    padding-top: 0;
  }
  .product-feature__right {
    width: 100%;
  }
}
.product-archive__wrap {
  display: flex;
  justify-content: space-between;
  gap: 60px;
}
.product-archive__left {
  width: 280px;
}
.product-archive__right {
  width: calc(100% - 280px - 60px);
  min-width: 0;
}

@media (max-width: 1024px) {
  .product-archive__wrap {
    flex-direction: column;
    gap: 40px;
  }
  .product-archive__left {
    width: 100%;
  }
  .product-archive__right {
    width: 100%;
  }
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  position: relative;
}

@media (max-width: 1024px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
}
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 40px;
}
.pagination .page-numbers {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F3F6F7;
  color: #1b1918;
  cursor: pointer;
}
.pagination .page-numbers.current {
  background-color: #944a84;
  color: #fff;
}
.pagination .page-numbers:hover:not(.current) {
  background-color: #de9fc7;
  color: #fff;
}

.brand-message.pdt {
  padding-top: 100px;
}
.brand-message.pdb {
  padding-bottom: 100px;
}
.brand-message__wrap {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  align-items: center;
  gap: 80px;
}
.brand-message__left {
  max-width: 420px;
}
.brand-message__icon {
  margin-bottom: 24px;
}
.brand-message__icon img {
  width: 60px;
  height: auto;
}
.brand-message__icon svg {
  width: 60px;
  height: auto;
}
.brand-message__icon svg path {
  fill: #944a84;
}
.brand-message__text {
  font-size: 18px;
  line-height: 1.6;
  color: #1b1918;
  font-weight: 300;
}
.brand-message__text strong {
  font-weight: bold;
}
.brand-message__right {
  text-align: right;
}
.brand-message__title {
  font-size: 64px;
  font-weight: 400;
  line-height: 1.15;
  color: #944a84;
  letter-spacing: 1px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}
.brand-message__title span {
  display: block;
}
.brand-message__highlight {
  display: inline-flex !important;
  align-items: center;
  gap: 20px;
}
.brand-message__highlight svg {
  width: 60px;
  height: auto;
}
.brand-message__highlight svg path {
  fill: #944a84;
}
.brand-message__highlight img {
  width: 60px;
  height: auto;
}
.brand-message--center .brand-message__wrap {
  grid-template-columns: 1fr;
}
.brand-message--center .brand-message__left {
  text-align: center;
  margin: 0 auto;
}
.brand-message--center .brand-message__right {
  text-align: center;
  margin-top: 30px;
}
.brand-message--center .brand-message__title {
  align-items: center;
}
.brand-message {
  /* Responsive */
}
@media (max-width: 1024px) {
  .brand-message {
    padding: 70px 0;
  }
  .brand-message__container {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .brand-message__right {
    text-align: center;
  }
  .brand-message__title {
    font-size: 42px;
  }
  .brand-message__highlight {
    justify-content: center;
  }
  .brand-message__highlight svg {
    width: 40px;
  }
}
@media (max-width: 768px) {
  .brand-message__title {
    font-size: 32px;
  }
  .brand-message__text {
    font-size: 16px;
  }
}

@media (max-width: 1024px) {
  .brand-message__wrap {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .brand-message__right {
    text-align: center;
  }
  .brand-message__title {
    font-size: 42px;
    align-items: center;
  }
  .brand-message__highlight {
    justify-content: center;
  }
  .brand-message__highlight svg {
    width: 40px;
  }
}
.home-promo__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.home-promo__grid--2cols {
  grid-template-columns: 1fr 1fr;
}
.home-promo__item img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media (max-width: 768px) {
  .home-promo__grid--2cols {
    grid-template-columns: 1fr;
  }
}
.promo-grid {
  padding: 60px 0;
}
.promo-grid__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}
@media (max-width: 768px) {
  .promo-grid__container {
    grid-template-columns: 1fr;
  }
}

.promo {
  position: relative;
  height: 420px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.promo--small {
  height: 300px;
}

.promo--medium {
  height: 420px;
}

.promo--large {
  height: 520px;
}

/* imagen */
.promo--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* contenido */
.promo--content {
  background-size: cover;
  background-position: center;
}

.promo__content {
  text-align: center;
  color: white;
  max-width: 380px;
}

.promo__eyebrow {
  display: block;
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 10px;
}

.promo__title {
  font-size: 68px;
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: 15px;
}
.promo__title span {
  font-size: 150px;
  line-height: 0.7;
}
.promo__title small {
  font-size: 45px;
  line-height: 1;
}

.promo__btn:hover {
  opacity: 0.8;
  background-color: transparent;
}

.promo__desc {
  font-size: 16px;
  margin-bottom: 25px;
}

.promo__btn {
  display: inline-block;
  padding: 12px 28px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.3s;
}
.promo__btn:hover {
  transform: translateY(-2px);
}

.page-corp__row {
  display: flex;
  justify-content: space-between;
  gap: 80px;
}
.page-corp__col {
  flex: 1;
}
.page-corp__col--title {
  max-width: 400px;
}
.page-corp__col--content {
  max-width: 550px;
}
.page-corp__icon {
  margin-top: 30px;
}
.page-corp__icon svg {
  width: 60px;
  height: auto;
}
.page-corp__icon svg path {
  fill: #944a84;
}
.page-corp__items {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.page-corp__item {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.page-corp__item-icon {
  width: 60px;
}
.page-corp__item-icon img {
  width: 100%;
  height: auto;
}
.page-corp__item-content {
  flex: 1;
}
.page-corp__item_title {
  font-size: 26px;
  color: #944a84;
  margin-bottom: 10px;
  font-family: "Poppins", sans-serif;
}
.page-corp__item_text {
  font-size: 15px;
  color: #1b1918;
}

@media (max-width: 1024px) {
  .page-corp__row {
    flex-direction: column;
    gap: 40px;
  }
  .page-corp__icon {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .page-corp__item {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}
.icon-card {
  position: relative;
  background-color: #F3F6F7;
}
.icon-card__cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.icon-card__cards--2 {
  grid-template-columns: repeat(2, 1fr);
}
.icon-card__cards--3 {
  grid-template-columns: repeat(3, 1fr);
}
.icon-card__cards--4 {
  grid-template-columns: repeat(4, 1fr);
}
.icon-card__cards--5 {
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 767px) {
  .icon-card__cards {
    grid-template-columns: 1fr;
  }
  .icon-card__cards--2, .icon-card__cards--3, .icon-card__cards--4, .icon-card__cards--5 {
    grid-template-columns: 1fr;
  }
}
.page-timeline__wrap {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 7rem;
}
.page-timeline__items {
  width: 400px;
  display: flex;
  flex-direction: column;
  gap: 5rem;
  position: relative;
}
.page-timeline__items::before {
  content: "";
  position: absolute;
  left: 29px;
  z-index: 1;
  top: 0;
  width: 0;
  height: 100%;
  border-left: 2px dashed #de9fc7;
}
.page-timeline__imagen {
  width: calc(100% - 400px - 5rem);
  max-width: 600px;
  position: sticky;
  top: 100px;
}
.page-timeline__imagen img {
  width: 100%;
  height: auto;
  display: block;
}
.page-timeline__item {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  position: relative;
  z-index: 2;
}
.page-timeline__item .count {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #fff;
  color: #944a84;
  border: 3px solid #944a84;
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
}
.page-timeline__item .content {
  flex: 1;
}
.page-timeline__item .year {
  font-size: 33px;
  font-weight: normal;
  color: #944a84;
  margin-bottom: 6px;
}
.page-timeline__item .title {
  font-size: 18px;
  font-weight: 600;
  color: #de9fc7;
  font-family: "Poppins", sans-serif;
}
.page-timeline__item .timeline-content {
  margin-top: 20px;
}
.page-timeline__item .timeline-content .description {
  font-size: 15px;
  color: #1b1918;
  line-height: 24px;
}
.page-timeline__item .timeline-content .imagen {
  margin-top: 20px;
}
.page-timeline__item .timeline-content .imagen img {
  width: 100%;
  height: auto;
  display: block;
}

@media (max-width: 991px) {
  .page-timeline__wrap {
    flex-direction: column;
    align-items: center;
  }
  .page-timeline__items {
    width: 100%;
    max-width: 400px;
  }
  .page-timeline__items::before {
    left: 28px;
  }
  .page-timeline__imagen {
    width: 100%;
    max-width: 400px;
    position: relative;
    top: 0;
  }
}
.img-html__wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}
@media (max-width: 991px) {
  .img-html__wrap {
    grid-template-columns: 1fr;
  }
}
.img-html__wrap--reverse {
  grid-template-columns: 1fr 1fr;
}
@media (max-width: 991px) {
  .img-html__wrap--reverse {
    grid-template-columns: 1fr;
  }
}
.img-html__wrap--reverse .img-html__left {
  order: 2;
}
.img-html__left {
  min-width: 0;
  max-width: 540px;
}
.img-html__right {
  max-width: 540px;
}
.img-html__content {
  padding-top: 50px;
}
.img-html__subtitle {
  font-size: 30px;
  color: #944a84;
  font-weight: bold;
}
.img-html__subtitle span {
  display: block;
  color: #de9fc7;
}
.img-html__title {
  font-size: 80px;
  color: #de9fc7;
  font-weight: 800;
  line-height: 1;
  margin-bottom: 50px;
  padding-left: 60px;
}
@media (max-width: 991px) {
  .img-html__title {
    font-size: 48px;
    padding-left: 0;
  }
}

@media (max-width: 767px) {
  .img-html__wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .img-html--reverse {
    grid-template-columns: 1fr;
  }
  .img-html--reverse .img-html__left {
    order: 2;
  }
}
.information-card__list {
  display: flex;
  flex-direction: column;
  gap: 50px;
}
.information-card__list--grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.information-card__list--grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
.information-card__list--grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
.information-card__list--grid-4 {
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}
@media (max-width: 991px) {
  .information-card__list--grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

.page-galeria__image img, .page-image-text__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page-image-text__overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  inset: 0;
  background-color: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 40px 0;
}
.page-image-text__overlay-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.page-image-text__subtitle {
  font-size: 20px;
  color: #ffffff;
}
.page-image-text__title {
  font-size: 55px;
  line-height: 1.2;
  color: #ffffff;
  font-weight: normal;
}
.page-image-text__description {
  font-size: 16px;
  color: #ffffff;
  max-width: 600px;
}

@media (max-width: 991px) {
  .page-image-text__overlay {
    padding: 20px 0;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.2) 80%, rgba(0, 0, 0, 0) 100%);
  }
  .page-image-text__title {
    font-size: 33px;
  }
  .page-image-text__description {
    margin-top: 20px;
  }
}
.points-hero {
  overflow: hidden;
}
.points-hero__wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  background-color: #efeef3;
  padding: 50px 100px;
  position: relative;
}
.points-hero__content {
  max-width: 400px;
  position: relative;
  z-index: 1;
}
.points-hero__title {
  font-size: 56px;
  line-height: 1.05;
  color: #944a84;
  margin-bottom: 25px;
}
.points-hero__text {
  font-size: 16px;
  line-height: 1.6;
  color: #1b1918;
  margin-bottom: 30px;
  font-weight: 300;
}
.points-hero__text strong {
  font-weight: 600;
}
.points-hero__image {
  position: absolute;
  bottom: 0;
  right: 100px;
  width: 500px;
  height: auto;
}
.points-hero__image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

@media (max-width: 1024px) {
  .points-hero__wrap {
    flex-direction: column;
    gap: 40px;
    padding: 40px 20px;
    padding-bottom: 0;
  }
  .points-hero__image {
    position: relative;
    right: 0;
    width: 100%;
  }
}
.hero-tienda {
  position: relative;
}
.hero-tienda__image {
  width: 100%;
  height: auto;
}
.hero-tienda__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0);
}
.hero-tienda__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
.hero-tienda__title {
  font-size: 56px;
  color: #fff;
  font-weight: normal;
}
.hero-tienda__subtitle {
  font-size: 18px;
  color: #fff;
}

.hero-imagen {
  position: relative;
}
.hero-imagen__image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.hero-imagen__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: left;
  padding: 40px 0;
}
.hero-imagen__overlay-content {
  max-width: 800px;
  position: relative;
  z-index: 1;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 5px;
}
.hero-imagen__subtitle {
  font-size: 20px;
  color: #ffffff;
  font-family: "Poppins", sans-serif;
  text-align: center;
}
.hero-imagen__title {
  font-size: 65px;
  line-height: 1.2;
  color: #ffffff;
  font-weight: normal;
  text-align: center;
}
.hero-imagen__description {
  font-size: 15px;
  color: #ffffff;
  max-width: 600px;
  text-align: center;
}

/* Media Queries */
@media (max-width: 767px) {
  .hero-imagen__overlay {
    padding: 20px 0;
  }
  .hero-imagen__overlay-content {
    max-width: 100%;
  }
  .hero-imagen__subtitle {
    font-size: 15px;
  }
  .hero-imagen__title {
    font-size: 30px;
    line-height: 1.2;
  }
  .hero-imagen__description {
    display: none;
  }
}
.hero-texto {
  background-color: #fff;
  padding: 80px 0;
}
.hero-texto__content {
  max-width: 800px;
}
.hero-texto__subtitle {
  font-size: 20px;
  color: #de9fc7;
  font-family: "Poppins", sans-serif;
}
.hero-texto__subtitle span {
  color: #944a84;
}
.hero-texto__title {
  font-size: 65px;
  line-height: 1;
  color: #944a84;
  font-weight: normal;
}
.hero-texto__title span {
  color: #de9fc7;
}
.hero-texto__description {
  font-size: 15px;
  color: #1b1918;
  max-width: 600px;
  margin-top: 15px;
}
.hero-texto__description p + p {
  color: currentColor;
  margin-top: 20px;
}
.hero-texto--center {
  text-align: center;
}
.hero-texto--center .hero-texto__content {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.hero-texto--center .hero-texto__subtitle,
.hero-texto--center .hero-texto__title,
.hero-texto--center .hero-texto__description {
  text-align: center;
}
.hero-texto--center .hero-texto__description p {
  text-align: center;
}
.hero-texto--promo .hero-texto__content {
  max-width: 100%;
}
.hero-texto--promo .hero-texto__subtitle {
  font-size: 17px;
}
.hero-texto--promo .hero-texto__title {
  font-size: 50px;
}

@media (max-width: 767px) {
  .hero-texto {
    padding: 60px 0;
  }
  .hero-texto__content {
    max-width: 100%;
  }
  .hero-texto__subtitle {
    font-size: 15px;
  }
  .hero-texto__title {
    font-size: 30px;
    line-height: 1.2;
  }
  .hero-texto--promo .hero-texto__subtitle {
    font-size: 14px;
  }
  .hero-texto--promo .hero-texto__title {
    font-size: 25px;
  }
}
.hero-texto__icon-absolute {
  position: absolute;
  width: 300px;
  height: 300px;
  opacity: 0.1;
}
.hero-texto__icon-absolute--left-top {
  top: -100px;
  left: -100px;
}
.hero-texto__icon-absolute--right-top {
  top: -100px;
  right: -100px;
}
.hero-texto__icon-absolute--left-bottom {
  bottom: -100px;
  left: -100px;
}
.hero-texto__icon-absolute--right-bottom {
  bottom: -100px;
  right: -100px;
}
.hero-texto__icon-absolute--top-center {
  top: -150px;
  left: 50%;
  transform: translateX(-50%);
}
.hero-texto__icon-absolute--bottom-center {
  bottom: -150px;
  left: 50%;
  transform: translateX(-50%);
}

@media (max-width: 767px) {
  .hero-texto__icon-absolute {
    width: 100px;
    height: 100px;
  }
  .hero-texto__icon-absolute--left-top {
    top: -30px;
    left: -30px;
  }
  .hero-texto__icon-absolute--right-top {
    top: -30px;
    right: -30px;
  }
  .hero-texto__icon-absolute--left-bottom {
    bottom: -30px;
    left: -30px;
  }
  .hero-texto__icon-absolute--right-bottom {
    bottom: -30px;
    right: -30px;
  }
  .hero-texto__icon-absolute--top-center {
    top: -30px;
  }
  .hero-texto__icon-absolute--bottom-center {
    bottom: -30px;
  }
}
.error-404 {
  padding: 120px 20px;
  text-align: center;
}

.error-404__title {
  font-size: 120px;
  font-weight: 700;
  color: #944a84;
  margin: 0;
}

.error-404__subtitle {
  font-size: 28px;
  margin-bottom: 20px;
  color: #de9fc7;
}

.error-404__text {
  font-size: 16px;
  margin-bottom: 40px;
  color: #838382;
}

.error-404__search {
  margin: 30px 0 40px;
}

.error-404__search input[type=text] {
  padding: 12px 18px;
  width: 280px;
  max-width: 100%;
  border: 1px solid #838382;
  border-radius: 0;
}
.error-404__search input[type=text]::placeholder {
  color: #838382;
}
.error-404__search input[type=text]:focus {
  outline: none;
  border-color: #944a84;
}

.error-404__search input[type=submit] {
  padding: 12px 18px;
  cursor: pointer;
  background-color: #1b1918;
  color: #F3F6F7;
  border: 1px solid #1b1918;
  border-radius: 4px;
}

.product-detail__wrap {
  margin-top: 20px;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: flex-start;
}
@media (max-width: 768px) {
  .product-detail__wrap {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

.product-gallery {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 20px;
}

.thumbs-gallery {
  height: 420px;
  padding: 10px;
}
.thumbs-gallery .swiper-slide {
  overflow: hidden;
  opacity: 0.5;
  cursor: pointer;
}
.thumbs-gallery .swiper-slide-thumb-active {
  opacity: 1;
  outline: 2px solid #944a84;
  outline-offset: 2px;
}
.thumbs-gallery .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.main-gallery {
  overflow: hidden;
}
.main-gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-info__title {
  font-size: 33px;
  font-weight: normal;
  color: #1b1918;
  text-transform: uppercase;
  margin-bottom: 20px;
}
.product-info__prices {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}
.product-info__price-original {
  font-size: 22px;
  text-decoration: line-through;
  color: #808080;
  font-weight: 300;
}
.product-info__price-discount {
  font-size: 26px;
  color: #1b1918;
  font-weight: 600;
}
.product-info__price-current {
  font-size: 26px;
  color: #1b1918;
  font-weight: 600;
}
.product-info__price-label, .product-info__wholesale-label {
  font-size: 14px;
  color: #b7b6b6;
  text-transform: uppercase;
  font-weight: 500;
}
.product-info__wholesale {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 10px;
}
.product-info__wholesale-price {
  font-size: 26px;
  color: #944a84;
  font-weight: 600;
}
.product-info__tag {
  background-color: #944a84;
  color: #fff;
  padding: 5px 10px;
  font-size: 12px;
  text-transform: uppercase;
}
.product-info__header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 10px;
}
.product-info__sku {
  display: flex;
  align-items: center;
  gap: 5px;
}
.product-info__sku span {
  font-size: 13px;
  text-transform: uppercase;
  color: #808080;
}
.product-info__category {
  padding-left: 20px;
  border-left: 1px solid #e0e0e0;
}
.product-info__category span {
  font-size: 13px;
  text-transform: uppercase;
  color: #808080;
}
.product-info__description {
  margin-top: 20px;
  font-size: 15px;
  color: #838382;
  line-height: 1.5;
}
.product-info__color, .product-info__sizes {
  margin-top: 25px;
}
.product-info__color-label, .product-info__sizes-label {
  font-size: 15px;
  color: #1b1918;
  text-transform: uppercase;
  font-weight: 500;
  margin-bottom: 15px;
  display: block;
}
.product-info__color-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  list-style: none;
  margin: 0;
}
.product-info__color-item {
  width: 30px;
  height: 30px;
  cursor: pointer;
  transition: transform 0.2s ease, border-color 0.2s ease;
  position: relative;
}
.product-info__color-item--selected {
  outline: 2px solid var(--border-color);
  outline-offset: 3px;
}
.product-info__color-item[style*="background-color: #ffffff"], .product-info__color-item[style*="background-color: #fff"] {
  border: 1px solid #ccc;
}
.product-info__color-item[style*="background-color: #ffffff"].product-info__color-item--selected, .product-info__color-item[style*="background-color: #fff"].product-info__color-item--selected {
  outline-color: #1b1918;
}
.product-info__color-item:hover {
  transform: scale(1.1);
}
.product-info__sizes-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  padding: 0;
  list-style: none;
  margin: 0;
}
.product-info__size-item {
  padding: 6px;
  width: 45px;
  height: 45px;
  display: flex;
  color: #1b1918;
  font-size: 16px;
  font-weight: 400;
  align-items: center;
  justify-content: center;
  background-color: #F3F6F7;
  cursor: pointer;
  transition: all 0.2s ease;
}
.product-info__size-item.is-active {
  background-color: #944a84;
  color: #fff;
  font-weight: 600;
}
.product-info__size-item--unique {
  width: auto;
  padding: 6px 15px;
  font-size: 14px;
}
.product-info__size-item--out-of-stock {
  opacity: 0.5;
  cursor: not-allowed;
  position: relative;
  overflow: hidden;
  user-select: none;
}
.product-info__size-item--out-of-stock::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -20%;
  width: 140%;
  height: 2px;
  background: #dc3545;
  transform: rotate(-45deg);
  transform-origin: center;
}
.product-info__size-item:hover {
  background-color: #944a84;
  color: #fff;
  border-color: #944a84;
}
.product-info__row-label {
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: space-between;
}
.product-info__size-guide {
  font-size: 13px;
  color: #944a84;
  cursor: pointer;
  text-transform: capitalize;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px dashed transparent;
  transition: all 0.2s ease;
}
.product-info__size-guide:hover {
  border-color: #944a84;
}
.product-info__size-guide svg {
  width: 24px;
  height: 24px;
}
.product-info__size-guide svg path, .product-info__size-guide svg circle {
  fill: #944a84;
}
.product-info__actions {
  margin-top: 30px;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-top: 30px;
}
.product-info__actions .btn--add-to-cart {
  flex: 1;
}
.product-info__shipping-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-info__message-error {
  margin-top: 0;
  padding: 0;
  background-color: rgba(148, 74, 132, 0.1);
  color: #944a84;
  border: 1px solid #944a84;
  border-radius: 4px;
  opacity: 0;
  transform: translateY(-6px);
  transition: all 0.25s ease;
  pointer-events: none;
}
.product-info__message-error.is-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
  margin-top: 15px;
  padding: 10px;
}
.product-info__message-error-text {
  font-size: 14px;
}

.product-quantity {
  display: flex;
  align-items: center;
}
.product-quantity__input {
  width: 60px;
  height: 45px;
  text-align: center;
  font-size: 16px;
  color: #1b1918;
  font-weight: 400;
  background-color: #F3F6F7;
  border: none;
  outline: 0;
}
.product-quantity__minus, .product-quantity__plus {
  width: 45px;
  height: 45px;
  background-color: #F3F6F7;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
}
.product-quantity__minus:hover, .product-quantity__plus:hover {
  background-color: #944a84;
  color: #fff;
  border-color: #944a84;
}
.product-quantity--modal .product-quantity__minus, .product-quantity--modal .product-quantity__plus {
  width: 40px;
  height: 40px;
}
.product-quantity--modal .product-quantity__input {
  width: 40px;
  height: 40px;
}
.product-quantity--cart .product-quantity__minus, .product-quantity--cart .product-quantity__plus {
  width: 40px;
  height: 40px;
}
.product-quantity--cart .product-quantity__input {
  width: 40px;
  height: 40px;
}

.shipping-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: space-between;
}
.shipping-info-item__icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(222, 159, 199, 0.3);
  border-radius: 50%;
}
.shipping-info-item__icon svg {
  width: 24px;
  height: 24px;
}
.shipping-info-item__icon svg path, .shipping-info-item__icon svg circle {
  fill: #944a84;
}
.shipping-info-item__icon img {
  width: 26px;
  height: auto;
}
.shipping-info-item__text {
  flex: 1;
}
.shipping-info-item__title {
  font-size: 14px;
  color: #838382;
  font-weight: 600;
}
.shipping-info-item__description {
  font-size: 13px;
  color: #9f9f9e;
}

.product-list-icon {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.product-list-icon__item {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
.product-list-icon__icon {
  width: 60px;
  height: auto;
}
.product-list-icon__icon img {
  width: 100%;
  height: auto;
}
.product-list-icon__text {
  flex: 1;
  font-size: 14px;
  color: #9f9f9e;
}

.product-html {
  margin-top: 50px;
}

.description-accordion-mobile {
  display: none;
}

/* Media queries */
@media (max-width: 1024px) {
  .product-detail__wrap {
    grid-template-columns: 1fr;
  }
  .product-gallery {
    grid-template-columns: 1fr;
  }
  .thumbs-gallery {
    order: 2;
    height: auto;
    grid-template-columns: repeat(4, 1fr);
  }
  .main-gallery {
    order: 1;
  }
  .description-accordion-mobile {
    display: block;
  }
  .description-accordion-desktop {
    display: none;
  }
}
.page-accordion__wrap {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.page-accordion__button {
  background-color: transparent;
  color: #9f9f9e;
  padding: 12px 25px;
  border-bottom: 1px solid #ddd;
  outline: 0;
  cursor: pointer;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.page-accordion__button[aria-expanded=true] {
  background-color: #F3F6F7;
  color: #838382;
}
.page-accordion__button[aria-expanded=true] + .page-accordion__content {
  height: auto;
  padding: 15px 25px;
  margin-bottom: 15px;
  opacity: 1;
  visibility: visible;
}
.page-accordion__button:hover {
  background-color: #F3F6F7;
  color: #838382;
}
.page-accordion__button-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.page-accordion__button-title svg {
  width: 20px;
  height: 20px;
}
.page-accordion__button-title svg path, .page-accordion__button-title svg rect, .page-accordion__button-title svg circle, .page-accordion__button-title svg ellipse, .page-accordion__button-title svg line, .page-accordion__button-title svg polyline, .page-accordion__button-title svg polygon {
  fill: #de9fc7;
}
.page-accordion__button-title img {
  width: 24px;
  height: auto;
}
.page-accordion__button-title span {
  font-size: 16px;
  font-weight: 500;
  text-align: left;
}
.page-accordion__icon {
  transition: transform 0.3s ease;
  font-size: 16px;
}
.page-accordion__content {
  height: 0;
  overflow: hidden;
  padding: 0 25px;
  margin-bottom: 0;
  opacity: 0;
  visibility: hidden;
  transition: height 0.3s ease, padding 0.3s ease, margin-bottom 0.3s ease, opacity 0.2s ease;
}

/* media queries */
@media screen and (max-width: 768px) {
  .page-accordion__wrap {
    flex-direction: column;
  }
  .page-accordion__left, .page-accordion__right {
    max-width: 100%;
  }
}
.tiendas__row {
  display: flex;
  gap: 80px;
  flex-direction: column;
}

.tiendas__item {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.tiendas__content {
  width: 500px;
  background-color: #F3F6F7;
  padding: 50px;
}
.tiendas__content h3 {
  font-size: 40px;
  font-weight: normal;
  color: #944a84;
  margin-bottom: 20px;
}
.tiendas__content p {
  font-size: 15px;
  color: #1b1918;
  margin-bottom: 20px;
}

.tiendas__contact {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.tiendas__contact_item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
}
.tiendas__contact_item .icono {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #944a84;
  color: #fff;
}
.tiendas__contact_item .icono i {
  font-size: 20px;
}
.tiendas__contact_item .text {
  width: calc(100% - 40px - 14px);
  font-size: 15px;
  color: #1b1918;
}
.tiendas__contact_item a {
  color: #1b1918;
}

.tiendas__galeria {
  flex: 1;
  min-width: 0;
}

.tiendas__btns {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: fit-content;
}

.js-galeria-shop-principal img, .js-galeria-shop-thumbs img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

.tienda__galeria_thumb {
  margin-top: 20px;
  position: relative;
  padding: 0 55px;
}
.tienda__galeria_thumb .swiper-button-prev {
  left: 0;
}
.tienda__galeria_thumb .swiper-button-next {
  right: 0;
}
.tienda__galeria_thumb .custom-swiper-arrow {
  opacity: 1;
}

.js-galeria-shop-thumbs {
  padding: 10px;
}
.js-galeria-shop-thumbs .swiper-slide {
  overflow: hidden;
  opacity: 0.5;
  cursor: pointer;
}
.js-galeria-shop-thumbs .swiper-slide-thumb-active {
  opacity: 1;
  outline: 2px solid #944a84;
  outline-offset: 2px;
}
.js-galeria-shop-thumbs .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

@media screen and (max-width: 768px) {
  .tiendas__row {
    gap: 40px;
  }
  .tiendas__item {
    flex-direction: column;
  }
  .tiendas__content {
    width: 100%;
    padding: 30px;
  }
  .tienda__galeria_thumb {
    padding: 0;
  }
}
.contact-block__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr 1fr;
  gap: 40px;
}
@media (max-width: 768px) {
  .contact-block__grid {
    grid-template-columns: 1fr;
  }
}
.contact-block__intro {
  max-width: 300px;
}
.contact-block__title {
  font-size: 48px;
  color: #8b4a7a;
  margin-bottom: 20px;
}
.contact-block__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-block__list li {
  margin-bottom: 10px;
  position: relative;
  padding-left: 18px;
}
.contact-block__list li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #944a84;
}
.contact-block__flecha {
  margin-top: 40px;
  padding-left: 18px;
}
.contact-block__flecha svg {
  width: 60px;
  height: auto;
}
.contact-block__flecha svg path {
  fill: #944a84;
}
.contact-block__card {
  background: #F3F6F7;
  padding: 30px;
}
.contact-block__subtitle {
  font-size: 18px;
  font-weight: bold;
  color: #1b1918;
  margin-bottom: 20px;
  position: relative;
  font-family: "Poppins", sans-serif;
  padding-left: 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact-block__subtitle--start {
  justify-content: flex-start;
}
.contact-block__subtitle::after {
  content: "•";
  position: absolute;
  left: 0;
  color: #944a84;
}
.contact-block__subtitle-icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #944a84;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
}
.contact-block__phones {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 20px;
}
.contact-block__info {
  display: flex;
  flex-direction: column;
  gap: 40px;
  height: 100%;
}

.contact-phone {
  background: #de9fc7;
  padding: 8px 12px;
  text-align: center;
  color: white;
  font-weight: 600;
}

.contact-info {
  background-color: #F3F6F7;
  padding: 20px;
  height: 100%;
}
.contact-info__label {
  font-weight: 500;
  color: #1b1918;
  margin-bottom: 10px;
}
.contact-info__text {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-info__text p {
  margin: 0;
  font-weight: 400;
  font-size: 14px;
  color: #838382;
}
.contact-info__text p span {
  font-weight: 600;
  color: #944a84;
}
.contact-info__row {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}
.contact-info__icon {
  width: 45px;
  height: 45px;
  border-radius: 50%;
  background: #944a84;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 22px;
}
.contact-info__content {
  width: calc(100% - 45px - 20px);
}
.contact-info__list-email {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.contact-info__list-email a {
  color: #838382;
  font-weight: 500;
}

.info-reminder {
  background-color: #F3F6F7;
}
.info-reminder__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  align-items: center;
}
.info-reminder__title {
  font-size: 40px;
  color: #944a84;
  margin-bottom: 10px;
}
.info-reminder__text {
  font-size: 15px;
  max-width: 320px;
  color: #1b1918;
}
.info-reminder__item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  padding-left: 30px;
  border-left: 1px solid #ddd;
}
.info-reminder__icon {
  width: 60px;
}
.info-reminder__icon img {
  width: 100%;
  height: auto;
}
.info-reminder__content {
  flex: 1;
}
.info-reminder__item-title {
  font-weight: bold;
  margin-bottom: 5px;
  font-family: "Poppins", sans-serif;
  color: #1b1918;
  font-size: 16px;
}
.info-reminder__item-text {
  color: #838382;
  font-size: 14px;
}
.info-reminder__item-text a {
  color: #944a84;
  text-decoration: underline;
}

@media (max-width: 768px) {
  .info-reminder__grid {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .info-reminder__item {
    border-left: none;
    padding-left: 0;
  }
}
.columns {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}
.columns--2 {
  gap: 100px;
  grid-template-columns: repeat(2, 1fr);
}
.columns--3 {
  gap: 80px;
  grid-template-columns: repeat(3, 1fr);
}
.columns--4 {
  gap: 60px;
  grid-template-columns: repeat(4, 1fr);
}
.columns--start {
  align-items: flex-start;
}
.columns--center {
  align-items: center;
}
.columns--end {
  align-items: flex-end;
}

@media screen and (max-width: 768px) {
  .columns--2, .columns--3, .columns--4 {
    grid-template-columns: 1fr;
    gap: 50px;
  }
}
.layout-sidebar {
  padding: 60px 0;
}
.layout-sidebar__container {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 80px;
}
.layout-sidebar__content .layout-section {
  margin-bottom: 80px;
}
.layout-sidebar__content .layout-section__title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #944a84;
}
.layout-sidebar__content .layout-section__subtitle {
  font-size: 20px;
  margin-bottom: 15px;
  color: #de9fc7;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}
.layout-sidebar__sidebar {
  position: sticky;
  top: 100px;
  height: fit-content;
  padding-left: 20px;
  border-left: 2px dashed #de9fc7;
}
.layout-sidebar__toggle {
  display: none;
}

.layout-nav__list {
  list-style: none;
  padding: 0;
  margin: 0;
}
.layout-nav__item {
  margin-bottom: 2px;
}
.layout-nav__item.has-submenu > .layout-nav__link {
  font-weight: 600;
}
.layout-nav__link {
  display: block;
  text-decoration: none;
  font-weight: 600;
  color: #944a84;
  transition: 0.3s ease;
  padding: 10px 15px;
  border-left: 3px solid transparent;
  background-color: transparent;
}
.layout-nav__link:hover {
  opacity: 0.7;
}
.layout-nav__link.active {
  background-color: rgba(148, 74, 132, 0.1);
  color: #944a84;
}
.layout-nav__submenu {
  list-style: none;
  padding-left: 15px;
  margin-top: 10px;
  display: none;
}
.layout-nav__submenu li {
  margin-bottom: 5px;
}
.layout-nav__submenu a {
  text-decoration: none;
  color: #de9fc7;
  font-weight: 500;
  font-size: 14px;
  transition: 0.3s ease;
  padding: 8px 15px;
  border-left: 3px solid transparent;
  background-color: transparent;
  display: block;
}
.layout-nav__submenu a.active {
  background-color: rgba(222, 159, 199, 0.1);
  color: #de9fc7;
  font-weight: 600;
}
.layout-nav .has-submenu.open > .layout-nav__submenu {
  display: block;
}

@media (max-width: 991px) {
  .layout-sidebar {
    padding: 40px 20px;
  }
  .layout-sidebar__container {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .layout-sidebar__sidebar {
    order: -1;
    padding-left: 0;
    border-left: none;
  }
  .layout-sidebar__toggle {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
    width: 100%;
    padding: 14px 16px;
    background: #944a84;
    color: #fff;
    border: none;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
  }
  .layout-sidebar .layout-nav {
    display: none;
    background: #fff;
    border: 1px solid #eee;
    padding: 15px;
    margin-top: 10px;
  }
  .layout-sidebar.menu-open .layout-nav {
    display: block;
  }
  .layout-sidebar.menu-open .layout-sidebar__toggle i {
    transform: rotate(180deg);
    transition: 0.3s ease;
  }
}
.cart-page__title {
  font-size: 2.5rem;
  font-weight: normal;
  margin-bottom: 2rem;
  color: #944a84;
}
.cart-page__title span {
  font-weight: bold;
  font-size: 1.5rem;
  color: #de9fc7;
  margin-left: 10px;
}
.cart-page__content {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.cart-page__content.none {
  display: none;
}
.cart-page__products {
  flex: 1;
}
.cart-page__empty-message {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  color: #1b1918;
  font-family: "Poppins", sans-serif;
  font-size: 18px;
}
.cart-page__empty-message svg {
  width: 80px;
  height: 80px;
  fill: #de9fc7;
}
.cart-page__empty-message span {
  font-weight: 500;
}
.cart-page__empty-message.none {
  display: none;
}
.cart-page__summary {
  width: 400px;
  height: fit-content;
}
.cart-page__alerts-coupon {
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cart-page__alerts-coupon .hide {
  display: none;
}

.summary {
  background-color: #F3F6F7;
  padding: 1.5rem;
}
.summary__title {
  font-size: 20px;
  font-weight: 600;
  color: #1b1918;
  font-family: "Poppins", sans-serif;
  padding-bottom: 20px;
  border-bottom: 1px solid #d9d9d9;
  margin-bottom: 20px;
}
.summary__row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.summary__col {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.summary__col--total .summary__value, .summary__col--total .summary__label {
  font-weight: 600;
  font-size: 17px;
}
.summary hr {
  margin: 20px 0;
}
.summary__label, .summary__value {
  font-size: 15px;
  font-weight: 400;
  color: #1b1918;
}
.summary__buttons {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.summary__promo-code-form {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 20px;
}
.summary__promo-code {
  display: flex;
  gap: 10px;
  width: 100%;
}
.summary__promo-code-input {
  flex: 1;
  padding: 10px;
  border: 1px solid #d9d9d9;
  border-radius: 0;
  font-size: 14px;
  text-transform: uppercase;
  color: #1b1918;
  font-weight: bold;
}
.summary__promo-code-input:focus {
  outline: none;
  border-color: rgba(148, 74, 132, 0.7);
  box-shadow: 0 0 0 4px rgba(148, 74, 132, 0.1);
}
.summary__promo-code-input::placeholder {
  color: #999;
  font-weight: 400;
  text-transform: capitalize;
}
.summary__promo-code-message {
  font-size: 13px;
  margin: 0;
  padding: 0;
  display: block;
}
.summary__promo-code-message.none {
  display: none;
}
.summary__promo-code-message.error {
  color: #dc3545;
}
.summary__promo-code-message.success {
  color: #06A52B;
}
.summary__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.summary__item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.summary__item-imagen {
  width: 80px;
  height: auto;
}
.summary__item-imagen img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.summary__item-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.summary__item-title {
  font-size: 14px;
  font-weight: 600;
  color: #944a84;
}
.summary__item-price {
  font-size: 14px;
  font-weight: 500;
  color: #1b1918;
}
.summary__item-attributes {
  font-size: 12px;
  color: #838382;
}

.cart-table {
  width: 100%;
  border-collapse: collapse;
}
.cart-table__header {
  display: flex;
  background-color: #F3F6F7;
  padding: 1rem;
  font-weight: 600;
  color: #1b1918;
  font-family: "Poppins", sans-serif;
  border-bottom: 1px solid #d9d9d9;
}
.cart-table__col {
  flex: 1;
}
.cart-table__col--product {
  flex: 2;
}
.cart-table__col--remove {
  flex: 0.3;
}
.cart-table__col--actions {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.cart-table__body {
  display: flex;
  flex-direction: column;
}
.cart-table__row {
  display: flex;
  align-items: center;
  padding: 1rem;
  border-bottom: 1px solid #d9d9d9;
}
.cart-table__product-info {
  display: flex;
  gap: 1rem;
}
.cart-table__product-imagen {
  width: 80px;
  height: auto;
}
.cart-table__product-imagen img {
  width: 100%;
  height: auto;
  object-fit: cover;
}
.cart-table__product-details {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
}
.cart-table__product-name {
  font-size: 15px;
  font-weight: 500;
  color: #944a84;
  text-decoration: none;
}
.cart-table__product-name:hover {
  text-decoration: underline;
}
.cart-table__product-attributes {
  font-size: 13px;
  color: #838382;
}
.cart-table__product-price {
  font-size: 15px;
  font-weight: 500;
  color: #1b1918;
}
.cart-table__product-total {
  font-size: 18px;
  font-weight: bold;
  color: #1b1918;
}
.cart-table__remove-btn {
  background: none;
  border: none;
  color: #944a84;
  cursor: pointer;
  font-size: 18px;
}
.cart-table__buy-later-btn {
  background: none;
  border: none;
  color: #944a84;
  cursor: pointer;
  font-size: 13px;
  display: inline-flex;
  align-items: center;
  gap: 5px;
  border-bottom: 1px solid #944a84;
}
.cart-table__buy-later-btn svg {
  width: 16px;
  height: 16px;
}
.cart-table__buy-later-btn svg path {
  fill: #944a84;
}
.cart-table__actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}

.buy-later {
  margin-top: 80px;
}
.buy-later__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}
.buy-later__title {
  font-size: 25px;
  color: #944a84;
}
.buy-later__text {
  font-size: 14px;
  color: #1b1918;
}

.checkout-page__content {
  display: flex;
  gap: 7rem;
  align-items: flex-start;
  margin-top: 40px;
}
.checkout-page__form, .checkout-page__payment {
  flex: 1;
}
.checkout-page__summary {
  width: 400px;
  height: fit-content;
}
.checkout-page__login-text {
  font-size: 14px;
  color: #1b1918;
  margin-bottom: 20px;
}

.payment-box {
  background: #fff;
  border: 1px solid #eee;
  border-radius: 8px;
  padding: 20px;
}
.payment-box__title {
  font-size: 18px;
  margin-bottom: 15px;
  font-weight: 500;
  font-family: "Poppins", sans-serif;
}
.payment-box__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.payment-box__label {
  color: #838382;
  font-weight: 300;
}
.payment-box__value {
  color: #1b1918;
  font-weight: 500;
}
.payment-box__value--orden {
  font-size: 16px;
  color: #944a84;
  font-weight: 600;
}
.payment-box__total {
  color: #1b1918;
  font-size: 18px;
  font-weight: 600;
}

.gracias__title {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}
.gracias__title svg {
  width: 80px;
  height: 80px;
}
.gracias__title svg path.st0 {
  fill: #06A52B;
}
.gracias__title h1 {
  font-size: 28px;
  font-weight: bold;
  color: #944a84;
}
.gracias__title p {
  font-size: 15px;
  font-weight: 500;
  color: #1b1918;
}
.gracias__btn {
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gracias__info_orden {
  margin-top: 24px;
  background: #ffffff;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  padding: 24px;
  max-width: 720px;
  margin: auto;
  margin-top: 50px;
}

.gracias__row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.gracias__col {
  padding: 16px;
  border-radius: 10px;
  background: #f8f9fb;
  text-align: center;
}

.gracias__col p {
  margin: 0;
  line-height: 1.4;
}

.gracias__col p:first-child {
  font-size: 13px;
  font-weight: 600;
  color: #b4b0b0;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 6px;
}

.gracias__col p:last-child {
  font-size: 18px;
  font-weight: 700;
  color: #944a84;
}

/* Destacar el monto */
.gracias__col:nth-child(2) p:last-child {
  color: #1b1918;
  font-size: 20px;
}

@media (max-width: 768px) {
  .gracias__row {
    grid-template-columns: 1fr;
  }
  .gracias__col {
    text-align: left;
  }
}
.gracias__transferencia .icon-transfer {
  width: 56px;
  height: 56px;
  fill: #f59e0b;
  margin-bottom: 16px;
}

.status-pending {
  color: #1b1918;
  background: #fff7ed;
  border-left: 4px solid #f59e0b;
  padding: 12px 16px;
  border-radius: 0;
  display: inline-block;
  margin-top: 8px;
}

.text-warning {
  color: #f59e0b;
  font-weight: 700;
}

/* Caja de transferencia */
.transferencia__box {
  margin: auto;
  margin-top: 32px;
  background: #f8fafc;
  border-radius: 12px;
  padding: 24px;
  max-width: 720px;
}

.transferencia__box h3 {
  margin-bottom: 16px;
  font-size: 18px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.transferencia__item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px dashed #e5e7eb;
}

.transferencia__item:last-child {
  border-bottom: none;
}

.transferencia__item span {
  color: #6b7280;
}

.transferencia__nota {
  margin: auto;
  margin-top: 20px;
  background: #fff7ed;
  border-left: 4px solid #f59e0b;
  padding: 16px;
  border-radius: 8px;
  font-size: 14px;
  max-width: 720px;
}

.transferencia__informacion {
  margin: auto;
  margin-top: 40px;
  max-width: 720px;
}

.text-warning {
  color: #1b1918 !important;
  background-color: #ffc107 !important;
  padding: 5px 10px;
  border-radius: 3px;
  font-size: 14px !important;
}

.success {
  color: #06A52B !important;
}

.login__wrap {
  display: flex;
  justify-content: space-between;
}
.login__imagen {
  width: 40%;
  background-color: #944a84;
  display: flex;
  align-items: center;
  justify-content: center;
}
.login__imagen img {
  width: 180px;
  height: auto;
}
.login__title {
  margin-bottom: 30px;
}
.login__title h1 {
  font-size: 35px;
  font-weight: 300;
  color: #944a84;
  text-align: center;
}
.login__title p {
  font-size: 15px;
  color: #838382;
  text-align: center;
  margin-top: 10px;
}
.login__box {
  max-width: 400px;
  margin: auto;
}
.login__form-content {
  width: 60%;
  padding: 80px;
}
.login__subtitle {
  font-size: 16px;
  font-weight: 300;
  opacity: 0.8;
}
.login__header {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 20px;
}
.login__olvidate_pass {
  margin-bottom: 20px;
}
.login__olvidate_pass a {
  font-size: 14px;
  font-weight: 400;
  color: #1b1918;
}
.login__olvidate_pass a:hover {
  text-decoration: underline;
  opacity: 0.6;
}

@media screen and (max-width: 1024px) {
  .login__imagen {
    width: 50%;
  }
  .login__form-content {
    width: 50%;
    padding: 50px;
  }
}
@media screen and (max-width: 768px) {
  .login__wrap {
    flex-direction: column-reverse;
  }
  .login__imagen, .login__form-content {
    width: 100%;
  }
  .login__form-content {
    padding: 50px 20px;
  }
}
.account-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 40px;
}

/* SIDEBAR */
.account-menu {
  background: #fff;
  border-radius: 14px;
  padding: 25px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.account-user {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 25px;
  color: #1b1918;
}

.account-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #944a84;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
}

.account-title {
  font-size: 30px;
  font-weight: 500;
  color: #944a84;
  display: flex;
  align-items: center;
  gap: 20px;
}

.account-menu ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.account-menu ul li {
  margin-bottom: 8px;
}
.account-menu ul li a {
  display: block;
  padding: 10px 14px;
  border-radius: 8px;
  text-decoration: none;
  color: #444;
  transition: 0.2s;
}
.account-menu ul li a:hover {
  background: #f2f4f7;
}
.account-menu ul li.active a {
  background: #944a84;
  color: #fff;
}

/* LOGOUT */
.account-menu .logout a {
  background: #ffecec;
  color: #d12c2c;
}

.account-menu .logout a:hover {
  background: #ffdede;
}

/* CONTENT */
.account-content {
  background: #fff;
  border-radius: 14px;
  padding: 35px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* CARDS */
.account-cards {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-top: 30px;
}
.account-cards .card {
  padding: 20px;
  border-radius: 12px;
  background: #fafafa;
  border: 1px solid #eee;
}
.account-cards .card h3 {
  margin-bottom: 10px;
  font-weight: 600;
  color: #1b1918;
  font-family: "Poppins", sans-serif;
}
.account-cards p {
  color: #838382;
  font-size: 15px;
  font-weight: 300;
}
.account-cards .card a {
  margin-top: 10px;
  display: inline-block;
  color: #944a84;
  font-weight: 600;
}

.account-profile__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  gap: 20px;
}
.account-profile__title {
  font-size: 24px;
  margin-bottom: 5px;
}
.account-profile__subtitle {
  color: #777;
  font-size: 14px;
}
.account-profile__grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
}

/* CARDS */
.profile-card {
  background: #fff;
  border-radius: 10px;
  padding: 18px;
  border: 1px solid #eee;
}
.profile-card__label {
  display: block;
  font-size: 12px;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 6px;
}
.profile-card__value {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

/* BUTTON */
.account-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 16px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 500;
  transition: 0.2s;
}
.account-btn--edit {
  background: #007bff;
  color: #fff;
}
.account-btn--edit:hover {
  transform: translateY(-1px);
  opacity: 0.9;
}

.account-edit__header {
  margin-bottom: 30px;
}
.account-edit__subtitle {
  font-size: 14px;
  color: #777;
}

.account-box {
  background: #fff;
  border-radius: 12px;
  border: 1px solid #eee;
  padding: 25px;
  margin-bottom: 25px;
}
.account-box__title {
  font-size: 18px;
  margin-bottom: 20px;
  font-family: "Poppins", sans-serif;
  font-weight: 600;
}

/* ORDERS */
.account-orders__header {
  margin-bottom: 30px;
}
.account-orders__subtitle {
  font-size: 14px;
  color: #777;
}

.orders-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.orders-table thead {
  background: #f7f7f7;
}
.orders-table th {
  text-align: left;
  padding: 12px;
  font-weight: 600;
  color: #444;
  border-bottom: 1px solid #eee;
}
.orders-table td {
  padding: 14px 12px;
  border-bottom: 1px solid #f0f0f0;
  color: #1b1918;
}
.orders-table tr:hover {
  background: #fafafa;
}
.orders-table__number {
  font-size: 16px;
  color: #944a84;
  font-weight: 600;
}
.orders-table__price {
  font-weight: 600;
}

.order-view {
  color: #fff;
  width: 35px;
  height: 35px;
  font-weight: 600;
  text-decoration: none;
  background-color: #944a84;
  border: transparent;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 20px;
  border-radius: 3px;
}

.order-status {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
}

/* ORDER STATUS */
.order-status {
  padding: 5px 10px;
  border-radius: 20px;
  font-size: 13px;
  font-weight: 600;
  display: inline-block;
  font-family: "Poppins", sans-serif;
}

/* pendiente */
.order-status--pendiente,
.order-status--pendiente {
  background: #fff4d6;
  color: #a36b00;
}

/* en proceso */
.order-status--en_proceso {
  background: #e6f0ff;
  color: #2b5bb8;
}

/* despachando */
.order-status--despachando {
  background: #eaf7ff;
  color: #0a6ea8;
}

/* enviado */
.order-status--enviado {
  background: #e6f8ed;
  color: #1c7c3f;
}

/* completado */
.order-status--completado,
.order-status--pagado {
  background: rgba(222, 159, 199, 0.1);
  color: #944a84;
}

/* anulada */
.order-status--anulada,
.order-status--rechazado {
  background: #ffecec;
  color: #c93232;
}

/* abandonada */
.order-status--abandonada {
  background: #f3f3f3;
  color: #666;
}

/* detalles */
.account-order-detail__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.account-order-detail__date {
  font-size: 14px;
  color: #777;
}

.account-order-box {
  border: 1px solid #eee;
  border-radius: 10px;
  padding: 20px;
  margin-bottom: 25px;
}
.account-order-box__title {
  margin-bottom: 15px;
  font-weight: 600;
  font-family: "Poppins", sans-serif;
}

.order-summary div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.order-summary__total {
  font-size: 18px;
  font-weight: 600;
  color: #944a84;
}

/* PRODUCTO EN PEDIDO */
.order-product {
  display: flex;
  align-items: center;
  gap: 12px;
}
.order-product__image {
  width: 60px;
  height: 60px;
  flex-shrink: 0;
}
.order-product__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px solid #eee;
}
.order-product__info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.order-product__name {
  font-weight: 600;
  color: #1b1918;
  text-decoration: none;
}
.order-product__name:hover {
  color: #944a84;
}
.order-product__meta {
  font-size: 13px;
  color: #777;
  display: flex;
  gap: 10px;
}

/* TIMELINE PEDIDO */
.order-timeline {
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
  position: relative;
}

.order-step {
  flex: 1;
  text-align: center;
  position: relative;
}
.order-step__circle {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ddd;
  margin: 0 auto 8px;
  position: relative;
  z-index: 2;
}
.order-step__label {
  font-size: 13px;
  color: #777;
}

/* linea */
.order-step::after {
  content: "";
  position: absolute;
  top: 10px;
  left: 50%;
  width: 100%;
  height: 3px;
  background: #ddd;
  z-index: 1;
}

.order-step:last-child::after {
  display: none;
}

/* completado */
.order-step--done .order-step__circle {
  background: #de9fc7;
}

.order-step--done .order-step__label {
  color: #de9fc7;
}

/* actual */
.order-step--active .order-step__circle {
  background: #944a84;
  transform: scale(1.2);
}

.order-step--active .order-step__label {
  color: #944a84;
  font-weight: 600;
}

/*# sourceMappingURL=style.css.map */
