@charset "UTF-8";
/*=============== BASE ===============*/
* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: "Inter", sans-serif;
  font-size: 0.938rem;
  background-color: #202020;
}

ul {
  list-style: none;
}

.white-section {
  background-color: #DDDDDB;
  border-radius: 25px;
}

/* ~~~~~~ Header ~~~~~~ */
.header-main {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
  z-index: 5;
  height: 10vh;
  width: 100%;
  padding: 20px;
  background-color: #262626;
  border-radius: 0px 0px 25px 25px;
}

.header-main a {
  display: inline-block;
  text-decoration: none;
}

.header-main a img {
  display: block;
  height: 50px;
  width: auto;
}

/* ~~~~~~ Texture ~~~~~~ */
.header-main {
  background-image: url("../imgs/global/textures/header/top-left.png"), url("../imgs/global/textures/header/top-right.png");
  background-repeat: no-repeat, no-repeat;
  background-position: 0% 0%, 100% 0%;
  background-size: 5%, 5%;
}

/* ~~~~~~ Nav ~~~~~~ */
nav {
  background-color: #DDDDDB;
  position: sticky;
  height: 90px;
  top: -50px;
  z-index: 4;
  border-radius: 25px;
  margin-top: -50px;
  display: flex;
  justify-content: center;
  align-items: end;
  box-shadow: 0px 5px 15px #262626;
}

.navegation-bar {
  display: flex;
  justify-content: center;
  gap: 30px;
  margin: 10px;
}

.navegation-bar li {
  list-style-type: none;
}

.navegation-bar li a {
  color: black;
  text-decoration: none;
}

.navegation-bar li a:hover {
  color: #b5241f;
}

.navegation-bar li img {
  height: 10px;
  width: auto;
}

/* ~~~~~~ Dropdown ~~~~~~ */
.dropdown {
  width: 125px;
  border-radius: 0px 0px 15px 15px;
  padding: 10px 8px;
  gap: 15px;
  position: absolute;
  top: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  background-color: #DDDDDB;
  z-index: 2;
  border-bottom: 4px groove #b5241f;
  opacity: 0;
  visibility: hidden;
}

/* ~~~~~~ Hover y Animación: Dropdown ~~~~~~ */
.menu-dropdown:hover .dropdown {
  animation-name: dropdown;
  animation: dropdown 5s forwards;
  animation-duration: 0.3s;
  animation-timing-function: ease-in-out;
}

@keyframes dropdown {
  0% {
    opacity: 0;
    visibility: visible;
  }
  50% {
    opacity: 0.1;
    transform: translateY(35px);
    visibility: visible;
  }
  100% {
    opacity: 1;
    transform: translateY(40px);
    visibility: visible;
  }
}
.menu-dropdown img {
  animation: arrow-rotate-up 0.2s linear forwards;
}

.menu-dropdown:hover img {
  animation: arrow-rotate-down 0.2s linear forwards;
}

@keyframes arrow-rotate-down {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(-180deg);
  }
}
@keyframes arrow-rotate-up {
  from {
    transform: rotate(-180deg);
  }
  to {
    transform: rotate(0deg);
  }
}
/* ~~~~~~ Tamaños de dropdowns ~~~~~~  */
/*=============== REUSABLE CSS CLASSES ===============*/
/*=============== NAV ===============*/
.nav__list {
  position: absolute;
  display: none;
}

.nav__logo,
.nav__burger,
.nav__close {
  color: var(--white-color);
}

.nav__data {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav__logo {
  display: flex;
  height: 50px;
  width: auto;
  margin-right: 10px;
  transition: all 0.4s;
}

.nav__logo:hover {
  transform: scale(1.1);
}

.nav__toggle {
  position: relative;
  width: 32px;
  height: 32px;
  display: none;
}

.nav__burger,
.nav__close {
  position: absolute;
  width: 25px;
  height: 25px;
  inset: 0;
  margin: auto;
  font-size: 1.25rem;
  cursor: pointer;
  transition: opacity 0.1s, transform 0.4s;
}

.nav__close {
  opacity: 0;
}

.buttons-burger {
  width: 25px;
  height: auto;
}

/*=============== DROPDOWN ===============*/
.dropdown__item {
  cursor: pointer;
}

.dropdown__arrow {
  font-size: 1.25rem;
  font-weight: initial;
  transition: transform 0.4s;
}

.dropdown__link,
.dropdown__sublink {
  padding: 1.25rem 2.5rem;
  color: #DDDDDB;
  background-color: #b5241f;
  display: flex;
  align-items: center;
  column-gap: 0.2rem;
  transition: background-color 0.3s;
  border-radius: 15px;
  margin: 5px;
  width: 97vw;
}

.dropdown__link i,
.dropdown__sublink i {
  font-size: 1.25rem;
  font-weight: initial;
}

.dropdown__link:hover,
.dropdown__sublink:hover {
  color: var(--black-color);
}

.dropdown__menu,
.dropdown__submenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease-out;
}

