section#carousels {
  display: flex;
  flex-direction: row;
  overflow: hidden;
  height: calc(100vh - 125px);
}
section#carousels li {
  flex: 0 0 100%;
  background-size: cover;
  height: 100%;
  align-content: center;
  justify-content: center;
}
section#carousels li .data {
  text-align: center;
}
section#carousels li .data h2 {
  padding: 0 0 20px 0;
  color: white;
}
section#carousels li .data .btn {
  border: 2px solid white;
  background: transparent;
  color: white;
  transition: 0.3s;
}
section#carousels li .data .btn:hover {
  background: white;
  color: #303030;
}
section#carousels button {
  display: none;
  position: absolute;
  top: calc((100vh - 150px) / 2);
  background: rgba(0, 0, 0, 0.5) !important;
  border-radius: 50px;
  padding: 8px 20px;
  transition: 0.3s;
}
section#carousels button .arrow span::before,
section#carousels button .arrow span::after {
  background-color: white !important;
}
section#carousels button.previous {
  left: 20px;
}
section#carousels button.previous .arrow span::before,
section#carousels button.previous .arrow span::after {
  left: auto !important;
}
section#carousels button.next {
  right: 20px;
}

section#carousels:hover button {
  display: block;
}

section#features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 1fr);
  height: calc(100vh - 125px);
}
section#features li {
  overflow: hidden;
  position: relative;
}
section#features li .pic {
  background-size: cover;
  background-position: center;
  height: 100%;
  transition: 0.3s;
}
section#features li .data {
  height: 100%;
  width: 100%;
  background-color: transparent;
  position: absolute;
  top: 0;
  align-content: end;
  padding: 40px;
}
section#features li .data h2 {
  color: black;
  margin: 0;
  padding: 8px 14px;
  border: 2px solid white;
  width: max-content;
  font-size: 16px;
  background: white;
  max-width: 100%;
}
section#features li .data p {
  display: none;
}
section#features li:hover .pic {
  scale: 1.2;
}
section#features li:hover .data {
  background-color: rgba(0, 0, 0, 0.25);
}
section#features li:hover .data h2 {
  background: transparent;
  color: white;
  border-color: white;
  font-size: 20px;
  padding: 14px 20px;
}
section#features li:hover .data p {
  font-size: 20px;
  color: white;
  line-height: 28px;
  display: block;
  font-weight: 600;
}

section#features.impar li:first-child {
  grid-row-start: 1;
  grid-row-end: 3;
}

section#collections {
  display: flex;
  flex-direction: row;
  overflow: hidden;
}
section#collections a {
  display: block;
  flex: 0 0 calc((100% - 40px) / 5);
  height: 60vh;
  background-size: cover;
  transition: 0.3s;
  position: relative;
}
section#collections a h2 {
  position: absolute;
  bottom: 10px;
  text-align: center;
  width: 100%;
  color: white;
}
section#collections a:first-child {
  background: orangered;
  color: white;
  writing-mode: sideways-lr;
  text-orientation: mixed;
  text-transform: uppercase;
  flex: 0 0 40px !important;
  font-size: 20px;
  font-weight: bold;
  align-content: center;
  text-align: center;
  letter-spacing: 12px;
}
section#collections a:hover {
  flex: 0 0 30%;
}

section.list,
.favorites-home,
.history-home {
  padding: 20px;
}
section.list .header,
.favorites-home .header,
.history-home .header {
  display: grid;
  grid-template-columns: auto 1fr 24px auto 24px;
  gap: 20px;
  align-items: center;
}
section.list .header h2,
.favorites-home .header h2,
.history-home .header h2 {
  font-size: 48px;
}
section.list .header a,
.favorites-home .header a,
.history-home .header a {
  color: royalblue;
  font-size: 16px;
  font-weight: 500;
  width: max-content;
}

section.list.grid .items {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr);
}
section.list.grid .btn {
  border-radius: 50px;
  display: block;
  margin: 20px auto 0 auto;
  width: max-content;
  background: white;
  color: #101010;
  border: 1px solid #ccc;
  transition: 0.3s;
}
section.list.grid .btn:hover {
  background: royalblue;
  color: white;
  border-color: royalblue;
}

