.breadcrumb-section {
  padding: 18px 0;
  background: #fafafa;
  border-top: 1px solid #ececec;
  border-bottom: 1px solid #ececec;
}

.breadcrumb-section .container {
  display: flex;
  align-items: center;
  gap: 12px;
}

.breadcrumb-section a {
  color: #666;
  transition: 0.35s ease;
}

.breadcrumb-section a:hover {
  color: #9f0d0d;
}

.breadcrumb-section span {
  color: #9f0d0d;
  font-weight: 600;
}

.breadcrumb-section i {
  color: #999;
  font-size: 13px;
}

.shop-section {
  padding: 60px 0;
  background: #fff;
}

.shop-wrapper {
  display: grid;
  align-items: flex-start;
  grid-template-columns: 280px 1fr;
  gap: 45px;
}

.shop-sidebar {
  position: sticky;
  top: 110px;
  height: calc(100vh - 130px);
  overflow: hidden;
}

.sidebar-inner {
  height: 100%;
  padding-right: 12px;
  overflow-y: auto;
}

.sidebar-inner::-webkit-scrollbar {
  width: 6px;
}

.sidebar-inner::-webkit-scrollbar-track {
  background: #f5f5f5;
}

.sidebar-inner::-webkit-scrollbar-thumb {
  border-radius: 20px;
  background: #c5c5c5;
}

.sidebar-inner::-webkit-scrollbar-thumb:hover {
  background: #9f0d0d;
}

.sidebar-block {
  margin-bottom: 40px;
}

.sidebar-block:last-child {
  margin-bottom: 0;
}

.sidebar-block h3 {
  position: relative;
  margin-bottom: 22px;
  padding-bottom: 12px;
  color: #222;
  font-weight: 700;
  font-size: 22px;
  border-bottom: 1px solid #ededed;
}

.sidebar-block h3::after {
  position: absolute;
  bottom: -1px;
  left: 0;
  width: 55px;
  height: 3px;
  content: "";
  background: #9f0d0d;
}

.search-product {
  position: relative;
}

.search-product input {
  border: 1px solid #ddd;
  border-radius: 8px;
  width: 100%;
  height: 52px;
  padding: 0 55px 0 18px;
  color: #444;
  font-size: 15px;
  transition: 0.35s;
}

.search-product input:focus {
  border-color: #9f0d0d;
  outline: none;
}

.search-product input::-moz-placeholder {
  color: #999;
}

.search-product input::placeholder {
  color: #999;
}

.search-product button {
  position: absolute;
  top: 50%;
  right: 5px;
  border: none;
  border-radius: 6px;
  width: 42px;
  height: 42px;
  color: #fff;
  cursor: pointer;
  background: #9f0d0d;
  transform: translateY(-50%);
  transition: 0.35s;
}

.search-product button:hover {
  background: #760707;
}

.price-filter {
  margin-top: 10px;
}

.price-filter input {
  width: 100%;
  cursor: pointer;
  accent-color: #9f0d0d;
}

.price-text {
  margin-top: 16px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #555;
  font-size: 15px;
}

.price-text span {
  color: #9f0d0d;
  font-weight: 700;
}

.filter-list {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.filter-list label {
  display: flex;
  align-items: center;
  color: #444;
  font-size: 15px;
  gap: 12px;
  cursor: pointer;
  transition: 0.3s;
}

.filter-list label:hover {
  color: #9f0d0d;
}

.filter-list input {
  accent-color: #9f0d0d;
  cursor: pointer;
}

.shop-sidebar {
  animation: sidebarFade 0.45s ease;
}

@keyframes sidebarFade {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.category-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.category-menu li {
  border-bottom: 1px solid #f1f1f1;
}

.category-menu li:last-child {
  border-bottom: none;
}

.category-menu li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 0;
  color: #444;
  font-weight: 500;
  font-size: 15px;
  transition: 0.35s;
}

.category-menu li a i {
  color: #999;
  font-size: 13px;
  transition: 0.35s;
}

.category-menu li:hover a {
  padding-left: 8px;
  color: #9f0d0d;
}

.category-menu li:hover i {
  color: #9f0d0d;
  transform: translateX(4px);
}

.category-menu li.active a {
  color: #9f0d0d;
  font-weight: 600;
}

.shop-content {
  min-width: 0;
}

.shop-toolbar {
  margin-bottom: 35px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 18px;
  gap: 20px;
  border-bottom: 1px solid #ececec;
}

.toolbar-left {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.toolbar-left h2 {
  color: #222;
  font-weight: 700;
  font-size: 32px;
  line-height: 1.3;
}

.toolbar-left p {
  color: #777;
  font-size: 15px;
}

.toolbar-left strong {
  color: #9f0d0d;
}

.toolbar-right {
  display: flex;
  align-items: center;
  gap: 15px;
}

#sortProducts {
  border: 1px solid #ddd;
  border-radius: 6px;
  height: 48px;
  padding: 0 18px;
  color: #444;
  font-size: 15px;
  min-width: 240px;
  background: #fff;
  cursor: pointer;
  transition: 0.35s;
}

#sortProducts:hover {
  border-color: #9f0d0d;
}