.dropdown__item .nav__link img {
  height: 8px;
}

/* Show dropdown menu & submenu */
.dropdown__item:hover .dropdown__menu,
.dropdown__subitem:hover > .dropdown__submenu {
  max-height: 1000px;
  transition: max-height 0.4s ease-in;
}

/* Rotate dropdown icon */
.dropdown__item:hover .dropdown__arrow {
  transform: rotate(180deg);
}

.nav__list input {
  width: 90vw;
  height: 40px;
  border-radius: 15px;
  border: 2px outset #d0d0d0;
  box-shadow: 5px 5px 5px rgba(38, 38, 38, 0.4392156863);
  padding: 10px;
  BACKGROUND-COLOR: #DDDDDB;
  transform: translate(3vw);
}

/* Navigation for mobile devices */
.background-container {
  position: relative;
  width: 100%;
  /* max-width: 800px; */
  height: 100vh; /* h-96 */
  overflow: hidden;
  background-color: #202020;
  border-radius: 0.5rem; /* rounded-lg */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}

.background-mask {
  position: absolute;
  inset: 0;
  background-color: #202020;
  mask-image: radial-gradient(transparent, white);
  pointer-events: none;
  z-index: 1;
}

.boxes {
  position: absolute;
  top: -25%;
  left: 27%;
  transform: translate(-40%, -30%) skewX(0deg) skewY(0deg) scale(0.8);
  display: flex;
  flex-wrap: wrap;
  width: 155vw;
  /* height: 0px; */
  /* z-index: 0; */
}

.row {
  display: flex;
}

.box {
  width: 64px; /* w-16 */
  height: 64px; /* h-8 */
  border-left: 1px solid #DDDDDB; /* slate-700 */
  border-top: 1px solid #DDDDDB;
  border-right: 1px solid #DDDDDB;
  box-sizing: border-box;
  position: relative;
  transition: background-color 1s;
}

.main-text {
  width: 90vw;
  background-color: #262626;
  box-shadow: 0px 0px 6px #000;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: space-around;
  color: #fff;
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 30px 60px;
  background: linear-gradient(50deg, #202020 0%, #262626 25%, rgba(85, 17, 15, 0.5411764706) 50%, #262626 75%, #202020 100%);
  animation: gradients 20s ease-in-out infinite;
  background-size: 300% 100%;
}

@keyframes gradients {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.glass-numbers {
  width: 200px;
  height: 200px;
  border-radius: 20px;
  background-color: rgba(221, 221, 219, 0.0549019608);
  border: 1px solid rgba(221, 221, 219, 0.3647058824);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  backdrop-filter: blur(10px);
}

.glass-numbers h3 {
  margin-bottom: 10px;
  position: relative;
}

.glass-numbers h3::after {
  content: "";
  display: block;
  width: 60%; /* largo de la línea */
  height: 1px;
  background: rgba(255, 255, 255, 0.856);
  margin: 10px auto 0;
  filter: blur(0.5px);
}

.glass-numbers p {
  font-size: larger;
}

.product-searcher-index {
  position: absolute;
  top: -18px;
  width: 600px;
  height: 90px;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  background-color: #dddddb;
  z-index: 3;
  border-radius: 15px;
  /* border: 2px inset; */
  padding-bottom: 10px;
  box-shadow: 2px 2px 5px #000000;
  border-left: 3px solid #b5241f;
  border-bottom: 3px solid #b5241f;
}

.product-searcher-index input {
  height: 50%;
  width: 95%;
  border-radius: 10px;
  padding: 10px;
  background-color: rgba(208, 208, 208, 0.8156862745);
  border: 2px solid #d0d0d0;
  box-shadow: 2px 2px 5px #a9a9a8;
}

.slider {
  display: flex;
  justify-content: center;
  position: relative;
  top: 30%;
  z-index: 3;
  width: 1115px;
  max-width: 97vw;
}

.white-background {
  background-color: #DDDDDB;
  height: 420px;
  width: 100%;
  max-width: 1115px;
  border-radius: 25px;
  display: flex;
  justify-content: start;
  align-items: end;
  padding: 10px;
  position: relative;
}

.selectors-container {
  position: absolute;
  top: 8px;
  left: 35px;
}

.dot {
  display: inline-block;
  height: 17px;
  width: 17px;
  margin: 5px 5px 1px 0px;
  background-color: #C9C9C9;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: #B5241F;
}

.black-background {
  background-color: #202020;
  height: 92%;
  width: 100%;
  border-radius: 25px;
  box-shadow: 0px -3px 2px 0px #a9a9a8;
  display: flex;
  justify-content: center;
  align-items: end;
  overflow: hidden;
}

.slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
  align-items: center;
  width: 100%;
  height: 100%;
}

.slide-img {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  min-width: 100%;
  width: 100%;
  height: 100%;
}

.slide-img img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  cursor: pointer;
  transition-duration: 0.3s;
}

