/* CSS extracted from inline <style> blocks and style="..." attributes */

.serie-selector {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  height: 100%;
  text-align: center;
  padding-top: 50px;
  gap: 24px;
}

.logo-wrap {
  width: 25vw;
}
.serie-selector .logo {
  cursor: pointer;
}

.serie-selector h1 {
  /*color: #9F9FA9;*/
  margin-bottom: 16px;
  font-size: 1rem;
  font-weight: 300;
  letter-spacing: 1.2px;
  opacity: 60%;
}

.search-wrap {
  width: 80%;
}

.search-container {
  position: relative;
  width: 100%;
}

.search-examples {
  margin-top: 16px;
  font-size: 0.85rem;
  /*color: #71717B;*/
  opacity: 40%;
}

#serie-search {
  width: 100%;
  padding: 15px 20px;
  font-size: 14px;
  letter-spacing: 1px;
  border: 1px solid #3f3f47;
  border-radius: 8px;
  background: #18181b;
  color: #fff;
  box-sizing: border-box;
  outline: none;
  transition: border-color 0.3s ease;
  padding-right: 56px;
}

#serie-search:focus {
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35), inset 0 0 8px rgba(255, 255, 255, 0.15);
}

.search-icon {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  opacity: 50%;
}

.suggestions-container {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background: white;
  border: 1px solid #ddd;
  border-top: none;
  border-radius: 0 0 8px 8px;
  max-height: 300px;
  overflow-y: auto;
  z-index: 1000;
  display: none;
}

.suggestion-item {
  padding: 12px 20px;
  cursor: pointer;
  color: #333;
  border-bottom: 1px solid #eee;
  transition: background-color 0.2s ease;
}

.suggestion-item:hover,
.suggestion-item.selected {
  background-color: #f8f9fa;
}

.suggestion-item:last-child {
  border-bottom: none;
}

.no-results {
  padding: 12px 20px;
  color: #9f9fa9;
}

.serie-filter {
  width: 100%;
  position: fixed;
  bottom: 0;
  left: 0;
}

.serie-filter-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  width: 100%;
  gap: 32px;
  padding-top: 32px;
  padding-bottom: 48px;
  border-top: 1px solid #3f3f47;
}

.filter-title p {
  letter-spacing: 1.3px;
  font-size: 0.85rem;
  opacity: 60%;
}

.catalogue-filter {
  display: flex;
  justify-content: center;
  gap: 40px;
  cursor: pointer;
}

.catalogue-filter-option.active h3 {
  color: #fff;
  opacity: 100%;
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 1px;
  border-bottom: 2px solid #fff;
}

.catalogue-filter-option h3 {
  /*color: #3D3D42;*/
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 40%;
}

.catalogue-filter-option:hover h3 {
  color: #fff;
  opacity: 0.5;
}

.catalogue-filter-option.active:hover h3 {
  color: #fff;
  opacity: 1;
}

.categories-filter {
  display: flex;
  width: 80%;
  justify-content: space-between;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  gap: 16px;
  cursor: pointer;
}

.categories-filter-option {
  padding: 12px 64px;
  background: #18181b;
  opacity: 40%;
  border: 1px solid #3f3f47;
  border-radius: 8px;
  flex-grow: 1;
}

.categories-filter-option:hover {
  background-color: #404044;
}

.categories-filter-option h3 {
  font-size: 0.85rem;
  letter-spacing: 1px;
  color: #fff;
}

.categorie-filter {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.7);
  backdrop-filter: blur(4px);
  transition: all 0.25s ease-in-out;
}

.categorie-filter.active {
  opacity: 1;
  visibility: visible;
}

.categorie-filter-wrapper {
  width: 100%;
  box-sizing: border-box;
  background-color: #18181b;
  border-top: 1px solid #3f3f47;
  border-radius: 24px 24px 0 0;
}

.categorie-filter-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #3f3f47;
  padding: 16px 32px;
}

.categorie-filter-options {
  flex-direction: row;
  gap: 16px;
  padding: 64px 32px;
  box-sizing: border-box;
  text-align: center;
  overflow-y: auto;
}

.categorie-filter-options:has([data-category="FOR"]) {
  flex-wrap: wrap;
}

.categorie-filter-option {
  padding: 12px 0px;
  background: #18181b;
  opacity: 80%;
  border: 1px solid #3f3f47;
  border-radius: 8px;
  cursor: pointer;
}

.categorie-filter-option[data-category="FOR"] {
  flex-basis: 200px;
}

.categorie-filter-option:hover {
  background-color: #404044;
}

.close-icon {
  cursor: pointer;
}

/*-----HEADER-----*/
.results-body-header {
  display: flex;
  flex-direction: row;
}

.results-body-header .header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

