.category-section {
  padding: 90px 0 70px;
  background: #fff;
}

.category-section .section-header {
  margin-bottom: 55px;
  text-align: center;
}

.category-section .section-header h2 {
  margin-bottom: 12px;
  color: #111;
  font-weight: 700;
  font-size: 38px;
  letter-spacing: -0.5px;
}

.category-section .section-header p {
  margin: 0 auto;
  color: #666;
  font-size: 16px;
  max-width: 600px;
  line-height: 1.6;
}

.category-section .category-grid {
  display: grid;
  align-items: start;
  grid-template-columns: repeat(8, 1fr);
  gap: 35px;
}

.category-section .category-card {
  text-align: center;
}

.category-section .category-card a {
  display: block;
  text-decoration: none;
}

.category-section .category-card .category-image {
  margin: 0 auto;
  border: 1px solid #eee;
  border-radius: 50%;
  width: 140px;
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  background: #f7f7f7;
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
  transition: all 0.35s ease;
}

.category-section .category-card .category-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.35s ease;
}

.category-section .category-card h3 {
  margin-top: 18px;
  color: #222;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.4;
  transition: all 0.3s ease;
}

.category-section .category-card:hover .category-image {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.15);
}

.category-section .category-card:hover .category-image img {
  transform: scale(1.08);
}

.category-section .category-card:hover h3 {
  color: #e67e22;
}

@media (max-width: 1200px) {
  .category-section .category-grid {
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
  }
  .category-section .category-card .category-image {
    width: 125px;
    height: 125px;
  }
}
@media (max-width: 992px) {
  .category-section {
    padding: 70px 0;
  }
  .category-section .section-header h2 {
    font-size: 32px;
  }
  .category-section .category-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 35px 25px;
  }
}
@media (max-width: 576px) {
  .category-section {
    padding: 50px 0;
  }
  .category-section .section-header {
    margin-bottom: 35px;
  }
  .category-section .section-header h2 {
    font-size: 26px;
  }
  .category-section .section-header p {
    font-size: 14px;
  }
  .category-section .category-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 25px 15px;
  }
  .category-section .category-card .category-image {
    width: 90px;
    height: 90px;
  }
  .category-section .category-card h3 {
    margin-top: 12px;
    font-size: 13px;
  }
}
@media (max-width: 400px) {
  .category-section .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .category-section .category-card .category-image {
    width: 100px;
    height: 100px;
  }
}
.featured-products {
  padding: 60px 0;
  background: #fff;
}

.featured-products .section-title {
  margin-bottom: 30px;
  text-align: center;
}

.featured-products .section-title h2 {
  margin-bottom: 8px;
  color: #222;
  font-weight: 700;
  font-size: 2.2rem;
}

.featured-products .section-title p {
  color: #666;
  font-size: 15px;
}

.product-grid {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  scrollbar-width: none;
  cursor: grab;
  -webkit-user-select: none;
  -moz-user-select: none;
  user-select: none;
}

.product-grid::-webkit-scrollbar {
  display: none;
}

.product-grid:active {
  cursor: grabbing;
}

.product-card {
  flex: 0 0 205px;
}

.product-card {
  position: relative;
  border: 1px solid #ededed;
  border-radius: 12px;
  flex: 0 0 205px;
  background: #fff;
  overflow: hidden;
  transition: 0.35s ease;
}

.product-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.product-card:hover .product-image img {
  transform: scale(1.06);
}

.product-card:hover .cart-btn {
  background: #790a0a;
}

