:root {
  --font-primary: "Frank Ruhl Libre";
  --font-secondary: "Onest";

  --color-primary: #6c4a3f;
  --color-primary-light: #896b60;
  --color-primary-text: #f4eeeb;
  --color-secondary: #d0c7c261;
  --color-grey: #939393;
  --color-white: #ffffff;
  --color-black: #000000;
  --color-red: #9f0000;

  --border-radius: 10px;

  --font-size-text: 15px;

  --spaces-separator: 90px;
  --spaces-md: 20px;
  --spaces-sm: 10px;
  --spaces-xs: 5px;

  --width-container: 1600px;
}

p,
span,
a {
  font-family: var(--font-secondary) !important;
  font-weight: normal;
  font-size: var(--font-size-text) !important;
}

a:hover,
a:hover > span {
  cursor: pointer;
}

h1,
h2,
h3 {
  font-family: var(--font-primary) !important;
  font-size: 42px !important;
  line-height: 45px;
}

#wrapper {
  padding: 0;
}

#wrapper > .container {
  width: 100%;
  padding: 0 !important;
}

.container-full #left-column {
  padding: 0 var(--spaces-md) !important;
}

/* Btn back top */
.top_button {
  background-image: url(../img/icons/arrow_top.svg);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 45px;
  background-color: transparent;
  right: 20px;
  bottom: 20px;
  position: fixed;
  z-index: 999;
  width: 50px;
  height: 50px;
  font-size: 0;
  display: none;
  outline: none !important;
}

/* Buttons */
.btn {
  font-size: var(--font-size-text) !important;
  font-family: var(--font-secondary) !important;
  outline: none !important;
  transition: 0.3s !important;
}

.btn-primary {
  border: solid 1px var(--color-primary) !important;
  background-color: var(--color-primary) !important;
  color: var(--color-white) !important;
}

.btn-primary:hover {
  background-color: var(--color-secondary) !important;
  border-color: var(--color-secondary) !important;
  color: var(--color-black) !important;
}

.btn-secondary {
  border: solid 1px var(--color-secondary) !important;
  background-color: var(--color-secondary) !important;
  color: var(--color-black) !important;
}

.btn-secondary:hover {
  background-color: var(--color-primary) !important;
  border-color: var(--color-primary) !important;
  color: var(--color-white) !important;
}

/*.btn-tertiary {
  border: solid 1px var(--color-black) !important;
  background-color: var(--color-black) !important;
  color: var(--color-white) !important;
}

.btn-tertiary:hover {
  background-color: var(--color-white) !important;
  border-color: var(--color-primary) !important;
  color: var(--color-black) !important;
}*/

/* Alert */
.alert > span {
  padding: 0 !important;
}

/* Scroll */
::-webkit-scrollbar {
  width: 7px;
}

::-webkit-scrollbar-thumb {
  background: var(--color-primary);
}

/* Breadcrumb */
.container > .breadcrumb {
  margin: 0 var(--spaces-md) var(--spaces-sm) var(--spaces-md) !important;
}

.breadcrumb a span::after {
  bottom: 2px !important;
}

/* Flags */
.product-flags .discount {
  background-color: var(--color-red) !important;
}

/* Efecto subrayado */
.breadcrumb a span,
#index .dbhomecategories .catCont a div .desc,
#index .slider-products-home > .products > a span,
#index .containerCont.aboutUs .left a span,
#footer .pre-footer .reasuranceCont > div > a span,
#footer .footer-container .links a,
#footer .copyright a {
  position: relative;
}

.breadcrumb a span::after,
#index .dbhomecategories .catCont a div .desc::after,
#index .slider-products-home > .products > a span::after,
#index .containerCont.aboutUs .left a span::after,
#footer .pre-footer .reasuranceCont > div > a span::after,
#footer .footer-container .links a::after,
#footer .copyright a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 0;
  height: 1px;
  background-color: var(--color-primary);
  transition: width 0.3s ease-in-out;
}

.breadcrumb a:hover span::after,
#index .dbhomecategories .catCont a:hover div .desc::after,
#index .slider-products-home > .products > a:hover span::after,
#index .containerCont.aboutUs .left a:hover span::after,
#footer .pre-footer .reasuranceCont > div > a:hover span::after,
#footer .footer-container .links a:hover::after,
#footer .copyright a:hover::after {
  width: 100%;
}

/* REVISAR DE AQUI PA ARRIBA!!! */

/* ----------------------- HEADER ----------------------- */
#header {
  height: 219px;
  z-index: 1000;
}

#header > .headerCont {
  width: 100%;
  background-color: var(--color-white);
}

#header.fixed > .headerCont {
  top: 0;
  max-width: initial;
  border-bottom: solid 1px var(--color-primary);
  position: fixed;
  animation: 1s ease 0s normal both 1 running fixedheader;
}

#header.fixed > .headerCont > .header-nav {
  display: none;
}

@-webkit-keyframes fixedheader {
  0% {
    top: -100%;
  }

  100% {
    top: 0;
  }
}

@-moz-keyframes fixedheader {
  0% {
    top: -100%;
  }

  100% {
    top: 0;
  }
}

@keyframes fixedheader {
  0% {
    top: -100%;
  }

  100% {
    top: 0;
  }
}

/* Topbar */
#header .header-nav .headernav_flex {
  padding: var(--spaces-xs) 0;
}

/* Header */
#header .header-top {
  padding: 0;
}

#header .header-top .container > .header__flex {
  padding: var(--spaces-sm) 0;
  align-items: center;
}

/* Logo */
#header .container .logoContainer {
  display: flex;
  justify-content: center;
}

/* Iconos cuenta / carrito */
#header .container #iconosHeader {
  padding: 0;
  display: flex;
  justify-content: flex-end;
  gap: var(--spaces-md);
}

#header .container #iconosHeader * {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

#header .container #iconosHeader > a svg {
  width: 24px;
  height: 24px;
}

#header .container #iconosHeader > * svg {
  width: 25px;
  height: 25px;
}

#header .container #iconosHeader > #mobile_search svg,
#header .container #iconosHeader > #_desktop_user_info svg {
  width: 23px;
  height: 23px;
}

#header .container #iconosHeader > *:hover svg * {
  transition: 0.3s;
}

#header .container #iconosHeader > *:hover svg * {
  fill: var(--color-grey);
}

#header .container #iconosHeader #_desktop_cart > div {
  position: relative;
}

#header .container #iconosHeader #_desktop_cart .cart-products-count {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: -3px;
  right: -5px;
  width: 15px;
  height: 15px;
  background-color: var(--color-white);
  border: solid 1px var(--color-black);
  border-radius: 50%;
  font-size: 9px !important;
  color: var(--color-black);
  transition: 0.3s;
}

#header .container #iconosHeader #_desktop_cart:hover .cart-products-count {
  color: var(--color-grey);
  border-color: var(--color-grey);
}

#header .container #iconosHeader #_desktop_cart .cart-products-count.high {
  font-size: 11px !important;
}

/* Menú */
#header .container .megamenu {
  padding: var(--spaces-sm) 0 var(--spaces-md) 0;
  display: flex;
  justify-content: center;
}

#_desktop_megamenu .menu-content {
  margin-bottom: 0;
}

#_desktop_megamenu .menu-content .menu-item {
  margin: 0 60px 0 0 !important;
  position: relative;
}

#_desktop_megamenu .menu-content .menu-item:last-child {
  margin: 0 !important;
}

#_desktop_megamenu .menu-content .menu-item a {
  line-height: normal !important;
  width: min-content;
}

#_desktop_megamenu .menu-content .menu-item a span {
  font-family: var(--font-primary) !important;
  text-transform: uppercase;
  font-size: 20px !important;
}

#_desktop_megamenu .menu-content .menu-item.outlet a span {
  color: var(--color-red) !important;
}

#_desktop_megamenu .menu-content .menu-item:not(:has(.menu-dropdown)) a span::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: var(--color-black);
  transition: width 0.3s ease-in-out;
}

#_desktop_megamenu .menu-content .menu-item.outlet a span::after {
  background-color: var(--color-red);
}

#_desktop_megamenu .menu-content .menu-item a span:hover::after {
  width: 100%;
}

#_desktop_megamenu .menu-content .menu-item .menu-dropdown {
  padding-top: var(--spaces-xs);
  width: auto !important;
  left: 50% !important;
  transform: translateX(-50%) !important;
}

#_desktop_megamenu .menu-content .menu-item .menu-dropdown .pos-sub-inner {
  padding: var(--spaces-sm) var(--spaces-md);
  border-radius: var(--border-radius);
  box-shadow: 0px 1px 6px 0px rgba(0, 0, 0, 0.25);
}

#_desktop_megamenu .menu-content .menu-item .menu-dropdown .pos-sub-inner .pos-menu-row {
  margin: 0;
}

#_desktop_megamenu .menu-content .menu-item .menu-dropdown .pos-sub-inner .pos-menu-row .pos-menu-col {
  margin: var(--spaces-sm) 0;
  padding: 0;
  width: auto;
}