.slide-img img:hover {
  opacity: 0.9;
}

.carrousel-section {
  padding-bottom: 100px;
  padding-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #202020;
  gap: 70px;
  overflow: hidden;
}

.wrapper {
  /* max-width: 850px; */
  position: relative;
  background-color: #202020;
}

.wrapper-title {
  font-size: 30px;
  padding-bottom: 20px;
  color: #dddddb;
}

.wrapper i {
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  height: 50px;
  width: 50px;
  cursor: pointer;
  font-size: 1.25rem;
  position: absolute;
  text-align: center;
  line-height: 50px;
  background: #dddddb;
  border-radius: 15px;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.23);
  transition: transform 0.1s linear;
  z-index: 3;
}

.wrapper i img {
  width: 12px;
  -webkit-user-drag: none;
  user-select: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
}

.wrapper i:first-child {
  left: -22px;
  user-select: none;
}

.wrapper i:last-child {
  right: -22px;
  user-select: none;
}

.wrapper .carousel {
  height: 420px;
  width: 876px;
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc(33.3333333333% - 12px);
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 18px;
  border-radius: 8px;
  scroll-behavior: smooth;
  scrollbar-width: none;
  background-color: #202020;
  overflow: hidden;
}

.carousel::-webkit-scrollbar {
  display: none;
}

.carousel.no-transition {
  scroll-behavior: auto;
}

.carousel.dragging {
  scroll-snap-type: none;
  scroll-behavior: auto;
}

.carousel.dragging .card {
  cursor: grab;
  user-select: none;
}

.carousel :where(.card, .img) {
  display: flex;
  justify-content: center;
  align-items: center;
}

.carousel .card {
  scroll-snap-align: start;
  height: 500px;
  list-style: none;
  /* background: #202020; */
  cursor: pointer;
  padding-bottom: 15px;
  flex-direction: column;
  border-radius: 8px;
  /* box-shadow: 0 3px 6px rgba(0, 0, 0, 0.664); */
}

.main-grid {
  padding-top: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  flex-direction: column;
}

.grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr 1fr;
  gap: 0px 0px;
  grid-auto-flow: row;
  grid-template-areas: "area1 area1 area4 area4" "area2 area2 area4 area4" "area2 area2 area5 area6" "area3 area3 area7 area8";
  height: 700px;
  width: 900px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 1;
  gap: 10px;
}

div .area {
  border-radius: 25px;
  opacity: 1;
  transition-duration: 0.3s;
}

div .area:hover {
  opacity: 0.5;
}

.area a {
  display: block;
  width: 100%;
  height: 100%;
}

.area1 { /*TELEVISORES*/
  grid-area: area1;
  background-image: url("../imgs/global/textures/Televisores2.png");
  background-color: #B5241F;
  background-size: cover;
  height: 150px;
}

.area2 { /*CELULARES*/
  grid-area: area2;
  background-image: url("../imgs/global/textures/celulares2.png");
  background-color: #B5241F;
  background-size: cover;
  height: 100%;
}

