.mm-hero-slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 16px;
}

.mm-hero-slides {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.mm-hero-slide {
  min-width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 160px 80px;
  gap: 40px;
  position: relative;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.mm-hero-content {
  flex: 0 0 auto;
  max-width: 500px;
  color: #ffffff;
  z-index: 2;
}

.mm-hero-title {
  font-size: 56px;
  font-weight: 700;
  line-height: 1.2;
  margin: 0 0 16px;
  color: #ffffff;
}

.mm-hero-subtitle {
  font-size: 16px;
  line-height: 1.5;
  margin: 0 0 24px;
  color: rgba(255, 255, 255, 0.9);
}

.mm-hero-btn {
  display: inline-block;
  background: #ffffff;
  color: #000000;
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease;
}

.mm-hero-btn:hover {
  background: #f0f0f0;
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.15);
}



.mm-hero-nav {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 12px;
  z-index: 10;
}

.mm-hero-prev,
.mm-hero-next {
  width: 44px;
  height: 44px;
  border-radius: 5px;
  border: none;
  background: rgba(255, 255, 255, 0.9);
  color: #000000;
  font-size: 20px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.mm-hero-prev:hover,
.mm-hero-next:hover {
  background: #ffffff;
  transform: scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}


p.woocommerce-store-notice {
  text-align: center !important;
}
/* Responsive */
@media (max-width: 1024px) {
  .mm-hero-slide {
    padding: 50px 40px;
  }
  
  .mm-hero-title {
    font-size: 38px;
  }
}

@media (max-width: 768px) {
  .mm-hero-slide {
    padding: 40px 24px 80px;
    text-align: center;
    justify-content: center;
    background-position: center;
  }
  
  .mm-hero-content {
    max-width: 100%;
  }
  
  .mm-hero-title {
    font-size: 32px;
  }
  
  .mm-hero-subtitle {
    font-size: 15px;
  }
  
  .mm-hero-nav {
    bottom: 20px;
  }
}

@media (max-width: 480px) {
  .mm-hero-slide {
    padding: 30px 20px 70px;
    background-position: 70% center;
  }
  
  .mm-hero-title {
    font-size: 26px;
  }
  
  .mm-hero-subtitle {
    font-size: 14px;
    margin-bottom: 20px;
  }
  
  .mm-hero-btn {
    padding: 10px 24px;
    font-size: 14px;
  }
  
  .mm-hero-prev,
  .mm-hero-next {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}

/* ========================================
   SHOP BY CATEGORY SLIDER
   ======================================== */

.mm-category-slider {
  position: relative;
  width: 100%;
  overflow: visible;
}

.mm-category-slides {
  display: flex;
  gap: 50px;
  padding: 20px 4px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
}

.mm-category-slides::-webkit-scrollbar {
  display: none;
}

.mm-category-item {
  flex: 0 0 auto;
  width: 220px;
  text-align: center;
  scroll-snap-align: start;
  transition: transform 0.3s ease;
}

.mm-category-item:hover {
  transform: translateY(-4px);
}

.mm-category-image {
  width: 180px;
  height: 180px;
  margin: 0 auto 16px;
  border-radius: 50%;
  background: #f4f6f8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: all 0.3s ease;
  /* box-shadow: 0 6px 20px rgba(23, 37, 61, 0.08); */
}

.mm-category-item:hover .mm-category-image {
  box-shadow: 0 12px 30px rgba(23, 37, 61, 0.15);
}

.mm-category-image img {
  max-width: 75%;
  max-height: 75%;
  object-fit: contain;
}

.mm-category-name {
  font-size: 16px;
  font-weight: 600;
  color: #111827;
  margin: 0;
  text-decoration: none;
  display: block;
}

.mm-category-item a {
  text-decoration: none;
}

.mm-category-item a:hover .mm-category-name {
  color: #16a34a;
}

/* Navigation buttons for category slider */
.mm-category-nav {
  position: absolute;
  right: 0;
  top: -52px;
  display: inline-flex;
  gap: 12px;
  z-index: 5;
}

.mm-category-btn {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  border: 1px solid #e5e7eb;
  background: #ffffff;
  color: #15803d;
  font-size: 18px;
  line-height: 1;
  /* box-shadow: 0 4px 10px rgba(23, 37, 61, 0.10); */
  cursor: pointer;
  transition: all 0.2s ease;
}

.mm-category-btn:hover {
  background: #f9fafb;
  transform: translateY(-1px);
  box-shadow: 0 6px 14px rgba(23, 37, 61, 0.16);
}

.mm-category-btn:focus-visible {
  outline: 2px solid #16a34a;
  outline-offset: 2px;
}

/* Responsive category slider */
@media (max-width: 768px) {
  .mm-category-slides {
    gap: 24px;
  }
  
  .mm-category-item {
    width: 160px;
  }
  
  .mm-category-image {
    width: 140px;
    height: 140px;
  }
  
  .mm-category-name {
    font-size: 14px;
  }
  
  .mm-category-nav {
    top: -55px;
  }
  
  .mm-category-btn {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }
}

@media (max-width: 480px) {
  .mm-category-item {
    width: 140px;
  }
  
  .mm-category-image {
    width: 120px;
    height: 120px;
  }
  
  .mm-category-name {
    font-size: 13px;
  }
}