#_desktop_megamenu .menu-content .menu-item .menu-dropdown .pos-sub-inner .pos-menu-row .pos-menu-col a {
  font-weight: 400;
}

#_desktop_megamenu .menu-content .menu-item .menu-dropdown .pos-sub-inner .pos-menu-row .pos-menu-col::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background-color: var(--color-black);
  transition: width 0.3s ease-in-out;
}

#_desktop_megamenu .menu-content .menu-item .menu-dropdown .pos-sub-inner .pos-menu-col:hover::after {
  width: 100%;
}

/* Menu modal */
#menu-modal {
  padding: 0 !important;
}

#menu-modal .modal-dialog {
  height: 100dvh;
  width: 100%;
  max-width: 400px;
  margin: 0;
}

#menu-modal .modal-content {
  border: none;
  height: 100%;
}

#menu-modal .modal-body {
  padding: 0 var(--spaces-md);
  height: calc(100% - 120px);
  overflow-y: auto;
  overflow-x: hidden;
}

#menu-modal .modal-body .modal-header {
  padding: var(--spaces-sm) 0;
  border-bottom: 2px solid var(--color-primary);
}

#menu-modal .modal-body .modal-header .close {
  width: 100%;
  height: 35px;
  line-height: 40px;
  text-align: right;
  font-weight: 400;
  outline: none;
  opacity: 1;
}

#menu-modal .modal-body .modal-header .close > span {
  font-size: 30px !important;
}

#menu-modal .modal-body .menu-content {
  margin: 0;
  padding-top: var(--spaces-sm);
}

#menu-modal .modal-body .menu-content li.only-menu {
  display: none;
}

#menu-modal .modal-body .menu-content li a {
  padding: var(--spaces-sm) var(--spaces-md);
}

#menu-modal .modal-body .menu-content li:first-child a {
  border: none;
}

#menu-modal .modal-body .menu-content li.outlet a {
  color: var(--color-red);
}

#menu-modal .modal-body .menu-content li a > span {
  text-transform: uppercase;
  font-weight: 400;
}

#menu-modal .modal-body .menu-content li > span > i {
  margin-top: var(--spaces-xs);
}

#menu-modal .modal-body .menu-content li .menu-dropdown {
  margin-left: var(--spaces-md);
  width: calc(100% - 20px) !important;
}

#menu-modal .modal-body .menu-content li .menu-dropdown ul li > a {
  border: none;
  padding: var(--spaces-xs) var(--spaces-md);
}

#menu-modal .modal-body .menu-content li .menu-dropdown .pos-menu-row > .pos-menu-col:first-child ul li > a {
  padding-top: 0;
}

#menu-modal .modal-body .menu-content li .menu-dropdown .pos-menu-row > .pos-menu-col:last-child ul li > a {
  padding-bottom: var(--spaces-sm);
}

#menu-modal .contact {
  margin: var(--spaces-md) calc(var(--spaces-md) * 2);
  padding-top: var(--spaces-md);
  width: -webkit-fill-available;
  position: absolute;
  bottom: 0;
  display: flex;
  flex-direction: column;
  gap: var(--spaces-sm);
  border-top: 2px solid var(--color-primary);
}

#menu-modal .contact > div a {
  color: var(--color-black) !important;
}

/* Hamburguesa menú móvil */
#header .header-top .container > .header__flex > #menu-icon {
  padding-left: 0;
}

/* Buscador - Modal */
#content_search {
  padding: var(--spaces-md);
  height: 100dvh;
  margin-top: 0;
  top: 0;
  z-index: 9999;
  overflow: hidden;
}

#content_search .close_content_search {
  margin-bottom: var(--spaces-md);
  display: flex;
  justify-content: flex-end;
}

#content_search .close_content_search .close {
  outline: none;
  opacity: 1;
}

#content_search .close_content_search .close:hover {
  opacity: 0.5;
}

#content_search > form {
  margin-bottom: var(--spaces-md);
  position: relative;
}

#content_search > form > input[type="text"] {
  padding: var(--spaces-sm) var(--spaces-md);
  width: 100%;
  height: 45px;
  font-size: var(--font-md);
  outline: none;
  border: none;
  background-color: #ebecec;
}

#content_search > form > button[type="submit"] {
  padding: 0;
  height: 45px;
  width: 60px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  outline: none;
  cursor: pointer;
  background-color: var(--color-black);
  border: none;
}

#content_search .allresult_searchbar .btn {
  margin-bottom: var(--spaces-md);
}

#content_search .result_searchbar {
  height: calc(100% - 180px);
  overflow-y: auto;
}

#content_search .result_searchbar #js-product-list .products {
  margin: 0;
  padding-right: var(--spaces-sm);
  gap: var(--spaces-sm);
}

#content_search .result_searchbar #js-product-list .products > div {
  margin: 0;
  width: calc(20% - 8px);
  padding: var(--spaces-sm) 0;
}

/* ----------------------- FOOTER ----------------------- */
footer {
  margin: 0 !important;
}

/* CMS Reassurance */
#footer .pre-footer {
  padding: 0;
}

#footer .pre-footer * {
  color: var(--color-primary-light) !important;
}

#footer .pre-footer .reasuranceCont {
  padding: calc(var(--spaces-md) * 2) 0 var(--spaces-separator) 0;
  display: flex;
  justify-content: space-between;
  border-top: solid 1px var(--color-grey);
}

#footer .pre-footer .reasuranceCont > div {
  padding: 0 calc(var(--spaces-md) * 2);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: var(--spaces-sm);
}

#footer .pre-footer .reasuranceCont > div:not(:last-child) {
  border-right: solid 1px var(--color-grey);
}

#footer .pre-footer .reasuranceCont > div > .title {
  font-family: var(--font-primary) !important;
  font-size: 20px !important;
  font-weight: bold;
  text-transform: uppercase;
}

/* Footer */
#footer .footer-container {
  margin-top: var(--spaces-separator);
  padding: var(--spaces-separator) 0 calc(var(--spaces-md) * 3) 0;
}

#index #footer .footer-container {
  margin-top: 0;
}

#footer .footer-container .links *,
#footer .copyright * {
  color: var(--color-white) !important;
}

#footer .footer-container .links .logoCont > img {
  margin-bottom: var(--spaces-sm);
  width: 90%;
}

#footer .footer-container .links .logoCont > p:last-child {
  margin: 0;
}

#footer .footer-container .links h3 {
  font-size: 20px !important;
  text-transform: uppercase;
  font-family: var(--font_primary) !important;
}

#footer .footer-container .links a::after {
  bottom: -2px !important;
  background-color: var(--color-white) !important;
}

/* Copyright */
#footer .copyright .copyright_content {
  border-top: solid 1px var(--color-grey);
}

#footer .copyright .copyright_content .text_design {
  justify-content: flex-end;
}

#footer .copyright p,
#footer .copyright a {
  margin: 0;
  width: auto;
  display: flex;
  align-items: center;
}

#footer .copyright a::after {
  bottom: 0 !important;
  background-color: var(--color-white) !important;
}

/* Carruseles */
.slick-track {
  margin-left: 0;
}

/* ------------------------ HOME ------------------------ */
/* Carrusel */
#index #carousel {
  margin: 0;
}

#index #carousel ul {
  margin: 0;
  height: auto;
}

/* Categorías destacadas */
#index #banner-section {
  margin: var(--spaces-separator) 0;
}

#index #banner-section .container > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spaces-separator);
}

#index #banner-section .container > div .item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#index #banner-section .container > div .item:nth-child(even) {
  flex-direction: column-reverse;
}

#index #banner-section .container > div .item > a,
#index #banner-section .container > div .item > div {
  overflow: hidden;
}

#index #banner-section .container > div .item > a img,
#index #banner-section .container > div .item > div img {
  height: 100%;
  cursor: pointer;
  transition: 0.3s;
}

#index #banner-section .container > div .item > a img:hover,
#index #banner-section .container > div .item > div img:hover {
  transform: scale(1.1);
}

#index #banner-section .container > div .item .title {
  margin: 20px 0 0 0;
  font-size: 30px !important;
  text-transform: uppercase;
}

#index #banner-section .container > div .item:nth-child(even) .title {
  margin: 0 0 var(--spaces-md) 0;
}

/* Slider featured prod - Novedades */
.featured-products {
  padding: var(--spaces-separator) 0 !important;
  background-color: var(--color-secondary);
}

.featured-products > div {
  max-width: 100%;
  padding: 0 var(--spaces-md);
}

.featured-products .titleCont {
  text-align: center;
  margin-bottom: calc(var(--spaces-md) * 2);
  text-transform: uppercase;
}

.featured-products .titleCont h1 {
  font-size: 30px !important;
  text-transform: uppercase;
  margin: 0;
}

.featured-products .slick-list {
  margin: 0 -8px;
}

.featured-products .slick-arrow,
#index .slider-products-home > .products .slick-arrow {
  position: absolute;
  bottom: -40px;
  left: 20px;
  cursor: pointer;
}