.area3 { /*IMPRESORAS*/
  grid-area: area3;
  background-image: url("../imgs/global/textures/impresoras2.png");
  background-color: #B5241F;
  background-size: cover;
  height: 150px;
}

.area4 { /*NOTEBOOKS*/
  grid-area: area4;
  background-image: url("../imgs/global/textures/notebooks2.png");
  background-color: #B5241F;
  background-size: cover;
  height: 100%;
}

.area5 { /*ARRIBA-IZQUIERDA*/
  grid-area: area5;
  background-image: url("../imgs/global/textures/camaras.png");
  background-color: #B5241F;
  background-size: cover;
  height: 150px;
}

.area6 { /*ARRIBA-DERECHA*/
  grid-area: area6;
  background-image: url("../imgs/global/textures/perifericos.png");
  background-color: #B5241F;
  background-size: cover;
  height: 150px;
}

.area7 { /*ABAJO-IZQUIERDA*/
  grid-area: area7;
  background-image: url("../imgs/global/textures/componentes.png");
  background-color: #B5241F;
  background-size: cover;
  height: 150px;
}

.area8 { /*ABAJO-DERECHA*/
  grid-area: area8;
  background-image: url("../imgs/global/textures/routers.png");
  background-size: cover;
  background-color: #B5241F;
  height: 150px;
}

.comments {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 40px;
}

.comments-text {
  font-size: 20px;
  text-align: center;
  padding: 60px 0px;
}

.comments-text h1 {
  font-size: 40px;
  padding-bottom: 10px;
}

.grid-comments-review {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-template-rows: 1fr 1fr 1fr;
  gap: 40px 40px;
  grid-template-areas: "c1 c2 c3 c4" "c5 c6 c7 c8" "c9 c10 c11 c12";
}

.reviews-white-container {
  width: 240px;
  height: 160px;
  border-radius: 25px;
  padding: 10px;
  background-color: #dddddb;
  display: flex;
  /*! gap: 20px; */
  box-shadow: 0px 0px 8px #000;
  position: absolute;
  z-index: 1;
  transition: transform 0.4s ease;
  /*! padding-left: 12px; */
}

.stars-column {
  display: flex;
  align-items: center;
}

.stars-column img {
  width: 20px;
  height: auto;
}

.comment-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding-left: 19px;
}

.profile-and-name {
  display: flex;
  align-items: center;
  gap: 5px;
}

.profile-and-name img {
  width: 25px;
  height: 25px;
  border-radius: 50%;
}

.profile-and-name h4 {
  font-size: 15px;
}

.reviews-gray-container {
  width: 240px;
  height: 160px;
  background-color: #262626;
  box-shadow: 0px 0px 6px #000;
  border-radius: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px;
}

.reviews:hover .reviews-white-container {
  transform: translate(-40px, -40px);
}

.fausto-class h4 {
  font-size: 14px;
}

.tag-list {
  margin: 0;
  padding-inline: 0;
  list-style: none;
}

.tag-list img {
  width: 100px;
}

.scroller {
  max-width: 100%;
}

.scroller__inner {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  padding-block: 1rem;
}

.scroller[data-animated=true] {
  overflow: hidden;
  -webkit-mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
  mask: linear-gradient(90deg, transparent, white 20%, white 80%, transparent);
}

.scroller[data-animated=true] .scroller__inner {
  flex-wrap: nowrap;
  width: max-content;
  animation: scroll var(--_animation-duration, 40s) var(--_animation-direction, forwards) linear infinite;
}

.scroller[data-direction=right] {
  --_animation-direction: reverse;
}

.scroller[data-direction=left] {
  --_animation-direction: forwards;
}

@keyframes scroll {
  to {
    transform: translate(calc(-50% - 0.5rem));
  }
}
/* ~~~~~~ Footer ~~~~~~ */
footer {
  position: relative;
  margin-top: 30px;
}

/* ~~~~~~ Capa gris ~~~~~~ */
.grey-block {
  position: absolute;
  top: -30px;
  left: 0;
  width: 100%;
  height: 60px;
  background-color: #DDDDDB;
  border-radius: 25px 25px 0 0;
  z-index: 1;
}