section#carousels button,
section.list button,
.favorites-home button,
.history-home button {
  border: none;
  outline: none;
  background: transparent;
  font-size: 34px;
  font-weight: bold;
  cursor: pointer;
}
section#carousels button span.text,
section.list button span.text,
.favorites-home button span.text,
.history-home button span.text {
  top: 12px;
}
section#carousels button .arrow span,
section.list button .arrow span,
.favorites-home button .arrow span,
.history-home button .arrow span {
  display: inline-block;
  margin-right: 8px;
  width: 10px;
  height: 10px;
  position: relative;
  cursor: pointer;
}
section#carousels button .arrow span::before,
section#carousels button .arrow span::after,
section.list button .arrow span::before,
section.list button .arrow span::after,
.favorites-home button .arrow span::before,
.favorites-home button .arrow span::after,
.history-home button .arrow span::before,
.history-home button .arrow span::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 15px;
  background-color: #333;
  top: 0;
  transition: top 0.1s ease;
}
section#carousels button.previous span::before,
section.list button.previous span::before,
.favorites-home button.previous span::before,
.history-home button.previous span::before {
  left: 0;
  top: -13px;
  transform: rotate(45deg);
}
section#carousels button.previous span::after,
section.list button.previous span::after,
.favorites-home button.previous span::after,
.history-home button.previous span::after {
  left: 0;
  top: -6px;
  transform: rotate(-45deg);
}
section#carousels button.next span::before,
section.list button.next span::before,
.favorites-home button.next span::before,
.history-home button.next span::before {
  left: 8px;
  top: -13px;
  transform: rotate(-45deg);
}
section#carousels button.next span::after,
section.list button.next span::after,
.favorites-home button.next span::after,
.history-home button.next span::after {
  left: 8px;
  top: -6px;
  transform: rotate(45deg);
}

.favorites-home {
  background: #f5f5f5;
  padding-bottom: 60px;
  margin: 60px 0 0 0;
}

.history-home {
  background: #eee;
  padding-bottom: 60px;
}

section#collection {
  padding: 20px;
}
section#collection .header span {
  margin: 0 0 20px 0;
  display: block;
}
section#collection .header span a {
  color: black;
  margin: 0 10px;
}
section#collection .header span a:first-child {
  margin: 0 10px 0 0;
}
section#collection .header span a:last-child {
  margin: 0 0 0 10px;
}
section#collection .header h2 {
  font-size: 48px;
  margin: 0;
}
section#collection .header p {
  color: gray;
}
section#collection .all {
  display: flex;
  flex-direction: row;
  gap: 10px;
  margin: 40px 0 80px 0;
}
section#collection .all a {
  flex: 0 0 180px;
  border-radius: 5px;
  background: white;
  z-index: 1;
  transition: 0.3s;
  opacity: 0.8;
}
section#collection .all a img {
  width: 100%;
  border-radius: 5px 5px 0 0;
  aspect-ratio: 1/1;
  object-fit: cover;
}
section#collection .all a h4 {
  margin: 0;
  font-size: 14px;
  color: black;
  padding: 12px 18px;
  text-align: left;
}
section#collection .all a.active {
  background: black !important;
  opacity: 1;
}
section#collection .all a.active h4 {
  color: white;
}
section#collection .all a:hover {
  opacity: 1;
}
section#collection .all::after {
  background: #eee;
  width: 100%;
  height: 160px;
  content: "";
  position: absolute;
  left: 0;
  margin-top: 80px;
}
section#collection .items {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr) !important;
}

section#filters {
  padding: 20px;
}
section#filters .head {
  margin: 0 0 18px 0;
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: repeat(2, auto);
  grid-template-areas: "head-name head-buttons" "head-description head-buttons";
}
section#filters .head h2 {
  margin: 0;
  font-size: 1.875rem;
  line-height: 1.2;
  font-weight: 800;
  letter-spacing: -0.03em;
  grid-area: head-name;
}
section#filters .head p {
  grid-area: head-description;
  margin: 0;
  color: #62748e;
  font-size: 15px;
  line-height: 1.4285714286;
}
section#filters .head .buttons {
  padding: 0.25rem;
  background: #fcf9fa;
  border: 1px solid #e2e8f0;
  border-radius: 50px;
}
section#filters .head .buttons button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 38px;
  padding: 0 16px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.05);
  font-size: 0.875rem;
  font-weight: 600;
  cursor: pointer;
  transition: 0.25s ease;
  grid-area: head-buttons;
}
section#filters .head .buttons button:hover {
  background: rgba(255, 255, 255, 0.1);
}
section#filters .head .buttons button.active {
  background: #020618;
  color: white;
}
section#filters .box {
  display: none;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 10px;
}
section#filters .box.active {
  display: grid;
}
section#filters .item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  min-height: 58px;
  padding: 12px 14px;
  border-radius: 16px;
  text-decoration: none;
  background: white;
  border: 1px solid #e2e8f0;
  transition: 0.25s ease;
  backdrop-filter: blur(6px);
}
section#filters .item span {
  display: block;
  font-size: 14px;
  font-weight: 700;
  line-height: 1.2;
  color: #0f172b;
}
section#filters .item:hover {
  border-color: #cad5e2;
}