.featured-products .slick-arrow:hover,
.featured-products .slick-arrow.slick-disabled,
#index .slider-products-home > .products .slick-arrow:hover,
#index .slider-products-home > .products .slick-arrow.slick-disabled {
  opacity: 0.6;
}

.featured-products .slick-arrow.slick-next,
#index .slider-products-home > .products .slick-arrow.slick-next {
  left: 40px;
}

/* Miniatura producto */
.product-miniature {
  margin: 0 8px var(--spaces-md) 8px !important;
}

#index .product-miniature,
#product .product-miniature {
  margin-bottom: 0 !important;
}

.product-miniature > div {
  margin: 0 !important;
  background-color: transparent !important;
}

.product-miniature > div .product-thumbnail {
  height: auto !important;
}

.product-miniature > div .product-description {
  background-color: transparent;
}

.product-miniature .product-info {
  display: flex;
  flex-direction: column;
  margin-top: 10px;
}

.product-miniature .product-info > div.product-description {
  padding: 0 !important;
}

.product-miniature .product-title {
  padding: 0 !important;
  font-weight: 600 !important;
  margin: 0 !important;
  height: auto !important;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}

.product-miniature .attributes_sizes {
  padding: var(--spaces-xs) var(--spaces-sm);
  width: 90%;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  column-gap: 20px;
  row-gap: 5px;
  pointer-events: none;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  background-color: var(--color-white);
  opacity: 0;
  transition: opacity 0.5s;
}

.product-miniature .product-thumbnail:hover .attributes_sizes {
  opacity: 1;
}

.product-miniature .attributes_sizes span.no-available {
  text-decoration: line-through;
  opacity: 0.5;
}

.product-miniature .product-price-and-shipping {
  min-height: auto !important;
  justify-content: flex-start !important;
  gap: 5px;
}

.product-miniature .price.discount {
  color: var(--color-red);
}

.product-miniature .price.discount + .regular-price {
  font-size: 14px !important;
  text-decoration: line-through;
  color: var(--color-grey) !important;
}

.product-miniature .product-flags {
  align-items: start;
  top: 6px;
  left: 10px;
  pointer-events: none;
}

.product-miniature .product-flags li.product-flag {
  margin: 4px 0;
}

.product-miniature .wishlist-button-add {
  display: none;
}

.wishlist-button-add {
  top: 0 !important;
  right: 5px !important;
  background: transparent;
  box-shadow: none !important;
  cursor: pointer !important;
}

.wishlist-button-add i {
  color: var(--color-black) !important;
}

/* Modales wishlist */
.wishlist-modal .modal-header button {
  outline: none;
}

.wishlist-modal .modal-header button span {
  font-size: 30px !important;
}

/* Category products */ /* Cambiar esta parte??  */
#index .slider-products-home {
  margin: var(--spaces-separator) 0;
  display: flex;
  align-items: center;
}

#index .slider-products-home > .image {
  padding: 0;
  align-self: normal;
}

#index .slider-products-home > .image img {
  height: -webkit-fill-available;
  width: -webkit-fill-available;
  object-fit: cover;
}

#index .slider-products-home > .products {
  margin-left: 20px;
  padding: 0 20px;
  text-align: center;
  display: flex;
  flex-direction: column;
}

#index .slider-products-home > .products > h2 {
  font-size: 30px !important;
  text-transform: uppercase;
  margin: 0;
}

#index .slider-products-home > .products > span {
  width: 80%;
  align-self: center;
}

#index .slider-products-home > .products > a {
  width: fit-content;
  align-self: center;
  margin-top: 5px;
}

#index .slider-products-home > .products > a span::after {
  bottom: 0 !important;
}

#index .slider-products-home > .products > div {
  margin-top: 20px;
}

#index .slider-products-home > .products .slick-arrow {
  top: -40px;
}

#index .slider-products-home > .products .slick-slide {
  margin: 0 10px;
}

/* CMS About us */
#index .containerCont.aboutUs {
  margin: var(--spaces-separator) 0;
  display: flex;
  gap: var(--spaces-md);
}

#index .containerCont.aboutUs > div {
  padding: 0;
}

#index .containerCont.aboutUs .left {
  display: flex;
  flex-direction: column;
  gap: var(--spaces-sm);
}

#index .containerCont.aboutUs .left h2 {
  font-size: 30px !important;
  margin: 0;
}

#index .containerCont.aboutUs .left .subtitle {
  font-family: var(--font-primary) !important;
  font-size: 18px !important;
  font-weight: bold;
}

#index .containerCont.aboutUs .left a {
  display: flex;
  align-items: center;
  gap: var(--spaces-xs);
}

#index .containerCont.aboutUs .left a > img {
  height: 12px;
  width: 12px;
}

#index .containerCont.aboutUs .right > img {
  height: 100%;
  width: 100%;
  object-fit: cover;
}

/* -------------------- CATEGORIA ----------------------- */
#category #wrapper > .container {
  width: 100%;
  padding: 0 !important;
}

/* Top categoria (header) */
.block-category {
  margin: 0;
}

.block-category > div {
  position: relative;
}

.block-category > div .category-cover {
  width: 100%;
}

.block-category > div .category-cover img {
  width: 100% !important;
  height: 300px !important;
  object-fit: cover;
}

.block-category > div .bg-category-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #00000052;
}

.block-category > div .category-text {
  padding: 0 calc(var(--spaces-md) * 4);
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--color-white);
}

.block-category > div .category-text .breadcrumb li::after,
.block-category > div .category-text .breadcrumb span {
  color: var(--color-white) !important;
}

.block-category > div .category-text .breadcrumb a span::after {
  background-color: var(--color-white) !important;
}

.block-category > div .category-text .page-header h1 {
  line-height: 34px;
}

.block-category > div .category-text .description {
  width: 60%;
}

.block-category > div .category-text .description a {
  text-decoration: underline;
  color: var(--color-white);
  cursor: pointer;
}

/* Bottom categoria (productos) */
body:not(#index) .container-full #content-wrapper {
  max-width: 100%;
  padding: 0 var(--spaces-md);
}

body:not(#index) .container-full #content-wrapper.hidden-sm-down {
  display: flex !important;
}

/* Filtros - Subcategorias - Ordenar por */
#products #js-product-list-top {
  margin: calc(var(--spaces-md) * 3) 0 calc(var(--spaces-md) * 2) 0;
  padding: 0;
  border: none;
}

#products .row .total-filter-products {
  display: flex;
  align-items: center;
}

#category #products .row .total-filter-products > div {
  padding-right: var(--spaces-md);
  margin-right: var(--spaces-md);
  border-right: 2px solid var(--color-primary);
  position: relative;
}

#category #products .row .total-filter-products > div > div {
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: var(--spaces-sm);
}

#category #products .row .total-filter-products > div > div span {
  color: var(--color-black);
}

#category #products .row .total-filter-products > div #count-filters {
  width: 16px;
  height: 16px;
  position: absolute;
  top: -5px;
  right: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px !important;
  border-radius: 50%;
  color: var(--color-white);
  background-color: var(--color-primary);
  cursor: pointer;
}

#category #products .row .total-filter-products > div #count-filters.hidden {
  display: none;
}

#products .row .total-filter-products > p {
  margin: 0;
}

#products .row .subcategories .categories {
  display: none;
}

#category #products .row .subcategories .categories {
  padding: 0 var(--spaces-md);
  display: flex;
  justify-content: center;
  gap: var(--spaces-md);
}

#category #products .row .subcategories .categories > a {
  color: var(--color-primary-light);
}

#category #products .row .subcategories .categories > a:hover span {
  color: var(--color-black) !important;
}

#category #products .row .subcategories .categories > a.active,
#category #products .row .subcategories .categories > a.active:hover span {
  color: var(--color-primary) !important;
}

#category #products .row .subcategories .categories > a.active span {
  font-weight: 600;
}

#products .row .sort-by-row > div {
  padding-right: 0;
}

#products .row .sort-by-row > div select {
  font-family: var(--font-secondary);
  font-size: var(--font-size-text) !important;
  max-width: fit-content !important;
  text-align-last: right;
}

/* Modal filtros */
#filters_category .modal-dialog {
  height: 100dvh;
  width: 100%;
  max-width: 400px;
  margin: 0;
  float: left;
}

#filters_category .modal-dialog .modal-content {
  height: 100%;
}

#filters_category .modal-body {
  height: 100%;
  padding: calc(var(--spaces-md) + var(--spaces-sm)) var(--spaces-md) !important;
}

#filters_category .modal-body > button {
  position: absolute;
  right: 40px;
  top: 28px;
  opacity: 1;
  outline: none;
}

#filters_category .modal-body > button span {
  font-size: 30px !important;
}

#filters_category .modal-body .modal-title {
  margin-bottom: var(--spaces-md);
  padding-bottom: var(--spaces-md);
  border-bottom: 2px solid var(--color-primary);
}

