body {
  margin: 0px;
  font-family: Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #FFF;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main {
  flex: 1;
}

.header {
  background-color: #FF8C00;
  padding: 1rem;
}

.main-nav__list {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.main-nav__item {
  position: relative;
  margin: 0 1rem;
}
.main-nav__item:not(:last-child)::after {
  content: "|";
  position: absolute;
  right: -1rem;
  color: #FFF;
}
.main-nav__item--has-submenu:hover .main-nav__submenu {
  display: block;
}
.main-nav__link {
  color: #FFF;
  text-decoration: none;
  font-weight: bold;
  padding: 0.5rem 1rem;
}
.main-nav__link:hover {
  text-decoration: underline;
}
.main-nav__submenu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background-color: #FFA500;
  padding: 0.5rem;
  list-style-type: none;
  min-width: 150px;
  z-index: 10;
}
.main-nav__submenu-item {
  margin: 0.5rem 0;
}
.main-nav__submenu-link {
  color: #FFF;
  text-decoration: none;
  display: block;
  padding: 0.3rem 0.5rem;
}
.main-nav__submenu-link:hover {
  text-decoration: underline;
}

.slider__image {
  width: 100%;
  height: auto;
}

.video-container {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
}

.promo-video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.breadcrumbs {
  background-color: #f4f4f4;
  padding: 0.5rem 1rem;
}
.breadcrumbs__list {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
}
.breadcrumbs__item:not(:last-child)::after {
  content: ">";
  margin: 0 0.5rem;
}
.breadcrumbs__link {
  color: #FF8C00;
  text-decoration: none;
}
.breadcrumbs__link:hover {
  text-decoration: underline;
}

.content {
  display: flex;
  flex-direction: column;
  padding: 1rem;
}

.sidebar {
  width: 200px;
  margin-right: 1rem;
}

.sidebar-nav__list {
  list-style-type: none;
  padding: 0;
}
.sidebar-nav__item {
  margin-bottom: 0.5rem;
}
.sidebar-nav__link {
  color: #FF8C00;
  text-decoration: none;
}
.sidebar-nav__link:hover {
  text-decoration: underline;
}

.article {
  flex: 1;
}
.article__title {
  color: #FF8C00;
}

.footer {
  background-color: #FF8C00;
  color: #FFF;
  padding: 1rem;
  text-align: center;
}

.map-container {
  width: 100%;
  height: 400px;
  margin-top: 2rem;
}

@media (max-width: 768px) {
  .content {
    flex-direction: column;
  }
  .sidebar {
    width: 100%;
    margin-right: 0;
    margin-bottom: 1rem;
  }
  .main-nav__list {
    flex-wrap: wrap;
  }
  .main-nav__item {
    margin: 0.5rem;
  }
  .main-nav__item:not(:last-child)::after {
    display: none;
  }
}
@media (max-width: 480px) {
  .main-nav__list {
    flex-direction: column;
  }
  .main-nav__item {
    margin: 0.5rem 0;
  }
  .main-nav__item:not(:last-child)::after {
    display: none;
  }
  .main-nav__submenu {
    position: static;
    display: none;
    background-color: transparent;
    padding-left: 1rem;
  }
  .main-nav__item--has-submenu:hover .main-nav__submenu {
    display: block;
  }
  .map-container {
    height: 300px;
  }
}
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1rem;
}
.gallery__item {
  width: 300px;
  height: 300px;
  overflow: hidden;
}
.gallery__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease-in-out;
}
.gallery__image:hover {
  transform: scale(1.1);
}

.products-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 20px;
}

.products__title {
  font-size: 2rem;
  margin-bottom: 1rem;
  color: #FF8C00;
}
.products__controls {
  display: flex;
  justify-content: space-between;
  margin-bottom: 1rem;
  flex-wrap: wrap;
  gap: 1rem;
}
.products__search, .products__sort, .products__category {
  padding: 0.5rem;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.products__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}
.products__loading, .products__error {
  text-align: center;
  padding: 1rem;
  font-size: 1.2rem;
}
.products__error {
  color: #e74c3c;
}
.products__pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 2rem;
  gap: 1rem;
}
.products__pagination-btn {
  padding: 0.5rem 1rem;
  background-color: #FF8C00;
  color: white;
  border: none;
  border-radius: 4px;
  cursor: pointer;
}
.products__pagination-btn:disabled {
  background-color: #ccc;
  cursor: not-allowed;
}
.products__pagination-current {
  font-size: 1.1rem;
}

.product-card {
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  overflow: hidden;
  transition: box-shadow 0.3s ease;
}
.product-card:hover {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.product-card__image {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.product-card__info {
  padding: 1rem;
}
.product-card__title {
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}
.product-card__price {
  font-weight: bold;
  color: #FF8C00;
}
.product-card__brand, .product-card__category {
  font-size: 0.9rem;
  color: #666;
}
.product-card__discount, .product-card__popular, .product-card__sale {
  font-size: 0.8rem;
  font-weight: bold;
  margin-top: 0.5rem;
}
.product-card__discount {
  color: #e74c3c;
}
.product-card__popular {
  color: #2ecc71;
}
.product-card__sale {
  color: #3498db;
}

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