#sortProducts:focus {
  border-color: #9f0d0d;
  outline: none;
}

.active-filters {
  margin-bottom: 30px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.active-filters:empty {
  display: none;
}

.active-filter {
  border-radius: 30px;
  display: flex;
  align-items: center;
  padding: 8px 15px;
  color: #9f0d0d;
  font-weight: 600;
  font-size: 14px;
  gap: 8px;
  background: #fdf2f2;
}

.active-filter button {
  border: none;
  border-radius: 50%;
  width: 18px;
  height: 18px;
  color: #fff;
  font-size: 11px;
  cursor: pointer;
  background: #9f0d0d;
}

.clear-filter {
  margin-left: auto;
  color: #9f0d0d;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: 0.35s;
}

.clear-filter:hover {
  color: #760707;
}

.shop-toolbar {
  animation: toolbarFade 0.4s ease;
}

@keyframes toolbarFade {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 992px) {
  .shop-wrapper {
    grid-template-columns: 1fr;
  }
  .shop-sidebar {
    position: static;
    height: auto;
  }
  .sidebar-inner {
    overflow: visible;
  }
  .shop-toolbar {
    flex-direction: column;
    align-items: flex-start;
  }
  .toolbar-right {
    width: 100%;
  }
  #sortProducts {
    width: 100%;
  }
}
@media (max-width: 576px) {
  .toolbar-left h2 {
    font-size: 26px;
  }
  .toolbar-left p {
    font-size: 14px;
  }
  .active-filters {
    gap: 8px;
  }
}
.product-grid {
  margin-bottom: 50px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.no-product {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 80px 20px;
  text-align: center;
}

.no-product img {
  margin-bottom: 25px;
  width: 220px;
}

.no-product h2 {
  margin-bottom: 12px;
  color: #222;
  font-size: 32px;
}

.no-product p {
  color: #777;
  line-height: 28px;
  max-width: 500px;
}

.pagination {
  margin-top: 15px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.page-btn {
  border: 1px solid #ddd;
  border-radius: 6px;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 16px;
  color: #444;
  font-weight: 600;
  font-size: 15px;
  min-width: 45px;
  background: #fff;
  cursor: pointer;
  transition: 0.35s;
}

.page-btn:hover {
  border-color: #9f0d0d;
  color: #fff;
  background: #9f0d0d;
}

.page-btn.active {
  border-color: #9f0d0d;
  color: #fff;
  background: #9f0d0d;
}

.page-btn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}

.page-btn:disabled:hover {
  border-color: #ddd;
  color: #444;
  background: #fff;
}

.loading-products {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 25px;
}

.loading-card {
  border-radius: 12px;
  height: 420px;
  background: linear-gradient(90deg, #f5f5f5 25%, #ececec 50%, #f5f5f5 75%);
  background-size: 200% 100%;
  animation: loading 1.3s linear infinite;
}

@keyframes loading {
  from {
    background-position: -200%;
  }
  to {
    background-position: 200%;
  }
}
.newsletter {
  margin-top: 70px;
}

@media (max-width: 1400px) {
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 1200px) {
  .shop-wrapper {
    grid-template-columns: 260px 1fr;
    gap: 30px;
  }
  .product-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}
@media (max-width: 992px) {
  .shop-wrapper {
    grid-template-columns: 1fr;
  }
  .shop-sidebar {
    position: static;
    height: auto;
  }
  .sidebar-inner {
    overflow: visible;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 768px) {
  .shop-section {
    padding: 50px 0;
  }
  .product-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
  }
  .pagination {
    gap: 8px;
  }
  .page-btn {
    height: 40px;
    font-size: 14px;
    min-width: 40px;
  }
}
@media (max-width: 576px) {
  .product-grid {
    grid-template-columns: 1fr;
  }
  .toolbar-left h2 {
    font-size: 26px;
  }
  .no-product {
    padding: 60px 15px;
  }
  .no-product img {
    width: 170px;
  }
  .no-product h2 {
    font-size: 24px;
  }
  .page-btn {
    height: 38px;
    padding: 0 12px;
    min-width: 38px;
  }
}
.shop-content .product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.shop-content .product-card {
  position: relative;
  border: 1px solid #ececec;
  border-radius: 14px;
  background: #fff;
  overflow: hidden;
  transition: all 0.35s ease;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.shop-content .product-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.12);
}

.shop-content .product-card:hover .product-image img {
  transform: scale(1.08);
}

.shop-content .product-top {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 12px;
}

.shop-content .wishlist-btn {
  border: none;
  border-radius: 50%;
  width: 38px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  cursor: pointer;
  transition: 0.3s;
}

.shop-content .wishlist-btn i {
  color: #444;
  font-size: 15px;
}

.shop-content .wishlist-btn:hover {
  background: #9f0d0d;
}

.shop-content .wishlist-btn:hover i {
  color: #fff;
}

.shop-content .product-image {
  height: 220px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 20px;
}

.shop-content .product-image img {
  width: 170px;
  height: 170px;
  -o-object-fit: contain;
  object-fit: contain;
  transition: 0.35s;
}

.shop-content .product-content {
  padding: 18px;
  text-align: center;
}

.shop-content .product-rating {
  margin-bottom: 10px;
}

.shop-content .product-rating i {
  margin: 0 1px;
  color: #ffb300;
  font-size: 13px;
}

.shop-content .product-content h3 {
  margin-bottom: 8px;
}

.shop-content .product-content h3 a {
  color: #222;
  font-weight: 600;
  font-size: 17px;
  text-decoration: none;
  line-height: 1.4;
  transition: 0.3s;
}

.shop-content .product-content h3 a:hover {
  color: #9f0d0d;
}

.shop-content .product-price {
  margin-bottom: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}

.shop-content .product-price .old-price {
  color: #999;
  font-size: 14px;
  text-decoration: line-through;
}

.shop-content .product-price .new-price {
  color: #9f0d0d;
  font-weight: 700;
  font-size: 22px;
}

.shop-content .discount {
  margin-bottom: 18px;
  color: #0c9b3d;
  font-weight: 600;
  font-size: 14px;
}

.shop-content .product-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.shop-content .cart-btn {
  border: none;
  border-radius: 10px;
  width: 100%;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  background: #9f0d0d;
  gap: 8px;
  cursor: pointer;
  transition: 0.3s;
}

.shop-content .cart-btn:hover {
  background: #870909;
}

.shop-content .view-btn {
  border: 1px solid #9f0d0d;
  border-radius: 10px;
  width: 100%;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #9f0d0d;
  font-weight: 600;
  text-decoration: none;
  transition: 0.3s;
}

.shop-content .view-btn:hover {
  color: #fff;
  background: #9f0d0d;
}

@media (max-width: 1200px) {
  .shop-content .product-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 991px) {
  .shop-content .product-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 576px) {
  .shop-content .product-grid {
    grid-template-columns: 1fr;
  }
  .shop-content .product-image {
    height: 180px;
  }
  .shop-content .product-image img {
    width: 140px;
    height: 140px;
  }
}
@media (max-width: 768px) {
  .sidebar-block:has(.price-filter), .sidebar-block:has(.search-product), .sidebar-block:has(.filter-list), .sidebar-block:has(.category-menu) {
    display: none;
  }
}

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