#filters_category .modal-body .modal-title > div {
  display: flex;
  align-items: center;
  gap: var(--spaces-sm);
}

#filters_category .modal-body .modal-title > div span {
  text-transform: uppercase;
  font-size: 20px !important;
  font-weight: bold;
  line-height: normal;
  color: var(--color-primary);
}

#filters_category #search_filter_body {
  height: auto;
  max-height: calc(100vh - 175px);
  overflow-y: auto;
}

#filters_category #search_filter_controls {
  margin-top: var(--spaces-md);
  position: relative;
}

#filters_category #search_filter_controls > button {
  margin: 0 !important;
  width: 100%;
}

#filters_category .modal-body .active_filters {
  padding: 0 0 calc(var(--spaces-md) + var(--spaces-xs)) 0;
  margin: 0 0 var(--spaces-md) 0;
  background: transparent;
  display: flex;
  flex-direction: column;
  border-bottom: solid 1px var(--color-primary);
}

#filters_category .modal-body .active_filters > p {
  margin-bottom: var(--spaces-xs);
}

#filters_category .modal-body .active_filters > ul {
  margin-bottom: var(--spaces-sm);
  display: flex;
  flex-wrap: wrap;
  gap: var(--spaces-xs);
}

#filters_category .modal-body .active_filters > ul .filter-block {
  margin: 0;
  padding: 0;
}

#filters_category .modal-body .active_filters > ul .filter-block a {
  margin: 0;
  padding: var(--spaces-xs);
  display: flex;
  align-items: center;
  gap: 2px;
  border: solid 1px var(--color-primary);
}

#filters_category .modal-body .active_filters > ul .filter-block a i {
  font-size: 15px;
}

#filters_category .modal-body .active_filters > #_desktop_search_filters_clear_all button {
  display: flex;
  align-items: center;
  gap: var(--spaces-xs);
}

#filters_category .modal-body .active_filters > #_desktop_search_filters_clear_all button i {
  margin: 0;
  font-size: 15px;
}

#filters_category .modal-body #search_filters,
#search_filters .facet:last-child {
  margin: 0;
  padding: 0;
}

#search_filters .facet:last-child {
  border: none !important;
}

#search_filters .facet .facet-title {
  margin: 0 !important;
  font-weight: 600;
  color: var(--color-black);
}

#search_filters .facet .title {
  display: flex;
  align-items: center;
  cursor: pointer;
}

#search_filters .facet .title[aria-expanded="true"] .collapse-icons .remove {
  display: block;
}

#search_filters .facet .title[aria-expanded="true"] .collapse-icons .add,
#search_filters .facet .title .collapse-icons .remove {
  display: none;
}

#search_filters .facet .title .collapse-icons {
  padding: 0;
  color: var(--color-primary);
}

#search_filters .facet > ul {
  margin: var(--spaces-sm) 0;
}

#search_filters .facet > ul li .facet-label a {
  margin-top: 0;
}

#search_filters .facet > ul li .facet-label a .search-link {
  line-height: normal;
}

#search_filters .facet > ul li .facet-label .custom-checkbox .ps-shown-by-js {
  border: 1px solid var(--color-primary);
  border-radius: 3px;
}

#search_filters .faceted-slider .ui-slider-horizontal {
  margin: var(--spaces-md) 0 0 1px;
  width: 95%;
}

/* Listado productos */
#products .products > div {
  width: 20%;
}

/* Paginación */
.pagination {
  display: flex;
}

.pagination .page-list {
  margin: var(--spaces-md) 0 0 0;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spaces-xs);
}

.pagination .page-list li:not(:has(.spacer)) {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: normal !important;
  border-radius: 50%;
  background-color: var(--color-grey-light);
}

.pagination .page-list li.current {
  background-color: var(--color-primary);
}

.pagination .page-list li:not(.current, :has(.spacer)):hover {
  background-color: var(--color-tertiary);
}

.pagination .page-list li a,
.pagination .page-list li .spacer {
  min-width: 30px;
  height: 30px;
  justify-content: center;
  display: flex;
  align-items: center;
  font-weight: 400;
  font-size: var(--font-sm) !important;
  letter-spacing: 0 !important;
  color: var(--color-black);
}

.pagination .page-list li.current a {
  color: var(--color-white);
}

.pagination .page-list li a svg {
  height: 10px !important;
}

/* Descripción categoría */
#full-column {
  padding: 0;
}

#full-description {
  margin: var(--spaces-separator) 0;
  padding: 0 calc(var(--spaces-md) * 4);
}

#full-description h2 {
  margin-bottom: var(--spaces-md);
}

#full-description p {
  margin: 0;
}

/* --------------------- PRODUCTO ----------------------- */
#product #wrapper > .container .product_topview {
  padding: 0;
}

/* Imágenes producto */
#product .product_left {
  padding-left: 0;
  padding-right: calc(var(--spaces-md) * 3);
}

#product .product_left > #content {
  max-width: none;
}

.product_cover_thumbnails {
  margin: 0 -5px;
}

.images-container > .slider-for {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin: 0;
}

.images-container > .slider-for > .thumb-item {
  margin-bottom: var(--spaces-sm);
  padding: 0 var(--spaces-xs);
  width: 50%;
  display: inline-block;
}

.images-container > .slider-for > .thumb-item:nth-last-child(-n + 2) {
  margin-bottom: 0;
}

.images-container > .no-image img {
  max-height: 500px;
  object-fit: cover;
}

/* Slick Lightbox */
.slick-lightbox button {
  outline: none !important;
}

.slick-lightbox .slick-prev,
.slick-lightbox .slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  cursor: pointer;
  border: none;
  background: transparent;
  width: 60px;
  height: 60px;
}

.slick-lightbox .slick-prev:before,
.slick-lightbox .slick-next:before {
  font-family: "Material icons";
  font-size: 40px;
  line-height: 1;
  opacity: 0.75;
  color: white;
}

.slick-lightbox .slick-prev:before {
  content: "arrow_back_ios";
}

.slick-lightbox .slick-next:before {
  content: "arrow_forward_ios";
}

.slick-lightbox-close {
  height: 50px;
  width: 50px;
}

.slick-lightbox-close:before {
  font-family: "Material icons";
  font-size: 50px;
  content: "close";
}

/* Flechas carrusel */
#product .product_left .slick-dots {
  margin: 0;
  padding: 0 var(--spaces-md);
  width: 100%;
  display: flex;
  justify-content: center;
  list-style-type: none;
  position: absolute;
  bottom: 0;
}

#product .product_left .slick-dots li button {
  margin: 0 var(--spaces-xs);
  padding: 0;
  width: 25px;
  height: 3px;
  color: transparent !important;
  background-color: var(--color-primary-text);
  outline: none;
  border: none;
  border-radius: 0;
}

#product .product_left .slick-dots li.slick-active button {
  background-color: var(--color-primary);
}

/* Información derecha */
#product .product_right,
#product .product_right > div {
  padding: 0;
}

/* Disponibilidad */
#product .product_right #product-availability {
  display: flex;
}

#product .product_right #product-availability span {
  padding: var(--spaces-xs) var(--spaces-sm);
  margin-bottom: var(--spaces-sm);
}

#product .product_right #product-availability .last_units {
  border: solid 1px #ff8800;
  color: #ff8800;
}

#product .product_right #product-availability .out_stock {
  border: solid 1px var(--color-black);
  color: var(--color-black);
}

/* Referencia */
#product .product_right #product-reference > .cont {
  margin-bottom: var(--spaces-sm);
  color: var(--color-grey);
  font-size: 13px;
}

#product .product_right #product-reference span {
  font-size: 13px !important;
}

/* Nombre - Wishlist */
#product .product_right .nameWishlistCont {
  margin-bottom: var(--spaces-sm);
  display: flex;
  justify-content: space-between;
}

#product .product_right .nameWishlistCont h1 {
  margin: 0;
  line-height: 45px;
}

#product .product_right .nameWishlistCont > button {
  padding: 0;
}

#product .product_right .nameWishlistCont > button i {
  font-size: 20px;
}

/* Precio */
#product .product_right .product-prices {
  margin-bottom: var(--spaces-md);
}

#product .product_right .product-price {
  margin: 0;
  display: flex;
}

#product .product_right .product-price > div {
  width: auto;
  display: flex;
  align-items: center;
  gap: var(--spaces-xs);
}

#product .product_right .product-price .price {
  font-size: 30px !important;
}

#product .product_right .product-price .price.discounted {
  color: var(--color-red);
}

#product .product_right .product-price .old_price {
  text-decoration: line-through;
  color: var(--color-grey);
}

#product .product_right .product-price .product_flags ul {
  margin: 0;
  position: relative;
}

#product .product_right .product-price .product_flags ul li {
  padding: var(--spaces-xs) 7px !important;
  margin: 0;
  font-size: 14px !important;
}

#product .product_right .product-price .product_flags ul li:not(.discount) {
  display: none;
}

/* Talla - Color */
#product .product_right .product_variants span {
  font-weight: normal;
}

