
.az-banner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to right, #f9f9f9, #fff);
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  flex-wrap: wrap;
}
.az-banner-text {
  flex: 1;
  text-align: center;
}
.az-banner-text h2 {
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.az-banner-text p {
  font-size: 1rem;
}
.az-banner-img img {
  max-width: 100%;
  height: auto;
}

.az-cat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}
.az-cat-item {
  flex: 1 1 120px;
  max-width: 200px;
  text-align: center;
  border: 1px solid #ddd;
  padding: 1rem;
  border-radius: 10px;
  transition: all 0.3s ease;
}
.az-cat-item:hover {
  background: #f0f8ff;
  transform: scale(1.05);
}
.az-cat-item img {
  max-width: 100%;
  border-radius: 6px;
}
.az-cat-item span {
  display: block;
  margin-top: 0.5rem;
  font-weight: bold;
}

.az-cat-products {
  padding: 1.5rem;
  margin-bottom: 2rem;
  border-radius: 10px;
}
.az-section-title {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 1rem;
}
.az-product-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
}
.az-product-item {
  text-align: center;
}
.az-product-item h4 {
  font-size: 1rem;
}
.az-more-btn {
  text-align: center;
  margin-top: 1rem;
}
.az-btn {
  background-color: #ff4081;
  color: #fff;
  padding: 0.5rem 1.5rem;
  border-radius: 5px;
  text-decoration: none;
  transition: background-color 0.3s ease;
}
.az-btn:hover {
  background-color: #e91e63;
}

.az-slider-section {
  padding: 2rem 1rem;
}
.az-slider {
  display: flex;
  overflow-x: auto;
  gap: 1rem;
}
.az-slide {
  flex: 0 0 auto;
  width: 160px;
  text-align: center;
}
.az-slide img {
  width: 100%;
}

.az-about {
  background-color: #fefefe;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  margin-bottom: 2rem;
  text-align: center;
}

.az-live-cart {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #ff4081;
  color: #fff;
  padding: 10px 16px;
  border-radius: 50px;
  font-size: 16px;
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
  z-index: 9999;
}
.az-live-cart .az-cart-icon {
  font-size: 22px;
  margin-right: 8px;
}

.az-copyright {
  background: #222;
  color: #fff;
  padding: 1rem;
  text-align: center;
  border-radius: 10px;
  margin-top: 2rem;
  font-size: 0.9rem;
}