header {
  position: relative;
  display: grid;
  grid-template-columns: auto auto 1fr;
  column-gap: 24px;
  /*display: flex;
  flex-direction: row;*/
  align-items: center;
  width: 100%;
  /*height: 100px;*/
  height: 50px;
  border-bottom: 1px solid #3f3f47;
  padding: 4px 0;
}

.return-logo {
  display: flex;
  margin-left: 16px;
}

/*.header-logo {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}*/

.header-logo a {
  display: flex;
}

.header-logo img {
  height: 20px;
}

.serie-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.serie-info .serie-info-title a {
  color: white;
  text-decoration: none;
  font-size: 20px;
}

.serie-info .serie-info-wrap {
  display: flex;
  gap: 12px;
  font-size: 12px;
  opacity: 60%;
}

/* extracted from inline style="..." attributes */
.is-hidden {
  display: none;
}

.meta-ean {
  clear: both;
  display: block;
  color: #555;
}

.logo-myth {
  filter: invert(1);
  max-width: 150px;
}

.roomvo-hidden {
  visibility: hidden;
}

.roomvo-overlay {
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: 1000;
  top: 0;
}

/*------ MENU -----*/

.menu {
  display: flex;
  gap: 40px;
  position: fixed;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  padding: 24px;
  border-radius: 24px;
  background-color: rgb(0, 0, 0);
}

/* === styles.css original (fusionado) === */
/* Estilos generales */
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&display=swap");

body {
  background-color: black;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start; /* Alinea el contenido al principio */
  align-items: center;
  box-sizing: border-box; /* Asegura que el padding no afecte el ancho total */
  font-family: "Manrope", sans-serif !important;
  color: white;
}

/* Estilo para centrar el h1 en la parte superior */
h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
}

h1 {
  text-align: center;
  font-size: 26px;
  text-transform: uppercase;
  color: white;
  text-decoration: none;
}

h1 a {
  color: white;
  text-decoration: none;
}

/* Estilo de la lista para centrarla */
ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}

/* Estilo de los enlaces */
ul li {
  margin: 8px 0;
  width: 100%;
  max-width: 100%; /* Asegura que el botón ocupe todo el ancho disponible */
}

ul li a {
  display: block;
  text-align: center;
  padding: 10px;
  color: white;
  text-decoration: none;
  border: 1px solid white;
  border-radius: 13px;
  font-size: 18px;
  width: 100%;
  max-width: 100%; /* Asegura que el botón no se desborde */
  box-sizing: border-box; /* Incluye padding y border en el ancho total */
  transition: background-color 0.3s, color 0.3s;
}

ul li a .articulo {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

ul li a .articulo .imagen {
  flex: 1;
}

ul li a .articulo.active .imagen {
}

ul li a .articulo.active .stock {
  display: none;
}

ul li a .articulo .imagen img {
  max-width: 100%;
}

ul li a .articulo .info {
  font-size: 11px;
  text-align: left;
  flex: 1;
}

ul li a .articulo .stock {
  flex: 1;
  font-size: 12px;
  color: #73dd73;
  text-align: right;
}

.complementary-pieces-wrapper {
  padding-top: 32px;
  margin-bottom: 120px;
}

.complementary-pieces-wrapper h1 {
  text-align: left;
  padding: 0 16px;
}

.complementary-pieces-wrapper > .products {
  padding: 0 16px;
  column-gap: 10px;
}

.products {
  padding: 32px 16px;
  box-sizing: border-box;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.products .products-title {
  margin: 0;
  font-size: 1.25rem;
  letter-spacing: 1px;
}

.products .product a {
  border: none;
  padding: 10px 0;
}

.products .product .imagen {
  overflow: hidden;
  /*border-radius: 12px;*/
}

.products .product .imagen img {
  width: 100%;
  height: auto;
  object-fit: contain;
  cursor: pointer;
}

.products .product .info {
  font-size: 0.85rem;
  letter-spacing: 1px;
  opacity: 60%;
}

/* Efecto al pasar el mouse por encima del enlace */
ul li a:hover {
}

.logo {
  max-width: 25vw;
}

.mySlides {
  margin-bottom: 20px;
}

.iconos-generales li {
  display: inline-block;
}

.iconos-generales li img {
  max-width: 25px;
}

.iconos-especificaciones li img {
  max-width: 25px;
}

.icono {
  max-width: 30px;
  display: inline !important;
}

/* Aplica estilos a la primera columna de todas las tablas */
table td:first-child {
  font-weight: bold; /* Negrita para el texto */
  color: white; /* Color del texto */
  padding: 10px; /* Espaciado interno */
}

/* Opcional: Aplica un estilo adicional al encabezado de la tabla */
table th {
  padding: 10px;
  text-align: left;
  border-bottom: 2px solid #ccc;
  font-size: 12px;
}

table {
  width: 100%;
}

table td {
  text-transform: uppercase;
  font-size: 10px;
}

nav {
  display: flex;
  gap: 20px;
  margin-bottom: 20px;
}
nav li {
  list-style-type: none;
  border-right: 1px solid white;
  padding-right: 20px;
}
nav li:last-child {
  border-right: 0px;
  padding-right: 0px;
}
nav li a {
  color: white;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  font-size: 17px;
}
.productos .formato_wrapper {
  padding: 14px 0px;
  border-bottom: 1px solid #ccc;
  margin: 0;
}
.productos .formato_wrapper:last-child {
  border-bottom: 1px solid #ccc;
}
li.formato {
  margin-top: 17px;
}
.descripcion_formato.active {
  font-weight: bold;
}
.descripcion_formato {
  position: relative;
}
.descripcion_formato:after {
  content: "";
  position: absolute;
  background-image: url(../images/open.svg);
  background-repeat: no-repeat;
  background-size: 13px;
  width: 13px;
  height: 13px;
  right: 0px;
  top: 7px;
  transition: all 0.3s ease-in-out;
}
.descripcion_formato.active:after {
  transform: rotate(180deg);
  top: 4px;
}
#color_list {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  margin-bottom: 25px;
}
#color_list .color_item {
  flex: 0 45px;
  border-radius: 100%;
}
#color_list .color_item img {
  width: 45px;
  height: 45px;
  object-fit: cover;
  border-radius: 100%;
}
.color_item.active {
  position: relative;
}
.color_item.active:after {
  content: "";
  width: 49px;
  height: 49px;
  border: 1px solid white;
  position: absolute;
  left: -3px;
  top: -3px;
  border-radius: 100%;
}