#product .product_right .product_variants .radio-label {
  height: 40px;
  width: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: none;
}

#product .product_right .product_variants .input-radio:hover + span {
  background-color: var(--color-primary-text);
}

#product .product_right .product_variants .radio-label.no_hay {
  text-decoration: line-through;
  color: var(--color-grey);
}

#product .product_right .product_variants .input-radio:checked + span {
  background-color: var(--color-primary);
  color: var(--color-white);
}

#product .product_right .product_variants li label {
  display: flex;
}

#product .product_right .product_variants li label.color {
  width: auto;
  height: auto;
}

#product .product_right .product_variants li label.color span {
  height: 40px;
  width: 40px;
  border: none;
}

#product .product_right .product_variants li label.color span.white {
  border: solid 1px #896b6030;
}

#product .product_right .product_variants li label.color .input-color {
  height: 40px;
  width: 40px;
}

#product .product_right .product_variants label.color:has(.input-color:checked) {
  padding-bottom: var(--spaces-xs);
  border-bottom: solid 1px var(--color-primary);
}

/* Cantidad y btn add carrito */
#product .product_right .product_add_to_cart {
  margin: calc(var(--spaces-md) * 2) 0;
}

#product .product_right .product_add_to_cart .qty {
  margin: 0;
  display: block;
}

#product .product_right .product_add_to_cart .qty #quantity_wanted,
#product .product_right .product_add_to_cart .qty button {
  height: 45px !important;
}

#product .product_right .product_add_to_cart .add {
  max-width: calc(100% - 110px);
}

#product .product_right .product_add_to_cart .add button {
  text-transform: uppercase;
}

/* Acordeón */
#product .product_right .product-information {
  margin-top: var(--spaces-md);
}

#product .product_right .product-information .card {
  margin: 0;
}

#product .product_right .product-information .card:not(:last-child) {
  padding-bottom: var(--spaces-md);
  border-bottom: solid 1px var(--color-primary);
}

#product .product_right .product-information .card button {
  padding: 0;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
}

#product .product_right .product-information .card:not(:first-child) button {
  padding-top: var(--spaces-md);
}

#product .product_right .product-information .blockreassurance_product {
  margin: 0;
  padding: 0;
  border: none;
}

#product .product_right .product-information .blockreassurance_product > div {
  width: 100%;
  justify-content: flex-start;
}

#product .product_right .product-information .blockreassurance_product > div .item-product {
  min-width: 50px;
  display: flex;
  justify-content: center;
}

#product .product_right .product-information .blockreassurance_product > div .block-title .title {
  font-weight: 600;
}

/* Carruseles productos */
#product .container-full > .featured-products:first-of-type:not(:last-of-type) {
  margin-top: var(--spaces-separator);
}

#product .container-full > .featured-products:last-of-type {
  margin-bottom: calc(var(--spaces-md) * 2);
  padding-bottom: 0 !important;
  background-color: transparent;
}

/* ---------------------- CARRITO ----------------------- */
/* Modal carrito */
#blockcart-modal .modal-header button {
  margin-top: 2px !important;
  outline: none;
}

#blockcart-modal .modal-header button > span {
  font-size: 20px !important;
}

#blockcart-modal .modal-header .modal-title {
  display: flex;
  align-items: center;
  gap: var(--spaces-xs);
}

#blockcart-modal .modal-header .modal-title svg {
  margin-right: var(--spaces-xs);
  width: 20px;
  height: auto;
}

#blockcart-modal .modal-header .modal-title .total_products {
  font-size: 14px !important;
  font-weight: 400;
}

#blockcart-modal .modal-body {
  padding: 0 !important;
}

#blockcart-modal .modal-body .modal_products {
  width: 100%;
}

/* Carrito */
#cart .cart-grid {
  margin: 0;
}

#cart .cart-grid .cart-grid-body {
  padding: 0 calc(var(--spaces-md) * 3) 0 0;
  margin: 0;
}

#cart .cart-grid .cart-grid-body .cart-items > .cart-item {
  padding: var(--spaces-md) 0;
  margin: 0;
}

#cart .cart-grid .cart-grid-body .cart-items > .cart-item:not(:last-child) {
  border-bottom: solid 1px var(--color-grey);
}

#cart .cart-grid .cart-grid-body .cart-items > .cart-item .cart__product-qty > div {
  z-index: 9;
}

#cart .cart-grid .cart-grid-body .cart-items > .cart-item .product-totalprice:has(.old_price) {
  color: var(--color-red);
}

#cart .cart-grid .cart-grid-body .cart-items > .cart-item .product-totalprice .old_price {
  font-size: 14px !important;
}

#cart .cart-grid .cart-grid-right {
  padding-right: 0;
}

#cart .cart-grid .cart-grid-right .card {
  border: solid 1px var(--color-black);
}

#cart .cart-grid .block-promo .promo-code-button {
  padding-top: 0;
}

#cart .cart-grid .block-promo .promo-code-button > a,
#checkout .right .block-promo .promo-code-button > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#cart .cart-grid .block-promo .promo-code form .promo-input,
#checkout .right .block-promo .promo-code form .promo-input {
  height: 44px;
  border-right: none;
}

/* --------------------- CHECKOUT ----------------------- */
#checkout .left > section,
#checkout .right > section,
#order-confirmation #main > section {
  border: solid 1px var(--color-primary) !important;
}

/* Bloque izquierda */
#checkout .left h1 {
  font-size: 30px !important;
}

#checkout .left .step-number {
  font-size: var(--font-size-titles-lg) !important;
}

#checkout .left .step-edit {
  font-size: 14px !important;
}

#checkout .left .step-edit i {
  margin: 0 !important;
  font-size: 10px !important;
}

#checkout .left #checkout-personal-information-step .content {
  padding: 0;
}

#checkout .left #checkout-personal-information-step .content form:not(#login-form):not(#customer-form) {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: var(--spaces-md);
}

#checkout .left #checkout-personal-information-step .content #login-form footer,
#checkout .left #checkout-personal-information-step .content #customer-form footer {
  display: flex;
  justify-content: center;
}

#checkout .left #checkout-personal-information-step .content form:not(#login-form) button {
  margin: 0;
}

#checkout .left #checkout-personal-information-step .forgot-password a {
  font-size: var(--font-size-text-xs) !important;
}

#checkout .left #checkout-personal-information-step .forgot-password a:hover,
#checkout .left #checkout-personal-information-step .custom-checkbox a:hover {
  text-decoration: underline;
}

#checkout .left #checkout-addresses-step .content,
#checkout .left #checkout-delivery-step .content,
#checkout .left #checkout-payment-step .content {
  padding: 0;
}

#checkout .left #checkout-addresses-step .content .title_address:not(.title_address_shipping) {
  margin-top: 30px;
}

#checkout .left #checkout-addresses-step .content div > article .radio-block {
  margin: 0;
  min-height: 213px;
}

#checkout .left #checkout-addresses-step .content .add-address {
  margin: var(--spaces-xs) 0 var(--spaces-sm) 0;
}

#checkout .left #checkout-addresses-step .content .text_small:hover,
#checkout .left #checkout-payment-step .condition-label label a:hover {
  text-decoration: underline;
}

#checkout .left #checkout-addresses-step .content .chk {
  display: flex;
  align-items: center;
  gap: var(--spaces-xs);
}

#checkout .left #checkout-addresses-step .content .chk input {
  width: 15px;
  height: 15px;
  appearance: none;
  -webkit-appearance: none;
  border-radius: var(--border-radius-xs);
  border: solid 1px var(--color-primary);
}

#checkout .left #checkout-addresses-step .content .chk input:checked {
  background-color: var(--color-primary);
  position: relative;
}

#checkout .left #checkout-addresses-step .content #use_same_address:checked::after {
  content: "\f00c";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 10px;
  color: var(--color-white);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

#checkout .left #checkout-addresses-step .content .chk label {
  margin: 0;
}

#checkout .left #checkout-addresses-step .js-address-form .form-footer {
  margin-top: var(--spaces-md) !important;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spaces-md);
}

#checkout .left #checkout-addresses-step .js-address-form .form-footer .continue {
  margin: 0;
}

#checkout .left #checkout-addresses-step .js-address-form .form-footer .cancel-address {
  margin: 0;
  text-decoration: none;
}

#checkout .left #checkout-delivery-step .order-options > #delivery textarea {
  padding: var(--spaces-sm);
  margin: 0;
  width: 100%;
  outline: none;
}

#checkout .left #checkout-delivery-step .content #hook-display-after-carrier {
  margin: 0;
}

#checkout .left #checkout-payment-step .payment-options > div > div {
  display: flex;
  align-items: center;
  gap: var(--spaces-sm);
}

#checkout .left #checkout-payment-step .payment-options > div > div label {
  margin: 0;
}

#checkout .left #checkout-payment-step .payment-options > div > div label img {
  display: none;
}

#checkout .left #checkout-payment-step #conditions-to-approve a {
  font-size: 12px !important;
}