.footer-container {
  display: flex;
  align-items: start;
  justify-content: space-between;
  position: relative;
  z-index: 4;
  height: 150px;
  width: 100%;
  background-color: #262626;
  border-radius: 25px 25px 0px 0px;
  padding: 15px;
  padding-left: 35px;
}

/* ~~~~~~ Logo ~~~~~~ */
.logo-contact-block {
  display: flex;
  gap: 45px;
}

.logo img {
  height: 65px;
  width: auto;
}

/* ~~~~~~ Contacto ~~~~~~ */
.footer-section.contacto {
  line-height: 30px;
}

.adress {
  font-size: 20px;
}

.adress a {
  text-decoration: none;
  color: #dddddb;
}

.phone a {
  text-decoration: none;
  color: #dddddb;
}

.email a {
  color: white;
}

.email a:hover {
  color: #b5241f;
  transition-duration: 0.2s;
}

.footer-container {
  color: white;
}

/* ~~~~~~ Quick Links ~~~~~~ */
.quick-links li {
  list-style-type: none;
}

.quick-links li a {
  color: white;
  text-decoration: none;
}

.footer-section h3 {
  font-weight: 600;
}

.footer-section li a {
  font-size: 13px;
}

.quick-links li a:hover {
  color: #b5241f;
  transition-duration: 0.2s;
}

/* ~~~~~~ Redes sociales ~~~~~~ */
.icons {
  height: 30px;
  width: auto;
}

.redes-sociales {
  line-height: 40px;
}

.redes-sociales a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #dddddb;
  gap: 10px;
}

/* ~~~~~~ Copyright (BG) ~~~~~~ */
.footer-container {
  background-image: url("../imgs/global/textures/footer/copyrights.png");
  background-repeat: no-repeat;
  background-position: 50% 100%;
}

/* ~~~~~~ Up-Scroller ~~~~~~ */
.up-scroller figure a img {
  height: 25px;
  width: auto;
  position: absolute;
  right: 45px;
  top: 30px;
}