nav li a.active {
  font-weight: bold;
  border-bottom: 1px solid white;
}
.header {
  display: flex;
  width: 100%;
  margin-bottom: 20px;
}
.header > * {
  flex: 1;
}
.header img {
  max-width: 45px;
}
.header h1 {
  margin: 0px;
  text-align: right;
  font-size: 17px;
}

/* Rediseño */
/*.results-body {
  align-items: flex-start;
  gap: 10px;
}*/

.results {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  row-gap: 32px;
  margin: 32px 16px;
}

.result-option-image {
  overflow: hidden;
  /*border-radius: 12px;*/
}

.result-option-image img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.5;
  object-fit: cover;
  transition: transform 0.25s ease-in-out;
  will-change: transform;
  cursor: pointer;
}

.result-option-image img:hover {
  transform: scale(1.05) translateZ(0);
}

.result-option-title {
  font-size: 0.85rem;
  opacity: 60%;
  letter-spacing: 1px;
  margin-top: 12px;
}

.settings {
  padding: 32px 16px;
  box-sizing: border-box;
  width: 100%;
}

.settings-header {
  border-bottom: 1px solid #3f3f47;
  padding-bottom: 32px;
}

.settings-title {
  font-weight: bold;
  font-size: 3rem;
  letter-spacing: 5px;
}

.settings-subtitle {
  opacity: 40%;
  letter-spacing: 1px;
  text-transform: lowercase;
}

.settings-subtitle::first-letter {
  text-transform: uppercase;
}

.settings-wrap {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 24px;
  row-gap: 32px;
  margin-top: 32px;
  margin-bottom: 120px;
}

.settings-wrap > * {
  overflow: hidden;
  border-radius: 12px;
}

.setting-item img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.5;
  object-fit: cover;
  transition: transform 0.25s ease-in-out;
  will-change: transform;
  cursor: pointer;
}

.setting-item img:hover {
  transform: scale(1.05) translateZ(0);
}

.bases {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 20px 16px 32px 16px;
  box-sizing: border-box;
  width: 100%;
}

.bases-section-colors,
.bases-section-sizes {
  display: flex;
}

.bases-section-options {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 32px;
  row-gap: 32px;
}

.bases-section-colors,
.bases-section-sizes {
  flex-direction: column;
}

.bases-section-title {
  margin-bottom: 12px;
}

.bases-section-title > .color-selected {
  margin-left: 10px;
  font-weight: bold;
}

.colors {
  gap: 10px;
}