/* Bloque derecha */
#checkout .right .card-block-products {
  padding-bottom: 0 !important;
}

#checkout .right .card-block > .cart-summary-products > div {
  padding: var(--spaces-md) !important;
  padding-bottom: 0 !important;
}

#checkout .right .card-block > .block-promo {
  margin: 0;
}

#checkout .right .card-block > .card-block {
  padding: var(--spaces-md) 0 !important;
}

#checkout .right .card-block > .card-block .promo-name * {
  font-weight: 600 !important;
  color: #c81d25;
}

#checkout .right .card-block:last-child .cart-total {
  padding: var(--spaces-md) 0;
  margin: 0;
}

#checkout .right .card-block:last-child .cart-total > span {
  margin: 0;
  font-size: 18px !important;
}

/* Modal términos del servicio */
#checkout #checkout-payment-step .modal-dialog {
  max-width: 60%;
  margin: 30px auto;
}

#checkout #checkout-payment-step .modal-dialog .modal-content .close {
  outline: none;
}

#checkout #checkout-payment-step .modal-dialog .modal-content .close > span {
  font-size: 30px !important;
}

/* --------------- CONFIRMACIÓN DE PEDIDO --------------- */
#order-confirmation #wrapper {
  padding: 30px 0;
}

#order-confirmation #wrapper #content-hook_order_confirmation .title_confirmation > div {
  display: flex;
  flex-direction: column;
}

#order-confirmation #wrapper #content-hook_order_confirmation .title_confirmation > div .card-title {
  margin: 0;
  line-height: normal;
  font-size: 20px !important;
}

#order-confirmation #wrapper #content-hook_order_confirmation .title_confirmation > div .card-title i {
  padding: 0 var(--spaces-sm) 0 0;
}

#order-confirmation #wrapper #content-hook_order_confirmation .title_confirmation > div .reference {
  margin-left: 36px;
}

#order-confirmation #wrapper #content-hook_order_confirmation .title_confirmation > a:hover span {
  text-decoration: underline;
}

#order-confirmation #wrapper #content a:hover {
  text-decoration: underline;
}

#order-confirmation #wrapper #content #order-details {
  margin: 0;
}

#order-confirmation #wrapper #content #order-details ul li:last-child {
  font-weight: 600;
}

#order-confirmation #wrapper #content-hook-order-confirmation-footer {
  border: none !important;
}

/* -------------------- INICIAR SESIÓN ------------------ */
#authentication #content,
#registration #content,
#password #content {
  max-width: 640px;
  padding: 32px;
  margin: 0 auto !important;
}

#authentication #content-wrapper,
#registration #content-wrapper {
  padding-bottom: 50px;
}

#authentication #content-wrapper #content h1,
#registration #content-wrapper #content h1,
#password #content-wrapper #content h1 {
  margin-bottom: var(--spaces-md);
  text-align: center;
}

#authentication #content-wrapper #content a:hover,
#registration #content-wrapper #content a:hover,
#password .page-footer a:hover span,
#contact #content-wrapper #content form .custom-checkbox a:hover {
  text-decoration: underline;
}

/* ---------------------- REGISTRO ---------------------- */
#registration #content-wrapper #content .register-form .form-control-comment,
#identity #content-wrapper #content form .form-control-comment,
#contact #content-wrapper #content form .form-control-comment,
#checkout .left #checkout-personal-information-step .form-control-comment {
  font-size: 13px !important;
}

#registration #content-wrapper #content .register-form .custom-checkbox span:not(.form_required),
#identity #content-wrapper #content form .custom-checkbox span:not(.form_required),
#contact #content-wrapper #content form .custom-checkbox span:first-of-type,
#checkout .left #checkout-personal-information-step .custom-checkbox span:first-of-type,
#checkout .left #checkout-payment-step .custom-checkbox span:first-of-type {
  height: 15px;
  width: 15px;
  position: relative;
  margin-right: 2px;
  vertical-align: sub;
}

#registration #content-wrapper #content .register-form .custom-checkbox span i,
#identity #content-wrapper #content form .custom-checkbox span i,
#contact #content-wrapper #content form .custom-checkbox span i,
#checkout .left #checkout-personal-information-step .custom-checkbox span i,
#checkout .left #checkout-payment-step .custom-checkbox span i {
  font-size: 10px !important;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
}

#registration #content-wrapper #content .register-form .custom-checkbox *,
#identity #content-wrapper #content form .custom-checkbox *,
#checkout .left #checkout-personal-information-step .custom-checkbox *,
#checkout .left #checkout-payment-step #conditions-to-approve label * {
  font-size: 12px !important;
}

/* ----------------- PASSWORD RECOVERY ------------------ */
#password #content > form {
  padding: 0;
}

#password #content > form .form-group,
#password .ps-alert-success li {
  margin: 0;
}

#password #content > form .form-group .form-footer > button {
  width: 100%;
  height: auto;
  margin: 15px 0 0 0;
}

#password .page-footer {
  margin-bottom: 50px !important;
}

#password .page-footer a {
  display: flex;
  align-items: center;
  gap: var(--spaces-xs);
}

#password .page-footer a * {
  font-size: 14px !important;
}

#password .ps-alert-success {
  padding: 0;
  margin: 0;
}

/* ------------------ PASSWORD RESET -------------------- */
#password #content > form .renew-password {
  margin: 0;
}

#password #content > form .renew-password > .email {
  text-align: center;
}

#password #content > form .renew-password > .container-fluid > .form-group {
  display: flex;
  justify-content: center;
  align-items: center;
}

#password #content > form .renew-password > .container-fluid > .form-group:first-child {
  margin-bottom: var(--spaces-sm);
}

#password #content > form .renew-password > .container-fluid > .form-group:last-child {
  margin-top: var(--spaces-md);
}

#password #content > form .renew-password > .container-fluid > .form-group label {
  margin: 0;
}

#password #content > form .renew-password > .container-fluid > .form-group:last-child button {
  margin: 0;
}

/* --------------------- MI CUENTA ---------------------- */
#my-account #content .row {
  margin: 0;
}

#my-account #content .row > p {
  padding: 0;
}

#my-account #content .row > p:not(:first-child) {
  margin-top: var(--spaces-md);
}

#my-account #content .my-account-container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  gap: var(--spaces-md);
}

#my-account #content .my-account-container > a {
  padding: 0;
  width: calc(50% - var(--spaces-sm));
  border: solid 1px var(--color-primary);
}

#my-account #content .my-account-container > a:hover {
  background-color: var(--color-secondary);
}

#my-account #content .my-account-container > a .link-item {
  margin: 0;
  border: none;
  background: transparent;
}

#my-account #content .my-account-container > a .link-item:hover {
  border: none;
  background-color: var(--color-secondary);
}

#my-account #content .my-account-container > a .link-item > i {
  color: var(--color-black);
}

#my-account #content #link_logout > a {
  margin: var(--spaces-md);
  padding: 0;
}

#my-account #content #link_logout > a > .link-item {
  border: none;
}

/* ---------------- SUBAPARTADOS MI CUENTA -------------- */
#left-column .navigation_desktop .title {
  font-weight: 600;
}

#left-column .navigation_account:last-child {
  padding-bottom: 0;
}

#left-column #accordion {
  border: solid 1px var(--color-black);
}

#left-column #accordion .card-body {
  border-top: solid 1px var(--color-black);
}

#history #content p,
#discount #content p,
#order-slip #content p,
#identity #content p,
#addresses #content p,
#address #content p {
  margin: 0;
}

#history #content h2,
#discount #content h2,
#order-slip #content h2,
#identity #content h2,
#addresses #content h2,
#address #content h2 {
  margin-bottom: var(--spaces-md);
}

#history #content .orders_history {
  margin-top: var(--spaces-md);
}

#history #content .order_history,
#order-detail #content .order-items > div {
  border: solid 1px var(--color-black);
}

#history #content .order_history .history_buttons {
  padding-bottom: 0;
}

#order-detail #content .order_resume > .box {
  padding-left: 0;
  padding-right: 0;
}

#order-detail #content .order_resume > .box .row > div:first-child {
  border-bottom: none;
}

#order-detail #content .messages {
  padding-left: 0;
  padding-right: 0;
}

#order-detail #content .messages .message div {
  margin: 0;
}

#order-detail #content .messages hr {
  border: none;
  border-top: solid 1px var(--color-grey);
}

#order-detail #content .messages hr:last-of-type {
  display: none;
}

#order-detail #content .order-message-form {
  padding: 0 !important;
  margin: 0;
}

#discount #content table,
#order-slip #content table {
  border: solid 1px var(--color-primary);
}

#discount #content table > thead th,
#order-slip #content table > thead th {
  background-color: var(--color-primary);
  color: var(--color-white);
}

#discount #content table th,
#discount #content table td,
#order-slip #content table th,
#order-slip #content table td {
  text-align: center !important;
}

