* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: hsl(0, 0%, 10%);
  background-color: hsl(0, 0%, 100%);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img {
  max-width: 100%;
  height: auto;
  display: block;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 600;
  line-height: 1.2;
  color: hsl(0, 0%, 10%);
}
h1 {
  font-size: clamp(1.875rem, 3vw, 2.25rem);
  line-height: clamp(2.25rem, 3.5vw, 2.5rem);
}
h2 {
  font-size: clamp(1.5rem, 4vw, 2.25rem);
}
h3 {
  font-size: clamp(1.25rem, 3vw, 1.875rem);
}
a {
  color: hsl(0, 0%, 10%);
  text-decoration: none;
  transition: color 0.25s ease;
}
a:hover {
  color: hsl(0, 85%, 45%);
}
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.container {
  width: 100%;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media (min-width: 1440px) {
  .container {
    max-width: 1400px;
  }
}
.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: hsl(0, 0%, 100%);
}
.site-header__top {
  background: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 98%);
  font-size: 0.875rem;
  text-align: center;
  padding: 0.5rem 0;
}
.site-header__banner-text {
  margin: 0;
  font-weight: 500;
  color: hsl(0, 0%, 98%);
}
.site-header__main {
  width: 100%;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 2rem;
  padding: 1.5rem;
  padding-top: 1rem;
  padding-bottom: 1rem;
  min-height: 4rem;
}
@media (min-width: 1440px) {
  .site-header__main {
    max-width: 1400px;
  }
}
@media (min-width: 1440px) {
  .site-header__main {
    max-width: 1400px;
  }
}
@media (max-width: 768px) {
  .site-header__main {
    grid-template-columns: auto 1fr auto;
    gap: 1rem;
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
.site-header__logo {
  display: flex;
  align-items: center;
}
@media (max-width: 768px) {
  .site-header__logo {
    grid-area: logo;
  }
}
.site-header__logo-link {
  display: block;
}
.site-header__logo-img {
  height: auto;
  width: auto;
  max-height: 3.5rem;
  display: block;
}
.site-header__right {
  display: flex;
  align-items: center;
  gap: 2rem;
}
@media (max-width: 768px) {
  .site-header__right {
    gap: 1rem;
  }
}
.site-header__nav {
  display: none;
}
@media (min-width: 768px) {
  .site-header__nav {
    display: block;
  }
}
@media (max-width: 768px) {
  .site-header__nav {
    display: none;
  }
}
.site-header__nav-list {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-header__nav-item--dropdown {
  position: relative;
}
.site-header__nav-link {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(0, 0%, 10%);
  text-decoration: none;
  transition: color 0.25s ease;
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.site-header__nav-link:hover {
  color: hsl(0, 85%, 45%);
}
.site-header__nav-link.is-active {
  color: hsl(0, 85%, 45%);
}
.site-header__nav-arrow {
  font-size: 1rem;
  transition: transform 0.25s ease;
}
.site-header__dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  margin-top: 0.5rem;
  background: hsl(0, 0%, 100%);
  border: 1px solid hsla(0, 0%, 90%, 0.6);
  border-radius: 0.75rem;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  min-width: 16rem;
  max-width: 20rem;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.25s ease, transform 0.25s ease;
  pointer-events: none;
  z-index: 1000;
  display: none;
}
.site-header__dropdown[data-dropdown].is-open {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.site-header__dropdown-list {
  list-style: none;
  margin: 0;
  padding: 0.5rem 0;
}
.site-header__dropdown-item {
  margin: 0;
}
.site-header__dropdown-divider {
  height: 1px;
  background: hsla(0, 0%, 90%, 0.6);
  margin: 0.5rem 0;
}
.site-header__dropdown-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.5rem 1rem;
  color: hsl(0, 0%, 10%);
  text-decoration: none;
  font-size: 0.875rem;
  transition: background-color 0.25s ease;
}
.site-header__dropdown-link:hover {
  background: hsla(0, 0%, 96%, 0.3);
}
.site-header__dropdown-count {
  font-size: 0.75rem;
  color: hsl(0, 0%, 45%);
  margin-left: 0.5rem;
}
.site-header__search {
  width: 100%;
  max-width: 42rem;
  justify-self: center;
}
@media (max-width: 768px) {
  .site-header__search {
    order: 3;
    grid-column: 1 / -1;
    width: 100%;
    margin-top: 0.5rem;
  }
}
.site-header__search--mobile {
  display: none;
  padding-bottom: 1rem;
}
@media (max-width: 768px) {
  .site-header__search--mobile {
    display: block;
  }
}
.site-header__actions {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.site-header__account-wrapper {
  position: relative;
}
.site-header__bar {
  width: 100%;
  height: 0.5rem;
  background-color: hsl(0, 0%, 10%);
}
.search-form {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
}
.search-form__icon {
  position: absolute;
  left: 1.25rem;
  font-family: 'Material Symbols Rounded', sans-serif;
  font-size: 1.5rem;
  color: hsl(0, 0%, 45%);
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  pointer-events: none;
  z-index: 1;
  transition: color 0.25s ease;
}
.search-form__input {
  width: 100%;
  padding: 1rem 1.25rem 1rem 3.75rem;
  border-radius: 1rem;
  border: 2px solid hsla(0, 0%, 90%, 0.6);
  background-color: hsl(0, 0%, 100%);
  font-size: 0.875rem;
  transition: all 0.25s ease;
  color: hsl(0, 0%, 10%);
  box-shadow: 0 2px 4px hsla(0, 0%, 96%, 0.2);
}
.search-form__input::placeholder {
  color: hsla(0, 0%, 45%, 0.7);
}
.search-form__input:focus {
  border-color: hsl(0, 0%, 10%);
  box-shadow: 0 0 0 4px hsla(0, 0%, 10%, 0.15), 0 4px 8px hsla(0, 0%, 96%, 0.25);
  outline: none;
  background-color: hsl(0, 0%, 100%);
}
.search-form__input:focus ~ .search-form__icon {
  color: hsl(0, 0%, 10%);
}
.search-form__input:hover {
  border-color: hsla(0, 0%, 10%, 0.6);
  box-shadow: 0 2px 6px hsla(0, 0%, 96%, 0.3);
}
.header-action {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  border: 1px solid hsl(0, 0%, 90%);
  background-color: hsl(0, 0%, 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  color: hsl(0, 0%, 10%);
}
.header-action:hover {
  border-color: hsl(0, 85%, 45%);
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 85%, 45%);
}
.header-action--menu {
  display: none;
}
@media (max-width: 768px) {
  .header-action--menu {
    display: inline-flex;
  }
}
.header-action__icon {
  font-family: 'Material Symbols Rounded', sans-serif;
  font-size: 1.25rem;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  line-height: 1;
  display: inline-block;
  color: inherit;
}
.header-action__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: absolute;
  top: -0.35rem;
  right: -0.35rem;
  background-color: hsl(0, 84%, 60%);
  color: #fff;
  width: 1.5rem;
  height: 1.5rem;
  padding: 0.25rem;
}
.primary-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 0;
}
@media (max-width: 992px) {
  .primary-nav {
    display: none;
  }
}
.primary-nav__categories {
  position: relative;
}
.primary-nav__categories:hover .categories-panel,
.primary-nav__categories:focus-within .categories-panel {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.primary-nav__links {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.primary-nav__link {
  padding: 0.6rem 0.95rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  font-weight: 500;
  color: hsl(0, 0%, 10%);
  transition: all 0.25s ease;
}
.primary-nav__link:hover {
  background-color: hsla(0, 85%, 45%, 0.5);
  color: hsl(0, 0%, 10%);
}
.primary-nav__link.is-active {
  background-color: hsla(0, 0%, 10%, 0.12);
  color: hsl(0, 0%, 10%);
}
.categories-toggle {
  justify-content: center;
  font-weight: 600;
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  background-color: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 98%);
  padding: 0.6rem 1rem;
  background: hsla(0, 0%, 96%, 0.5);
  color: hsl(0, 0%, 10%);
  border-color: hsla(0, 0%, 90%, 0.6);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.categories-toggle:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
.categories-toggle:focus-visible {
  outline: 2px solid hsl(0, 0%, 96%);
  outline-offset: 2px;
}
.categories-toggle:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.categories-toggle__icon {
  width: 1.25rem;
  height: 1.25rem;
  background-image: url('data:image/svg+xml,%3Csvg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M12 6V18" stroke="%2317351F" stroke-width="1.5" stroke-linecap="round"/%3E%3Cpath d="M6 12H18" stroke="%2317351F" stroke-width="1.5" stroke-linecap="round"/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-size: contain;
}
.categories-panel {
  position: absolute;
  top: calc(100% + 0.75rem);
  left: 0;
  width: min(42rem, 90vw);
  background-color: hsl(0, 0%, 100%);
  border-radius: 1rem;
  border: 1px solid hsla(0, 0%, 90%, 0.6);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  padding: 1.5rem;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.25s ease;
  z-index: 10;
}
@media (max-width: 992px) {
  .categories-panel {
    display: none;
  }
}
.categories-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.categories-list .categories-link {
  display: block;
  padding: 0.625rem;
  border-radius: 0.5rem;
  background-color: transparent;
  color: hsl(0, 0%, 10%);
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.categories-list .categories-link:hover {
  background-color: hsl(0, 85%, 45%);
  color: hsl(0, 0%, 98%);
}
.mobile-menu {
  display: none;
}
@media (min-width: 992px) {
  .mobile-menu {
    display: none !important;
  }
}
@media (max-width: 992px) {
  .mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100vw;
    height: 100vh;
    z-index: 10000;
    background-color: hsl(0, 0%, 100%);
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0;
    margin: 0;
    transform: translateX(-100%);
    opacity: 0;
    transition: transform 0.3s ease-out, opacity 0.3s ease-out;
    display: block;
  }
  .mobile-menu[hidden] {
    transform: translateX(-100%);
    opacity: 0;
    pointer-events: none;
  }
  .mobile-menu:not([hidden]) {
    transform: translateX(0);
    opacity: 1;
    pointer-events: auto;
  }
}
.mobile-menu__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border: none;
  background-color: hsla(0, 0%, 96%, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10001;
  transform: scale(0.8) rotate(-90deg);
  opacity: 0;
  transition: background-color 0.25s ease, transform 0.3s ease-out 0.2s, opacity 0.3s ease-out 0.2s;
}
.mobile-menu:not([hidden]) .mobile-menu__close {
  transform: scale(1) rotate(0deg);
  opacity: 1;
}
.mobile-menu__close:hover {
  background-color: hsla(0, 0%, 10%, 0.2);
  transform: scale(1.1) rotate(0deg);
}
.mobile-menu__close:focus-visible {
  outline: 2px solid hsl(0, 0%, 10%);
  outline-offset: 2px;
}
.mobile-menu__close-icon {
  font-size: 1.5rem;
  line-height: 1;
  color: hsl(0, 0%, 10%);
  font-weight: 300;
}
.mobile-menu__inner {
  padding: 5rem 1.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
  transform: translateY(20px);
  opacity: 0;
  transition: transform 0.4s ease-out 0.1s, opacity 0.4s ease-out 0.1s;
}
.mobile-menu:not([hidden]) .mobile-menu__inner {
  transform: translateY(0);
  opacity: 1;
}
.mobile-menu__nav {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.mobile-menu__title {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: hsla(0, 0%, 45%, 0.6);
  margin-bottom: 0.75rem;
}
.mobile-menu__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
}
.mobile-menu__item {
  position: relative;
}
.mobile-menu__toggle {
  position: absolute;
  right: 0.5rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  padding: 0.5rem;
  cursor: pointer;
  color: hsl(0, 0%, 10%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.25s ease;
}
.mobile-menu__toggle[aria-expanded="true"] {
  transform: translateY(-50%) rotate(180deg);
}
.mobile-menu__submenu {
  list-style: none;
  margin: 0;
  padding: 0;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
  display: none;
}
.mobile-menu__submenu[data-mobile-dropdown-content].is-open {
  display: block;
  max-height: 500px;
}
.mobile-menu__sublink {
  display: block;
  padding: 0.75rem 1rem 0.75rem 2.5rem;
  color: hsl(0, 0%, 45%);
  text-decoration: none;
  font-size: 0.875rem;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.mobile-menu__sublink:hover {
  background: hsla(0, 0%, 96%, 0.3);
  color: hsl(0, 0%, 10%);
}
.mobile-menu__link {
  padding: 0.85rem 1rem;
  border-radius: 0.5rem;
  background-color: hsla(0, 0%, 96%, 0.35);
  font-weight: 600;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.mobile-menu__link:hover {
  background-color: hsla(0, 0%, 10%, 0.15);
  color: hsl(0, 0%, 10%);
}
.site-footer {
  margin-top: 6rem;
  background: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 98%);
  padding: 4rem 0 1.5rem;
}
.site-footer__grid {
  width: 100%;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  display: grid;
  gap: 3rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 1440px) {
  .site-footer__grid {
    max-width: 1400px;
  }
}
@media (min-width: 1440px) {
  .site-footer__grid {
    max-width: 1400px;
  }
}
@media (min-width: 768px) {
  .site-footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.site-footer__description {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: hsla(0, 0%, 98%, 0.8);
  line-height: 1.6;
}
.site-footer__column {
  display: block;
  gap: 1rem;
}
.site-footer__logo {
  filter: brightness(0) invert(1);
}
.site-footer__description {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 0;
}
.site-footer__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
  color: hsl(0, 0%, 98%);
}
.site-footer__list,
.site-footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
  color: rgba(255, 255, 255, 0.82);
}
.site-footer__list li,
.site-footer__links li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}
.site-footer__icon {
  font-family: 'Material Symbols Rounded', sans-serif;
  font-size: 1.1rem;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  line-height: 1;
  display: inline-block;
  margin-top: 0.2rem;
}
.site-footer__link {
  color: rgba(255, 255, 255, 0.85);
  font-weight: 600;
}
.site-footer__link:hover {
  color: #fff;
  text-decoration: underline;
}
.site-footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  margin-top: 3rem;
  padding-top: 1.5rem;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.85rem;
}
.page-heading {
  background: hsla(0, 0%, 96%, 0.45);
  border-bottom: 1px solid hsla(0, 0%, 90%, 0.6);
  padding: 3rem 0;
}
.page-heading__title {
  margin-bottom: 0.5rem;
}
.page-heading__subtitle {
  color: hsl(0, 0%, 45%);
  margin: 0;
  font-size: 1.05rem;
}
.section-title {
  font-size: 1.875rem;
  line-height: 2.25rem;
  font-weight: 700;
  margin-bottom: 1rem;
  text-align: center;
}
.section-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 2rem;
}
.text-xs {
  font-size: 0.75rem;
  line-height: 1rem;
}
.text-sm {
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.text-base {
  font-size: 1rem;
  line-height: 1.5rem;
}
.text-lg {
  font-size: 1.125rem;
  line-height: 1.75rem;
}
.text-xl {
  font-size: 1.25rem;
  line-height: 1.75rem;
}
.text-2xl {
  font-size: 1.5rem;
  line-height: 2rem;
}
.text-3xl {
  font-size: 1.875rem;
  line-height: 2.25rem;
}
.font-normal {
  font-weight: 400;
}
.font-medium {
  font-weight: 500;
}
.font-semibold {
  font-weight: 600;
}
.font-bold {
  font-weight: 700;
}
.p-0 {
  padding: 0;
}
.p-1 {
  padding: 0.25rem;
}
.p-2 {
  padding: 0.5rem;
}
.p-2\.5 {
  padding: 0.625rem;
}
.p-3 {
  padding: 0.75rem;
}
.p-4 {
  padding: 1rem;
}
.p-6 {
  padding: 1.5rem;
}
.p-8 {
  padding: 2rem;
}
.p-12 {
  padding: 3rem;
}
.p-16 {
  padding: 4rem;
}
.p-20 {
  padding: 5rem;
}
.p-\[1px\] {
  padding: 1px;
}
.px-1 {
  padding-left: 0.25rem;
  padding-right: 0.25rem;
}
.px-2 {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}
.px-2\.5 {
  padding-left: 0.625rem;
  padding-right: 0.625rem;
}
.px-3 {
  padding-left: 0.75rem;
  padding-right: 0.75rem;
}
.px-4 {
  padding-left: 1rem;
  padding-right: 1rem;
}
.px-5 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.px-8 {
  padding-left: 2rem;
  padding-right: 2rem;
}
.py-0\.5 {
  padding-top: 0.125rem;
  padding-bottom: 0.125rem;
}
.py-1 {
  padding-top: 0.25rem;
  padding-bottom: 0.25rem;
}
.py-1\.5 {
  padding-top: 0.375rem;
  padding-bottom: 0.375rem;
}
.py-2 {
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
.py-3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}
.py-4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
}
.py-6 {
  padding-top: 1.5rem;
  padding-bottom: 1.5rem;
}
.py-8 {
  padding-top: 2rem;
  padding-bottom: 2rem;
}
.py-12 {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
.py-16 {
  padding-top: 4rem;
  padding-bottom: 4rem;
}
.py-20 {
  padding-top: 5rem;
  padding-bottom: 5rem;
}
.pt-0 {
  padding-top: 0;
}
.pt-1 {
  padding-top: 0.25rem;
}
.pt-3 {
  padding-top: 0.75rem;
}
.pt-4 {
  padding-top: 1rem;
}
.pt-8 {
  padding-top: 2rem;
}
.pb-0 {
  padding-bottom: 0;
}
.pb-3 {
  padding-bottom: 0.75rem;
}
.pb-4 {
  padding-bottom: 1rem;
}
.pb-6 {
  padding-bottom: 1.5rem;
}
.pb-8 {
  padding-bottom: 2rem;
}
.pl-0 {
  padding-left: 0;
}
.pl-2 {
  padding-left: 0.5rem;
}
.pl-2\.5 {
  padding-left: 0.625rem;
}
.pl-4 {
  padding-left: 1rem;
}
.pl-8 {
  padding-left: 2rem;
}
.pl-10 {
  padding-left: 2.5rem;
}
.pl-12 {
  padding-left: 3rem;
}
.pr-0 {
  padding-right: 0;
}
.pr-2 {
  padding-right: 0.5rem;
}
.pr-2\.5 {
  padding-right: 0.625rem;
}
.pr-4 {
  padding-right: 1rem;
}
.pr-8 {
  padding-right: 2rem;
}
.m-0 {
  margin: 0;
}
.m-1 {
  margin: 0.25rem;
}
.m-2 {
  margin: 0.5rem;
}
.m-2\.5 {
  margin: 0.625rem;
}
.m-3 {
  margin: 0.75rem;
}
.m-4 {
  margin: 1rem;
}
.m-6 {
  margin: 1.5rem;
}
.m-8 {
  margin: 2rem;
}
.m-12 {
  margin: 3rem;
}
.m-16 {
  margin: 4rem;
}
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}
.mx-1 {
  margin-left: 0.25rem;
  margin-right: 0.25rem;
}
.mx-2 {
  margin-left: 0.5rem;
  margin-right: 0.5rem;
}
.mx-3 {
  margin-left: 0.75rem;
  margin-right: 0.75rem;
}
.mx-4 {
  margin-left: 1rem;
  margin-right: 1rem;
}
.mx-6 {
  margin-left: 1.5rem;
  margin-right: 1.5rem;
}
.mx-8 {
  margin-left: 2rem;
  margin-right: 2rem;
}
.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}
.my-1 {
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;
}
.my-2 {
  margin-top: 0.5rem;
  margin-bottom: 0.5rem;
}
.my-3 {
  margin-top: 0.75rem;
  margin-bottom: 0.75rem;
}
.my-4 {
  margin-top: 1rem;
  margin-bottom: 1rem;
}
.my-6 {
  margin-top: 1.5rem;
  margin-bottom: 1.5rem;
}
.my-8 {
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.my-12 {
  margin-top: 3rem;
  margin-bottom: 3rem;
}
.mt-0 {
  margin-top: 0;
}
.mt-1 {
  margin-top: 0.25rem;
}
.mt-2 {
  margin-top: 0.5rem;
}
.mt-3 {
  margin-top: 0.75rem;
}
.mt-4 {
  margin-top: 1rem;
}
.mt-6 {
  margin-top: 1.5rem;
}
.mt-8 {
  margin-top: 2rem;
}
.mt-12 {
  margin-top: 3rem;
}
.mt-16 {
  margin-top: 4rem;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-1 {
  margin-bottom: 0.25rem;
}
.mb-2 {
  margin-bottom: 0.5rem;
}
.mb-3 {
  margin-bottom: 0.75rem;
}
.mb-4 {
  margin-bottom: 1rem;
}
.mb-6 {
  margin-bottom: 1.5rem;
}
.mb-8 {
  margin-bottom: 2rem;
}
.mb-12 {
  margin-bottom: 3rem;
}
.mb-16 {
  margin-bottom: 4rem;
}
.ml-0 {
  margin-left: 0;
}
.ml-1 {
  margin-left: 0.25rem;
}
.ml-2 {
  margin-left: 0.5rem;
}
.ml-3 {
  margin-left: 0.75rem;
}
.ml-4 {
  margin-left: 1rem;
}
.ml-6 {
  margin-left: 1.5rem;
}
.ml-8 {
  margin-left: 2rem;
}
.ml-10 {
  margin-left: 2.5rem;
}
.ml-12 {
  margin-left: 3rem;
}
.mr-0 {
  margin-right: 0;
}
.mr-1 {
  margin-right: 0.25rem;
}
.mr-2 {
  margin-right: 0.5rem;
}
.mr-3 {
  margin-right: 0.75rem;
}
.mr-4 {
  margin-right: 1rem;
}
.mr-6 {
  margin-right: 1.5rem;
}
.mr-8 {
  margin-right: 2rem;
}
.mr-12 {
  margin-right: 3rem;
}
.gap-0 {
  gap: 0;
}
.gap-1 {
  gap: 0.25rem;
}
.gap-1\.5 {
  gap: 0.375rem;
}
.gap-2 {
  gap: 0.5rem;
}
.gap-2\.5 {
  gap: 0.625rem;
}
.gap-3 {
  gap: 0.75rem;
}
.gap-4 {
  gap: 1rem;
}
.gap-6 {
  gap: 1.5rem;
}
.gap-8 {
  gap: 2rem;
}
.gap-10 {
  gap: 2.5rem;
}
.gap-12 {
  gap: 3rem;
}
.gap-16 {
  gap: 4rem;
}
/**
 * Estilos base para botones
 * Usa el mixin .button-base() y define variantes
 */
.button {
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  background-color: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 98%);
  font-family: inherit;
  font-size: 0.875rem;
  line-height: 1.5rem;
  display: inline-flex;
  vertical-align: middle;
}
.button:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
.button:focus-visible {
  outline: 2px solid hsl(0, 0%, 96%);
  outline-offset: 2px;
}
.button:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.button:active {
  transform: translateY(0);
  box-shadow: none;
}
.button--primary {
  background-color: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 98%);
  border-color: hsl(0, 0%, 10%);
}
.button--primary:hover {
  background-color: hsl(0, 0%, 5%);
  border-color: hsl(0, 0%, 5%);
}
.button--primary:active {
  background-color: hsl(0, 0%, 0%);
  border-color: hsl(0, 0%, 0%);
}
.button--primary:focus-visible {
  outline-color: hsl(0, 0%, 10%);
}
.button--secondary {
  background-color: hsl(0, 0%, 96%);
  color: hsl(0, 0%, 10%);
  border-color: hsl(0, 0%, 96%);
}
.button--secondary:hover {
  background-color: hsl(0, 0%, 91%);
  border-color: hsl(0, 0%, 91%);
}
.button--secondary:active {
  background-color: hsl(0, 0%, 86%);
  border-color: hsl(0, 0%, 86%);
}
.button--secondary:focus-visible {
  outline-color: hsl(0, 0%, 96%);
}
.button--outline {
  background-color: transparent;
  color: hsl(0, 0%, 10%);
  border-color: hsl(0, 0%, 10%);
}
.button--outline:hover {
  background-color: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 98%);
}
.button--outline:active {
  background-color: hsl(0, 0%, 5%);
  color: hsl(0, 0%, 98%);
}
.button--outline:focus-visible {
  outline-color: hsl(0, 0%, 10%);
}
.button--outline:disabled {
  background-color: transparent;
  color: hsl(0, 0%, 45%);
  border-color: hsl(0, 0%, 90%);
}
.button--ghost {
  background-color: transparent;
  color: hsl(0, 0%, 10%);
  border-color: transparent;
}
.button--ghost:hover {
  background-color: hsl(0, 0%, 96%);
  color: hsl(0, 0%, 10%);
}
.button--ghost:active {
  background-color: hsl(0, 0%, 91%);
}
.button--ghost:focus-visible {
  outline-color: hsl(0, 0%, 10%);
}
.button--ghost:disabled {
  color: hsl(0, 0%, 45%);
}
.button--small {
  padding: 0.5rem 0.75rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
  border-radius: 0.5rem;
}
.button--large {
  padding: 1rem 1.5rem;
  font-size: 1.125rem;
  line-height: 1.75rem;
  border-radius: 0.75rem;
}
.button--full {
  width: 100%;
  justify-content: center;
}
.button--square {
  aspect-ratio: 1;
  padding: 0.75rem;
  justify-content: center;
}
.button:disabled,
.button[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
  pointer-events: none;
}
.button:disabled:hover,
.button[disabled]:hover {
  transform: none;
  box-shadow: none;
}
.button__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1em;
  height: 1em;
  font-size: 1.125em;
}
.preheader {
  background-color: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 98%);
  padding: 0.5rem 0;
  font-size: 0.875rem;
  text-align: center;
  overflow: hidden;
  position: relative;
  z-index: 1000;
}
.preheader__container {
  position: relative;
  min-height: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.preheader__message {
  display: block;
  margin: 0;
  padding: 0 1rem;
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.5s ease-in-out;
}
.preheader__message a {
  color: inherit;
  text-decoration: underline;
}
.preheader__message a:hover {
  text-decoration: none;
  opacity: 0.9;
}
.preheader__message strong,
.preheader__message b {
  font-weight: 600;
}
.whatsapp-float {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 999;
  display: inline-flex;
  align-items: center;
  background-color: hsl(0, 0%, 100%);
  border-radius: 2rem;
  padding: 0.75rem 1.25rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15), 0 2px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: hsl(0, 0%, 10%);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.2;
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2), 0 4px 12px rgba(0, 0, 0, 0.15);
  background-color: hsl(0, 0%, 98%);
  text-decoration: none;
  color: hsl(0, 0%, 10%);
}
.whatsapp-float:active {
  transform: translateY(0);
}
.whatsapp-float__content {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.whatsapp-float__text {
  white-space: nowrap;
  color: hsl(0, 0%, 10%);
}
.whatsapp-float__icon {
  font-family: 'Material Symbols Rounded', sans-serif;
  font-size: 1.75rem;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  color: #25D366;
  line-height: 1;
  display: inline-block;
  flex-shrink: 0;
}
@media (max-width: 576px) {
  .whatsapp-float {
    padding: 0.75rem;
    border-radius: 50%;
    width: 3.5rem;
    height: 3.5rem;
    justify-content: center;
    align-items: center;
  }
  .whatsapp-float__text {
    display: none;
  }
  .whatsapp-float__icon {
    font-size: 2rem;
    margin: 0;
  }
}
@media (max-width: 768px) {
  .whatsapp-float {
    bottom: 1rem;
    right: 1rem;
  }
}
.hero {
  position: relative;
  width: 100%;
  margin: 0 0 4rem;
}
@media (min-width: 992px) {
  .hero {
    margin-bottom: 5rem;
  }
}
.hero__viewport {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.hero__track {
  display: flex;
  width: 100%;
  transform: translate3d(0, 0, 0);
  transition: transform 0.25s ease;
}
.hero__slide {
  position: relative;
  width: 100%;
  flex: 0 0 100%;
  min-width: 0;
  height: 400px;
}
@media (min-width: 768px) {
  .hero__slide {
    height: 600px;
  }
}
.hero__link {
  display: block;
  width: 100%;
  height: 100%;
  outline: none;
}
.hero__link:focus-visible {
  box-shadow: 0 0 0 4px hsla(0, 0%, 96%, 0.35);
}
.hero picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.hero__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 999px;
  border: none;
  background: hsla(0, 0%, 98%, 0.7);
  color: hsl(0, 0%, 10%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  z-index: 5;
  font-family: 'Material Symbols Rounded', sans-serif;
  font-size: 1.75rem;
  line-height: 1;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.hero__nav:hover,
.hero__nav:focus-visible {
  background: hsl(0, 85%, 45%);
  color: hsl(0, 0%, 98%);
}
.hero__nav--prev {
  left: 1rem;
}
.hero__nav--prev::before {
  content: 'chevron_left';
}
.hero__nav--next {
  right: 1rem;
}
.hero__nav--next::before {
  content: 'chevron_right';
}
.hero__dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 0.5rem;
  z-index: 6;
}
.hero__dots[hidden] {
  display: none;
}
.hero__dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 999px;
  border: none;
  background: hsla(0, 0%, 98%, 0.5);
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}
.hero__dot.is-active {
  background: hsl(0, 85%, 45%);
  transform: scale(1.2);
}
.hero__dot:focus-visible {
  outline: 2px solid hsl(0, 0%, 98%);
  outline-offset: 2px;
}
.features {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .features {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .features__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .features__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.features__slider {
  position: relative;
  padding: 0 3rem;
}
@media (max-width: 768px) {
  .features__slider {
    padding: 0 2.5rem;
  }
}
.features__viewport {
  position: relative;
  overflow: hidden;
}
.features__track {
  display: flex;
  gap: 1.5rem;
  transform: translate3d(0, 0, 0);
  transition: transform 0.25s ease;
}
.features__slide {
  flex: 0 0 calc(100% - 1.5rem);
  min-width: 0;
}
@media (min-width: 768px) {
  .features__slide {
    flex: 0 0 calc(50% - 0.75rem);
  }
}
@media (min-width: 992px) {
  .features__slide {
    flex: 0 0 calc(25% - 1.125rem);
  }
}
.features__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: none;
  background: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 10%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  font-family: 'Material Symbols Rounded', sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.features__nav:hover,
.features__nav:focus-visible {
  background: hsl(0, 85%, 45%);
  color: hsl(0, 0%, 98%);
}
.features__nav--prev {
  left: 0;
}
.features__nav--prev::before {
  content: 'chevron_left';
}
.features__nav--next {
  right: 0;
}
.features__nav--next::before {
  content: 'chevron_right';
}
.features__dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  list-style: none;
  padding: 0;
}
.features__dots button {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  border: none;
  background: hsla(0, 0%, 90%, 0.5);
  cursor: pointer;
  padding: 0;
  transition: background 0.25s ease;
}
.features__dots button[aria-selected="true"],
.features__dots button.active {
  background: hsl(0, 0%, 10%);
}
.feature-card {
  align-items: start;
  padding: 1.5rem;
  border-radius: 0.75rem;
  background-color: hsl(0, 0%, 100%);
  border: 1px solid hsla(0, 0%, 90%, 0.5);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.feature-card__icon {
  grid-row: span 2;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: hsla(0, 0%, 10%, 0.14);
  color: hsl(0, 0%, 10%);
  font-family: 'Material Symbols Rounded', sans-serif;
  font-size: 1.5rem;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  line-height: 1;
}
.feature-card__title {
  margin: 0 0 0.125rem 0;
  font-size: 1.1rem;
  line-height: 1.3;
}
.feature-card__description {
  margin: 0;
  color: hsl(0, 0%, 45%);
  font-size: 0.95rem;
  line-height: 1.4;
}
.home-categories {
  padding-top: 3rem;
  padding-bottom: 3rem;
}
@media (min-width: 768px) {
  .home-categories {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.home-categories__grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .home-categories__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.category-card {
  background-color: hsl(0, 0%, 100%);
  border: 1px solid hsla(0, 0%, 90%, 0.5);
  border-radius: 0.75rem;
  padding: 2rem 1.25rem;
  text-align: center;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.category-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.category-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.category-card__link:hover {
  text-decoration: none;
  color: inherit;
}
.category-card__icon {
  font-size: 2.5rem;
  display: inline-block;
  margin-bottom: 0.75rem;
}
.category-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.25rem;
  color: hsl(0, 0%, 10%);
  transition: color 0.25s ease;
}
.category-card__count {
  margin: 0;
  color: hsl(0, 0%, 45%);
}
.category-card:hover .category-card__title {
  color: hsl(0, 0%, 10%);
}
.home-products {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: rgba(237, 233, 222, 0.3);
}
@media (min-width: 768px) {
  .home-products {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.home-products__slider {
  position: relative;
  padding: 0 3rem;
}
@media (max-width: 768px) {
  .home-products__slider {
    padding: 0 2.5rem;
  }
}
.home-products__viewport {
  position: relative;
  overflow: hidden;
}
.home-products__track {
  display: flex;
  gap: 1.5rem;
  transform: translate3d(0, 0, 0);
  transition: transform 0.25s ease;
}
.home-products__slide {
  flex: 0 0 calc(100% - 1.5rem);
  min-width: 0;
  display: flex;
  align-items: stretch;
}
@media (min-width: 768px) {
  .home-products__slide {
    flex: 0 0 calc(50% - 0.75rem);
  }
}
@media (min-width: 992px) {
  .home-products__slide {
    flex: 0 0 calc(25% - 1.125rem);
  }
}
@media (min-width: 768px) {
  .product-detail__related .home-products__slide {
    flex: 0 0 calc(33.333% - 1rem);
  }
}
@media (min-width: 992px) {
  .product-detail__related .home-products__slide {
    flex: 0 0 calc(16.666% - 1.25rem);
  }
}
.home-products__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  border: none;
  background: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 10%);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
  z-index: 100;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  font-family: 'Material Symbols Rounded', sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  font-variation-settings: 'FILL' 1, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.home-products__nav:hover,
.home-products__nav:focus-visible {
  background: hsl(0, 85%, 45%);
  color: hsl(0, 0%, 98%);
}
.home-products__nav--prev {
  left: 0;
}
.home-products__nav--prev::before {
  content: 'chevron_left';
}
.home-products__nav--next {
  right: 0;
}
.home-products__nav--next::before {
  content: 'chevron_right';
}
.hero-slider {
  position: relative;
  height: 70vh;
  overflow: hidden;
}
@media (min-width: 992px) {
  .hero-slider {
    height: 85vh;
  }
}
.hero-slider__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1s ease-in-out;
}
.hero-slider__slide--active {
  opacity: 1;
  pointer-events: auto;
}
.hero-slider__background {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.hero-slider__background-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-slider__slide-link {
  position: absolute;
  inset: 0;
  z-index: 5;
  text-decoration: none;
  display: block;
}
.hero-slider__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, hsla(0, 0%, 10%, 0.8), hsla(0, 0%, 10%, 0.5), hsla(0, 0%, 10%, 0.3));
}
.hero-slider__content {
  position: relative;
  z-index: 10;
  height: 100%;
  display: flex;
  align-items: center;
}
.hero-slider__text {
  position: relative;
  max-width: 42rem;
}
.hero-slider__text-item {
  position: absolute;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.5s ease-in-out;
}
.hero-slider__text-item--active {
  position: relative;
  opacity: 1;
  pointer-events: auto;
}
.hero-slider__title {
  font-size: clamp(2.25rem, 5vw, 3.75rem);
  font-weight: 700;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  color: hsl(0, 0%, 98%);
}
.hero-slider__subtitle {
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.6;
  margin-bottom: 2rem;
  color: hsla(0, 0%, 98%, 0.9);
}
.hero-slider__actions {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media (min-width: 576px) {
  .hero-slider__actions {
    flex-direction: row;
  }
}
.hero-slider__button-contact {
  background-color: transparent;
  border-color: hsl(0, 0%, 98%);
  color: hsl(0, 0%, 98%);
}
.hero-slider__button-contact:hover {
  background-color: hsl(0, 0%, 98%);
  color: hsl(0, 0%, 10%);
}
.hero-slider__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  padding: 0.5rem;
  border-radius: 50%;
  background-color: hsla(0, 0%, 98%, 0.2);
  color: hsl(0, 0%, 98%);
  border: none;
  cursor: pointer;
  transition: background-color 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-slider__nav:hover {
  background-color: hsla(0, 0%, 98%, 0.4);
}
.hero-slider__nav--prev {
  left: 1rem;
}
.hero-slider__nav--next {
  right: 1rem;
}
.hero-slider__nav .material-symbols-rounded {
  font-size: 1.5rem;
}
.hero-slider__dots {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  gap: 0.5rem;
}
.hero-slider__dot {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  border: none;
  background-color: hsla(0, 0%, 98%, 0.5);
  cursor: pointer;
  transition: all 0.3s ease;
  padding: 0;
}
.hero-slider__dot:hover {
  background-color: hsla(0, 0%, 98%, 0.7);
}
.hero-slider__dot--active {
  width: 2rem;
  border-radius: 0.375rem;
  background-color: hsl(0, 0%, 98%);
}
.categories-section {
  padding: 5rem 0;
  background-color: hsl(0, 0%, 100%);
}
.categories-section__header {
  text-align: center;
  margin-bottom: 3rem;
}
.categories-section__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: hsl(0, 0%, 10%);
}
@media (min-width: 992px) {
  .categories-section__title {
    font-size: 2.25rem;
  }
}
.categories-section__subtitle {
  font-size: 1.125rem;
  color: hsl(0, 0%, 45%);
}
.categories-section__grid {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .categories-section__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .categories-section__grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}
.category-card {
  position: relative;
  overflow: hidden;
  border-radius: 0.5rem;
  aspect-ratio: 4 / 5;
  display: block;
  text-decoration: none;
  transition: transform 0.3s ease;
}
.category-card:hover {
  transform: scale(1.05);
}
.category-card:hover .category-card__image {
  transform: scale(1.1);
}
.category-card__image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.category-card__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, hsla(0, 0%, 10%, 0.8), hsla(0, 0%, 10%, 0.2), transparent);
}
.category-card__content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.5rem;
  color: hsl(0, 0%, 98%);
}
.category-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.25rem;
  color: hsl(0, 0%, 98%);
}
.category-card__description {
  font-size: 0.875rem;
  color: hsla(0, 0%, 98%, 0.8);
}
.home-features {
  padding: 5rem 0;
  background-color: hsla(0, 0%, 96%, 0.3);
}
.home-features__grid {
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .home-features__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.feature-card {
  text-align: center;
  padding: 2rem;
}
.feature-card__icon-wrapper {
  width: 4rem;
  height: 4rem;
  background-color: hsla(0, 85%, 45%, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
}
.feature-card__icon {
  font-size: 2rem;
  color: hsl(0, 85%, 45%);
  font-family: 'Material Symbols Rounded', sans-serif;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.feature-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: hsl(0, 0%, 10%);
}
.feature-card__description {
  font-size: 0.875rem;
  line-height: 1.6;
  color: hsl(0, 0%, 45%);
}
.home-products {
  padding: 5rem 0;
}
.home-products__header {
  text-align: center;
  margin-bottom: 3rem;
}
.home-products__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: hsl(0, 0%, 10%);
}
.home-products__subtitle {
  font-size: 1.125rem;
  color: hsl(0, 0%, 45%);
}
.home-products__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .home-products__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .home-products__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.home-products__footer {
  text-align: center;
  margin-top: 3rem;
}
.home-cta {
  width: 100%;
  padding: 5rem 0;
  background-color: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 98%);
  text-align: center;
}
.home-cta .container {
  max-width: 100%;
  padding-left: 1rem;
  padding-right: 1rem;
}
@media (min-width: 768px) {
  .home-cta .container {
    max-width: 42rem;
    margin-left: auto;
    margin-right: auto;
  }
}
.home-cta__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: hsl(0, 0%, 98%);
}
@media (min-width: 992px) {
  .home-cta__title {
    font-size: 2.25rem;
  }
}
.home-cta__description {
  font-size: 1.125rem;
  line-height: 1.6;
  margin-bottom: 2rem;
  color: hsla(0, 0%, 98%, 0.9);
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 992px) {
  .home-cta__description {
    font-size: 1.25rem;
  }
}
.product-card {
  display: grid;
  grid-template-rows: auto 1fr auto;
  background-color: hsl(0, 0%, 100%);
  border-radius: 1rem;
  border: 1px solid hsla(0, 0%, 90%, 0.55);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  height: 100%;
  align-content: start;
}
.product-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.product-card__media {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background-color: hsla(0, 0%, 96%, 0.35);
}
.product-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.product-card__media:hover img {
  transform: scale(1.05);
}
.product-card__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  position: absolute;
  top: 0.95rem;
  right: 0.95rem;
  background-color: hsla(0, 0%, 10%, 0.15);
  color: hsl(0, 0%, 10%);
}
.product-card__badge--highlight {
  background-color: hsl(0, 85%, 45%);
  color: hsl(0, 0%, 98%);
}
.product-card__placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(0, 0%, 96%);
}
.product-card__placeholder-text {
  font-size: 3rem;
  font-weight: 700;
  color: hsla(0, 0%, 45%, 0.2);
}
.product-card__content {
  padding: 1.5rem;
  display: grid;
  gap: 1rem;
}
.product-card__sku {
  font-size: 0.75rem;
  color: hsl(0, 0%, 45%);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.product-card__title {
  font-size: 1rem;
  line-height: 1.4;
  color: hsl(0, 0%, 10%);
  font-weight: 600;
  display: inline-block;
  margin-top: 0.25rem;
}
.product-card__title:hover {
  color: hsl(0, 85%, 45%);
}
.product-card__specs {
  display: grid;
  gap: 0.5rem;
  margin-top: 0.5rem;
}
.product-card__spec {
  display: flex;
  justify-content: space-between;
  font-size: 0.875rem;
  color: hsl(0, 0%, 45%);
}
.product-card__spec-label {
  font-weight: 400;
}
.product-card__spec-value {
  font-weight: 600;
  color: hsl(0, 0%, 10%);
}
.product-card__pricing {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.product-card__price {
  font-size: 1.65rem;
  font-weight: 700;
  color: hsl(0, 85%, 45%);
}
.product-card__price--old {
  font-size: 0.95rem;
  color: hsl(0, 0%, 45%);
  text-decoration: line-through;
}
.product-card__availability {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: hsl(142, 76%, 36%);
  margin: 0;
}
.product-card__availability-indicator {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 999px;
  background-color: hsl(142, 76%, 36%);
  display: inline-block;
}
.product-card__actions {
  padding: 0 1.5rem 1.5rem;
}
.product-card__actions .button {
  width: 100%;
  background-color: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 98%);
  border: none;
  font-weight: 600;
  padding: 0.85rem 1.25rem;
  border-radius: 0.5rem;
  transition: background-color 0.25s ease, transform 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  cursor: pointer;
}
.product-card__actions .button:hover:not(:disabled) {
  background-color: hsl(0, 0%, 2%);
  transform: translateY(-1px);
}
.product-card__actions .button:disabled {
  background-color: hsla(0, 0%, 10%, 0.15);
  color: hsl(0, 0%, 45%);
  cursor: not-allowed;
  opacity: 1;
  transform: none;
}
.product-card__actions .button .button__icon {
  font-family: 'Material Symbols Rounded', sans-serif;
  font-size: 1.25rem;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  line-height: 1;
  display: inline-block;
  flex-shrink: 0;
}
.product-card__actions .button .button__icon--cart::before {
  content: 'shopping_cart';
}
.product-card__actions .button.button--add-to-cart {
  background-color: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 98%);
}
.product-card__actions .button.button--add-to-cart:hover:not(:disabled) {
  background-color: hsl(0, 0%, 2%);
}
.product-card__actions .button.button--consult,
.product-card__actions .button.button--out-of-stock {
  background-color: hsl(0, 0%, 96%);
  color: hsl(0, 0%, 10%);
  cursor: not-allowed;
}
.product-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 992px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.catalog {
  padding: 3rem 0 5rem;
}
.catalog__layout {
  display: grid;
  gap: 2rem;
}
@media (min-width: 992px) {
  .catalog__layout {
    grid-template-columns: 280px 1fr;
  }
}
.catalog__filters {
  position: relative;
}
@media (min-width: 992px) {
  .catalog__filters {
    align-self: start;
  }
}
.catalog__results {
  display: grid;
  gap: 2rem;
}
.filters-toggle {
  display: inline-flex;
  gap: 0.5rem;
  font-weight: 600;
  border-radius: 0.5rem;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  cursor: pointer;
  text-decoration: none;
  background-color: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 98%);
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: hsla(0, 0%, 96%, 0.45);
  color: hsl(0, 0%, 10%);
  border-color: hsla(0, 0%, 90%, 0.6);
  margin-bottom: 1rem;
}
.filters-toggle:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
.filters-toggle:focus-visible {
  outline: 2px solid hsl(0, 0%, 96%);
  outline-offset: 2px;
}
.filters-toggle:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
@media (min-width: 992px) {
  .filters-toggle {
    display: none;
  }
}
.filters-toggle__icon {
  width: 1.2rem;
  height: 1.2rem;
  background: url('data:image/svg+xml,%3Csvg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M4 6H20" stroke="%2317351F" stroke-width="1.5" stroke-linecap="round"/%3E%3Cpath d="M6 12H18" stroke="%2317351F" stroke-width="1.5" stroke-linecap="round"/%3E%3Cpath d="M10 18H14" stroke="%2317351F" stroke-width="1.5" stroke-linecap="round"/%3E%3C/svg%3E') no-repeat center / contain;
}
.filters-panel {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 992px) {
  .filters-panel {
    display: flex;
    position: sticky;
    top: 7rem;
    max-height: calc(100vh - 8rem);
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 0.5rem;
  }
  .filters-panel::-webkit-scrollbar {
    width: 6px;
  }
  .filters-panel::-webkit-scrollbar-track {
    background: hsla(0, 0%, 90%, 0.2);
    border-radius: 3px;
  }
  .filters-panel::-webkit-scrollbar-thumb {
    background: hsla(0, 0%, 45%, 0.4);
    border-radius: 3px;
  }
  .filters-panel::-webkit-scrollbar-thumb:hover {
    background: hsla(0, 0%, 45%, 0.6);
  }
}
.filters-panel[data-open="true"] {
  display: flex;
  background: hsl(0, 0%, 100%);
  border-radius: 0.75rem;
  border: 1px solid hsla(0, 0%, 90%, 0.6);
  padding: 1.5rem;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
@media (min-width: 992px) {
  .filters-panel[data-open="true"] {
    box-shadow: none;
    padding: 0;
    border: none;
    background: transparent;
  }
}
.filters-group {
  padding: 1.5rem;
  border: 1px solid hsla(0, 0%, 90%, 0.55);
  border-radius: 0.75rem;
  background-color: hsl(0, 0%, 100%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.filters-group__title {
  font-size: 1.05rem;
  margin-bottom: 1rem;
}
.filters-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.filters-list__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  color: hsl(0, 0%, 45%);
  font-size: 0.95rem;
}
.filters-list__item--hidden {
  display: none;
}
.filters-list__count {
  font-size: 0.8rem;
  color: hsla(0, 0%, 45%, 0.65);
}
.filters-list__load-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-weight: 600;
  padding: 0.75rem 1.25rem;
  border: 1px solid transparent;
  transition: all 0.25s ease;
  text-decoration: none;
  background-color: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 98%);
  width: 100%;
  padding: 0.5rem 0.75rem;
  font-size: 0.9rem;
  background: transparent;
  color: hsl(0, 0%, 10%);
  border: 1px solid hsla(0, 0%, 10%, 0.4);
  border-radius: 0.5rem;
  cursor: pointer;
  transition: all 0.2s ease;
}
.filters-list__load-more:hover {
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transform: translateY(-1px);
}
.filters-list__load-more:focus-visible {
  outline: 2px solid hsl(0, 0%, 96%);
  outline-offset: 2px;
}
.filters-list__load-more:disabled {
  opacity: 0.6;
  cursor: not-allowed;
  transform: none;
  box-shadow: none;
}
.filters-list__load-more:hover {
  background: hsla(0, 0%, 10%, 0.1);
  border-color: hsl(0, 0%, 10%);
}
.filters-list__load-more:focus {
  outline: none;
  box-shadow: 0 0 0 3px hsla(0, 0%, 10%, 0.15);
}
.filters-form {
  display: grid;
  gap: 0.75rem;
}
.filters-form__row {
  display: grid;
  gap: 0.5rem;
}
.filters-form__label {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(0, 0%, 10%);
}
.filters-form__input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid hsla(0, 0%, 90%, 0.6);
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 10%);
  font-size: 0.9rem;
  transition: all 0.2s ease;
}
.filters-form__input:focus {
  outline: none;
  border-color: hsl(0, 0%, 10%);
  box-shadow: 0 0 0 3px hsla(0, 0%, 10%, 0.15);
}
.filters-form__input::placeholder {
  color: hsl(0, 0%, 45%);
}
.checkbox {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
}
.checkbox input {
  width: 1.05rem;
  height: 1.05rem;
  border-radius: 4px;
  border: 1px solid hsla(0, 0%, 90%, 0.7);
  accent-color: hsl(0, 0%, 10%);
}
.price-slider {
  display: grid;
  gap: 1rem;
  padding: 0.5rem 0;
}
.price-slider__range {
  position: relative;
  display: grid;
  gap: 0.5rem;
}
.price-slider__input {
  appearance: none;
  -webkit-appearance: none;
  width: 100%;
  height: 0.4rem;
  border-radius: 999px;
  background: hsla(0, 0%, 96%, 0.55);
  outline: none;
  cursor: pointer;
  transition: background 0.2s ease;
}
.price-slider__input:hover {
  background: hsla(0, 0%, 96%, 0.65);
}
.price-slider__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  background: hsl(0, 0%, 10%);
  border: 2px solid hsl(0, 0%, 100%);
  box-shadow: 0 0 0 3px hsla(0, 0%, 10%, 0.25);
  cursor: grab;
  transition: all 0.2s ease;
}
.price-slider__input::-webkit-slider-thumb:active {
  cursor: grabbing;
  transform: scale(1.1);
}
.price-slider__input::-moz-range-thumb {
  width: 1.1rem;
  height: 1.1rem;
  border-radius: 999px;
  background: hsl(0, 0%, 10%);
  border: 2px solid hsl(0, 0%, 100%);
  box-shadow: 0 0 0 3px hsla(0, 0%, 10%, 0.25);
  cursor: grab;
  transition: all 0.2s ease;
}
.price-slider__input::-moz-range-thumb:active {
  cursor: grabbing;
  transform: scale(1.1);
}
.price-slider__values {
  display: flex;
  justify-content: space-between;
  font-size: 0.9rem;
  color: hsl(0, 0%, 45%);
}
.price-slider__value {
  color: hsl(0, 0%, 10%);
  font-weight: 500;
}
.catalog__toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.catalog__search {
  flex: 1;
  min-width: 200px;
  max-width: 400px;
}
@media (max-width: 768px) {
  .catalog__search {
    width: 100%;
    max-width: 100%;
  }
}
.catalog__search-wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.catalog__search-input {
  width: 100%;
  padding: 0.75rem 3rem 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid hsla(0, 0%, 90%, 0.6);
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 10%);
  font-size: 0.95rem;
  transition: all 0.2s ease;
}
.catalog__search-input:focus {
  outline: none;
  border-color: hsl(0, 0%, 10%);
  box-shadow: 0 0 0 3px hsla(0, 0%, 10%, 0.15);
}
.catalog__search-input::placeholder {
  color: hsl(0, 0%, 45%);
}
.catalog__search-button {
  position: absolute;
  right: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border: none;
  background: transparent;
  color: hsl(0, 0%, 45%);
  cursor: pointer;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
}
.catalog__search-button:hover {
  background: hsla(0, 0%, 96%, 0.2);
  color: hsl(0, 0%, 10%);
}
.catalog__search-button:focus {
  outline: none;
  box-shadow: 0 0 0 2px hsla(0, 0%, 10%, 0.25);
}
.catalog__search-button .material-symbols-rounded {
  font-size: 1.25rem;
}
.catalog__summary {
  margin: 0;
  color: hsl(0, 0%, 45%);
}
.catalog__summary span {
  color: hsl(0, 0%, 10%);
  font-weight: 600;
}
.select {
  position: relative;
}
.select__input {
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid hsla(0, 0%, 90%, 0.6);
  background-color: hsl(0, 0%, 100%);
  font-weight: 600;
  color: hsl(0, 0%, 10%);
  appearance: none;
  background-image: url('data:image/svg+xml,%3Csvg width="16" height="16" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M6 9L12 15L18 9" stroke="%2317351F" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E');
  background-repeat: no-repeat;
  background-position: right 1rem center;
  background-size: 1rem;
}
.catalog__grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .catalog__grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media (min-width: 1280px) {
  .catalog__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
.pagination {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
}
@keyframes mini-cart-enter {
  from {
    opacity: 0;
    transform: translateX(100%);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
@keyframes mini-cart-exit {
  from {
    opacity: 1;
    transform: translateX(0);
  }
  to {
    opacity: 0;
    transform: translateX(100%);
  }
}
.mini-cart {
  position: fixed;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr auto;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1100;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.25s ease ease;
}
.mini-cart[data-open="true"] {
  opacity: 1;
  visibility: visible;
}
.mini-cart[data-open="true"] .mini-cart__drawer {
  animation-name: mini-cart-enter;
  animation-fill-mode: forwards;
}
.mini-cart.is-closing {
  opacity: 1;
  visibility: visible;
}
.mini-cart.is-closing .mini-cart__drawer {
  animation-name: mini-cart-exit;
  animation-fill-mode: forwards;
}
.mini-cart__backdrop {
  background: transparent;
  width: 100%;
}
.mini-cart__drawer {
  width: min(500px, 100vw);
  height: 100vh;
  max-height: 100vh;
  background: hsl(0, 0%, 100%);
  border-left: 1px solid hsla(0, 0%, 90%, 0.6);
  box-shadow: -12px 0 32px rgba(12, 24, 18, 0.18);
  padding: 0;
  display: flex;
  flex-direction: column;
  transform: translateX(100%);
  opacity: 0;
  animation-duration: 0.5s;
  animation-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  overflow: hidden;
  position: relative;
}
@media (max-width: 768px) {
  .mini-cart__drawer {
    width: 100vw;
  }
}
.mini-cart__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 2rem;
  border-bottom: 1px solid hsla(0, 0%, 90%, 0.6);
}
.mini-cart__header-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex: 1;
}
.mini-cart__header-right {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.mini-cart__icon {
  font-family: 'Material Symbols Rounded';
  font-size: 1.5rem;
  color: hsl(0, 0%, 10%);
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.mini-cart__title {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 600;
  margin: 0;
  color: hsl(0, 0%, 10%);
}
.mini-cart__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  background: hsl(0, 0%, 96%);
  color: hsl(0, 0%, 10%);
  border-radius: 999px;
  font-size: 0.75rem;
  line-height: 1rem;
  font-weight: 600;
}
.mini-cart__close {
  width: 2rem;
  height: 2rem;
  border: none;
  background: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: hsl(0, 0%, 10%);
  padding: 0;
  line-height: 1;
}
.mini-cart__close:hover {
  opacity: 0.7;
}
.mini-cart__body {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-x: hidden;
  padding: 1.5rem 2rem;
  min-height: 0;
  max-height: calc(100vh - 200px);
}
.mini-cart__body::-webkit-scrollbar {
  width: 8px;
}
.mini-cart__body::-webkit-scrollbar-track {
  background: hsla(0, 0%, 90%, 0.3);
  border-radius: 4px;
}
.mini-cart__body::-webkit-scrollbar-thumb {
  background: hsla(0, 0%, 10%, 0.4);
  border-radius: 4px;
}
.mini-cart__body::-webkit-scrollbar-thumb:hover {
  background: hsla(0, 0%, 10%, 0.6);
}
.mini-cart__empty {
  text-align: center;
  color: hsl(0, 0%, 45%);
  padding: 2rem 0;
}
.mini-cart__items {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
}
.mini-cart__item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  align-items: flex-start;
}
.mini-cart__thumb {
  position: relative;
  width: 5rem;
  height: 5rem;
  border-radius: 0.5rem;
  overflow: hidden;
  border: 1px solid hsla(0, 0%, 90%, 0.6);
  flex-shrink: 0;
  background: hsla(0, 0%, 90%, 0.2);
}
.mini-cart__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mini-cart__thumb-placeholder {
  width: 100%;
  height: 100%;
  background: hsla(0, 0%, 90%, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-cart__thumb-placeholder::before {
  content: '';
  width: 2rem;
  height: 2rem;
  background: hsla(0, 0%, 45%, 0.4);
  border-radius: 50%;
}
.mini-cart__info {
  display: grid;
  gap: 0.5rem;
  flex: 1;
}
.mini-cart__name {
  font-weight: 500;
  margin: 0;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: hsl(0, 0%, 10%);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.mini-cart__price {
  margin: 0;
  color: hsl(0, 0%, 10%);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.mini-cart__item-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.5rem;
}
.mini-cart__item-Container-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}
.mini-cart__controls {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  border: 1px solid hsla(0, 0%, 90%, 0.6);
  border-radius: 0.5rem;
  padding: 0.25rem 0.5rem;
}
.mini-cart__control {
  width: 1.75rem;
  height: 1.75rem;
  border: none;
  color: hsl(0, 0%, 10%);
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  transition: background-color 0.25s ease;
  pointer-events: auto;
  background: transparent;
}
.mini-cart__control:before,
.mini-cart__control:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0.7rem;
  height: 2px;
  background: hsl(0, 0%, 10%);
  transform: translate(-50%, -50%);
  pointer-events: none;
}
.mini-cart__control[data-action="increase"]:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.mini-cart__control-quantity {
  font-weight: 600;
  min-width: 1.5rem;
  text-align: center;
}
.mini-cart__remove {
  border: none;
  background: none;
  color: hsl(0, 0%, 45%);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.25s ease;
  pointer-events: auto;
}
.mini-cart__remove:hover {
  color: hsl(0, 84%, 60%);
}
.mini-cart__remove-icon {
  font-family: 'Material Symbols Rounded';
  font-size: 1.25rem;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  pointer-events: none;
}
.mini-cart__footer {
  flex-shrink: 0;
  margin-top: auto;
  padding: 1.5rem 2rem;
  border-top: 1px solid hsla(0, 0%, 90%, 0.6);
  display: grid;
  gap: 1.25rem;
  background: hsla(0, 0%, 96%, 0.25);
}
.mini-cart__totals {
  display: grid;
  gap: 0.75rem;
}
.mini-cart__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.95rem;
}
.mini-cart__row strong {
  font-weight: 600;
}
.mini-cart__row strong.mini-cart__shipping-free {
  color: hsl(0, 0%, 10%);
}
.mini-cart__row--total {
  font-size: 1.125rem;
  font-weight: 600;
  padding-top: 0.75rem;
  border-top: 1px solid hsla(0, 0%, 90%, 0.6);
  margin-top: 0.5rem;
}
.mini-cart__row--total strong {
  color: hsl(0, 0%, 10%);
  font-size: 1.25rem;
}
.mini-cart__row--hint {
  font-size: 0.85rem;
  color: hsl(0, 0%, 45%);
  margin-top: 0.5rem;
}
.mini-cart__row--hint p {
  margin: 0;
}
.mini-cart__row strong {
  font-weight: 600;
}
.mini-cart__actions {
  display: grid;
  gap: 0.75rem;
}
.mini-cart__actions .button {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 0.75rem;
  text-align: center;
  transition: all 0.25s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mini-cart__actions .button:not(.button--outline) {
  background-color: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 98%);
  border: none;
}
.mini-cart__actions .button:not(.button--outline):hover {
  background-color: hsl(0, 0%, 5%);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px hsla(0, 0%, 10%, 0.3);
}
.mini-cart__actions .button:not(.button--outline):active {
  transform: translateY(0);
}
.mini-cart__actions .button.button--outline {
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 10%);
  border: 1px solid hsla(0, 0%, 90%, 0.6);
}
.mini-cart__actions .button.button--outline:hover {
  background-color: hsla(0, 0%, 96%, 0.3);
  border-color: hsla(0, 0%, 90%, 0.8);
}
.mini-cart__shipping-free {
  color: hsl(0, 0%, 10%) !important;
  font-weight: 600;
}
.breadcrumb {
  background: hsla(0, 0%, 96%, 0.4);
  border-bottom: 1px solid hsla(0, 0%, 90%, 0.6);
  padding: 1rem 0;
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
  font-size: 0.9rem;
  color: hsl(0, 0%, 45%);
}
.breadcrumb__item {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
}
.breadcrumb__item:not(:last-child)::after {
  content: '\203A';
  font-size: 1.2rem;
  color: hsla(0, 0%, 45%, 0.6);
}
.breadcrumb__item a {
  color: inherit;
  font-weight: 600;
}
.breadcrumb__item a:hover {
  color: hsl(0, 0%, 10%);
}
.breadcrumb__item[aria-current="page"] {
  color: hsl(0, 0%, 10%);
  font-weight: 600;
}
.product-detail {
  padding: 3rem 0 4rem;
}
.product-detail__grid {
  display: grid;
  gap: 2.5rem;
}
@media (min-width: 992px) {
  .product-detail__grid {
    grid-template-columns: 1fr 1fr;
    align-items: start;
  }
}
.product-detail__gallery {
  display: grid;
  gap: 1rem;
}
.product-gallery__main {
  margin: 0;
  border-radius: 1rem;
  overflow: hidden;
  background: hsla(0, 0%, 96%, 0.4);
  border: 1px solid hsla(0, 0%, 90%, 0.6);
  aspect-ratio: 1 / 1;
}
.product-gallery__main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-gallery__thumbs {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
}
.product-gallery__thumb {
  border-radius: 0.75rem;
  border: 2px solid transparent;
  overflow: hidden;
  cursor: pointer;
  padding: 0;
  background: none;
}
.product-gallery__thumb.is-active {
  border-color: hsl(0, 0%, 10%);
}
.product-gallery__thumb:hover {
  border-color: hsla(0, 0%, 10%, 0.4);
}
.product-gallery__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.product-detail__info {
  display: grid;
  gap: 1.75rem;
}
.product-detail__title {
  font-size: clamp(2rem, 4vw, 2.25rem);
  font-weight: 700;
}
.product-detail__subtitle {
  font-size: 1.1rem;
  color: hsl(0, 0%, 45%);
  margin: 0;
}
.product-detail__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  align-items: center;
}
.product-detail__sku {
  font-size: 0.9rem;
  color: hsl(0, 0%, 45%);
}
.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: hsla(0, 0%, 10%, 0.15);
  color: hsl(0, 0%, 10%);
}
.badge--success {
  background: hsla(142, 76%, 36%, 0.15);
  color: hsl(142, 76%, 36%);
}
.badge--accent {
  background: hsla(0, 85%, 45%, 0.15);
  color: hsl(0, 85%, 45%);
}
.product-detail__pricing {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
}
.product-detail__price {
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  color: hsl(0, 0%, 10%);
}
.product-detail__price--old {
  font-size: 1.1rem;
  text-decoration: line-through;
  color: hsl(0, 0%, 45%);
}
.product-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
}
.product-detail__actions .button {
  font-weight: 600;
  padding: 0.85rem 1.25rem;
  border-radius: 0.5rem;
  transition: background-color 0.25s ease, transform 0.25s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: none;
  cursor: pointer;
}
.product-detail__actions .button:hover:not(:disabled) {
  transform: translateY(-1px);
}
.product-detail__actions .button:disabled {
  cursor: not-allowed;
  opacity: 1;
  transform: none;
}
.product-detail__actions .button .button__icon {
  font-family: 'Material Symbols Rounded', sans-serif;
  font-size: 1.25rem;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  line-height: 1;
  display: inline-block;
  flex-shrink: 0;
}
.product-detail__actions .button .button__icon--cart::before {
  content: 'shopping_cart';
}
.product-detail__actions .button.button--add-to-cart {
  background-color: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 98%);
}
.product-detail__actions .button.button--add-to-cart:hover:not(:disabled) {
  background-color: hsl(0, 0%, 2%);
}
.product-detail__actions .button.button--consult,
.product-detail__actions .button.button--out-of-stock {
  background-color: hsl(0, 0%, 96%);
  color: hsl(0, 0%, 10%);
  cursor: not-allowed;
}
.quantity {
  display: inline-flex;
  align-items: center;
  border: 1px solid hsla(0, 0%, 90%, 0.6);
  border-radius: 0.5rem;
  overflow: hidden;
}
.quantity__button {
  width: 2.75rem;
  height: 2.75rem;
  border: none;
  background: hsla(0, 0%, 96%, 0.4);
  cursor: pointer;
  position: relative;
}
.quantity__button:before,
.quantity__button:after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 1.1rem;
  height: 2px;
  background: hsl(0, 0%, 10%);
  transform: translate(-50%, -50%);
}
.quantity__button[data-action="increase"]:after {
  transform: translate(-50%, -50%) rotate(90deg);
}
.quantity__value {
  width: 3rem;
  text-align: center;
  font-weight: 600;
}
.product-detail__cards {
  display: grid;
  gap: 1rem;
}
.info-card {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  padding: 1rem 1.25rem;
  border-radius: 0.75rem;
  border: 1px solid hsla(0, 0%, 90%, 0.6);
  background: hsla(0, 0%, 96%, 0.35);
}
.info-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.5rem;
  background-repeat: no-repeat;
  background-position: center;
  background-color: hsla(0, 0%, 10%, 0.15);
}
.info-card__icon--truck {
  background-image: url('data:image/svg+xml,%3Csvg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M3 7H15V17H3V7Z" stroke="%2317351F" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/%3E%3Cpath d="M15 10H19L21 13V17H19" stroke="%2317351F" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/%3E%3Ccircle cx="7" cy="17" r="2" stroke="%2317351F" stroke-width="1.5"/%3E%3Ccircle cx="17" cy="17" r="2" stroke="%2317351F" stroke-width="1.5"/%3E%3C/svg%3E');
}
.info-card__icon--shield {
  background-image: url('data:image/svg+xml,%3Csvg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M12 22C12 22 20 18 20 11V5L12 2L4 5V11C4 18 12 22 12 22Z" stroke="%2317351F" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E');
}
.info-card__title {
  margin: 0;
  font-weight: 600;
}
.info-card__text {
  margin: 0.25rem 0 0;
  color: hsl(0, 0%, 45%);
}
.product-detail__block {
  display: grid;
  gap: 0.75rem;
}
.product-detail__section-title {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}
.product-detail__text {
  margin: 0;
}
.product-detail__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}
.product-detail__list-item {
  display: flex;
  gap: 0.75rem;
  color: hsl(0, 0%, 45%);
}
.product-detail__list-icon {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
  background: url('data:image/svg+xml,%3Csvg width="20" height="20" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Cpath d="M20 6L9 17L4 12" stroke="%23088854" stroke-width="1.5" stroke-linecap="round" stroke-linejoin="round"/%3E%3C/svg%3E') no-repeat center / contain;
}
.product-specs {
  border: 1px solid hsla(0, 0%, 90%, 0.6);
  border-radius: 0.75rem;
  overflow: hidden;
}
.product-specs__row {
  display: flex;
  justify-content: space-between;
  padding: 1rem 1.25rem;
  background: hsl(0, 0%, 100%);
  border-bottom: 1px solid hsla(0, 0%, 90%, 0.5);
}
.product-specs__row:last-child {
  border-bottom: none;
}
.product-specs__row dt {
  font-weight: 600;
}
.product-specs__row dd {
  margin: 0;
  color: hsl(0, 0%, 45%);
}
.product-detail__note {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem 1.5rem;
  border-radius: 0.75rem;
  border: 1px solid hsla(0, 0%, 10%, 0.4);
  background: hsla(0, 0%, 10%, 0.12);
}
.product-detail__note-icon {
  width: 2rem;
  height: 2rem;
  background: url('data:image/svg+xml,%3Csvg width="24" height="24" viewBox="0 0 24 24" fill="none" xmlns="http://www.w3.org/2000/svg"%3E%3Ccircle cx="12" cy="12" r="10" stroke="%2317351F" stroke-width="1.5"/%3E%3Cpath d="M12 16V12" stroke="%2317351F" stroke-width="1.5" stroke-linecap="round"/%3E%3Cpath d="M12 8H12.01" stroke="%2317351F" stroke-width="1.5" stroke-linecap="round"/%3E%3C/svg%3E') no-repeat center / contain;
}
.product-detail__note-title {
  margin: 0 0 0.5rem;
  font-weight: 600;
}
.product-detail__note-text {
  margin: 0;
  color: hsl(0, 0%, 45%);
}
.product-detail__related {
  margin-top: 4rem;
  padding-top: 4rem;
  border-top: 1px solid hsla(0, 0%, 90%, 0.6);
}
.product-detail__related .product-card .product-card__title {
  font-size: 0.9rem;
  min-height: 2.5rem;
}
.product-detail__related .product-card .product-card__price {
  font-size: 1.35rem;
}
.product-detail__related .product-card .product-card__actions {
  padding: 0 1rem 1rem;
}
.product-detail__related .product-card .product-card__actions .button {
  padding: 0.65rem 1rem;
  font-size: 0.9rem;
}
.page-hero {
  padding: 5rem 0;
  text-align: left;
  position: relative;
  overflow: hidden;
}
.page-hero--center {
  text-align: center;
}
.page-hero__eyebrow {
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: hsl(0, 0%, 35%);
  font-weight: 600;
  margin-bottom: 1rem;
}
.page-hero__title {
  margin-bottom: 1rem;
}
.page-hero__lead {
  max-width: 45rem;
  margin: 0 auto 2rem;
  font-size: 1.15rem;
  color: hsl(0, 0%, 45%);
}
.page-hero__actions {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.contact {
  padding: 3.5rem 0 5rem;
}
.contact__grid {
  display: grid;
  gap: 2rem;
}
@media (min-width: 992px) {
  .contact__grid {
    grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  }
}
.contact-card {
  background-color: hsl(0, 0%, 100%);
  border-radius: 0.75rem;
  border: 1px solid hsl(0, 0%, 90%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 2rem;
  display: grid;
  gap: 2rem;
}
.contact-card__header {
  padding: 2rem 2rem 0;
  display: grid;
  gap: 0.5rem;
}
.contact-card__title {
  margin: 0;
}
.contact-card__subtitle {
  margin: 0;
  color: hsl(0, 0%, 45%);
}
.contact-card__body {
  padding: 2rem;
  border-top: 1px solid hsla(0, 0%, 90%, 0.6);
  border-bottom: 1px solid hsla(0, 0%, 90%, 0.6);
  display: grid;
  gap: 1.25rem;
}
.contact-card__footer {
  padding: 2rem;
  display: grid;
  gap: 1rem;
}
.contact-card__note {
  margin: 0;
  color: hsl(0, 0%, 45%);
  font-size: 0.85rem;
}
.contact-card--sticky {
  position: sticky;
  top: 7rem;
}
.contact-card__title {
  margin: 0;
}
.contact-card__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.25rem;
}
.contact-card__list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  font-weight: 600;
}
.contact-card__list li a {
  color: hsl(0, 0%, 10%);
}
.contact-card__list li a:hover {
  text-decoration: underline;
}
.contact-card__icon {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: hsla(0, 0%, 10%, 0.12);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Material Symbols Rounded', sans-serif;
  font-size: 1.25rem;
  color: hsl(0, 0%, 10%);
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  flex-shrink: 0;
}
.contact-card__schedule {
  background: hsla(0, 0%, 96%, 0.45);
  border-radius: 0.5rem;
  padding: 1rem 1.25rem;
}
.contact-card__schedule h3 {
  margin: 0 0 0.5rem;
}
.contact-card__schedule p {
  margin: 0;
  color: hsl(0, 0%, 45%);
}
.contact__form .card {
  background-color: hsl(0, 0%, 100%);
  border-radius: 0.75rem;
  border: 1px solid hsl(0, 0%, 90%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 0;
}
.contact__form .card__header {
  padding: 2rem 2rem 0;
  display: grid;
  gap: 0.5rem;
}
.contact__form .card__title {
  margin: 0;
}
.contact__form .card__subtitle {
  margin: 0;
  color: hsl(0, 0%, 45%);
}
.contact__form .card__body {
  padding: 2rem;
  border-top: 1px solid hsla(0, 0%, 90%, 0.6);
  border-bottom: 1px solid hsla(0, 0%, 90%, 0.6);
  display: grid;
  gap: 1.25rem;
}
.contact__form .card__footer {
  padding: 2rem;
  display: grid;
  gap: 1rem;
}
.contact__form .card__note {
  margin: 0;
  color: hsl(0, 0%, 45%);
  font-size: 0.85rem;
}
.contact__form .card--sticky {
  position: sticky;
  top: 7rem;
}
.grid--two {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(1, minmax(0, 1fr));
}
@media (min-width: 768px) {
  .grid--two {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.form-field {
  display: grid;
  gap: 0.5rem;
}
.form-field--full {
  grid-column: 1 / -1;
}
.form-field__label {
  font-weight: 600;
  color: hsl(0, 0%, 10%);
}
.form-field__input,
.form-field__textarea,
.form-field select {
  padding: 0.8rem 1rem;
  border-radius: 0.5rem;
  border: 1px solid hsla(0, 0%, 90%, 0.65);
  background-color: hsl(0, 0%, 100%);
  font-size: 1rem;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.form-field__input:focus,
.form-field__textarea:focus,
.form-field select:focus {
  border-color: hsl(0, 0%, 10%);
  box-shadow: 0 0 0 3px hsla(0, 0%, 10%, 0.2);
  outline: none;
}
.form-field__textarea {
  resize: vertical;
  min-height: 140px;
}
.card {
  background-color: hsl(0, 0%, 100%);
  border-radius: 0.75rem;
  border: 1px solid hsl(0, 0%, 90%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.card__header {
  padding: 2rem 2rem 0;
  display: grid;
  gap: 0.5rem;
}
.card__title {
  margin: 0;
}
.card__subtitle {
  margin: 0;
  color: hsl(0, 0%, 45%);
}
.card__body {
  padding: 2rem;
  border-top: 1px solid hsla(0, 0%, 90%, 0.6);
  border-bottom: 1px solid hsla(0, 0%, 90%, 0.6);
  display: grid;
  gap: 1.25rem;
}
.card__footer {
  padding: 2rem;
  display: grid;
  gap: 1rem;
}
.card__note {
  margin: 0;
  color: hsl(0, 0%, 45%);
  font-size: 0.85rem;
}
.card--sticky {
  position: sticky;
  top: 7rem;
}
.contact-form__message {
  padding: 1rem 1.5rem;
  border-radius: 0.5rem;
  margin: 1rem 2rem 0;
  font-size: 0.95rem;
  line-height: 1.5;
  animation: slideDown 0.3s ease-out;
}
.contact-form__message--success {
  background-color: hsl(142, 76%, 81%);
  color: hsl(142, 76%, 26%);
  border: 1px solid hsl(142, 76%, 66%);
}
.contact-form__message--error {
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 84%, 50%);
  border: 1px solid hsl(0, 84%, 90%);
}
.contact-form__message--info {
  background-color: hsl(0, 0%, 55%);
  color: hsl(0, 0%, 0%);
  border: 1px solid hsl(0, 0%, 40%);
}
@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.account-dropdown {
  display: none;
  position: fixed;
  background: hsl(0, 0%, 100%);
  border-radius: 0.75rem;
  border: 1px solid hsl(42, 20%, 85%);
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  padding: 1rem;
  min-width: 18rem;
  max-width: 18rem;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  z-index: 1000;
}
.account-dropdown.is-open {
  display: block;
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.account-dropdown__content {
  width: 100%;
}
.account-dropdown__header {
  padding-bottom: 0.75rem;
  border-bottom: 1px solid hsl(42, 20%, 85%);
  margin-bottom: 0.75rem;
}
.account-dropdown__name {
  font-weight: 600;
  color: hsl(150, 40%, 15%);
  margin-bottom: 0.25rem;
  font-size: 0.875rem;
}
.account-dropdown__email {
  font-size: 0.875rem;
  color: hsl(150, 15%, 45%);
}
.account-dropdown__menu {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.account-dropdown__item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  text-decoration: none;
  color: hsl(150, 40%, 15%);
  background: transparent;
  border: none;
  cursor: pointer;
  font-size: 0.875rem;
  transition: background-color 0.2s ease;
  text-align: left;
  width: 100%;
}
.account-dropdown__item i {
  font-size: 1rem;
  width: 1rem;
  height: 1rem;
  font-family: 'Material Symbols Rounded', sans-serif;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.account-dropdown__item:hover {
  background: hsl(42, 30%, 90%);
}
.account-dropdown__item--logout {
  color: hsl(0, 84%, 60%);
}
.account-dropdown__item--logout:hover {
  color: white;
  background: hsl(0, 84%, 60%);
}
.account-dropdown__login {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.account-dropdown__title {
  font-weight: 600;
  color: hsl(150, 40%, 15%);
  font-size: 1rem;
  margin: 0;
}
.account-dropdown__subtitle {
  font-size: 0.875rem;
  color: hsl(150, 15%, 45%);
  margin: 0;
}
.account-dropdown__form {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}
.account-dropdown__field {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}
.account-dropdown__field label {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(150, 40%, 15%);
}
.account-dropdown__field input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid hsl(42, 20%, 85%);
  background: hsl(42, 30%, 90%);
  color: hsl(150, 40%, 15%);
  font-size: 0.875rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.account-dropdown__field input:focus {
  outline: none;
  border-color: hsl(150, 55%, 25%);
  box-shadow: 0 0 0 2px hsl(150, 55%, 25%);
}
.account-dropdown__field input::placeholder {
  color: hsl(150, 15%, 45%);
}
.account-dropdown__password-setup {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(42, 20%, 85%);
}
.account-dropdown__setup-title {
  font-weight: 600;
  color: hsl(150, 40%, 15%);
  font-size: 0.875rem;
  margin: 0 0 0.25rem 0;
}
.account-dropdown__setup-text {
  font-size: 0.875rem;
  color: hsl(150, 15%, 45%);
  margin: 0 0 0.75rem 0;
}
.account-dropdown__help-text {
  font-size: 0.75rem;
  color: hsl(150, 15%, 45%);
  margin-top: 0.25rem;
  font-style: italic;
}
.account-dropdown__message {
  padding: 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  margin-bottom: 0.75rem;
  display: none;
}
.account-dropdown__message--error {
  background: hsl(0, 84%, 60%);
  color: hsl(0, 84%, 50%);
  border: 1px solid hsl(0, 84%, 60%);
}
.account-dropdown__message--success {
  background: hsl(150, 55%, 25%);
  color: hsl(150, 55%, 25%);
  border: 1px solid hsl(150, 55%, 25%);
}
.account-dropdown__message--info {
  background: hsl(42, 30%, 90%);
  color: hsl(150, 40%, 15%);
  border: 1px solid hsl(42, 20%, 85%);
}
.account-dropdown__footer {
  margin-top: 1rem;
  padding-top: 1rem;
  border-top: 1px solid hsl(42, 20%, 85%);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.account-dropdown__link {
  font-size: 0.875rem;
  color: hsl(150, 55%, 25%);
  text-decoration: none;
  transition: color 0.2s ease;
}
.account-dropdown__link:hover {
  color: hsl(150, 55%, 20%);
  text-decoration: underline;
}
.account-dropdown__register-text {
  font-size: 0.875rem;
  color: hsl(150, 15%, 45%);
  margin: 0;
  text-align: center;
}
.novedades-hero {
  background: linear-gradient(135deg, hsl(0, 0%, 10%) 0%, hsla(0, 0%, 10%, 0.9) 50%, hsla(0, 0%, 10%, 0.7) 100%);
  color: hsl(0, 0%, 98%);
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .novedades-hero {
    padding: 6rem 0;
  }
}
.novedades-hero__content {
  max-width: 48rem;
}
.novedades-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: hsla(0, 0%, 98%, 0.2);
  color: hsl(0, 0%, 98%);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1rem;
}
.novedades-hero__badge .material-symbols-rounded {
  font-size: 1.25rem;
}
.novedades-hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: hsl(0, 0%, 98%);
}
@media (min-width: 768px) {
  .novedades-hero__title {
    font-size: 3rem;
  }
}
.novedades-hero__description {
  font-size: 1.25rem;
  color: hsla(0, 0%, 98%, 0.9);
  line-height: 1.6;
}
.novedades-list {
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .novedades-list {
    padding: 4rem 0;
  }
}
.novedades-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .novedades-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 992px) {
  .novedades-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.plagas-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 576px) {
  .plagas-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .plagas-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 992px) {
  .plagas-grid {
    grid-template-columns: repeat(5, 1fr);
  }
}
.curiosidades-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .curiosidades-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 992px) {
  .curiosidades-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.curiosidad-card {
  background-color: hsl(0, 0%, 100%);
  border-radius: 0.75rem;
  border: 1px solid hsl(0, 0%, 90%);
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.curiosidad-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.curiosidad-card__content {
  display: flex;
  flex-direction: column;
  height: 100%;
}
.curiosidad-card__image-wrapper {
  width: 100%;
  height: 12rem;
  overflow: hidden;
  background-color: hsl(0, 0%, 96%);
}
@media (min-width: 768px) {
  .curiosidad-card__image-wrapper {
    height: 14rem;
  }
}
.curiosidad-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.curiosidad-card__text {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.curiosidad-card__header {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  margin-bottom: 1rem;
}
.curiosidad-card__icon {
  font-family: 'Material Symbols Rounded', sans-serif;
  font-size: 1.5rem;
  color: hsl(0, 0%, 10%);
  flex-shrink: 0;
  margin-top: 0.125rem;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.curiosidad-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.4;
  color: hsl(0, 0%, 10%);
  margin: 0;
  flex: 1;
}
.curiosidad-card__description {
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: hsl(0, 0%, 45%);
  margin: 0;
}
.novedad-card {
  background: hsl(0, 0%, 100%);
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.25s ease, transform 0.25s ease;
}
.novedad-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.novedad-card:hover .novedad-card__image {
  transform: scale(1.05);
}
.novedad-card:hover .novedad-card__read-more .material-symbols-rounded {
  transform: translateX(4px);
}
.novedad-card__link {
  display: block;
  text-decoration: none;
  color: inherit;
}
.novedad-card__image-wrapper {
  position: relative;
  width: 100%;
  height: 12rem;
  overflow: hidden;
  background-color: hsl(0, 0%, 96%);
}
@media (min-width: 768px) {
  .novedad-card__image-wrapper {
    height: 14rem;
  }
}
.novedad-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.novedad-card__image-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: hsl(0, 0%, 96%);
  color: hsl(0, 0%, 45%);
}
.novedad-card__image-placeholder .material-symbols-rounded {
  font-size: 3rem;
}
.novedad-card__badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background-color: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 98%);
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.novedad-card__content {
  padding: 1.5rem;
}
.novedad-card__meta {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(0, 0%, 45%);
  margin-bottom: 0.75rem;
}
.novedad-card__meta .material-symbols-rounded {
  font-size: 1rem;
}
.novedad-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: hsl(0, 0%, 10%);
  transition: color 0.25s ease;
}
.novedad-card:hover .novedad-card__title {
  color: hsl(0, 0%, 10%);
}
.novedad-card__excerpt {
  color: hsl(0, 0%, 45%);
  line-height: 1.6;
  margin-bottom: 1rem;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  line-clamp: 5;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.6em * 5);
}
.novedad-card__read-more {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: hsl(0, 0%, 10%);
  font-weight: 600;
  font-size: 0.875rem;
}
.novedad-card__read-more .material-symbols-rounded {
  font-size: 1rem;
  transition: transform 0.25s ease;
}
.novedades-empty {
  text-align: center;
  padding: 4rem 2rem;
  color: hsl(0, 0%, 45%);
}
.novedades-empty .material-symbols-rounded {
  font-size: 4rem;
  margin-bottom: 1rem;
  opacity: 0.5;
}
.novedades-empty h2 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
  color: hsl(0, 0%, 10%);
}
.novedad-detail__back {
  background-color: hsl(0, 0%, 100%);
  border-bottom: 1px solid hsl(0, 0%, 90%);
  padding: 1rem 0;
}
.novedad-detail__article {
  max-width: 56rem;
  margin: 2rem auto;
  background-color: hsl(0, 0%, 100%);
  border-radius: 1rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  padding: 2rem;
}
@media (min-width: 768px) {
  .novedad-detail__article {
    padding: 3rem;
    margin: 3rem auto;
  }
}
.novedad-detail__header {
  margin-bottom: 2rem;
}
.novedad-detail__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.novedad-detail__badge {
  background-color: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 98%);
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.novedad-detail__date {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: hsl(0, 0%, 45%);
}
.novedad-detail__date .material-symbols-rounded {
  font-size: 1rem;
}
.novedad-detail__share {
  margin-left: auto;
}
.novedad-detail__title {
  font-size: clamp(1.875rem, 2.4vw, 2.25rem);
  line-height: clamp(2.25rem, 2.8vw, 2.5rem);
  font-weight: 700;
  color: hsl(0, 0%, 10%);
  margin-bottom: 0;
}
.novedad-detail__image {
  margin: 2rem 0;
  border-radius: 0.75rem;
  overflow: hidden;
  background-color: hsl(0, 0%, 96%);
}
@media (min-width: 768px) {
  .novedad-detail__image {
    margin: 2.5rem 0;
  }
}
.novedad-detail__image-element {
  width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}
.novedad-detail__content {
  font-size: clamp(0.9375rem, 1vw, 1rem);
  line-height: clamp(1.375rem, 1.8vw, 1.5rem);
  color: hsl(0, 0%, 10%);
}
.novedad-detail__content h2 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: hsl(0, 0%, 10%);
}
.novedad-detail__content h3 {
  font-size: 1.5rem;
  font-weight: 600;
  margin-top: 1.5rem;
  margin-bottom: 0.75rem;
  color: hsl(0, 0%, 10%);
}
.novedad-detail__content p {
  margin-bottom: 1rem;
}
.novedad-detail__content ul,
.novedad-detail__content ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}
.novedad-detail__content ul li,
.novedad-detail__content ol li {
  margin-bottom: 0.5rem;
}
.novedad-detail__content img {
  max-width: 100%;
  height: auto;
  border-radius: 0.75rem;
  margin: 1.5rem 0;
}
.novedad-detail__content a {
  color: hsl(0, 0%, 10%);
  text-decoration: underline;
}
.novedad-detail__content a:hover {
  color: hsl(0, 0%, 0%);
}
.novedad-detail__video {
  margin-top: 2rem;
}
.novedad-detail__video .video-wrapper {
  position: relative;
  padding-bottom: 56.25%;
  height: 0;
  overflow: hidden;
  border-radius: 0.75rem;
}
.novedad-detail__video .video-wrapper iframe,
.novedad-detail__video .video-wrapper video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.novedad-detail__adjunto {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(0, 0%, 90%);
}
.novedad-detail__adjunto .button {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.pagination {
  margin-top: 3rem;
  display: flex;
  justify-content: center;
}
.pagination__list {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  list-style: none;
  padding: 0;
  margin: 0;
  flex-wrap: wrap;
  justify-content: center;
}
.pagination__item--ellipsis {
  padding: 0.5rem;
  color: hsl(0, 0%, 45%);
}
.pagination__link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.625rem 1rem;
  border-radius: 0.75rem;
  text-decoration: none;
  color: hsl(0, 0%, 10%);
  background-color: hsl(0, 0%, 100%);
  border: 1px solid hsl(0, 0%, 90%);
  transition: all 0.25s ease;
  font-weight: 500;
  min-width: 2.5rem;
  justify-content: center;
}
.pagination__link:hover {
  background-color: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 98%);
  border-color: hsl(0, 0%, 10%);
  transform: translateY(-1px);
}
.pagination__link--active {
  background-color: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 98%);
  border-color: hsl(0, 0%, 10%);
  cursor: default;
}
.pagination__link--active:hover {
  transform: none;
}
@media (max-width: 576px) {
  .pagination__link--prev span.material-symbols-rounded,
  .pagination__link--next span.material-symbols-rounded {
    display: none;
  }
}
.pagination__link .material-symbols-rounded {
  font-size: 1.25rem;
}
.plaga-products {
  padding: 3rem 0;
  background-color: hsl(0, 0%, 96%);
}
@media (min-width: 768px) {
  .plaga-products {
    padding: 4rem 0;
  }
}
.plaga-products__header {
  text-align: center;
  margin-bottom: 2.5rem;
}
@media (min-width: 768px) {
  .plaga-products__header {
    margin-bottom: 3rem;
  }
}
.plaga-products__title {
  font-size: 2rem;
  font-weight: 700;
  color: hsl(0, 0%, 10%);
  margin-bottom: 0.75rem;
}
@media (min-width: 768px) {
  .plaga-products__title {
    font-size: 2.5rem;
  }
}
.plaga-products__subtitle {
  font-size: 1.125rem;
  color: hsl(0, 0%, 45%);
  max-width: 48rem;
  margin: 0 auto;
}
.plaga-products .catalog__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 576px) {
  .plaga-products .catalog__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 768px) {
  .plaga-products .catalog__grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 992px) {
  .plaga-products .catalog__grid {
    grid-template-columns: repeat(4, 1fr);
  }
}
.novedad-detail__subtitle {
  font-size: 1.75rem;
  font-weight: 700;
  margin-top: 2rem;
  margin-bottom: 1rem;
  color: hsl(0, 0%, 10%);
}
@media (min-width: 768px) {
  .novedad-detail__subtitle {
    font-size: 2rem;
  }
}
.novedad-detail__controla {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(0, 0%, 90%);
}
.glosario-hero {
  background: linear-gradient(135deg, hsl(0, 0%, 96%) 0%, hsla(0, 0%, 96%, 0.9) 50%, hsla(0, 0%, 96%, 0.7) 100%);
  color: hsl(0, 0%, 10%);
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .glosario-hero {
    padding: 6rem 0;
  }
}
.glosario-hero__content {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}
.glosario-hero__icon {
  font-family: 'Material Symbols Rounded', sans-serif;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
@media (min-width: 768px) {
  .glosario-hero__icon {
    font-size: 5rem;
  }
}
.glosario-hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: hsl(0, 0%, 10%);
}
@media (min-width: 768px) {
  .glosario-hero__title {
    font-size: 3.125rem;
  }
}
.glosario-hero__description {
  font-size: 1.25rem;
  color: hsla(0, 0%, 10%, 0.9);
  line-height: 1.75rem;
}
.glosario-search {
  background-color: hsl(0, 0%, 100%);
  border-bottom: 1px solid hsl(0, 0%, 90%);
  padding: 1.5rem 0;
}
.glosario-search__form {
  max-width: 32rem;
  margin: 0 auto;
}
.glosario-search__wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.glosario-search__icon {
  position: absolute;
  left: 1rem;
  font-family: 'Material Symbols Rounded', sans-serif;
  font-size: 1.25rem;
  color: hsl(0, 0%, 45%);
  pointer-events: none;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.glosario-search__input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 1px solid hsl(0, 0%, 90%);
  border-radius: 0.75rem;
  font-size: 1rem;
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 10%);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.glosario-search__input:focus {
  outline: none;
  border-color: hsl(0, 0%, 10%);
  box-shadow: 0 0 0 3px hsla(0, 0%, 10%, 0.1);
}
.glosario-search__input::placeholder {
  color: hsl(0, 0%, 45%);
}
.glosario-search__clear {
  position: absolute;
  right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: hsl(0, 0%, 45%);
  text-decoration: none;
  border-radius: 50%;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.glosario-search__clear:hover {
  background-color: hsl(0, 0%, 96%);
  color: hsl(0, 0%, 10%);
}
.glosario-search__clear .material-symbols-rounded {
  font-size: 1.25rem;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.glosario-nav {
  background-color: hsla(0, 0%, 96%, 0.3);
  border-bottom: 1px solid hsl(0, 0%, 90%);
  position: sticky;
  top: 0;
  z-index: 100;
  padding: 1rem 0;
}
.glosario-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
  align-items: center;
}
.glosario-nav__link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 98%);
  font-weight: 700;
  font-size: 1rem;
  text-decoration: none;
  transition: all 0.25s ease;
}
.glosario-nav__link:hover {
  background-color: hsla(0, 0%, 10%, 0.8);
  transform: translateY(-2px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.glosario-nav__link.is-active {
  background-color: hsl(0, 85%, 45%);
  color: hsl(0, 0%, 98%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.glosario-content {
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .glosario-content {
    padding: 4rem 0;
  }
}
.glosario-list {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.glosario-group {
  scroll-margin-top: 6rem;
}
.glosario-group__title {
  font-size: 2.5rem;
  font-weight: 700;
  color: hsl(0, 0%, 10%);
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
  border-bottom: 4px solid hsl(0, 0%, 10%);
  display: inline-block;
}
.glosario-group__terms {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-top: 1.5rem;
}
.glosario-term {
  background-color: hsl(0, 0%, 100%);
  border-radius: 0.75rem;
  border: 1px solid hsl(0, 0%, 90%);
  padding: 1.5rem;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.glosario-term:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
  transform: translateY(-2px);
}
.glosario-term__title {
  font-size: 1.25rem;
  font-weight: 700;
  color: hsl(0, 0%, 10%);
  margin-bottom: 0.5rem;
}
.glosario-term__definition-wrapper {
  position: relative;
}
.glosario-term__definition {
  font-size: 1rem;
  line-height: 1.75rem;
  color: hsl(0, 0%, 45%);
  margin-bottom: 0.5rem;
}
.glosario-term__definition--short {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: calc(1.75rem * 2em);
}
.glosario-term__definition--full {
  display: none;
}
.glosario-term__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  background: none;
  border: none;
  color: hsl(0, 0%, 10%);
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  padding: 0.25rem 0;
  margin-top: 0.5rem;
  transition: color 0.25s ease;
}
.glosario-term__toggle:hover {
  color: hsla(0, 0%, 10%, 0.8);
}
.glosario-term__toggle-text {
  font-size: 0.875rem;
}
.glosario-term__toggle-icon {
  font-family: 'Material Symbols Rounded', sans-serif;
  font-size: 1.25rem;
  line-height: 1;
  transition: transform 0.25s ease;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.glosario-term.is-expanded .glosario-term__definition--short {
  display: none !important;
}
.glosario-term.is-expanded .glosario-term__definition--full {
  display: block !important;
}
.glosario-term.is-expanded .glosario-term__toggle-icon {
  transform: rotate(180deg);
}
.glosario-empty {
  text-align: center;
  padding: 4rem 2rem;
}
.glosario-empty .material-symbols-rounded {
  font-family: 'Material Symbols Rounded', sans-serif;
  font-size: 4rem;
  color: hsl(0, 0%, 45%);
  margin-bottom: 1.5rem;
  display: block;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.glosario-empty h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(0, 0%, 10%);
  margin-bottom: 1rem;
}
.glosario-empty p {
  font-size: 1rem;
  color: hsl(0, 0%, 45%);
  margin-bottom: 2rem;
}
.videos-hero {
  background: linear-gradient(135deg, hsl(0, 0%, 10%) 0%, hsla(0, 0%, 10%, 0.9) 50%, hsla(0, 0%, 10%, 0.7) 100%);
  color: hsl(0, 0%, 98%);
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .videos-hero {
    padding: 6rem 0;
  }
}
.videos-hero__content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.videos-hero__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background-color: hsla(0, 0%, 98%, 0.2);
  backdrop-filter: blur(8px);
  color: hsl(0, 0%, 98%);
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  margin-bottom: 1.5rem;
}
.videos-hero__badge .material-symbols-rounded {
  font-size: 1.25rem;
}
.videos-hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: hsl(0, 0%, 98%);
}
@media (min-width: 768px) {
  .videos-hero__title {
    font-size: 3rem;
  }
}
.videos-hero__description {
  font-size: 1.25rem;
  color: hsla(0, 0%, 98%, 0.9);
  line-height: 1.6;
}
.videos-filters {
  border-bottom: 1px solid hsl(0, 0%, 90%);
  background-color: hsl(0, 0%, 100%);
  padding: 1.5rem 0;
}
.videos-filters__wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.videos-filters__badge {
  display: inline-flex;
  align-items: center;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-size: 0.875rem;
  font-weight: 500;
  text-decoration: none;
  color: hsl(0, 0%, 10%);
  background-color: transparent;
  border: 1px solid hsl(0, 0%, 90%);
  transition: all 0.25s ease;
  cursor: pointer;
}
.videos-filters__badge:hover {
  background-color: hsl(0, 0%, 96%);
  border-color: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 10%);
}
.videos-filters__badge--active {
  background-color: hsl(0, 0%, 10%);
  border-color: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 98%);
}
.videos-filters__badge--active:hover {
  background-color: hsla(0, 0%, 10%, 0.9);
}
.videos-list {
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .videos-list {
    padding: 4rem 0;
  }
}
.videos-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .videos-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
}
@media (min-width: 992px) {
  .videos-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.video-card {
  background-color: hsl(0, 0%, 100%);
  border-radius: 0.75rem;
  border: 1px solid hsl(0, 0%, 90%);
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}
.video-card:hover {
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  transform: translateY(-2px);
}
.video-card:hover .video-card__play-overlay {
  opacity: 1;
}
.video-card:hover .video-card__thumbnail {
  transform: scale(1.05);
}
.video-card__trigger {
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  width: 100%;
  text-align: left;
}
.video-card__thumbnail-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  background-color: hsl(0, 0%, 96%);
}
.video-card__thumbnail {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.video-card__thumbnail-placeholder {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(0, 0%, 96%);
  color: hsl(0, 0%, 45%);
}
.video-card__thumbnail-placeholder .material-symbols-rounded {
  font-size: 4rem;
}
.video-card__play-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 100%, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.video-card__play-button {
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: hsla(0, 0%, 98%, 0.9);
  display: flex;
  align-items: center;
  justify-content: center;
  color: hsl(0, 0%, 10%);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.video-card__play-button .material-symbols-rounded {
  font-size: 2rem;
  margin-left: 0.25rem;
}
.video-card__content {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.video-card__title {
  font-size: 1.125rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: hsl(0, 0%, 10%);
  line-height: 1.4;
}
.video-card__description {
  font-size: 0.875rem;
  color: hsl(0, 0%, 45%);
  line-height: 1.6;
  flex: 1;
}
.video-card:hover .video-card__title {
  color: hsl(0, 0%, 10%);
}
.video-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
}
.video-modal.is-open {
  display: flex;
}
.video-modal__overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: hsla(0, 0%, 100%, 0.9);
  backdrop-filter: blur(4px);
}
.video-modal__content {
  position: relative;
  width: 90%;
  max-width: 900px;
  background-color: hsl(0, 0%, 100%);
  border-radius: 1rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
  z-index: 1;
  animation: modalFadeIn 0.25s ease;
}
.video-modal__close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background-color: hsla(0, 0%, 100%, 0.8);
  border: none;
  color: hsl(0, 0%, 10%);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  transition: all 0.25s ease;
}
.video-modal__close:hover {
  background-color: hsl(0, 0%, 96%);
  transform: scale(1.1);
}
.video-modal__close .material-symbols-rounded {
  font-size: 1.5rem;
}
.video-modal__body {
  padding: 2rem;
}
@media (min-width: 768px) {
  .video-modal__body {
    padding: 3rem;
  }
}
.video-modal__embed-wrapper {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  overflow: hidden;
  background-color: hsl(0, 0%, 96%);
  border-radius: 0.75rem;
}
.video-modal__embed-wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
@keyframes modalFadeIn {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.videos-empty {
  text-align: center;
  padding: 4rem 2rem;
}
.videos-empty .material-symbols-rounded {
  font-family: 'Material Symbols Rounded', sans-serif;
  font-size: 4rem;
  color: hsl(0, 0%, 45%);
  margin-bottom: 1.5rem;
  display: block;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.videos-empty h2 {
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(0, 0%, 10%);
  margin-bottom: 1rem;
}
.videos-empty p {
  font-size: 1rem;
  color: hsl(0, 0%, 45%);
  margin-bottom: 2rem;
}
.videos-cta {
  background-color: hsla(0, 0%, 96%, 0.3);
  border-top: 1px solid hsl(0, 0%, 90%);
  border-bottom: 1px solid hsl(0, 0%, 90%);
  padding: 3rem 0;
}
.videos-cta__card {
  background-color: hsla(0, 0%, 96%, 0.5);
  border-radius: 0.75rem;
  padding: 2rem;
  text-align: center;
  border: 1px solid #e0dcd1;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .videos-cta__card {
    padding: 3rem;
  }
}
.videos-cta__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(0, 0%, 10%);
  margin-bottom: 0.75rem;
}
.videos-cta__description {
  font-size: 1rem;
  color: hsl(0, 0%, 45%);
  margin-bottom: 1.5rem;
  line-height: 1.6;
  margin-left: auto;
  margin-right: auto;
  max-width: 42rem;
}
.videos-cta__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 2rem;
  background-color: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 98%);
  border-radius: 0.75rem;
  font-size: 1rem;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
}
.videos-cta__button:hover {
  background-color: hsla(0, 0%, 10%, 0.9);
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.faq-hero {
  background: linear-gradient(135deg, hsl(0, 0%, 96%) 0%, hsla(0, 0%, 96%, 0.9) 50%, hsla(0, 0%, 96%, 0.7) 100%);
  color: hsl(0, 0%, 10%);
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .faq-hero {
    padding: 6rem 0;
  }
}
.faq-hero__content {
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
}
.faq-hero__icon {
  font-family: 'Material Symbols Rounded', sans-serif;
  font-size: 4rem;
  line-height: 1;
  margin-bottom: 1.5rem;
  display: block;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
@media (min-width: 768px) {
  .faq-hero__icon {
    font-size: 5rem;
  }
}
.faq-hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: hsl(0, 0%, 10%);
}
@media (min-width: 768px) {
  .faq-hero__title {
    font-size: 3.125rem;
  }
}
.faq-hero__description {
  font-size: 1.25rem;
  color: hsla(0, 0%, 10%, 0.9);
  line-height: 1.75rem;
}
.faq-search {
  background-color: hsl(0, 0%, 100%);
  border-bottom: 1px solid hsl(0, 0%, 90%);
  padding: 1.5rem 0;
}
.faq-search__form {
  max-width: 32rem;
  margin: 0 auto;
}
.faq-search__wrapper {
  position: relative;
  display: flex;
  align-items: center;
}
.faq-search__icon {
  position: absolute;
  left: 1rem;
  font-family: 'Material Symbols Rounded', sans-serif;
  font-size: 1.25rem;
  color: hsl(0, 0%, 45%);
  pointer-events: none;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.faq-search__input {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3rem;
  border: 1px solid hsl(0, 0%, 90%);
  border-radius: 0.75rem;
  font-size: 1rem;
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 10%);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
  height: 3rem;
}
.faq-search__input:focus {
  outline: none;
  border-color: hsl(0, 0%, 10%);
  box-shadow: 0 0 0 3px hsla(0, 0%, 10%, 0.1);
}
.faq-search__input::placeholder {
  color: hsl(0, 0%, 45%);
}
.faq-search__clear {
  position: absolute;
  right: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  color: hsl(0, 0%, 45%);
  text-decoration: none;
  border-radius: 50%;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.faq-search__clear:hover {
  background-color: hsl(0, 0%, 96%);
  color: hsl(0, 0%, 10%);
}
.faq-search__clear .material-symbols-rounded {
  font-size: 1.25rem;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.faq-content {
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .faq-content {
    padding: 4rem 0;
  }
}
.faq-list {
  max-width: 64rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 3rem;
}
.faq-group__title {
  font-size: 2rem;
  font-weight: 700;
  color: hsl(0, 0%, 10%);
  margin-bottom: 1.5rem;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.faq-item {
  background-color: hsl(0, 0%, 100%);
  border: 1px solid hsl(0, 0%, 90%);
  border-radius: 0.75rem;
  overflow: hidden;
  transition: all 0.25s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.faq-item:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.faq-item.is-open {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
.faq-item__trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem;
  background: none;
  border: none;
  text-align: left;
  cursor: pointer;
  color: hsl(0, 0%, 10%);
  font-size: 1rem;
  font-weight: 500;
  transition: color 0.25s ease;
}
.faq-item__trigger:hover {
  color: hsl(0, 0%, 10%);
}
.faq-item__trigger:focus {
  outline: none;
  color: hsl(0, 0%, 10%);
}
.faq-item__question {
  flex: 1;
  padding-right: 1rem;
}
.faq-item__icon {
  font-family: 'Material Symbols Rounded', sans-serif;
  font-size: 1.5rem;
  line-height: 1;
  color: hsl(0, 0%, 45%);
  transition: transform 0.2s ease-in-out, color 0.25s ease;
  flex-shrink: 0;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.faq-item__trigger:hover .faq-item__icon,
.faq-item__trigger:focus .faq-item__icon {
  color: hsl(0, 0%, 10%);
}
.faq-item.is-open .faq-item__icon {
  transform: rotate(180deg);
  color: hsl(0, 0%, 10%);
}
.faq-item__content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.faq-item.is-open .faq-item__content {
  max-height: 1000px;
}
.faq-item__answer {
  padding: 0 1.5rem 1.5rem 1.5rem;
  color: hsl(0, 0%, 45%);
  line-height: 1.75rem;
  font-size: 1rem;
}
.faq-empty {
  text-align: center;
  padding: 4rem 2rem;
}
.faq-empty .material-symbols-rounded {
  font-family: 'Material Symbols Rounded', sans-serif;
  font-size: 4rem;
  color: hsl(0, 0%, 45%);
  margin-bottom: 1.5rem;
  display: block;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.faq-empty h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(0, 0%, 10%);
  margin-bottom: 1rem;
}
.faq-empty p {
  font-size: 1rem;
  color: hsl(0, 0%, 45%);
  margin-bottom: 2rem;
}
.faq-new-question {
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .faq-new-question {
    padding: 4rem 0;
  }
}
.faq-new-question__card {
  max-width: 48rem;
  margin: 0 auto;
  background-color: hsl(0, 0%, 100%);
  border: 1px solid hsl(0, 0%, 90%);
  border-radius: 0.75rem;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.faq-new-question__header {
  width: 100%;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  transition: background-color 0.25s ease;
}
.faq-new-question__header:hover {
  background-color: hsla(0, 0%, 96%, 0.3);
}
.faq-new-question__icon-wrapper {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: hsl(0, 0%, 96%);
  border-radius: 50%;
}
.faq-new-question__icon {
  font-family: 'Material Symbols Rounded', sans-serif;
  font-size: 1.5rem;
  color: hsl(0, 0%, 10%);
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.faq-new-question__header-text {
  flex: 1;
}
.faq-new-question__title {
  font-size: 1.125rem;
  font-weight: 700;
  color: hsl(0, 0%, 10%);
  margin: 0 0 0.25rem 0;
}
.faq-new-question__subtitle {
  font-size: 0.875rem;
  color: hsl(0, 0%, 45%);
  margin: 0;
}
.faq-new-question__chevron {
  font-family: 'Material Symbols Rounded', sans-serif;
  font-size: 1.5rem;
  color: hsl(0, 0%, 45%);
  transition: transform 0.25s ease;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.faq-new-question__form-wrapper {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-in-out;
}
.faq-new-question__form-wrapper.is-open {
  max-height: 1000px;
}
.faq-new-question__form {
  padding: 1.5rem;
  border-top: 1px solid hsl(0, 0%, 90%);
}
.faq-new-question__field {
  margin-bottom: 1.5rem;
}
.faq-new-question__field:last-of-type {
  margin-bottom: 1rem;
}
.faq-new-question__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(0, 0%, 10%);
  margin-bottom: 0.5rem;
}
.faq-new-question__input,
.faq-new-question__textarea {
  width: 100%;
  padding: 0.75rem;
  border: 1px solid hsl(0, 0%, 90%);
  border-radius: 0.5rem;
  font-size: 1rem;
  font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, 'Noto Sans', sans-serif;
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 10%);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.faq-new-question__input:focus,
.faq-new-question__textarea:focus {
  outline: none;
  border-color: hsl(0, 0%, 10%);
  box-shadow: 0 0 0 3px hsla(0, 0%, 10%, 0.1);
}
.faq-new-question__input::placeholder,
.faq-new-question__textarea::placeholder {
  color: hsl(0, 0%, 45%);
}
.faq-new-question__textarea {
  resize: vertical;
  min-height: 100px;
}
.faq-new-question__submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.875rem 1.5rem;
  background-color: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 98%);
  border: none;
  border-radius: 0.5rem;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: background-color 0.25s ease, transform 0.25s ease;
}
.faq-new-question__submit:hover:not(:disabled) {
  background-color: hsla(0, 0%, 10%, 0.9);
  transform: translateY(-1px);
}
.faq-new-question__submit:active:not(:disabled) {
  transform: translateY(0);
}
.faq-new-question__submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}
.faq-new-question__submit .material-symbols-rounded {
  font-size: 1.25rem;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.faq-new-question__note {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: hsl(0, 0%, 45%);
  text-align: center;
}
.faq-new-question__message {
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 1rem;
  line-height: 1.5rem;
  display: none;
}
.faq-new-question__message--success {
  background-color: hsla(142, 76%, 36%, 0.1);
  color: hsl(142, 76%, 36%);
  border: 1px solid hsla(142, 76%, 36%, 0.3);
}
.faq-new-question__message--error {
  background-color: hsla(0, 84%, 60%, 0.1);
  color: hsl(0, 84%, 60%);
  border: 1px solid hsla(0, 84%, 60%, 0.3);
}
.biblioteca-hero {
  background: linear-gradient(135deg, hsl(0, 0%, 96%) 0%, hsla(0, 0%, 96%, 0.9) 50%, hsla(0, 0%, 96%, 0.7) 100%);
  color: hsl(0, 0%, 10%);
  padding: 4rem 0;
}
@media (min-width: 768px) {
  .biblioteca-hero {
    padding: 6rem 0;
  }
}
.biblioteca-hero__content {
  max-width: 48rem;
  margin: 0 auto;
  text-align: center;
}
.biblioteca-hero__badge-wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  margin-bottom: 1rem;
}
.biblioteca-hero__icon {
  font-size: 2.5rem;
  font-family: 'Material Symbols Rounded', sans-serif;
}
.biblioteca-hero__badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background-color: hsla(0, 0%, 100%, 0.2);
  border: 1px solid hsla(0, 0%, 100%, 0.3);
  border-radius: 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
}
.biblioteca-hero__title {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
@media (min-width: 768px) {
  .biblioteca-hero__title {
    font-size: 3rem;
  }
}
.biblioteca-hero__description {
  font-size: 1.125rem;
  color: hsla(0, 0%, 10%, 0.9);
  line-height: 1.75rem;
}
.biblioteca-filters {
  border-bottom: 1px solid hsl(0, 0%, 90%);
  background-color: hsl(0, 0%, 100%);
  padding: 1.5rem 0;
}
.biblioteca-filters__wrapper {
  max-width: 48rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.biblioteca-filters__form {
  width: 100%;
}
.biblioteca-filters__search-wrapper {
  position: relative;
  max-width: 42rem;
  margin: 0 auto;
}
.biblioteca-filters__search-icon {
  position: absolute;
  left: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.25rem;
  color: hsl(0, 0%, 45%);
  pointer-events: none;
  font-family: 'Material Symbols Rounded', sans-serif;
}
.biblioteca-filters__search-input {
  width: 100%;
  padding: 0.75rem 0.75rem 0.75rem 2.75rem;
  font-size: 0.875rem;
  border: 1px solid hsl(0, 0%, 90%);
  border-radius: 0.5rem;
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 10%);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}
.biblioteca-filters__search-input:focus {
  outline: none;
  border-color: hsl(0, 0%, 10%);
  box-shadow: 0 0 0 3px hsla(0, 0%, 10%, 0.1);
}
.biblioteca-filters__search-input::placeholder {
  color: hsl(0, 0%, 45%);
}
.biblioteca-filters__clear {
  position: absolute;
  right: 0.75rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  color: hsl(0, 0%, 45%);
  text-decoration: none;
  border-radius: 50%;
  transition: background-color 0.25s ease, color 0.25s ease;
}
.biblioteca-filters__clear:hover {
  background-color: hsla(0, 0%, 96%, 0.3);
  color: hsl(0, 0%, 10%);
}
.biblioteca-filters__clear .material-symbols-rounded {
  font-size: 1.125rem;
  font-family: 'Material Symbols Rounded', sans-serif;
}
.biblioteca-filters__categories {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.biblioteca-filters__category {
  display: inline-block;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid hsl(0, 0%, 90%);
  border-radius: 0.5rem;
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 10%);
  text-decoration: none;
  transition: all 0.25s ease;
  cursor: pointer;
}
.biblioteca-filters__category:hover {
  background-color: hsl(0, 0%, 96%);
  border-color: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 10%);
}
.biblioteca-filters__category.is-active {
  background-color: hsl(0, 0%, 10%);
  border-color: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 98%);
}
.biblioteca-content {
  padding: 3rem 0;
}
@media (min-width: 768px) {
  .biblioteca-content {
    padding: 4rem 0;
  }
}
.biblioteca-docs {
  max-width: 60rem;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.biblioteca-doc-card {
  display: flex;
  gap: 1.5rem;
  padding: 1.5rem;
  background-color: hsl(0, 0%, 100%);
  border: 1px solid hsl(0, 0%, 90%);
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.25s ease;
}
.biblioteca-doc-card:hover {
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
}
@media (max-width: 576px) {
  .biblioteca-doc-card {
    flex-direction: column;
    gap: 1rem;
  }
}
.biblioteca-doc-card__icon-wrapper {
  flex-shrink: 0;
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, hsla(0, 0%, 10%, 0.2) 0%, hsla(0, 0%, 10%, 0.1) 100%);
  border: 2px solid hsla(0, 0%, 10%, 0.2);
  border-radius: 0.5rem;
  overflow: hidden;
}
.biblioteca-doc-card__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.biblioteca-doc-card__icon {
  font-size: 2rem;
  color: hsl(0, 0%, 10%);
  font-family: 'Material Symbols Rounded', sans-serif;
}
.biblioteca-doc-card__content {
  flex: 1;
  min-width: 0;
}
.biblioteca-doc-card__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.75rem;
}
@media (max-width: 576px) {
  .biblioteca-doc-card__header {
    flex-direction: column;
    gap: 0.75rem;
  }
}
.biblioteca-doc-card__title-wrapper {
  flex: 1;
  min-width: 0;
}
.biblioteca-doc-card__title {
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  line-height: 1.3;
}
.biblioteca-doc-card__meta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem;
}
.biblioteca-doc-card__badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 0.5rem;
}
.biblioteca-doc-card__badge--category {
  border: 1px solid hsl(0, 0%, 90%);
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 0%, 10%);
}
.biblioteca-doc-card__badge--type {
  background-color: hsl(0, 0%, 96%);
  color: hsl(0, 0%, 10%);
}
.biblioteca-doc-card__info {
  font-size: 0.875rem;
  color: hsl(0, 0%, 45%);
}
.biblioteca-doc-card__download {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background-color: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 98%);
  border-radius: 0.5rem;
  text-decoration: none;
  font-weight: 500;
  transition: background-color 0.25s ease;
  white-space: nowrap;
}
.biblioteca-doc-card__download:hover {
  background-color: hsla(0, 0%, 10%, 0.9);
}
.biblioteca-doc-card__download .material-symbols-rounded {
  font-size: 1rem;
  font-family: 'Material Symbols Rounded', sans-serif;
}
.biblioteca-doc-card__description {
  color: hsl(0, 0%, 45%);
  line-height: 1.5rem;
  margin: 0;
}
.biblioteca-doc-card__description p {
  margin: 0 0 0.5rem 0;
}
.biblioteca-doc-card__description p:last-child {
  margin-bottom: 0;
}
.biblioteca-doc-card__description ul,
.biblioteca-doc-card__description ol {
  margin: 0.5rem 0;
  padding-left: 1.5rem;
}
.biblioteca-doc-card__description li {
  margin: 0.25rem 0;
}
.biblioteca-doc-card__description a {
  color: hsl(0, 0%, 10%);
  text-decoration: underline;
}
.biblioteca-doc-card__description a:hover {
  color: hsla(0, 0%, 10%, 0.8);
}
.biblioteca-doc-card__description strong {
  font-weight: 700;
}
.biblioteca-doc-card__description em {
  font-style: italic;
}
.biblioteca-empty {
  max-width: 32rem;
  margin: 4rem auto;
  text-align: center;
  padding: 3rem 1.5rem;
}
.biblioteca-empty .material-symbols-rounded {
  font-size: 4rem;
  color: hsl(0, 0%, 45%);
  margin-bottom: 1rem;
  font-family: 'Material Symbols Rounded', sans-serif;
}
.biblioteca-empty h2 {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.biblioteca-empty p {
  color: hsl(0, 0%, 45%);
  margin-bottom: 1.5rem;
}
.biblioteca-info-card {
  max-width: 60rem;
  margin: 3rem auto 0;
  padding: 2rem;
  background-color: hsla(0, 0%, 96%, 0.5);
  border-radius: 0.75rem;
  display: flex;
  gap: 1rem;
}
@media (max-width: 576px) {
  .biblioteca-info-card {
    flex-direction: column;
    padding: 1.5rem;
  }
}
.biblioteca-info-card__icon-wrapper {
  flex-shrink: 0;
}
.biblioteca-info-card__icon {
  font-size: 3rem;
  color: hsl(0, 0%, 10%);
  font-family: 'Material Symbols Rounded', sans-serif;
}
.biblioteca-info-card__content {
  flex: 1;
}
.biblioteca-info-card__title {
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
}
.biblioteca-info-card__description {
  color: hsl(0, 0%, 45%);
  margin-bottom: 1rem;
  line-height: 1.5rem;
}
.biblioteca-info-card__note {
  font-size: 0.875rem;
  color: hsl(0, 0%, 45%);
  margin: 0;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
.checkout {
  padding: 2.5rem 0 5rem;
  background: hsl(0, 0%, 100%);
  min-height: 60vh;
  width: 100%;
}
.checkout .container {
  width: 100%;
  margin: 0 auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
  max-width: 1400px;
}
@media (min-width: 1440px) {
  .checkout .container {
    max-width: 1400px;
  }
}
@media (min-width: 1440px) {
  .checkout .container {
    max-width: 1400px;
  }
}
.checkout__header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2.5rem;
}
@media (max-width: 768px) {
  .checkout__header {
    margin-bottom: 2rem;
  }
}
.checkout__icon {
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: 'Material Symbols Rounded', sans-serif;
  font-size: 1.75rem;
  color: hsl(0, 0%, 10%);
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}
.checkout__title {
  margin: 0;
  font-size: clamp(1.5rem, 3vw, 1.875rem);
  line-height: clamp(2rem, 3.5vw, 2.25rem);
}
.checkout__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2rem;
  width: 100%;
}
@media (min-width: 992px) {
  .checkout__grid {
    grid-template-columns: minmax(0, 1fr) 420px;
    align-items: start;
    gap: 2.5rem;
  }
}
.checkout__form {
  display: grid;
  gap: 1.5rem;
  width: 100%;
}
@media (min-width: 992px) {
  .checkout__form {
    gap: 2rem;
  }
}
.checkout__summary {
  width: 100%;
}
@media (min-width: 992px) {
  .checkout__summary {
    position: sticky;
    top: 7rem;
    align-self: start;
    max-height: calc(100vh - 8rem);
    overflow-y: auto;
  }
}
.checkout .card {
  background-color: hsl(0, 0%, 100%);
  border-radius: 0.75rem;
  border: 1px solid hsl(0, 0%, 90%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 0;
  margin-bottom: 1.5rem;
  overflow: hidden;
  border: 1px solid hsla(0, 0%, 90%, 0.6);
}
.checkout .card__header {
  padding: 2rem 2rem 0;
  display: grid;
  gap: 0.5rem;
}
.checkout .card__title {
  margin: 0;
}
.checkout .card__subtitle {
  margin: 0;
  color: hsl(0, 0%, 45%);
}
.checkout .card__body {
  padding: 2rem;
  border-top: 1px solid hsla(0, 0%, 90%, 0.6);
  border-bottom: 1px solid hsla(0, 0%, 90%, 0.6);
  display: grid;
  gap: 1.25rem;
}
.checkout .card__footer {
  padding: 2rem;
  display: grid;
  gap: 1rem;
}
.checkout .card__note {
  margin: 0;
  color: hsl(0, 0%, 45%);
  font-size: 0.85rem;
}
.checkout .card--sticky {
  position: sticky;
  top: 7rem;
}
.checkout .card:last-child {
  margin-bottom: 0;
}
.checkout .card__header {
  padding: 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  border-bottom: none;
  background: transparent;
}
@media (max-width: 768px) {
  .checkout .card__header {
    padding: 1.5rem 1.5rem;
  }
}
.checkout .card__title {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(0, 0%, 10%);
}
.checkout .card__body {
  padding: 1.5rem;
  background: hsl(0, 0%, 100%);
}
@media (max-width: 768px) {
  .checkout .card__body {
    padding: 1.5rem;
  }
}
.checkout .card__footer {
  padding: 1.5rem;
  border-top: 1px solid hsla(0, 0%, 90%, 0.6);
  background: hsla(0, 0%, 96%, 0.25);
}
@media (max-width: 768px) {
  .checkout .card__footer {
    padding: 1.5rem;
  }
}
.checkout .card__note {
  margin: 0;
  color: hsl(0, 0%, 45%);
  font-size: 0.85rem;
  text-align: center;
  line-height: 1.5;
}
@media (min-width: 992px) {
  .checkout .card--sticky {
    position: sticky;
    top: 7rem;
  }
}
.checkout .card__icon {
  font-family: 'Material Symbols Rounded', sans-serif;
  font-size: 1.5rem;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  line-height: 1;
  flex-shrink: 0;
  display: inline-block;
}
.checkout .radio-group {
  display: grid;
  gap: 0.5rem;
}
.checkout .radio-card {
  border: 1px solid rgba(224, 220, 209, 0.65);
  border-radius: 0.75rem;
  padding: 1rem;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  cursor: pointer;
  transition: all 0.25s ease;
  background: hsl(0, 0%, 100%);
  position: relative;
}
.checkout .radio-card:hover {
  background: hsla(0, 0%, 96%, 0.2);
  border-color: hsla(0, 0%, 10%, 0.5);
  transform: translateY(-2px);
}
.checkout .radio-card input {
  margin-top: 0.25rem;
  cursor: pointer;
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.checkout .radio-card:has(input:checked) {
  border-color: hsl(0, 0%, 10%);
  background: hsla(0, 0%, 10%, 0.06);
}
.checkout .radio-card__content {
  display: grid;
  gap: 0.35rem;
  flex: 1;
}
.checkout .radio-card__title {
  font-weight: 600;
  margin: 0;
  color: hsl(0, 0%, 10%);
}
.checkout .radio-card__description {
  margin: 0;
  color: hsl(0, 0%, 45%);
  font-size: 0.9rem;
  line-height: 1.4;
}
.checkout .radio-card__price {
  margin-top: 0.25rem;
  font-weight: 700;
  color: hsl(0, 0%, 10%);
  font-size: 1rem;
}
.checkout .radio-card__time {
  margin-top: 0.25rem;
  font-size: 0.85rem;
  color: hsl(0, 0%, 45%);
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.checkout .mini-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.5rem;
  max-height: 400px;
  overflow-y: auto;
  padding-right: 0.5rem;
}
.checkout .mini-list::-webkit-scrollbar {
  width: 6px;
}
.checkout .mini-list::-webkit-scrollbar-track {
  background: hsla(0, 0%, 96%, 0.3);
  border-radius: 3px;
}
.checkout .mini-list::-webkit-scrollbar-thumb {
  background: hsla(0, 0%, 90%, 0.6);
  border-radius: 3px;
}
.checkout .mini-list::-webkit-scrollbar-thumb:hover {
  background: hsla(0, 0%, 90%, 0.8);
}
.checkout .mini-list__item {
  display: flex;
  gap: 1rem;
  align-items: center;
  padding: 0;
}
.checkout .mini-list__thumb {
  position: relative;
  width: 82px;
  border-radius: 0.5rem;
  border: 1px solid hsla(0, 0%, 90%, 0.6);
  flex-shrink: 0;
  background: hsl(0, 0%, 100%);
}
.checkout .mini-list__thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.checkout .mini-list__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  background: hsl(0, 0%, 10%);
  color: hsl(0, 0%, 98%);
  position: absolute;
  top: -0.4rem;
  right: -0.4rem;
  font-size: 0.7rem;
  padding: 0.2rem 0.5rem;
  width: 1.5rem;
  height: 1.5rem;
  text-align: center;
}
.checkout .mini-list__details {
  display: grid;
  gap: 0.35rem;
  flex: 1;
  min-width: 0;
}
.checkout .mini-list__name {
  margin: 0;
  font-weight: 500;
  font-size: 0.875rem;
  line-height: 1.25rem;
  color: hsl(0, 0%, 10%);
}
.checkout .mini-list__price {
  margin: 0;
  color: hsl(0, 0%, 10%);
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.checkout .totals {
  display: grid;
  gap: 0;
  margin-top: 0rem;
  padding-top: 0.5rem;
  border-top: 1px solid hsla(0, 0%, 90%, 0.6);
}
.checkout .totals__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: hsl(0, 0%, 45%);
  font-size: 0.95rem;
  padding: 0.5rem 0;
}
.checkout .totals__row dt {
  margin: 0;
  font-weight: 500;
}
.checkout .totals__row dd {
  margin: 0;
  font-weight: 600;
  color: hsl(0, 0%, 10%);
}
.checkout .totals__row--total {
  font-size: 1.125rem;
  line-height: 1.75rem;
  font-weight: 700;
  color: hsl(0, 0%, 10%);
  padding: 1rem 0;
}
.checkout .totals__row--total dt,
.checkout .totals__row--total dd {
  color: hsl(0, 0%, 10%);
  font-weight: 700;
}
.checkout .totals__divider {
  height: 1px;
  background: hsla(0, 0%, 90%, 0.6);
  margin: 0.5rem 0;
}
.checkout .button--full {
  width: 100%;
}
.checkout .button--large {
  padding: 1rem 1.5rem;
  font-size: 1.05rem;
  font-weight: 600;
}
.checkout-email-message {
  margin-top: 0.75rem;
}
.checkout-email-message__content {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.checkout-email-message__content--info {
  background-color: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(59, 130, 246, 0.2);
  color: #2563eb;
}
.checkout-email-message__content .material-symbols-rounded {
  font-size: 1.25rem;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.checkout-email-message__text {
  margin: 0;
  flex: 1;
}
.checkout-email-message__link {
  color: inherit;
  text-decoration: underline;
  font-weight: 500;
  transition: opacity 0.25s ease;
}
.checkout-email-message__link:hover {
  opacity: 0.8;
}
.order-confirmation {
  padding: 3rem 0 4rem;
}
@media (min-width: 768px) {
  .order-confirmation {
    padding: 5rem 0 6rem;
  }
}
.order-confirmation__container {
  max-width: 42rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .order-confirmation__container {
    padding: 0 2rem;
  }
}
.order-confirmation__content {
  width: 100%;
}
.order-confirmation__header {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .order-confirmation__header {
    margin-bottom: 2rem;
  }
}
.order-confirmation__icon-wrapper {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: hsl(150, 55%, 25%);
  margin-bottom: 1rem;
}
.order-confirmation__icon {
  font-size: 3rem;
  line-height: 1;
  color: hsl(42, 45%, 97%);
  font-family: 'Material Symbols Rounded', sans-serif;
  font-weight: 400;
  font-style: normal;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  display: inline-block;
  width: 1em;
  height: 1em;
}
.order-confirmation__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: hsl(150, 55%, 25%);
}
@media (min-width: 768px) {
  .order-confirmation__title {
    font-size: 2.25rem;
  }
}
.order-confirmation__subtitle {
  font-size: 1.125rem;
  color: hsl(150, 15%, 45%);
  line-height: 1.6;
}
.order-confirmation__card {
  background: hsl(0, 0%, 100%);
  border-radius: 0.75rem;
  border: 1px solid hsl(42, 20%, 85%);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  padding: 1.5rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 768px) {
  .order-confirmation__card {
    padding: 2rem;
    margin-bottom: 1.5rem;
  }
}
.order-confirmation__card-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.5rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid hsl(42, 20%, 85%);
}
@media (min-width: 768px) {
  .order-confirmation__card-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
  }
}
.order-confirmation__detail-label {
  font-size: 0.875rem;
  color: hsl(150, 15%, 45%);
  margin-bottom: 0.25rem;
}
.order-confirmation__detail-value {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(150, 40%, 15%);
}
.order-confirmation__detail-value--primary {
  font-weight: 700;
  color: hsl(150, 55%, 25%);
}
.order-confirmation__detail-value--date {
  font-weight: 600;
  color: hsl(150, 40%, 15%);
}
.order-confirmation__info-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 1.5rem;
  border-top: 1px solid hsl(42, 20%, 85%);
}
.order-confirmation__info-item {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
}
.order-confirmation__info-icon {
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(150, 55%, 25%);
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.order-confirmation__info-content {
  flex: 1;
}
.order-confirmation__info-title {
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: hsl(150, 55%, 25%);
}
.order-confirmation__info-text {
  font-size: 0.875rem;
  color: hsl(150, 15%, 45%);
  line-height: 1.5;
}
.order-confirmation__create-account {
  margin-top: 2rem;
  margin-bottom: 2rem;
  padding-top: 2rem;
  border-top: 1px solid hsl(0, 0%, 90%);
}
.order-confirmation__create-account-content {
  text-align: center;
  padding: 2rem;
  background: hsla(0, 0%, 10%, 0.04);
  border-radius: 0.75rem;
  border: 1px solid hsla(0, 0%, 10%, 0.15);
}
.order-confirmation__create-account-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.75rem;
  color: hsl(0, 0%, 10%);
}
.order-confirmation__create-account-text {
  font-size: 0.875rem;
  color: hsl(0, 0%, 45%);
  margin-bottom: 1.5rem;
  line-height: 1.5rem;
}
.order-confirmation__create-account-hint {
  font-size: 0.875rem;
  color: hsl(0, 0%, 45%);
  margin-top: 1rem;
  margin-bottom: 0;
}
.order-confirmation__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
}
@media (min-width: 576px) {
  .order-confirmation__actions {
    flex-direction: row;
    gap: 0.75rem;
  }
}
.order-confirmation__actions .button {
  flex: 1;
  min-width: 0;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 500;
  border-radius: 0.5rem;
  text-align: center;
  text-decoration: none;
  transition: all 0.2s ease;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.75rem;
}
.order-confirmation__actions .button--primary {
  background: hsl(0, 0%, 10%);
  color: hsl(42, 45%, 97%);
  border: none;
}
.order-confirmation__actions .button--primary:hover {
  background: hsl(0, 0%, 45%);
}
.order-confirmation__actions .button--outline {
  background: transparent;
  color: hsl(0, 0%, 10%);
  border: 1px solid hsl(0, 0%, 10%);
}
.order-confirmation__actions .button--outline:hover {
  background: hsl(0, 85%, 45%);
  color: hsl(0, 0%, 98%);
  border: 1px solid hsl(0, 0%, 98%);
}
.account-page {
  padding: 3rem 0 4rem;
  background: hsl(42, 45%, 97%);
}
@media (min-width: 768px) {
  .account-page {
    padding: 4rem 0 5rem;
  }
}
.account-page__header {
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .account-page__header {
    margin-bottom: 3rem;
  }
}
.account-page__title {
  font-size: 1.875rem;
  font-weight: 700;
  color: hsl(150, 40%, 15%);
  margin-bottom: 0.5rem;
}
@media (min-width: 768px) {
  .account-page__title {
    font-size: 2.25rem;
  }
}
.account-page__subtitle {
  color: hsl(150, 15%, 45%);
  font-size: 1rem;
}
.account-page__content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .account-page__content {
    max-width: 56rem;
    margin: 0 auto;
  }
}
.account-page__alert {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.75rem;
  margin-bottom: 1rem;
}
.account-page__alert i {
  font-size: 2rem;
  flex-shrink: 0;
}
.account-page__alert--success {
  background: linear-gradient(135deg, hsl(142, 76%, 81%) 0%, hsl(142, 76%, 86%) 100%);
  border: 2px solid hsl(142, 76%, 36%);
}
.account-page__alert--success i {
  color: hsl(142, 76%, 36%);
}
.account-page__alert-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(0, 0%, 10%);
  margin-bottom: 0.25rem;
}
.account-page__alert-message {
  font-size: 0.875rem;
  color: hsl(0, 0%, 45%);
  line-height: 1.5rem;
  margin: 0;
}
.account-page__verification-banner {
  background: linear-gradient(135deg, hsl(30, 100%, 55%) 0%, hsl(30, 100%, 55%) 100%);
  border: 2px solid hsl(30, 100%, 55%);
  border-radius: 0.75rem;
  padding: 1rem;
  margin-bottom: 1rem;
}
.account-page__verification-content {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}
.account-page__verification-icon {
  font-size: 2rem;
  color: hsl(30, 100%, 55%);
  flex-shrink: 0;
}
.account-page__verification-text {
  flex: 1;
}
.account-page__verification-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(0, 0%, 10%);
  margin-bottom: 0.25rem;
}
.account-page__verification-message {
  font-size: 0.875rem;
  color: hsl(0, 0%, 45%);
  line-height: 1.5rem;
  margin: 0;
}
.account-page__verification-feedback {
  margin-top: 0.75rem;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.875rem;
}
.account-page__verification-feedback--success {
  background-color: hsl(142, 76%, 81%);
  color: hsl(142, 76%, 26%);
  border: 1px solid hsl(142, 76%, 66%);
}
.account-page__verification-feedback--error {
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 84%, 50%);
  border: 1px solid hsl(0, 84%, 90%);
}
.account-card {
  background: hsl(0, 0%, 100%);
  border-radius: 0.75rem;
  border: 1px solid hsl(42, 20%, 85%);
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px 0 rgba(0, 0, 0, 0.06);
  overflow: hidden;
}
.account-card__header {
  padding: 1.5rem;
  border-bottom: 1px solid hsl(42, 20%, 85%);
}
.account-card__title-wrapper {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}
.account-card__icon {
  font-size: 1.25rem;
  width: 1.25rem;
  height: 1.25rem;
  color: hsl(150, 55%, 25%);
  font-family: 'Material Symbols Rounded', sans-serif;
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
  flex-shrink: 0;
  margin-top: 0.125rem;
}
.account-card__title {
  font-size: 1.25rem;
  font-weight: 600;
  color: hsl(150, 40%, 15%);
  margin: 0 0 0.25rem 0;
}
.account-card__subtitle {
  font-size: 0.875rem;
  color: hsl(150, 15%, 45%);
  margin: 0;
}
.account-card__body {
  padding: 1.5rem;
}
.account-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
.account-form__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .account-form__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (min-width: 768px) {
  .account-form__grid--three {
    grid-template-columns: 1fr 1fr 1fr;
  }
}
.account-form__field {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}
.account-form__field label {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(150, 40%, 15%);
}
.account-form__field input {
  width: 100%;
  padding: 0.5rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid hsl(42, 20%, 85%);
  background: hsl(42, 30%, 90%);
  color: hsl(150, 40%, 15%);
  font-size: 0.875rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.account-form__field input:focus {
  outline: none;
  border-color: hsl(150, 55%, 25%);
  box-shadow: 0 0 0 2px hsl(150, 55%, 25%);
}
.account-form__field input:disabled {
  background: hsl(42, 30%, 90%);
  color: hsl(150, 15%, 45%);
  cursor: not-allowed;
}
.account-form__field input::placeholder {
  color: hsl(150, 15%, 45%);
}
.account-form .button {
  margin-top: 0.5rem;
  align-self: flex-start;
}
.login-page {
  padding: 3rem 0 4rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .login-page {
    padding: 5rem 0 6rem;
  }
}
.login-page__wrapper {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .login-page__wrapper {
    padding: 0 2rem;
  }
}
.login-page__content {
  width: 100%;
}
.login-page__header {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .login-page__header {
    margin-bottom: 2.5rem;
  }
}
.login-page__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: hsl(0, 0%, 10%);
}
@media (min-width: 768px) {
  .login-page__title {
    font-size: 2.25rem;
  }
}
.login-page__subtitle {
  font-size: 0.875rem;
  color: hsl(0, 0%, 45%);
  line-height: 1.5rem;
}
.login-page__alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}
.login-page__alert--error {
  background-color: rgba(239, 68, 68, 0.1);
  color: hsl(0, 84%, 60%);
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.login-page__alert--success {
  background-color: rgba(34, 197, 94, 0.1);
  color: hsl(142, 76%, 36%);
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.login-page__alert .material-symbols-rounded {
  font-size: 1.25rem;
  flex-shrink: 0;
}
.login-form {
  background-color: hsl(0, 0%, 100%);
  border-radius: 0.75rem;
  border: 1px solid hsl(0, 0%, 90%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 2rem;
}
.login-form__header {
  padding: 2rem 2rem 0;
  display: grid;
  gap: 0.5rem;
}
.login-form__title {
  margin: 0;
}
.login-form__subtitle {
  margin: 0;
  color: hsl(0, 0%, 45%);
}
.login-form__body {
  padding: 2rem;
  border-top: 1px solid hsla(0, 0%, 90%, 0.6);
  border-bottom: 1px solid hsla(0, 0%, 90%, 0.6);
  display: grid;
  gap: 1.25rem;
}
.login-form__footer {
  padding: 2rem;
  display: grid;
  gap: 1rem;
}
.login-form__note {
  margin: 0;
  color: hsl(0, 0%, 45%);
  font-size: 0.85rem;
}
.login-form--sticky {
  position: sticky;
  top: 7rem;
}
@media (min-width: 768px) {
  .login-form {
    padding: 2.5rem;
  }
}
.login-form__field {
  margin-bottom: 1.5rem;
}
.login-form__field:last-of-type {
  margin-bottom: 0;
}
.login-form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(0, 0%, 10%);
  margin-bottom: 0.5rem;
}
.login-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: hsl(0, 0%, 10%);
  background-color: hsl(0, 0%, 100%);
  border: 1px solid hsl(0, 0%, 90%);
  border-radius: 0.5rem;
  transition: all 0.25s ease;
}
.login-form__input:focus {
  outline: none;
  border-color: hsl(0, 0%, 10%);
  box-shadow: 0 0 0 3px rgba(22, 53, 39, 0.1);
}
.login-form__input::placeholder {
  color: hsl(0, 0%, 45%);
}
.login-form__actions {
  margin-top: 2rem;
}
.login-form__footer {
  margin-top: 1.5rem;
  text-align: center;
}
.login-form__footer-text {
  font-size: 0.875rem;
  color: hsl(0, 0%, 45%);
  margin-bottom: 0.5rem;
}
.login-form__footer-text:last-child {
  margin-bottom: 0;
}
.login-form__link {
  color: hsl(0, 0%, 10%);
  text-decoration: underline;
  transition: color 0.25s ease;
}
.login-form__link:hover {
  color: hsl(0, 85%, 45%);
}
.button--full {
  width: 100%;
}
.register-page {
  padding: 2rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .register-page {
    padding: 3rem 0;
  }
}
.register-page__wrapper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.register-page__content {
  background-color: hsl(0, 0%, 100%);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
@media (min-width: 768px) {
  .register-page__content {
    padding: 2rem;
  }
}
.register-page__header {
  text-align: center;
  margin-bottom: 1.5rem;
}
.register-page__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(0, 0%, 10%);
  margin-bottom: 0.5rem;
}
.register-page__subtitle {
  font-size: 0.875rem;
  color: hsl(0, 0%, 45%);
  line-height: 1.5rem;
}
.register-page__alert {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  padding: 0.75rem 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
  font-size: 0.875rem;
  line-height: 1.25rem;
}
.register-page__alert i {
  font-size: 1.25rem;
  flex-shrink: 0;
}
.register-page__alert span {
  flex: 1;
}
.register-page__alert a {
  color: inherit;
  text-decoration: underline;
}
.register-page__alert--error {
  background-color: hsl(0, 0%, 100%);
  color: hsl(0, 84%, 50%);
  border: 1px solid hsl(0, 84%, 90%);
}
.register-page__alert--success {
  background-color: hsl(142, 76%, 81%);
  color: hsl(142, 76%, 26%);
  border: 1px solid hsl(142, 76%, 66%);
}
.register-form__row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1rem;
}
@media (min-width: 768px) {
  .register-form__row {
    grid-template-columns: 1fr 1fr;
  }
}
.register-form__field {
  margin-bottom: 1rem;
}
.register-form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(0, 0%, 10%);
  margin-bottom: 0.5rem;
}
.register-form__required {
  color: hsl(0, 84%, 60%);
}
.register-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: hsl(0, 0%, 10%);
  background-color: hsl(0, 0%, 100%);
  border: 1px solid hsl(0, 0%, 90%);
  border-radius: 0.5rem;
  transition: all 0.25s ease;
}
.register-form__input:focus {
  outline: none;
  border-color: hsl(0, 0%, 10%);
  box-shadow: 0 0 0 3px hsla(0, 0%, 10%, 0.1);
}
.register-form__input.is-invalid {
  border-color: hsl(0, 84%, 60%);
}
.register-form__input.is-invalid:focus {
  box-shadow: 0 0 0 3px hsla(0, 84%, 60%, 0.1);
}
.register-form__input::placeholder {
  color: hsl(0, 0%, 45%);
}
.register-form__error {
  display: block;
  font-size: 0.75rem;
  color: hsl(0, 84%, 60%);
  margin-top: 0.25rem;
}
.register-form__help {
  display: block;
  font-size: 0.75rem;
  color: hsl(0, 0%, 45%);
  margin-top: 0.25rem;
}
.register-form__actions {
  margin-top: 1.5rem;
  margin-bottom: 1rem;
}
.register-form__footer {
  text-align: center;
  padding-top: 1rem;
  border-top: 1px solid hsl(0, 0%, 90%);
}
.register-form__footer-text {
  font-size: 0.875rem;
  color: hsl(0, 0%, 45%);
  margin: 0;
}
.register-form__link {
  color: hsl(0, 0%, 10%);
  text-decoration: none;
  font-weight: 500;
}
.register-form__link:hover {
  text-decoration: underline;
}
.verify-email-page {
  padding: 2rem 0;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .verify-email-page {
    padding: 3rem 0;
  }
}
.verify-email-page__wrapper {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.verify-email-page__content {
  background-color: hsl(0, 0%, 100%);
  border-radius: 0.75rem;
  padding: 1.5rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  text-align: center;
}
@media (min-width: 768px) {
  .verify-email-page__content {
    padding: 2rem;
  }
}
.verify-email-page__alert {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.verify-email-page__alert i {
  font-size: 4rem;
  margin-bottom: 0.5rem;
}
.verify-email-page__alert--error i {
  color: hsl(0, 84%, 60%);
}
.verify-email-page__alert--success i {
  color: hsl(142, 76%, 36%);
}
.verify-email-page__title {
  font-size: 1.5rem;
  font-weight: 700;
  color: hsl(0, 0%, 10%);
  margin-bottom: 0.75rem;
}
.verify-email-page__message {
  font-size: 0.875rem;
  color: hsl(0, 0%, 45%);
  line-height: 1.5rem;
  margin-bottom: 1.5rem;
}
.verify-email-page__actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  width: 100%;
  max-width: 300px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .verify-email-page__actions {
    flex-direction: row;
    justify-content: center;
  }
}
.create-password-page {
  padding: 3rem 0 4rem;
  min-height: 60vh;
  display: flex;
  align-items: center;
}
@media (min-width: 768px) {
  .create-password-page {
    padding: 5rem 0 6rem;
  }
}
.create-password-page__wrapper {
  width: 100%;
  max-width: 28rem;
  margin: 0 auto;
  padding: 0 1rem;
}
@media (min-width: 768px) {
  .create-password-page__wrapper {
    padding: 0 2rem;
  }
}
.create-password-page__content {
  width: 100%;
}
.create-password-page__header {
  text-align: center;
  margin-bottom: 2rem;
}
@media (min-width: 768px) {
  .create-password-page__header {
    margin-bottom: 2.5rem;
  }
}
.create-password-page__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: hsl(0, 0%, 10%);
}
@media (min-width: 768px) {
  .create-password-page__title {
    font-size: 2.25rem;
  }
}
.create-password-page__subtitle {
  font-size: 0.875rem;
  color: hsl(0, 0%, 45%);
  line-height: 1.5rem;
}
.create-password-page__alert {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem;
  border-radius: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
}
.create-password-page__alert--error {
  background-color: rgba(239, 68, 68, 0.1);
  color: hsl(0, 84%, 60%);
  border: 1px solid rgba(239, 68, 68, 0.2);
}
.create-password-page__alert--success {
  background-color: rgba(34, 197, 94, 0.1);
  color: hsl(142, 76%, 36%);
  border: 1px solid rgba(34, 197, 94, 0.2);
}
.create-password-page__alert .material-symbols-rounded {
  font-size: 1.25rem;
  flex-shrink: 0;
}
.create-password-page__actions {
  margin-top: 2rem;
  text-align: center;
}
.create-password-form {
  background-color: hsl(0, 0%, 100%);
  border-radius: 0.75rem;
  border: 1px solid hsl(0, 0%, 90%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 2rem;
}
.create-password-form__header {
  padding: 2rem 2rem 0;
  display: grid;
  gap: 0.5rem;
}
.create-password-form__title {
  margin: 0;
}
.create-password-form__subtitle {
  margin: 0;
  color: hsl(0, 0%, 45%);
}
.create-password-form__body {
  padding: 2rem;
  border-top: 1px solid hsla(0, 0%, 90%, 0.6);
  border-bottom: 1px solid hsla(0, 0%, 90%, 0.6);
  display: grid;
  gap: 1.25rem;
}
.create-password-form__footer {
  padding: 2rem;
  display: grid;
  gap: 1rem;
}
.create-password-form__note {
  margin: 0;
  color: hsl(0, 0%, 45%);
  font-size: 0.85rem;
}
.create-password-form--sticky {
  position: sticky;
  top: 7rem;
}
@media (min-width: 768px) {
  .create-password-form {
    padding: 2.5rem;
  }
}
.create-password-form__field {
  margin-bottom: 1.5rem;
}
.create-password-form__field:last-of-type {
  margin-bottom: 0;
}
.create-password-form__label {
  display: block;
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(0, 0%, 10%);
  margin-bottom: 0.5rem;
}
.create-password-form__input {
  width: 100%;
  padding: 0.75rem 1rem;
  font-size: 0.875rem;
  line-height: 1.5rem;
  color: hsl(0, 0%, 10%);
  background-color: hsl(0, 0%, 100%);
  border: 1px solid hsl(0, 0%, 90%);
  border-radius: 0.5rem;
  transition: all 0.25s ease;
}
.create-password-form__input:focus {
  outline: none;
  border-color: hsl(0, 0%, 10%);
  box-shadow: 0 0 0 3px rgba(22, 53, 39, 0.1);
}
.create-password-form__input::placeholder {
  color: hsl(0, 0%, 45%);
}
.create-password-form__hint {
  font-size: 0.75rem;
  color: hsl(0, 0%, 45%);
  margin-top: 0.5rem;
  margin-bottom: 0;
}
.create-password-form__actions {
  margin-top: 2rem;
}
.orders-page {
  padding: 3rem 0 4rem;
}
@media (min-width: 768px) {
  .orders-page {
    padding: 5rem 0 6rem;
  }
}
.orders-page__header {
  margin-bottom: 3rem;
  text-align: center;
}
@media (min-width: 768px) {
  .orders-page__header {
    text-align: left;
  }
}
.orders-page__title {
  font-size: 1.875rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
  color: hsl(0, 0%, 10%);
}
@media (min-width: 768px) {
  .orders-page__title {
    font-size: 2.25rem;
  }
}
.orders-page__subtitle {
  font-size: 0.875rem;
  color: hsl(0, 0%, 45%);
  line-height: 1.5rem;
}
.orders-page__content {
  max-width: 48rem;
  margin: 0 auto;
}
.orders-page__empty {
  background-color: hsl(0, 0%, 100%);
  border-radius: 0.75rem;
  border: 1px solid hsl(0, 0%, 90%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 4rem 2rem;
  text-align: center;
}
.orders-page__empty__header {
  padding: 2rem 2rem 0;
  display: grid;
  gap: 0.5rem;
}
.orders-page__empty__title {
  margin: 0;
}
.orders-page__empty__subtitle {
  margin: 0;
  color: hsl(0, 0%, 45%);
}
.orders-page__empty__body {
  padding: 2rem;
  border-top: 1px solid hsla(0, 0%, 90%, 0.6);
  border-bottom: 1px solid hsla(0, 0%, 90%, 0.6);
  display: grid;
  gap: 1.25rem;
}
.orders-page__empty__footer {
  padding: 2rem;
  display: grid;
  gap: 1rem;
}
.orders-page__empty__note {
  margin: 0;
  color: hsl(0, 0%, 45%);
  font-size: 0.85rem;
}
.orders-page__empty--sticky {
  position: sticky;
  top: 7rem;
}
@media (min-width: 768px) {
  .orders-page__empty {
    padding: 5rem 3rem;
  }
}
.orders-page__empty-icon {
  font-size: 4rem;
  color: hsl(0, 0%, 45%);
  margin-bottom: 1.5rem;
  opacity: 0.5;
}
.orders-page__empty-title {
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: hsl(0, 0%, 10%);
}
.orders-page__empty-text {
  font-size: 0.875rem;
  color: hsl(0, 0%, 45%);
  margin-bottom: 2rem;
}
.orders-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.orders-list__item {
  background-color: hsl(0, 0%, 100%);
  border-radius: 0.75rem;
  border: 1px solid hsl(0, 0%, 90%);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  padding: 1.5rem;
}
.orders-list__item__header {
  padding: 2rem 2rem 0;
  display: grid;
  gap: 0.5rem;
}
.orders-list__item__title {
  margin: 0;
}
.orders-list__item__subtitle {
  margin: 0;
  color: hsl(0, 0%, 45%);
}
.orders-list__item__body {
  padding: 2rem;
  border-top: 1px solid hsla(0, 0%, 90%, 0.6);
  border-bottom: 1px solid hsla(0, 0%, 90%, 0.6);
  display: grid;
  gap: 1.25rem;
}
.orders-list__item__footer {
  padding: 2rem;
  display: grid;
  gap: 1rem;
}
.orders-list__item__note {
  margin: 0;
  color: hsl(0, 0%, 45%);
  font-size: 0.85rem;
}
.orders-list__item--sticky {
  position: sticky;
  top: 7rem;
}
@media (min-width: 768px) {
  .orders-list__item {
    padding: 2rem;
  }
}
.orders-list__header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  margin-bottom: 1.5rem;
  padding-bottom: 1.5rem;
  border-bottom: 1px solid hsl(0, 0%, 90%);
}
@media (min-width: 768px) {
  .orders-list__header {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
.orders-list__info {
  flex: 1;
}
.orders-list__number {
  font-size: 1.125rem;
  font-weight: 600;
  margin-bottom: 0.25rem;
  color: hsl(0, 0%, 10%);
}
.orders-list__date {
  font-size: 0.875rem;
  color: hsl(0, 0%, 45%);
  margin: 0;
}
.orders-list__status-wrapper {
  flex-shrink: 0;
}
.orders-list__status {
  display: inline-flex;
  align-items: center;
  padding: 0.375rem 0.75rem;
  border-radius: 0.5rem;
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.orders-list__status--pending {
  background-color: rgba(251, 191, 36, 0.1);
  color: #d97706;
}
.orders-list__status--confirmed {
  background-color: rgba(59, 130, 246, 0.1);
  color: #2563eb;
}
.orders-list__status--preparing {
  background-color: rgba(139, 92, 246, 0.1);
  color: #7c3aed;
}
.orders-list__status--shipped {
  background-color: rgba(34, 197, 94, 0.1);
  color: hsl(142, 76%, 36%);
}
.orders-list__status--delivered {
  background-color: rgba(34, 197, 94, 0.15);
  color: hsl(142, 76%, 36%);
  font-weight: 600;
}
.orders-list__status--cancelled {
  background-color: rgba(239, 68, 68, 0.1);
  color: hsl(0, 84%, 60%);
}
.orders-list__details {
  display: grid;
  grid-template-columns: repeat(1, minmax(0, 1fr));
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}
@media (min-width: 576px) {
  .orders-list__details {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
.orders-list__detail-item {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}
.orders-list__detail-item--total {
  grid-column: 1 / -1;
  padding-top: 0.75rem;
  margin-top: 0.75rem;
  border-top: 1px solid hsl(0, 0%, 90%);
}
@media (min-width: 576px) {
  .orders-list__detail-item--total {
    grid-column: 2;
  }
}
.orders-list__detail-label {
  font-size: 0.75rem;
  color: hsl(0, 0%, 45%);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}
.orders-list__detail-value {
  font-size: 0.875rem;
  font-weight: 500;
  color: hsl(0, 0%, 10%);
}
.orders-list__detail-item--total .orders-list__detail-value {
  font-size: 1.125rem;
  font-weight: 600;
  color: hsl(0, 0%, 10%);
}
.orders-list__actions {
  display: flex;
  gap: 0.75rem;
  justify-content: flex-end;
}