@media (max-width: 1115px) {
  .comments .grid-comments-review {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-areas: "c1 c2 c3" "c4 c5 c6" "c7 c8 c9" "c10 c11 c12";
  }
}
@media (max-width: 992px) {
  .grid {
    width: 100%;
    padding: 0px 5%;
  }
  .up-scroller figure a img {
    display: none;
  }
  .comments .grid-comments-review {
    grid-template-columns: 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    grid-template-areas: "c1 c2 c3" "c4 c5 c6" "c7 c8 c9" "c10 c11 c12";
  }
  .slider {
    width: 100vw;
  }
  .slider .selectors-container {
    left: 40%;
  }
  .slider .white-background {
    width: 96%;
  }
  .slider .white-background .black-background {
    width: 100vw;
  }
  .container .sidebar {
    width: 170px;
  }
  .container .products .search-error {
    transform: translate(0, 0);
  }
  .container .products .search-error .not-found-text {
    width: 60vw;
  }
  footer .footer-container {
    height: 27vh;
  }
  footer .footer-container .footer-block .footer-section.contacto {
    line-height: 26px;
  }
  footer .footer-container .footer-block .footer-section.contacto .adress {
    font-size: 18px;
  }
  footer .footer-container .footer-block .footer-section.contacto .phone {
    font-size: 14px;
  }
  footer .footer-container .footer-block .footer-section.contacto .email {
    font-size: 14px;
  }
}
@media (max-width: 790px) {
  .footer-container {
    height: 27vh;
    gap: 30px;
  }
  .footer-container .footer-section.contacto {
    line-height: 23px;
  }
  .footer-container .footer-section h3 {
    font-size: 16px;
  }
  .footer-container .footer-section li a {
    font-size: 12px;
  }
  .comments .grid-comments-review {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    grid-template-areas: "c1 c2" "c3 c4" "c5 c6" "c7 c8";
  }
  .comments .grid-comments-review .c9, .comments .grid-comments-review .c10, .comments .grid-comments-review .c11, .comments .grid-comments-review .c12 {
    display: none;
  }
  main nav .navegation-bar {
    gap: 10px;
    font-size: 13px;
  }
  main nav .navegation-bar .menu-dropdown img {
    height: 7px;
    width: auto;
  }
  .product-all .container-1 figure img {
    height: 55vh;
  }
  .product-all .container-2 .product-stock {
    top: -70px;
  }
  .product-all .container-2 .product-stock p {
    font-size: 25px;
  }
  .product-searcher-index {
    width: 400px;
  }
  .container .sidebar {
    display: none;
  }
  .container .products .search-error {
    margin: 10vh 0px;
  }
  .container .products .search-error .not-found-text {
    width: 60vw;
  }
  .carrousel-section .wrapper {
    max-width: 575px;
    overflow: hidden;
  }
  .carrousel-section .wrapper #left {
    left: 0px;
  }
  .carrousel-section .wrapper #right {
    right: 0px;
  }
}
@media (max-width: 600px) {
  .box {
    width: 74px;
  }
  main nav .navegation-bar {
    display: none;
  }
  section div .main-text {
    width: 80vw;
  }
  section div .desc {
    font-size: 16px;
  }
  section .grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr 1fr 1fr 1fr;
    grid-auto-flow: row;
    grid-template-areas: "area2 area2" "area2 area2" "area4 area4" "area4 area4" "area1 area1" "area3 area3" "area5 area6" "area7 area8";
    gap: 10px;
    height: 100%;
    width: 100%;
    padding: 0px 5%;
  }
  .comments .grid-comments-review {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    grid-template-areas: "c1" "c2" "c3" "c4";
  }
  .comments .grid-comments-review .c5, .comments .grid-comments-review .c6, .comments .grid-comments-review .c7, .comments .grid-comments-review .c8, .comments .grid-comments-review .c9, .comments .grid-comments-review .c10, .comments .grid-comments-review .c11, .comments .grid-comments-review .c12 {
    display: none;
  }
  footer .footer-container {
    display: flex;
    flex-direction: column;
    height: 100%;
    gap: 20px;
    background-size: contain;
  }
  footer .footer-container .footer-section.contacto {
    line-height: 23px;
  }
  footer .footer-container .footer-section h3 {
    font-size: 18px;
  }
  footer .footer-container .footer-section li a {
    font-size: 14px;
  }
  footer .logo-contact-block {
    gap: 10px;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  footer .icons {
    height: 40px;
    width: auto;
  }
  footer .logo img {
    position: absolute;
    right: 5%;
    top: 7%;
  }
  footer .redes-sociales {
    line-height: 55px;
    position: absolute;
    right: 5%;
    bottom: 20%;
  }
  footer .footer-section {
    padding-bottom: 2px;
  }
  .product-all .container-1 {
    flex-direction: column;
    overflow: hidden;
  }
  .product-all .container-1 .product-viewer-container {
    margin-top: 30px;
  }
  .product-all .container-1 .product-viewer-container .image-holder {
    width: 90vw;
  }
  .product-all .container-1 .product-viewer-container figure img {
    width: 100%;
    height: auto;
  }
  .product-all .container-2 {
    width: 100vw;
  }
  .product-all .container-2 .product-info {
    width: 90vw;
    min-height: 40vh;
  }
  .product-all .container-2 .product-info h2 {
    font-size: 6vw;
  }
  .product-all .container-2 .product-info h3 {
    font-size: 7vw;
  }
  .product-all .container-2 .product-info .product-ubication a {
    font-size: 3vw;
  }
  .product-all .container-2 .product-info .product-ubication img {
    height: 2.5vw;
  }
  .product-all .container-2 .product-stock {
    width: 90vw;
  }
  .product-searcher-index {
    display: none;
  }
  .container {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: auto;
  }
  .container .products {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    row-gap: 0px;
  }
  .container .products .search-error {
    transform: translate(0, 0);
    height: 25rem;
  }
  .container .products .search-error .not-found-text {
    width: 90vw;
  }
  .container .products .product-card {
    height: auto;
    width: auto;
  }
  .container .products .product-card .card {
    height: auto;
    width: auto;
  }
  .container .products .product-card .card .top {
    width: 70vw;
  }
  .container .products .product-card .card .midlane {
    width: 70vw;
  }
  .container .products .product-card .card .bottom {
    width: 70vw;
    height: auto;
    min-height: 140px;
  }
  .container .sidebar {
    display: none;
  }
  .carrousel-section .wrapper {
    max-width: 281px;
    overflow: hidden;
  }
}
@media screen and (max-width: 600px) {
  .nav__menu {
    position: absolute;
    left: 0;
    top: 2.5rem;
    width: 100%;
    height: calc(100vh - 3.5rem);
    overflow: auto;
    pointer-events: none;
    opacity: 0;
    transition: top 0.4s, opacity 0.3s;
  }
  .nav__menu::-webkit-scrollbar {
    width: 0;
  }
  .nav__list {
    background-color: var(--black-color);
    padding-top: 1rem;
    border-radius: 15px;
    display: block;
  }
  .nav__toggle {
    display: block;
  }
}
.nav__link {
  color: var(--white-color);
  font-weight: var(--font-semi-bold);
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background-color 0.3s;
  border-radius: 15px;
}