.sizes {
  gap: 8px;
}
.colors,
.sizes {
  display: flex;
  flex-wrap: wrap;
  cursor: pointer;
}
.colors .color-item {
  width: 50px;
  height: 50px;
}
.colors .color-item.active img {
  border: 3px solid white;
}
.colors .color-item img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
}
.sizes .size-item {
  font-size: 0.85rem;
  padding: 8px 18px;
  border: 1px solid #3f3f47;
  border-radius: 8px;
}
.sizes .size-item.active {
  background-color: white;
  color: #333;
  border: none;
}
.size-item.disabled {
  opacity: 0.5;
}
.options {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.option-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
}
.bases-section-options > .option-item > .option-image {
  cursor: pointer;
}
.option-image img {
  max-width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 4px;
}
.option-info {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.option-name {
  font-weight: bold;
}
.option-data {
  font-size: 0.9em;
  color: #fff;
}
.features-section {
  padding: 32px;
  background-color: #18181b;
  border: 1px solid #3f3f47;
  border-radius: 12px;
  margin-bottom: 120px;
}

.features-section-title {
  font-size: 0.85rem;
}

.features {
  display: flex;
  flex-wrap: wrap;
  /* margin-top: 8px;*/
  justify-content: space-evenly;
}
.feature-item {
  text-align: center;
  width: 100px;
}
.feature-item img {
  width: 50px;
  height: 50px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
.feature-legend {
  margin-top: 5px;
  font-size: 12px;
}
.menu-item {
  text-align: center;
  opacity: 0.5;
  cursor: pointer;
}
.menu-item:hover {
  opacity: 0.75;
}
.menu-item.active {
  opacity: 1;
}
.menu-item.disabled,
.product-header-item.disabled {
  cursor: default;
  opacity: 0.25;
}

.product-page {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  padding: 32px 16px;
  width: 100%;
  box-sizing: border-box;
}

.product-header {
  display: flex;
  border-bottom: 1px solid #3f3f47;
  margin-bottom: 32px;
}

.product-header-item {
  width: 50%;
  text-align: center;
  padding-bottom: 12px;
  cursor: pointer;
  position: relative;
  color: #999;
}

.product-header-item.active {
  color: #fff;
}

.product-header-item.active::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 100%;
  height: 3px;
  background: #fff;
}

.product-page .product-info {
  padding: 32px;
  background-color: #18181b;
  border: 1px solid #3f3f47;
  border-radius: 12px;
  margin-top: 32px;
  margin-bottom: 120px;
  display: flex;
  justify-content: flex-start;
  gap: 120px;
}

.product-main {
  background: #000;
  overflow: hidden;
  transition: opacity 0.3s ease;
}

.product-main > .product-content {
  width: 100%;
  height: auto;
}

.product-main > .product-content > img {
  object-fit: cover;
  border-radius: 8px;
}

.product-info-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.product-item-title {
  opacity: 60%;
}

.product-dropdown {
  border: 1px solid #3f3f47;
  border-radius: 12px;
  overflow: hidden;
  margin-top: 32px;
}

.dropdown-button {
  padding: 24px 32px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}

.dropdown-icon {
  position: absolute;
  right: 32px;
}

.dropdown-icon svg {
  transition: transform 0.3s ease;
  transform: rotate(0deg);
}

.product-dropdown.active .dropdown-icon svg {
  transform: rotate(180deg);
}

.dropdown-content {
  padding: 0 32px 24px 32px;
  box-sizing: border-box;
}

.dropdown-content-item {
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #3f3f47;
  padding: 12px 0;
  margin: 0;
}

.dropdown-content-item > .dropdown-item-title {
  font-size: 0.75rem;
  opacity: 60%;
}

.dropdown-content-item > .dropdown-item-info {
  font-size: 0.75rem;
}

.product-dropdown .dropdown-icon svg {
  transform: rotate(180deg);
}

.product-dropdown .dropdown-icon svg.rotate-180 {
  transform: rotate(0deg);
}

@media (max-width: 768px) {
  h1 {
    font-size: 1rem;
  }

  .serie-selector h1 {
    font-size: 0.85rem;
  }
  .categories-filter {
    flex-wrap: wrap;
  }

  .categories-filter-option {
    width: 100%;
  }

  .categorie-filter-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    column-gap: 16px;
    row-gap: 0;
    padding: 32px;
    max-height: 75vh;
  }

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

  .settings-wrap {
    grid-template-columns: 1fr;
  }

  .features-section {
    padding: 8px;
  }

  .features {
    justify-content: center;
    gap: 16px;
  }

  .feature-item {
    width: 80px;
  }

  .menu {
    font-size: 12px;
    gap: 24px;
    padding: 16px;
  }

  .product-page {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .product-header {
    margin-bottom: 24px;
  }

  .product-page .product-info {
    padding: 16px;
    margin-top: 16px;
    margin-bottom: 0;
    gap: 48px;
  }

  .product-item-text {
    font-size: 0.85rem;
  }

  .settings-header {
    padding: 16px;
  }

  .settings-title {
    font-size: 1.5rem;
  }

  .product-dropdown {
    margin-top: 16px;
  }

  .bases-section-options {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 16px;
    row-gap: 24px;
  }
}
.colors-section-break {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 6px 0;
}
.colors-section-label {
  font-size: 10px;
  color: #999;
  letter-spacing: 1px;
}