#discount .cart-rules .cart-rule > ul {
  border: solid 1px var(--color-primary);
  padding-top: var(--spaces-sm);
  padding-bottom: var(--spaces-sm);
}

#order-slip .p2 {
  margin-bottom: var(--spaces-sm) !important;
}

#order-slip .credit-slips .credit-slip > ul {
  border: solid 1px var(--color-primary);
  border-radius: var(--border-radius);
  padding: var(--spaces-sm);
}

#identity #content-wrapper .card_account,
#address #content-wrapper .card_account {
  margin: 0;
  padding: 0;
}

#addresses #content-wrapper #notifications .container,
#address #content-wrapper #notifications .container {
  padding: 0 !important;
}

#addresses #content-wrapper #notifications .container > article,
#address #content-wrapper #notifications .container > article {
  margin: 0 0 40px 0;
}

#addresses #content-wrapper div:not(.container) > article {
  border: solid 1px var(--color-primary);
  margin-bottom: var(--spaces-md);
}

#addresses #content-wrapper .addresses-footer {
  margin: 0;
}

#addresses #content-wrapper .addresses-footer > a:hover > span {
  opacity: 1;
}

#module-psgdpr-gdpr #content-wrapper {
  padding: 0 !important;
}

#module-psgdpr-gdpr #content-wrapper .container .page_content > div {
  margin-bottom: var(--spaces-md);
  border: solid 1px var(--color-primary);
}

#module-blockwishlist-lists #content-wrapper .wishlist-container-header,
#module-blockwishlist-lists #content-wrapper .wishlist-container-header h1 {
  margin: 0;
}

#module-blockwishlist-lists #content-wrapper a {
  color: var(--color-black) !important;
  padding-left: 0;
  padding-right: 0;
}

#module-blockwishlist-lists #content-wrapper a:hover,
#module-blockwishlist-lists #content-wrapper li:hover p {
  color: var(--color-black) !important;
}

#module-blockwishlist-lists #content-wrapper #content {
  margin: 0;
  padding: 0;
  box-shadow: none !important;
}

#module-blockwishlist-lists #content-wrapper #content li {
  border-bottom: 1px solid var(--color-lightgrey);
}

#module-blockwishlist-lists #content-wrapper #content .dropdown-menu {
  position: absolute;
  right: 40px;
  top: 35px;
  z-index: 9;
}

#module-blockwishlist-lists #content-wrapper #content .dropdown-menu > * {
  font-size: var(--font-size-text);
}

/* Detalles lista de deseos */
#view .wishlist-products-container {
  margin-bottom: 40px;
}

#view .wishlist-products-container > div h1,
#view .wishlist-products-container > #content {
  margin: 0 !important;
}

#view .wishlist-products-container > div .sort-by-row {
  display: none;
}

#view .wishlist-products-container .wishlist-list-empty {
  font-weight: 500;
}

#view .wishlist-products-container ul {
  padding: 0;
  margin: 0;
  gap: var(--spaces-md);
}

#view .wishlist-products-container ul li {
  margin: 0;
}

#view .wishlist-products-container ul li .wishlist-button-add {
  box-shadow: none;
  background-color: transparent;
}

#view .wishlist-products-container ul li .wishlist-product-title {
  margin: 0;
  min-height: 60px;
}

#view .wishlist-products-container ul li .wishlist-product-price {
  margin: var(--spaces-sm) 0;
}

#view .wishlist-products-container ul li .wishlist-product-price:has(span) {
  color: var(--color-red);
}

#view .wishlist-products-container ul li .wishlist-product-price > span {
  font-size: var(--font-size-text-xs) !important;
  color: darkgray;
  font-weight: 400;
}

#view .wishlist-products-container ul li .wishlist-product-combinations {
  align-items: center;
}

#view .wishlist-products-container ul li .wishlist-product-combinations * {
  font-size: 14px !important;
}

#view .wishlist-products-container ul li .wishlist-product-combinations > p {
  min-height: auto;
}

#view .wishlist-products-container ul li .wishlist-product-combinations > a {
  margin-left: var(--spaces-sm);
}

#view .wishlist-products-container ul li .wishlist-product-combinations > a i {
  font-size: var(--font-size-text) !important;
}

#view .wishlist-products-container ul li .wishlist-product-bottom {
  margin-top: var(--spaces-sm);
}

/* ---------------------- CONTACTO ---------------------- */
/* Bloque izquierda - Información */
#contact #contact-block {
  border: solid 1px var(--color-primary);
}

#contact-block > .contact-block-top {
  position: relative;
}

#contact-block > .contact-block-top > img {
  height: 200px;
  width: 100%;
  object-fit: cover;
  opacity: 0.6;
}

#contact-block > .contact-block-top > .imgCont {
  position: absolute;
  bottom: 20px;
  left: 25px;
}

#contact-block > .contact-block-links {
  padding: var(--spaces-md);
}

#contact-block > .contact-block-links > .contact-link {
  display: flex;
  align-items: center;
  gap: var(--spaces-sm);
}

#contact-block > .contact-block-links > .contact-link:not(:last-child) {
  margin-bottom: var(--spaces-sm);
}

#contact-block > .contact-block-links > .contact-link > .contact-link-img {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--color-secondary);
  border-radius: 50%;
  min-width: 45px;
  height: 45px;
}

#contact-block > .contact-block-links > .contact-link .contact-link-text {
  overflow: hidden;
  text-overflow: ellipsis;
}

#contact-block > .contact-block-links > .contact-link .contact-link-text:hover {
  text-decoration: underline;
}

#contact-block > .contact-block-links > .contact-link .contact-link-text a {
  font-size: var(--font-size-text) !important;
  color: var(--color-black);
}

/* Bloque derecha - Formulario */
#contact #content-wrapper #content,
#contact #content-wrapper #content > .contact-form,
#contact #content-wrapper .page-footer {
  margin: 0;
  padding: 0;
}

#contact #content-wrapper #content .title_contactform {
  color: var(--color-black);
  text-transform: uppercase;
  font-size: 25px !important;
}

#contact #content-wrapper form .file label.btn:hover {
  background-color: var(--color-secondary);
}

#contact #content-wrapper #content form .custom-checkbox * {
  font-size: 14px !important;
}

/* ------------------------ CMS ------------------------- */
#cms .page-header {
  display: none;
}

#cms #content {
  margin-bottom: 80px;
}

#cms h3 {
  margin-top: 40px;
}

#cms p {
  font-size: var(--font-size-text) !important;
}

#cms .page-content table tbody td {
  border: 1px solid var(--color-primary);
}

#cms .page-content table p {
  margin-bottom: 0;
}

#cms .page-content .table-container {
  width: 100%;
  overflow: auto;
}

#cms .button-cookies {
  margin-top: var(--spaces-md);
  color: var(--color-white);
}

#cms .button-cookies:hover {
  color: var(--color-black);
}

/* -------------------- WHATSAPP ------------------------ */
.whatsapp {
  display: block;
  position: fixed;
  z-index: 999;
  left: 20px;
  bottom: 20px;
}

.whatsapp a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #25d366;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  transition: 0.3s;
}

.whatsapp a:hover {
  transform: scale(1.1) !important;
}

/* ------------------- RESPONSIVE ----------------------- */
@media (max-width: 1600px) {
  /* ----------------------- HOME ----------------------- */
  .featured-products > div {
    max-width: var(--width-container);
  }

  /* ------------------- CATEGORIA ---------------------- */
  /* Bottom categoria (productos) */
  body:not(#index) .container-full #content-wrapper {
    max-width: var(--width-container);
  }
}

@media (max-width: 1199px) {
  /* ---------------------- HEADER ---------------------- */
  /* Buscador - Modal */
  #content_search .result_searchbar #js-product-list .products > div {
    width: calc(25% - 7.5px);
  }

  /* ---------------------- FOOTER ---------------------- */
  #footer .footer-container .row .links.col-md-5 {
    margin-bottom: calc(var(--spaces-md) * 3);
    width: 100%;
  }

  #footer .footer-container .row .links.col-md-5 .logoCont {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  #footer .footer-container .row .links.col-md-5 .logoCont img {
    margin: 0 auto 40px auto;
    width: 50%;
  }

  #footer .footer-container .row .links.col-md-5 .logoCont p {
    max-width: 90%;
    text-align: center;
  }

  #footer .footer-container .row .links.col-md-1 {
    display: none;
  }

  #footer .footer-container .row .links.col-md-2 {
    width: calc(100% / 3);
    text-align: center;
  }

  /* -------------------- CATEGORIA ----------------------- */
  /* Listado productos */
  #products .products > div {
    width: 25% !important;
  }
}

