@charset "UTF-8";
.products-hero {
  width: 100%;
  padding-top: 60px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #000;
}
@media (min-width: 768px) {
  .products-hero {
    padding-top: 80px;
  }
}

.products-hero__title {
  color: #fff;
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  text-align: center;
}
@media (min-width: 768px) {
  .products-hero__title {
    font-size: 45px;
  }
}

.products-hero__banner {
  width: 100%;
}
.products-hero__banner img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.3);
}

.products-layout {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 40px 1.5rem 60px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  position: relative;
}
@media (min-width: 768px) {
  .products-layout {
    padding-top: 60px;
    padding-bottom: 80px;
    gap: 50px;
  }
}
@media (min-width: 1024px) {
  .products-layout {
    flex-direction: row;
  }
}

.products-mobile-filter-wrap {
  width: 100%;
  display: flex;
  justify-content: flex-start;
}
@media (min-width: 1024px) {
  .products-mobile-filter-wrap {
    display: none;
  }
}

.products-mobile-filter-btn {
  background: #fff;
  color: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border-radius: 12px;
  border: none;
  padding: 0.75rem 1.5rem;
  font-weight: 500;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
  cursor: pointer;
}
.products-mobile-filter-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.products-filters {
  display: none;
  flex-direction: column;
  gap: 1.5rem;
  width: 100%;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: #000;
  padding: 1.5rem;
  overflow-y: auto;
}
.products-filters--open {
  display: flex;
}
@media (min-width: 1024px) {
  .products-filters {
    display: flex;
    position: relative;
    inset: auto;
    z-index: auto;
    background: transparent;
    padding: 0;
    width: 200px;
    flex-shrink: 0;
  }
}

.products-filters__close {
  position: absolute;
  top: 1.5rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: #fff;
  cursor: pointer;
}
.products-filters__close svg {
  width: 2rem;
  height: 2rem;
}
.products-filters__close:hover {
  color: #d0d0d0;
}
@media (min-width: 1024px) {
  .products-filters__close {
    display: none;
  }
}

.products-filters__header {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 3rem;
}
.products-filters__header h3 {
  font-size: 32px;
  font-weight: 700;
  color: #fff;
  margin: 0;
}
@media (min-width: 1024px) {
  .products-filters__header {
    margin-top: 0;
  }
}

.products-filters__divider {
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.8);
}

.products-filters__clear {
  background: none;
  border: none;
  color: #A0A0A0;
  font-size: 14px;
  text-align: left;
  cursor: pointer;
  transition: color 0.2s;
  padding: 0;
  width: -moz-fit-content;
  width: fit-content;
}
.products-filters__clear:hover {
  color: #fff;
}

.products-filters__groups {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding-top: 0.25rem;
}

.products-filters__group {
  display: flex;
  flex-direction: column;
}

.products-filters__group-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  padding: 0.25rem 0;
  background: none;
  border: none;
  cursor: pointer;
}

.products-filters__group-label {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
}

.products-filters__group-icon {
  width: 1rem;
  height: 1rem;
  color: #fff;
  transition: transform 0.3s;
}
.products-filters__group-icon--open {
  transform: rotate(90deg);
}

.products-filters__group-body {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  overflow: hidden;
  transition: max-height 0.3s;
  max-height: 0;
}
.products-filters__group-body--open {
  max-height: 500px;
}

.products-filters__option {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  cursor: pointer;
  width: -moz-fit-content;
  width: fit-content;
}
.products-filters__option:hover .products-filters__option-label {
  color: #D1B367;
}

.products-filters__checkbox {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: relative;
  width: 1rem;
  height: 1rem;
  border-radius: 2px;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.5);
  cursor: pointer;
  transition: all 0.2s;
  flex-shrink: 0;
}
.products-filters__checkbox:checked {
  background: #fff;
  border-color: #fff;
}
.products-filters__checkbox:checked::after {
  content: "✓";
  position: absolute;
  left: 2px;
  top: -1px;
  color: #000;
  font-size: 12px;
  font-weight: 700;
}

.products-filters__option-label {
  font-size: 15px;
  font-weight: 300;
  color: #fff;
  transition: color 0.2s;
}

.products-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .products-content {
    gap: 2.5rem;
  }
}

.products-groups {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
}
@media (min-width: 768px) {
  .products-groups {
    gap: 4rem;
  }
}

.products-empty {
  display: none;
  text-align: center;
  padding: 5rem 0;
  color: #A0A0A0;
  font-weight: 300;
  font-size: 18px;
  letter-spacing: 0.02em;
}
.products-empty--visible {
  display: block;
}

.products-section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
@media (min-width: 768px) {
  .products-section {
    gap: 2rem;
  }
}

.products-section__title {
  font-size: 28px;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.5rem;
  letter-spacing: -0.01em;
}
@media (min-width: 768px) {
  .products-section__title {
    font-size: 40px;
    margin-bottom: 1rem;
  }
}
@media (min-width: 1024px) {
  .products-section__title {
    font-size: 47px;
  }
}

.products-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  -moz-column-gap: 1rem;
       column-gap: 1rem;
  row-gap: 2rem;
  width: 100%;
}
@media (min-width: 768px) {
  .products-grid {
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
    row-gap: 2.5rem;
  }
}

.products-card {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.products-card:hover .products-card__image {
  transform: scale(1.02);
}

.products-card__image-wrap {
  width: 100%;
  line-height: 0;
}

.products-card__image {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s;
}

.products-card__actions {
  margin-top: 0.625rem;
  width: 100%;
  display: flex;
  justify-content: center;
}

.products-card__btn {
  background: #FFC107;
  color: #000;
  font-weight: 700;
  border: none;
  border-radius: 9999px;
  width: 62%;
  padding: 0.375rem 0;
  font-size: 11px;
  letter-spacing: 0.02em;
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.15);
  cursor: pointer;
  transition: background 0.2s;
}
.products-card__btn:hover {
  background: #ffb300;
}
@media (min-width: 768px) {
  .products-card__btn {
    width: 58%;
    padding: 0.5rem 0;
    font-size: 14px;
  }
}/*# sourceMappingURL=products.css.map */