.nav__link:hover {
  background-color: var(--white-color);
  color: var(--bla-color);
}

/* Show menu */
.show-menu {
  opacity: 1;
  top: 6rem;
  pointer-events: initial;
  z-index: 7;
  background-color: #DDDDDB;
  border-radius: 15px;
}

/* Show icon */
.show-icon .nav__burger {
  opacity: 0;
  transform: rotate(90deg);
}

.show-icon .nav__close {
  opacity: 1;
  transform: rotate(90deg);
}

.container {
  display: flex;
  padding: 2rem;
  gap: 2rem;
}

.sidebar {
  height: 100%;
  width: 250px;
  background-color: #DDDDDB;
  padding: 1rem;
  border-radius: 8px;
  box-shadow: 0px 0 5px #000;
  color: #202020;
  border-left: 18px groove #b5241f;
  transition-duration: 0.3s;
}

.sidebar h2 {
  margin-bottom: 1rem;
}

.sidebar h4 {
  margin-bottom: 0.5rem;
  pointer-events: none;
  background-color: #d0d0d0;
  padding: 5px;
  border-radius: 5px;
}

/* .sidebar a {
    margin-bottom: 0.5rem;
} */
.sidebar ul {
  list-style: none;
  line-height: 26px;
  margin-bottom: 1rem;
  border-left: 2px groove #b5241f;
  /*! border-bottom: 2px groove #b5241f; */
  border-radius: 5%;
  padding-left: 5px;
}

.sidebar a {
  text-decoration: none;
  color: #202020;
  transition-duration: 0.3s;
}

.sidebar a:hover {
  color: #b5241f;
}

.sidebar input[type=text] {
  padding: 0.5rem;
  margin-bottom: 1rem;
  width: 100%;
  background-color: #DDDDDB;
  border: 1px solid #262626;
  border-radius: 5px;
}

/* .product-card {
    background-color: #fff;
    border-radius: 8px;
    padding: 1rem;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
    height: 320px;
} */
.product-card-placeholder {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #aaa;
  font-size: 1rem;
  text-align: center;
}

.product-card {
  height: 25rem;
  width: 17.5rem;
  text-decoration: none;
}

.product-card h3 {
  color: #202020;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  line-clamp: 3;
}

.card {
  height: 25rem;
  width: 17.5rem;
}

/* Animación de las cards */
.card .flecha {
  transition-duration: 0.3s;
}

.card .flecha:hover {
  transform: translateY(5px);
}

.image-container picture img {
  transition-duration: 0.3s;
}

.image-container picture img:hover {
  transform: scale(105%);
}

.midlane {
  transition-duration: 0.3s;
}

.midlane:hover {
  transform: translateY(-5px);
}

.banners-ofertas-container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.banner {
  height: 6rem;
  width: 100%;
  border-radius: 15px;
  background-color: #202020;
}

/* CSS DE LAS TARJETAS */
div.top {
  background-color: #262626;
  width: 280px;
  height: 260px;
  border-radius: 25px 25px 0% 0%;
  display: flex;
  flex-direction: column;
  transition-duration: 0.3s;
}

div.midlane {
  background-color: #b5241f;
  width: 280px;
  border-radius: 25px;
  height: 80px;
  position: relative;
  top: -25px;
  z-index: 1;
  text-align: center;
  color: white;
  padding: 3px;
}

div.disponibilidad {
  background-color: #202020;
}

div.bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  background-color: #DDDDDB;
  width: 280px;
  height: 140px;
  border-radius: 25px;
  padding: 10px;
  position: relative;
  top: -80px;
  z-index: 1;
  background-image: url("../imgs/global/textures/card/card-texture.png");
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: fill;
  transition-duration: 0.3s;
}