.product-top {
  position: absolute;
  z-index: 5;
  top: 10px;
  right: 10px;
  left: 10px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

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

.wishlist-btn i {
  color: #222;
  font-size: 13px;
  transition: 0.3s;
}

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

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

.product-image {
  height: 140px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px 12px 5px;
}

.product-image img {
  width: 110px;
  height: 110px;
  -o-object-fit: contain;
  object-fit: contain;
  transition: 0.35s ease;
}

.product-content {
  padding: 0 14px 14px;
  text-align: center;
}

.product-rating {
  margin-bottom: 5px;
}

.product-rating i {
  margin: 0 1px;
  color: #ffb62e;
  font-size: 11px;
}

.product-content h3 {
  margin: 0 0 7px;
  line-height: 1.3;
}

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

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

.product-price {
  margin-bottom: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

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

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

.discount {
  margin-bottom: 10px;
  color: #169c37;
  font-weight: 600;
  font-size: 13px;
}

.product-buttons {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

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

.cart-btn i {
  font-size: 13px;
}

.cart-btn:hover {
  background: #790a0a;
  transform: translateY(-2px);
}

.view-btn {
  border: 1px solid #9f0d0d;
  border-radius: 8px;
  width: 100%;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #9f0d0d;
  font-weight: 600;
  font-size: 13px;
  background: rgba(0, 0, 0, 0);
  text-decoration: none;
  transition: 0.3s ease;
}

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

.product-card:hover .product-badge {
  background: #870b0b;
}

.product-card:hover .wishlist-btn {
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.15);
}

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

@media (max-width: 1200px) {
  .product-grid {
    gap: 15px;
  }
  .product-card {
    flex: 0 0 195px;
  }
  .product-image {
    height: 135px;
  }
  .product-image img {
    width: 105px;
    height: 105px;
  }
  .product-content {
    padding: 0 12px 12px;
  }
}
@media (max-width: 991px) {
  .featured-products {
    padding: 50px 0;
  }
  .section-title {
    margin-bottom: 25px !important;
  }
  .product-grid {
    gap: 14px;
  }
  .product-card {
    flex: 0 0 180px;
  }
  .product-image {
    height: 125px;
  }
  .product-image img {
    width: 95px;
    height: 95px;
  }
  .product-content h3 a {
    font-size: 15px;
  }
  .cart-btn {
    height: 36px;
    font-size: 13px;
  }
  .view-btn {
    height: 34px;
    font-size: 12px;
  }
}
@media (max-width: 767px) {
  .featured-products {
    padding: 45px 0;
  }
  .featured-products .section-title h2 {
    font-size: 1.8rem;
  }
  .featured-products .section-title p {
    font-size: 14px;
  }
  .product-grid {
    gap: 12px;
  }
  .product-card {
    border-radius: 10px;
    flex: 0 0 165px;
  }
  .product-top {
    top: 8px;
    right: 8px;
    left: 8px;
  }
  .product-badge {
    height: 22px;
    padding: 0 10px;
    font-size: 9px;
    min-width: 55px;
  }
  .wishlist-btn {
    width: 28px;
    height: 28px;
  }
  .wishlist-btn i {
    font-size: 12px;
  }
  .product-image {
    height: 115px;
    padding: 10px 10px 4px;
  }
  .product-image img {
    width: 85px;
    height: 85px;
  }
  .product-rating {
    margin-bottom: 4px;
  }
  .product-rating i {
    font-size: 10px;
  }
  .product-content {
    padding: 0 10px 12px;
  }
  .product-content h3 {
    margin-bottom: 6px;
  }
  .product-content h3 a {
    font-size: 14px;
  }
  .product-price {
    margin-bottom: 2px;
    gap: 4px;
  }
  .product-price .old-price {
    font-size: 11px;
  }
  .product-price .new-price {
    font-size: 15px;
  }
  .discount {
    margin-bottom: 8px;
    font-size: 12px;
  }
  .product-buttons {
    gap: 6px;
  }
  .cart-btn {
    height: 34px;
    font-size: 12px;
  }
  .cart-btn i {
    font-size: 11px;
  }
  .view-btn {
    height: 32px;
    font-size: 11px;
  }
}
@media (min-width: 1400px) {
  .product-card {
    flex: 0 0 210px;
  }
}
.brands-section {
  padding: 70px 0;
  background: #fff;
}

.brands-section .section-title {
  margin-bottom: 40px;
  text-align: center;
}

.brands-section .section-title h2 {
  margin-bottom: 10px;
  color: #222;
  font-weight: 700;
  font-size: 2.2rem;
}

.brands-section .section-title p {
  margin: 0;
  color: #666;
  font-size: 15px;
}

.brands-slider {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 0;
  gap: 22px;
  overflow-x: auto;
  overflow-y: hidden;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
}

.brands-slider::-webkit-scrollbar {
  display: none;
}

.brand-card {
  flex: 0 0 120px;
}

.brand-card a {
  border: 1px solid #ececec;
  border-radius: 50%;
  width: 120px;
  height: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  background: #fff;
  overflow: hidden;
  text-decoration: none;
  box-shadow: 0 5px 18px rgba(0, 0, 0, 0.06);
  transition: all 0.35s ease;
}

.brand-card a:hover {
  border-color: rgba(159, 13, 13, 0.45);
  transform: translateY(-8px);
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.15);
}

.brand-card a:hover img {
  transform: scale(1.12) rotate(2deg);
}

.brand-card img {
  border-radius: 50%;
  width: 100px;
  height: 100px;
  padding: 8px;
  -o-object-fit: contain;
  object-fit: contain;
  background: #fff;
  filter: none;
  opacity: 1;
  transition: transform 0.35s ease;
}

@media (max-width: 1199px) {
  .brands-slider {
    gap: 18px;
  }
  .brand-card {
    flex: 0 0 105px;
  }
  .brand-card a {
    width: 105px;
    height: 105px;
  }
  .brand-card img {
    width: 85px;
    height: 85px;
    padding: 7px;
  }
}
@media (max-width: 991px) {
  .brands-section {
    padding: 55px 0;
  }
  .brands-section .section-title h2 {
    font-size: 2rem;
  }
  .brands-section .section-title p {
    font-size: 14px;
  }
  .brands-slider {
    justify-content: flex-start;
    padding: 10px 15px;
    gap: 16px;
  }
  .brand-card {
    flex: 0 0 95px;
  }
  .brand-card a {
    width: 95px;
    height: 95px;
  }
  .brand-card img {
    width: 74px;
    height: 74px;
    padding: 6px;
  }
}
@media (max-width: 767px) {
  .brands-section {
    padding: 45px 0;
  }
  .brands-section .section-title {
    margin-bottom: 28px;
  }
  .brands-section .section-title h2 {
    font-size: 1.8rem;
  }
  .brands-section .section-title p {
    font-size: 14px;
  }
  .brands-slider {
    justify-content: flex-start;
    padding: 10px 15px;
    gap: 14px;
  }
  .brand-card {
    flex: 0 0 80px;
  }
  .brand-card a {
    width: 80px;
    height: 80px;
  }
  .brand-card img {
    width: 60px;
    height: 60px;
    padding: 5px;
  }
}
@media (max-width: 480px) {
  .brands-slider {
    justify-content: flex-start;
    padding: 10px 12px;
    gap: 12px;
  }
  .brand-card {
    flex: 0 0 72px;
  }
  .brand-card a {
    width: 72px;
    height: 72px;
  }
  .brand-card img {
    width: 52px;
    height: 52px;
    padding: 4px;
  }
}
.home-appliance-hero {
  padding: 70px 0;
  background: #f5f7fa;
}

.home-appliance-hero .hero-wrapper {
  position: relative;
  border-radius: 25px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 60px;
  gap: 50px;
  overflow: hidden;
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
}

.home-appliance-hero .hero-wrapper::before {
  position: absolute;
  top: -180px;
  right: -180px;
  border-radius: 50%;
  width: 450px;
  height: 450px;
  content: "";
  background: rgba(255, 59, 48, 0.12);
}

.home-appliance-hero .hero-wrapper::after {
  position: absolute;
  bottom: -120px;
  left: -120px;
  border-radius: 50%;
  width: 280px;
  height: 280px;
  content: "";
  background: rgba(255, 255, 255, 0.05);
}

.home-appliance-hero .hero-content {
  position: relative;
  z-index: 2;
  flex: 0 0 45%;
}

.home-appliance-hero .offer-tag {
  margin-bottom: 20px;
  border-radius: 50px;
  display: inline-block;
  padding: 10px 22px;
  color: #fff;
  font-weight: 600;
  font-size: 13px;
  background: #ff3b30;
  letter-spacing: 0.5px;
}

.home-appliance-hero h1 {
  margin-bottom: 20px;
  color: #fff;
  font-weight: 700;
  font-size: 52px;
  line-height: 1.15;
}

.home-appliance-hero p {
  margin-bottom: 35px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 16px;
  line-height: 30px;
}

.home-appliance-hero .hero-buttons {
  margin-bottom: 35px;
  display: flex;
  gap: 15px;
}

.home-appliance-hero .hero-buttons a {
  border-radius: 50px;
  padding: 15px 30px;
  font-weight: 600;
  text-decoration: none;
  transition: 0.35s;
}

.home-appliance-hero .hero-buttons .shop-btn {
  color: #fff;
  background: #ff3b30;
}

.home-appliance-hero .hero-buttons .shop-btn:hover {
  background: #d72c22;
}

.home-appliance-hero .hero-buttons .offer-btn {
  border: 2px solid rgba(255, 255, 255, 0.15);
  color: #fff;
}

.home-appliance-hero .hero-buttons .offer-btn:hover {
  background: rgba(255, 255, 255, 0.08);
}

.home-appliance-hero .hero-categories {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.home-appliance-hero .hero-categories a {
  border-radius: 30px;
  padding: 10px 18px;
  color: #fff;
  font-size: 14px;
  background: rgba(255, 255, 255, 0.08);
  text-decoration: none;
  transition: 0.35s;
}

.home-appliance-hero .hero-categories a:hover {
  background: #ff3b30;
}

.home-appliance-hero .hero-products {
  position: relative;
  z-index: 2;
  display: grid;
  flex: 0 0 48%;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.home-appliance-hero .hero-product {
  border-radius: 20px;
  padding: 18px;
  background: #fff;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  transition: 0.35s;
}

.home-appliance-hero .hero-product img {
  width: 100%;
  height: 150px;
  display: block;
  -o-object-fit: contain;
  object-fit: contain;
}

.home-appliance-hero .hero-product:hover {
  transform: translateY(-8px);
}

.home-appliance-hero .hero-product.large {
  grid-column: span 2;
  grid-row: span 2;
}

.home-appliance-hero .hero-product.large img {
  height: 320px;
}

@media (max-width: 991px) {
  .home-appliance-hero .hero-wrapper {
    flex-direction: column;
    padding: 40px;
  }
  .home-appliance-hero .hero-content, .home-appliance-hero .hero-products {
    width: 100%;
    flex: 0 0 100%;
  }
  .home-appliance-hero h1 {
    font-size: 42px;
  }
}
@media (max-width: 767px) {
  .home-appliance-hero {
    padding: 50px 0;
  }
  .home-appliance-hero .hero-wrapper {
    padding: 30px 20px;
  }
  .home-appliance-hero h1 {
    font-size: 30px;
  }
  .home-appliance-hero p {
    font-size: 15px;
    line-height: 28px;
  }
  .home-appliance-hero .hero-buttons {
    flex-direction: column;
  }
  .home-appliance-hero .hero-buttons a {
    width: 100%;
    text-align: center;
  }
  .home-appliance-hero .hero-products {
    grid-template-columns: repeat(2, 1fr);
  }
  .home-appliance-hero .hero-product.large {
    grid-column: span 2;
  }
  .home-appliance-hero .hero-product.large img {
    height: 220px;
  }
}

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