@media (max-width: 1100px) {
  section#filters .head h2 {
    font-size: 28px;
  }
  section#filters .box {
    grid-template-columns: repeat(auto-fill, minmax(160px, 1fr));
  }
}
@media (max-width: 768px) {
  section#filters {
    padding: 16px;
    border-radius: 18px;
  }
  section#filters .head {
    margin-bottom: 14px;
  }
  section#filters .head h2 {
    font-size: 24px;
    gap: 8px;
  }
  section#filters .head button {
    min-height: 34px;
    padding: 0 14px;
    font-size: 13px;
  }
  section#filters .box {
    grid-template-columns: repeat(2, 1fr);
    gap: 8px;
  }
  section#filters .item {
    min-height: 52px;
    padding: 10px 12px;
    border-radius: 14px;
  }
  section#filters .item span {
    font-size: 14px;
  }
  section#filters .item small {
    min-width: 24px;
    height: 24px;
    font-size: 10px;
  }
  section#special .content {
    grid-template-columns: 1fr !important;
  }
  section#special .content .box .buttons {
    display: none !important;
  }
  section#special .content .items .item {
    flex: 0 0 100% !important;
  }
  section.list.grid .items {
    grid-template-columns: 1fr !important;
  }
}
@media (max-width: 480px) {
  section#filters .head h2 {
    font-size: 22px;
  }
  section#filters .box {
    grid-template-columns: 1fr 1fr;
  }
  section#filters .item span {
    font-size: 13px;
  }
}
section#special {
  padding: 20px;
}
section#special .content {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 16px;
  align-items: stretch;
  background: #020817;
  padding: 24px;
  border-radius: 10px;
}
section#special .content .box {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: radial-gradient(circle at top left, rgba(168, 85, 247, 0.22), transparent 30%), linear-gradient(180deg, #061235 0%, #020817 100%);
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(8px);
  padding: 28px;
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 28px;
}
section#special .content .box nav {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
}
section#special .content .box nav button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding: 0 16px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.3px;
  color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  cursor: pointer;
  transition: 0.25s ease;
}
section#special .content .box nav button:hover {
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
}
section#special .content .box nav button.active {
  color: #fff;
  border-color: transparent;
  background: linear-gradient(135deg, #ec4899, #8b5cf6);
}
section#special .content .box .cnt {
  display: none;
  height: 100%;
  grid-template-rows: repeat(2, auto) 1fr auto;
  align-content: start;
}
section#special .content .box .cnt.active {
  display: grid;
}
section#special .content .box h2 {
  margin: 0 0 18px 0;
  font-size: 34px;
  line-height: 1.05;
  font-weight: 900;
  letter-spacing: -1px;
  color: #fff;
  text-transform: uppercase;
}
section#special .content .box p {
  margin: 0;
  font-size: 15px;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.82);
}
section#special .content .box .more {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 28px 0 0 0;
  height: max-content;
}
section#special .content .box .more a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  color: #0f172a;
  background: #fff;
  border: none;
  transition: 0.25s ease;
}
section#special .content .box .more a:hover {
  transform: translateY(-1px);
}
section#special .content .box .more span {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  font-style: normal;
}
section#special .content .box .buttons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
  gap: 14px;
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
section#special .content .box .buttons button {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 14px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.25s ease;
}
section#special .content .box .buttons .previous {
  text-align: left;
}
section#special .content .box .buttons .next {
  text-align: right;
}
section#special .content .box .buttons button:hover {
  color: #fff;
}
section#special .content .box .buttons .dots {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
section#special .content .box .buttons .dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: block;
  transition: 0.25s ease;
}
section#special .content .box .buttons .dots span.active {
  background: #fff;
}
section#special .content .items {
  display: none;
}
section#special .content .items .item {
  flex: 0 0 calc(25% - 10px);
}
section#special .content .items .item .variants {
  display: none;
}
section#special .content .items.active {
  display: flex;
}

section#special-grid {
  padding: 20px;
}
section#special-grid h2 {
  font-size: 48px;
}
section#special-grid .items {
  display: grid !important;
  grid-template-columns: repeat(5, 1fr);
}

@media (max-width: 1100px) {
  section#special {
    grid-template-columns: 1fr;
  }
  section#special .box {
    min-height: auto;
  }
  section#special .box h2 {
    max-width: none;
    font-size: 38px;
  }
  section#special .box p {
    max-width: none;
  }
  section#special .box .cnt {
    height: auto;
  }
}
@media (max-width: 640px) {
  section#special {
    padding: 15px;
    gap: 12px;
  }
  section#special .box {
    padding: 20px;
    border-radius: 18px;
    gap: 20px;
    min-height: auto;
  }
  section#special .box nav {
    gap: 8px;
  }
  section#special .box nav button {
    min-height: 36px;
    padding: 0 14px;
    font-size: 12px;
  }
  section#special .box .tag {
    margin-bottom: 18px;
    font-size: 10px;
  }
  section#special .box h2 {
    font-size: 20px;
  }
  section#special .box p {
    margin-top: 16px;
    font-size: 15px;
    line-height: 1.6;
  }
  section#special .box .more {
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 22px;
  }
  section#special .box .more a {
    min-height: 42px;
    padding: 0 16px;
    font-size: 14px;
  }
  section#special .box .more span {
    font-size: 13px;
  }
  section#special .box .buttons {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    padding-top: 18px;
    margin-top: 28px;
  }
  section#special .box .buttons .dots {
    display: none;
  }
}

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