/* Novedad */
.news {
  background-color: #b5241f;
  width: 55px;
  border-radius: 5px;
  position: relative;
  top: 15px;
  left: 20px;
  padding: 2px;
  color: white;
  text-align: center;
  font-size: 14px;
  box-shadow: 4px 4px 10px -1px black;
}

/* Contenedor de imagen */
div.image-container {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-bottom: 10%;
  margin: auto;
}

div.image-container img {
  object-fit: cover;
  width: 100%;
  height: 215px;
  max-width: 250px;
  max-height: fit-content;
}

/* Descrpicion y precio */
div.content {
  text-align: center;
  display: flex;
  justify-content: space-between;
  gap: 6px;
  flex-direction: column;
}

.imagen-flecha {
  width: 30px;
  height: auto;
}

.texto-precio {
  font-size: 25px;
  color: #202020;
}

.texto-disponibilidad {
  text-shadow: 4px 4px 10px black;
  font-weight: 600;
}

/* .news {
    opacity: 0;
} */
.products > * {
  min-width: 0;
}

.products {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  row-gap: 1.5rem;
  width: fit-content;
  height: fit-content;
  justify-items: center;
}

.product-all {
  display: flex;
  justify-content: center;
  justify-content: center;
  align-items: center;
}

.product-all a {
  text-decoration: none;
  color: #202020;
  font-size: 1.5vw;
}

.ubication-arrow {
  height: 1vw;
  width: auto;
}

.container-1 {
  display: flex;
  justify-content: center;
  gap: 2vw;
}

/* PRODUCT INFO */
.product-info {
  background-color: #dddddb;
  min-height: 60vh;
  width: 33vw;
  border-radius: 25px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  box-shadow: 0px 0px 15px #262626;
  background-image: url("../imgs/global/textures/card/texture-product-viewer.png");
  background-repeat: no-repeat;
  background-position: 102% 102%;
  background-size: 200px;
}

.product-info h2 {
  font-size: 3vw;
}

.product-info h3 {
  font-weight: 300;
  font-size: 4vw;
  color: #202020;
}

.product-info p {
  font-size: 20px;
}

.product-t-p-d {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.product-viewer-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 40px;
}

.product-viewer-container figure img {
  height: 65vh;
  width: auto;
}

.product-viewer-container .image-holder {
  background-color: #262626;
  border-radius: 25px;
  box-shadow: -5px 5px rgba(181, 36, 31, 0.8588235294);
}

.product-title-desc {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.product-stock {
  background-color: #b5241f;
  color: #dddddb;
  border-radius: 25px;
  height: 125px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  position: relative;
  top: -55px;
  z-index: -1;
  padding-bottom: 15px;
  box-shadow: 0px 0px 15px #262626;
}

.product-stock p {
  font-size: 35px;
  text-shadow: 0px 8px 10px #202020;
}

.container-2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 40px;
}

/* PRODUCT IMAGES */
.product-images {
  background-color: #262626;
  border-radius: 10px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 15px;
}

/* .ubication-arrow {
    height: 100px;
    width: 100px;
} */
/* BOTON DE STOCK */
.stock-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 9px;
  width: 170px;
  padding: 7px 0px;
  border-radius: 10px;
  border: 2px solid #8B8B8B;
  background-color: #D0D0D0;
  font-weight: normal;
  font-size: 17px;
  transition: 0.2s;
  cursor: pointer;
}

.btn-arrow {
  width: 10px;
  height: auto;
  transition: 0.2s;
}

.stock-btn:hover {
  border-color: #b5241f;
  color: #791815;
}
.stock-btn:hover .btn-arrow {
  transform: translate(4px);
}

/* Search error script */
.products:has(.search-error) {
  grid-template-columns: 1fr;
}

.search-error {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 15vh;
}
.search-error img {
  width: 200px;
  height: auto;
}
.search-error p {
  font-size: 32px;
  font-weight: 600;
  color: #dddddb;
  text-align: center;
  width: 40vw;
  margin-top: 35px;
}

.container-404 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  height: 100vh;
  gap: 40px;
}

.e404-img {
  width: 205px;
  height: auto;
}

.e404-text-h1 {
  font-size: 50px;
  color: white;
}

.e404-text-p {
  font-size: 20px;
  color: #dddddb;
}

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