@media (max-width: 991px) {
  /* ---------------------- HEADER ---------------------- */
  /* Topbar */
  #header .header-nav {
    display: flex;
    background-color: var(--topbar_bk);
  }

  /* Buscador - Modal */
  #content_search .result_searchbar #js-product-list .products > div {
    width: calc(calc(100% / 3) - calc(var(--spaces-md) / 3));
  }

  /* ----------------------- FOOTER ----------------------- */
  /* CMS Reassurance */
  #footer .pre-footer .reasuranceCont > div {
    padding: 0 var(--spaces-md);
  }

  /* Copyright */
  #footer .copyright .copyright_content {
    flex-direction: row;
  }

  /* ----------------------- HOME ----------------------- */
  /* Carrusel */
  #index #carousel {
    left: auto;
  }

  /* Categorías destacadas */
  #index #banner-section .container > div {
    gap: calc(var(--spaces-md) * 2);
  }

  /* Category products */
  #index .slider-products-home > .products {
    margin: 0;
  }

  /* CMS About us */
  #index .containerCont.aboutUs {
    flex-direction: column;
    gap: calc(var(--spaces-md) * 2);
  }

  #index .containerCont.aboutUs .right > img {
    max-height: 400px;
  }

  /* -------------------- CATEGORIA ----------------------- */
  /* Filtros / Subcategorías / Ordenación */
  #products .row .total-filter-products > div {
    padding-right: var(--spaces-sm);
    margin-right: var(--spaces-sm);
  }

  #products .row .total-filter-products > div #count-filters {
    right: -5px;
  }

  #products #js-product-list-top > div {
    width: calc(60% / 2);
  }

  #products #js-product-list-top > .total-filter-products {
    width: 40%;
  }

  /* Listado productos */
  #products .products {
    justify-content: flex-start;
  }

  #products .products > div {
    width: calc(100% / 3);
  }

  /* -------------------- PRODUCTO ---------------------- */
  /* Imágenes producto */
  #product .product_left {
    padding: 0;
  }

  /* Precio */
  #product .product_right .product-price {
    gap: var(--spaces-sm);
  }

  /* --------------------- CARRITO ---------------------- */
  /* Carrito */
  #cart .cart-grid .cart-grid-body {
    margin-bottom: calc(var(--spaces-md) * 3);
    padding: 0;
  }

  #cart .cart-grid .cart-grid-right {
    padding: 0;
  }

  /* --------------------- CONTACTO --------------------- */
  /* Bloque derecha - Formulario */
  #contact #content-wrapper #content {
    padding-left: var(--spaces-md);
  }
}

@media (max-width: 767px) {
  /* ---------------------- HEADER ---------------------- */
  #header {
    height: 106px;
  }

  /* Buscador - Modal */
  #content_search .result_searchbar #js-product-list .products > div {
    width: calc(50% - var(--spaces-xs));
  }

  /* ---------------------- FOOTER ---------------------- */
  /* CMS Reassurance */
  #footer .pre-footer .reasuranceCont {
    padding: 0 0 var(--spaces-separator) 0;
    flex-direction: column;
    border: none;
  }

  #footer .pre-footer .reasuranceCont > div {
    margin: 0;
    padding: 20px 0;
    border: none !important;
  }

  #footer .pre-footer .reasuranceCont > div:first-child {
    padding-top: 0;
  }

  #footer .pre-footer .reasuranceCont > div:not(:last-child) {
    border-bottom: solid 1px var(--color-grey) !important;
  }

  #footer .pre-footer .reasuranceCont .title {
    margin: 0;
  }

  /* Footer */
  #footer .footer-container .row .links.col-md-2 {
    margin-top: var(--spaces-md);
    width: 100%;
  }

  #footer .footer-container .row .links.col-md-2 .title {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spaces-sm);
    margin: 0;
  }

  #footer .footer-container .row .links.col-md-2 .title h3 {
    margin: 0;
  }

  /* Copyright */
  #footer .copyright .copyright_content {
    flex-direction: column-reverse;
    gap: var(--spaces-sm);
  }

  #footer .copyright .copyright_content > p {
    justify-content: center !important;
  }

  /* ----------------------- HOME ----------------------- */
  /* Categorías destacadas */
  #index #banner-section .container > div > .item:last-child {
    display: none;
  }

  /* -------------------- CATEGORIA ----------------------- */
  .block-category > div .category-cover {
    display: flex;
  }

  .block-category > div .category-cover img {
    height: 250px !important;
  }

  #category .block-category > div .category-text .description {
    width: 100%;
  }

  /* Filtros / Subcategorías / Ordenación */
  #products #js-product-list-top {
    margin: calc(var(--spaces-md) * 2) 0;
  }

  #products #js-product-list-top > .subcategories {
    width: 100% !important;
  }

  #category #products .row .subcategories .categories {
    padding: 0;
    flex-wrap: wrap;
  }

  #category #products #js-product-list-top > .subcategories {
    margin-bottom: var(--spaces-md);
  }

  #products #js-product-list-top > div {
    width: 50% !important;
    justify-content: center;
  }

  #category #products .row .total-filter-products > div {
    padding-right: var(--spaces-md);
    margin-right: var(--spaces-md);
    width: auto;
  }

  #category #products .row .total-filter-products > div #count-filters {
    right: 5px;
  }

  /* Listado productos */
  #products .products > div {
    width: 50% !important;
  }

  /* Modal filtros */
  #search_filters .facet > ul.collapse:not(.in) {
    display: none;
  }

  /* --------------------- CARRITO ---------------------- */
  /* Carrito */
  #cart .cart-grid .cart-grid-right .card .cart-detailed-totals {
    padding: 0;
  }

  #cart .cart-grid .cart-grid-right .card .cart-detailed-actions {
    padding-top: 0;
  }

  /* -------------------- CHECKOUT ---------------------- */
  /* Modal términos del servicio */
  #checkout #checkout-payment-step .modal-dialog {
    max-width: 90%;
  }

  /* -------------- CONFIRMACIÓN DE PEDIDO -------------- */
  #order-confirmation #wrapper #content-hook_order_confirmation .title_confirmation > div {
    width: 75%;
  }

  #order-confirmation #wrapper #content-hook_order_confirmation .title_confirmation > div .reference {
    margin: 0;
  }

  #order-confirmation #wrapper #content-hook_order_confirmation .title_confirmation > a {
    width: 25%;
  }
}

@media (max-width: 543px) {
  /* ---------------------- HEADER ---------------------- */
  #header {
    height: auto;
  }

  /* Iconos cuenta - carrito / Buscador - Modal */
  #header .container #iconosHeader > a,
  #content_search .result_searchbar #js-product-list .products > div .product-miniature .product-flags {
    display: none;
  }

  /* ---------------------- FOOTER ---------------------- */
  #footer .footer-container .row .links.col-md-5 .logoCont img {
    max-width: 350px;
    width: -webkit-fill-available;
  }

  /* ----------------------- HOME ----------------------- */
  /* Categorías destacadas */
  #index #banner-section .container > div {
    flex-direction: column;
  }

  #index #banner-section .container > div .item {
    flex-direction: column-reverse;
  }

  #index #banner-section .container > div .item img {
    max-height: 500px;
    object-fit: cover;
  }

  #index #banner-section .container > div .item .title {
    margin: 0 0 var(--spaces-md) 0;
  }

  /* -------------------- CATEGORIA ----------------------- */
  /* Top categoria (header) */
  .block-category > div .category-text {
    padding: 0 var(--spaces-md);
    text-align: center;
  }

  /* Filtros / Subcategorías / Ordenación */
  #category #products #js-product-list-top {
    margin: calc(var(--spaces-md) * 2) 0 var(--spaces-md) 0;
  }

  #category #products #js-product-list-top > .subcategories {
    margin-bottom: calc(var(--spaces-md) * 2);
  }

  #category #products #js-product-list-top > div {
    width: 100% !important;
  }

  #category #products #js-product-list-top > .total-filter-products {
    margin-bottom: 40px;
  }

  #category #products #js-product-list-top .products-sort-order {
    padding: 0;
    display: flex;
    justify-content: center;
  }

  #products .row .sort-by-row > div select {
    text-align-last: center;
  }

  /* Listado productos */
  #products .products > div {
    width: 100%;
  }

  /* -------------- CONFIRMACIÓN DE PEDIDO -------------- */
  #order-confirmation #wrapper #content-hook_order_confirmation .title_confirmation {
    flex-direction: column;
    gap: var(--spaces-sm);
  }

  #order-confirmation #wrapper #content-hook_order_confirmation .title_confirmation > * {
    width: 100% !important;
  }

  /* ------------------- INICIAR SESIÓN ----------------- */
  #authentication #content,
  #registration #content,
  #password #content {
    padding: var(--spaces-md) 0;
  }

  /* ---------------- PASSWORD RECOVERY ----------------- */
  #password .ps-alert-success li p,
  #password .ps-alert-error li p {
    padding: 15px;
  }

  /* -------------------- MI CUENTA --------------------- */
  #my-account #content .my-account-container > a {
    width: 100%;
  }

  /* --------------- SUBAPARTADOS MI CUENTA ------------- */
  #order-detail #content .order_actions .oactions {
    flex-direction: column;
    align-items: center;
    gap: var(--spaces-sm);
  }

  #order-detail #content .order-message-form footer {
    display: flex;
    justify-content: center;
  }
}
