/* Prevent horizontal overflow globally */
html,
body {
  overflow-x: hidden !important;
  max-width: 100vw !important;
  width: 100% !important;
}

* {
  box-sizing: border-box;
}

/* Ensure containers don't overflow */
.container,
.container-fluid,
[class*="container"] {
  max-width: 100% !important;
  overflow-x: hidden;
}

button {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  background-color: #e9bb4f;
  border: none;
  border-radius: 8px;
  color: #fff;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease,
    box-shadow 0.2s ease;
}

.ab-trending,
.ab-categories,
.ab-testimonials,
.ab-features {
  padding: 40px;
}

.ab-categories {
  background-color: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.ab-testimonials {
  background-color: #fff;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  overflow: hidden;
  position: relative;
}

.ab-trending-header,
.ab-categories-header,
.ab-testimonials-header,
.ab-features-header {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 30px;
}

.ab-trending-title,
.ab-categories-title,
.ab-testimonials-title,
.ab-features-title {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUpTitle 0.6s ease-out forwards;
}

.ab-trending-title p,
.ab-categories-title p,
.ab-testimonials-title p,
.ab-features-title p {
  margin: 0 0 10px 0;
  font-size: 14px;
  letter-spacing: 2px;
  color: #888;
}

.ab-testimonials-title p,
.ab-features-title p {
  text-transform: uppercase;
}

.ab-trending-title h1,
.ab-categories-title h1,
.ab-testimonials-title h1,
.ab-features-title h1 {
  margin: 5px 0 0 0;
  font-size: 32px;
  font-weight: 400;
  color: #333;
}

.ab-category-buttons {
  display: flex;
  gap: 30px;
}

.ab-category-button {
  position: relative;
  font-size: 16px;
  font-weight: 400;
  color: #888;
  cursor: pointer;
  padding-bottom: 5px;
  transition: color 0.3s ease;
}

.ab-category-button.active {
  color: #000;
  font-weight: 500;
}

.ab-category-button:hover {
  color: #000;
}

.ab-underline {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #000;
  transition: width 0.3s ease;
}

.ab-category-button.active .ab-underline,
.ab-category-button:hover .ab-underline {
  width: 100%;
}

.ab-categories-view-all {
  text-decoration: none;
  color: rgba(0, 0, 0, 0.5);
  font-weight: 500;
  transition: color 0.3s ease, transform 0.3s ease;
  display: flex;
  align-items: center;
}

.ab-categories-view-all:hover {
  color: #007bff;
  transform: translateX(2px);
}

.ab-categories-view-all span {
  margin-left: 5px;
  transition: transform 0.3s ease;
  display: inline-block;
}

.ab-categories-view-all:hover span {
  transform: translateX(3px);
}

.ab-categories-list {
  display: flex;
  overflow-x: auto;
  scroll-behavior: smooth;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 20px;
  gap: 20px;
  -ms-overflow-style: none;
  scrollbar-width: none;
  max-width: 100%;
  width: 100%;
}

.ab-categories-list::-webkit-scrollbar {
  display: none;
}

.ab-categories-item {
  flex: 0 0 auto;
  width: 300px;
  min-width: 250px;
  max-width: 100%;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  text-align: center;
  transition: box-shadow 0.3s ease, transform 0.3s ease, opacity 0.6s ease-out;
  cursor: pointer;
  background-color: #fff;
  height: 120px;
  display: flex;
  position: relative;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: translateY(30px);
  animation-name: fadeInUpCard;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  box-sizing: border-box;
}

.ab-categories-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px) scale(1.01);
}

.ab-categories-item img {
  max-width: 100%;
  width: 140px;
  height: auto;
  border-radius: 4px;
  object-fit: contain;
}

.ab-categories-item .ab-categories-product-count {
  color: rgba(0, 0, 0, 0.5);
  font-weight: 400;
  text-align: right;
  position: absolute;
  bottom: 0px;
  right: 10px;
  font-size: 14px;
  text-decoration: none;
}

.ab-category-nav-buttons,
.ab-slider-controls {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 15px;
  gap: 10px;
}

.ab-category-dots {
  display: none;
  gap: 8px;
}

.ab-category-dots .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #ccc;
  cursor: pointer;
  transition: background-color 0.3s ease, transform 0.2s ease;
}

.ab-category-dots .dot.active {
  background-color: #333;
  transform: scale(1.2);
}

.ab-category-dots .dot:hover:not(.active) {
  background-color: #999;
  transform: scale(1.1);
}

.ab-category-prev,
.ab-category-next {
  background-color: #fff;
  border: 1px solid #ddd;
  color: #333;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 20px;
  transition: background-color 0.3s ease, color 0.3s ease, transform 0.2s ease,
    box-shadow 0.3s ease;
}

.ab-category-prev:hover,
.ab-category-next:hover {
  background-color: #333;
  color: #fff;
  transform: scale(1.05);
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.15);
}

.ab-category-prev:disabled,
.ab-category-next:disabled {
  opacity: 0.5;
  cursor: not-allowed;
  background-color: #eee;
  color: #aaa;
  transform: none;
  box-shadow: none;
}

.ab-testimonials-slider-wrapper {
  position: relative;
  overflow: hidden;
  padding: 20px 60px 50px;
  width: 100%;
  min-height: 250px;
}

.ab-testimonials-list {
  display: flex !important;
  gap: 20px;
  padding: 20px 0;
  transition: transform 0.5s ease-in-out;
  width: max-content;
  min-height: 200px;
  flex-wrap: nowrap;
  transform: translateX(0);
}

.ab-testimonials-item {
  border: 1px solid rgba(233, 187, 79, 0.2);
  background-color: rgba(233, 187, 79, 0.05);
  border-radius: 5px;
  padding: 20px;
  min-width: 400px;
  width: 400px;
  max-width: 400px;
  flex-shrink: 0;
  box-sizing: border-box;
  transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
  position: relative;
  overflow: hidden;
  opacity: 1 !important;
  transform: scale(1) !important;
  pointer-events: auto;
  display: flex !important;
  flex-direction: column !important;
  visibility: visible !important;
  z-index: 1;
}

.ab-testimonials-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(233, 187, 79, 0.1);
  transform: scaleY(0);
  transform-origin: bottom;
  transition: transform 0.3s ease-out;
  z-index: 0;
}

.ab-testimonials-item:hover::before {
  transform: scaleY(1);
}

.ab-testimonials-item:hover {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  transform: translateY(-5px) scale(1.01);
  border-color: rgba(233, 187, 79, 0.5);
  z-index: 1;
}

.ab-testimonials-item span {
  font-size: 14px;
  display: block;
  margin-top: 10px;
  color: #666;
}

.ab-testimonials-item .ab-rating-stars {
  display: flex;
  gap: 4px;
  margin-bottom: 15px;
  font-size: 18px;
  color: #fbbf24;
}

.ab-testimonials-item .ab-rating-stars i {
  display: inline-block;
}

.ab-testimonials-item .ab-testimonials-product-count {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
  margin: 15px 0;
  font-style: italic;
}

/* Testimonials Navigation Buttons */
.ab-testimonial-prev,
.ab-testimonial-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background-color: rgba(233, 187, 79, 0.9);
  border: none;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.ab-testimonial-prev {
  left: 10px;
}

.ab-testimonial-next {
  right: 10px;
}

.ab-testimonial-prev:hover,
.ab-testimonial-next:hover {
  background-color: rgba(233, 187, 79, 1);
  transform: translateY(-50%) scale(1.1);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
}

.ab-testimonial-prev:active,
.ab-testimonial-next:active {
  transform: translateY(-50%) scale(0.95);
}

.ab-testimonial-prev:disabled,
.ab-testimonial-next:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  pointer-events: none;
}

.ab-testimonial-prev i,
.ab-testimonial-next i {
  font-size: 20px;
  color: #fff;
  font-weight: bold;
}

/* Testimonials Dots */
.ab-testimonial-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 30px;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
}

.ab-testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: rgba(233, 187, 79, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
  border: 2px solid transparent;
}

.ab-testimonial-dot:hover {
  background-color: rgba(233, 187, 79, 0.6);
  transform: scale(1.2);
}

.ab-testimonial-dot.active {
  background-color: rgba(233, 187, 79, 1);
  width: 30px;
  border-radius: 6px;
  transform: scale(1);
}

.ab-features-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  justify-content: space-between;
  flex-wrap: wrap;
}

.ab-feature-card {
  background-color: #fff;
  border: 1px solid #e0e0e0;
  border-radius: 8px;
  padding: 15px;
  width: 100%;
  display: flex;
  align-items: center;
  text-align: left;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease, box-shadow 0.3s ease,
    background-color 0.3s ease;
  opacity: 0;
  transform: translateY(30px);
  animation-name: fadeInUpCard;
  animation-duration: 0.6s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
  position: relative;
  overflow: hidden;
}

.ab-feature-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.03);
  transform: scale(0);
  opacity: 0;
  border-radius: 8px;
  transition: transform 0.3s ease-out, opacity 0.3s ease-out;
  z-index: 0;
}

.ab-feature-card:hover::before {
  transform: scale(1);
  opacity: 1;
}

.ab-feature-card:hover {
  transform: translateY(-5px) scale(1.01);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
  z-index: 1;
}

.ab-feature-icon {
  width: 50px;
  height: 50px;
  border: none;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 15px;
  flex-shrink: 0;
  transition: transform 0.2s ease, box-shadow 0.3s ease;
  z-index: 2;
}

.ab-feature-icon:hover {
  transform: scale(1.15);
  box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

.ab-feature-icon i {
  font-size: 24px;
  display: block;
  color: inherit;
  animation: iconPulse 2s ease-in-out infinite;
}

/* Icon Animations */
@keyframes iconPulse {

  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }

  50% {
    transform: scale(1.1);
    opacity: 0.9;
  }
}

@keyframes iconBounce {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-5px);
  }
}

@keyframes iconRotate {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes iconShake {

  0%,
  100% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-3px);
  }

  75% {
    transform: translateX(3px);
  }
}

/* Different animations for each icon */
.ab-feature-card:nth-child(1) .ab-feature-icon i {
  animation: iconBounce 2s ease-in-out infinite;
}

.ab-feature-card:nth-child(2) .ab-feature-icon i {
  animation: iconRotate 3s linear infinite;
}

.ab-feature-card:nth-child(3) .ab-feature-icon i {
  animation: iconPulse 2s ease-in-out infinite;
}

.ab-feature-card:nth-child(4) .ab-feature-icon i {
  animation: iconShake 2s ease-in-out infinite;
}

/* Hover effect - pause animation and scale */
.ab-feature-card:hover .ab-feature-icon i {
  animation-play-state: paused;
  transform: scale(1.2);
  transition: transform 0.3s ease;
}

.ab-feature-card:nth-child(1) .ab-feature-icon {
  background: linear-gradient(135deg, #e0f2f7, #c1e4ee);
  color: #2c97a8;
}

.ab-feature-card:nth-child(1) .ab-feature-icon i {
  color: #2c97a8 !important;
}

.ab-feature-card:nth-child(2) .ab-feature-icon {
  background: linear-gradient(135deg, #e8e2f8, #d1c1ee);
  color: #7a5cd6;
}

.ab-feature-card:nth-child(2) .ab-feature-icon i {
  color: #7a5cd6 !important;
}

.ab-feature-card:nth-child(3) .ab-feature-icon {
  background: linear-gradient(135deg, #fcecdb, #f3d4b6);
  color: #d18d45;
}

.ab-feature-card:nth-child(3) .ab-feature-icon i {
  color: #d18d45 !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  font-size: 24px !important;
}

.ab-feature-card:nth-child(4) .ab-feature-icon {
  background: linear-gradient(135deg, #e5eef4, #c9dbe7);
  color: #5b87a8;
}

.ab-feature-card:nth-child(4) .ab-feature-icon i {
  color: #5b87a8 !important;
}

.ab-feature-content {
  display: flex;
  flex-direction: column;
  z-index: 2;
}

.ab-feature-content h3 {
  margin: 0 0 3px 0;
  font-size: 16px;
  font-weight: 500;
  color: #333;
  transition: color 0.3s ease;
}

.ab-feature-card:hover .ab-feature-content h3 {
  color: #007bff;
}

.ab-feature-content p {
  margin: 0;
  font-size: 12px;
  color: #777;
}

.ab-slider-container {
  display: flex;
  gap: 20px;
  padding: 40px;
  overflow-x: auto;
}

.ab-slider-area {
  width: 40%;
  overflow: hidden;
  position: relative;
  border-radius: 12px;
  height: 320px;
}

.ab-slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.5s ease;
}

.ab-slide {
  min-width: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: relative;
}

.ab-slide img {
  width: 100%;
  height: 100%;
  display: block;
  border-radius: 10px;
  transition: transform 0.4s ease;
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.ab-slide:hover img {
  transform: scale(1.03);
}

.ab-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.ab-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: #d1d5db;
  cursor: pointer;
  transition: background 0.3s ease, transform 0.3s ease;
}

.ab-dot.active {
  background: #111827;
  transform: scale(1.2);
}

.ab-dot:hover:not(.active) {
  background: #777;
  transform: scale(1.1);
}

.ab-banner {
  flex: 60%;
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  height: 320px;
  justify-content: center;
  align-items: center;
  background: #1f2937;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ab-banner:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.ab-banner img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 0.4s ease;
  image-rendering: -webkit-optimize-contrast;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transform: translate3d(0, 0, 0);
}

.ab-banner:hover img {
  transform: scale(1.02);
}

@keyframes fadeInUpTitle {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUpCard {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.ab-categories-item:nth-child(1),
.ab-feature-card:nth-child(1) {
  animation-delay: 0.1s;
}

.ab-categories-item:nth-child(2),
.ab-feature-card:nth-child(2) {
  animation-delay: 0.2s;
}

.ab-categories-item:nth-child(3),
.ab-feature-card:nth-child(3) {
  animation-delay: 0.3s;
}

.ab-categories-item:nth-child(4),
.ab-feature-card:nth-child(4) {
  animation-delay: 0.4s;
}

.ab-categories-item:nth-child(5) {
  animation-delay: 0.5s;
}

.ab-categories-item:nth-child(6) {
  animation-delay: 0.6s;
}

@media (max-width: 992px) {
  .ab-testimonials-item {
    min-width: calc(33.333% - 26.666px);
  }

  .ab-testimonials-slider-wrapper {
    padding: 20px 50px 50px;
  }

  .ab-testimonial-prev,
  .ab-testimonial-next {
    width: 40px;
    height: 40px;
  }

  .ab-testimonial-prev {
    left: 5px;
  }

  .ab-testimonial-next {
    right: 5px;
  }

  .ab-testimonials::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 80px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), white);
    pointer-events: none;
  }

  .ab-slider-container {
    flex-direction: column;
    padding: 20px;
  }

  .ab-slider-area,
  .ab-banner {
    width: 100%;
    margin-bottom: 20px;
    height: 300px;
  }
}

@media (max-width: 992px) {
  .ab-categories-item {
    width: 280px;
    min-width: 240px;
  }

  .ab-categories-list {
    gap: 15px;
  }
}

@media (max-width: 768px) {

  .ab-trending-header,
  .ab-categories-header,
  .ab-testimonials-header {
    flex-direction: column;
    align-items: flex-start;
  }

  .ab-categories-view-all,
  .ab-category-buttons {
    margin-top: 20px;
  }

  .ab-categories,
  .ab-testimonials {
    padding: 30px 20px;
  }

  .ab-categories-title h1,
  .ab-testimonials-title h1 {
    font-size: 20px;
  }

  .ab-categories-slider-wrapper {
    padding: 0px 1px 30px;
    margin: 0 -20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .ab-categories-list {
    display: flex;
    overflow-x: auto;
    gap: 15px;
    padding: 10px 0;
    -webkit-overflow-scrolling: touch;
  }

  .ab-categories-item {
    flex: 0 0 auto;
    width: 220px;
    min-width: 200px;
    max-width: 85%;
    height: 130px;
    padding: 12px;
    opacity: 1;
    transform: translateY(0);
    animation: none;
  }

  .ab-categories-item img {
    max-width: 100%;
    width: 120px;
    height: auto;
    margin-bottom: 10px;
  }

  .ab-categories-item img {
    max-width: 100%;
    width: 120px;
    height: auto;
    margin-bottom: 5px;
  }

  .ab-categories-item .ab-categories-product-count {
    text-align: center;
    position: static;
    bottom: auto;
    right: auto;
    margin-top: 0px !important;
    font-size: 13px;
    width: 100%;
    text-decoration: none;
  }

  /* Hide dots on mobile */
  .ab-category-dots {
    display: none !important;
  }

  /* Center arrows on mobile */
  .ab-slider-controls {
    justify-content: center !important;
  }

  .ab-category-nav-buttons {
    margin: 0 auto;
  }

  .ab-testimonials-item {
    min-width: 280px !important;
    width: 280px !important;
    max-width: 280px !important;
    padding: 15px;
  }

  .ab-testimonials-slider-wrapper {
    padding: 20px 45px 50px;
  }

  .ab-testimonial-prev,
  .ab-testimonial-next {
    width: 35px;
    height: 35px;
  }

  .ab-testimonial-prev {
    left: 5px;
  }

  .ab-testimonial-next {
    right: 5px;
  }

  .ab-testimonial-prev i,
  .ab-testimonial-next i {
    font-size: 16px;
  }

  .ab-testimonial-dot {
    width: 10px;
    height: 10px;
  }

  .ab-testimonial-dot.active {
    width: 25px;
  }

  .ab-testimonials-item span {
    font-size: 12px;
  }

  .ab-testimonials-product-count {
    font-size: 14px;
  }

  .ab-features-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .ab-feature-card {
    width: 90%;
    flex-direction: row;
  }

  .ab-features-title h1 {
    font-size: 28px;
  }

  .ab-slider-area,
  .ab-banner {
    height: 250px;
  }
}

@media (max-width: 576px) {

  .ab-slider-area,
  .ab-banner {
    height: 200px;
  }
}

/* Prevent overflow on small screens */
@media (max-width: 768px) {

  .ab-trending,
  .ab-categories,
  .ab-testimonials,
  .ab-features {
    padding: 20px 15px;
  }

  .ab-categories-item {
    min-width: 200px;
    width: 200px;
  }

  .ab-testimonials-slider-wrapper {
    padding: 20px 50px 50px !important;
    overflow: hidden;
    display: flex;
    justify-content: center;
  }

  .ab-testimonials-item {
    min-width: calc(100vw - 100px) !important;
    width: calc(100vw - 100px) !important;
    max-width: calc(100vw - 100px) !important;
    padding: 15px;
    box-sizing: border-box;
    flex-shrink: 0;
  }

  .ab-testimonials-list {
    gap: 15px;
    padding: 15px 0;
    display: flex;
    justify-content: center;
  }

  .ab-testimonial-prev,
  .ab-testimonial-next {
    width: 35px;
    height: 35px;
  }

  .ab-testimonial-prev {
    left: 5px;
  }

  .ab-testimonial-next {
    right: 5px;
  }

  .ab-testimonial-prev i,
  .ab-testimonial-next i {
    font-size: 16px;
  }

  .ab-testimonials-item .ab-testimonials-product-count {
    font-size: 14px;
    line-height: 1.5;
  }

  .ab-testimonials-item span {
    font-size: 12px;
  }

  .ab-testimonials-item .ab-rating-stars {
    font-size: 16px;
    margin-bottom: 12px;
  }
}

@media (max-width: 480px) {

  html,
  body {
    overflow-x: hidden !important;
  }

  .ab-trending,
  .ab-categories,
  .ab-testimonials,
  .ab-features {
    padding: 20px 10px;
  }

  .ab-categories-slider-wrapper {
    margin: 0 -10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .ab-categories-header {
    margin-bottom: 15px;
  }

  .ab-categories-title h1 {
    font-size: 18px;
  }

  .ab-categories-list {
    gap: 12px;
    padding: 8px 0;
  }

  .ab-categories-item {
    width: 160px;
    min-width: 150px;
    max-width: 70%;
    height: 110px;
  }

  .ab-testimonials-slider-wrapper {
    padding: 15px 45px 50px !important;
    overflow: hidden;
    display: flex;
    justify-content: center;
  }

  .ab-testimonials-item {
    min-width: calc(100vw - 90px) !important;
    width: calc(100vw - 90px) !important;
    max-width: calc(100vw - 90px) !important;
    padding: 12px;
    box-sizing: border-box;
    flex-shrink: 0;
    margin: 0 auto;
  }

  .ab-testimonials-list {
    gap: 12px;
    padding: 12px 0;
    display: flex;
    justify-content: flex-start;
  }

  .ab-testimonial-prev,
  .ab-testimonial-next {
    width: 30px;
    height: 30px;
  }

  .ab-testimonial-prev {
    left: 2px;
  }

  .ab-testimonial-next {
    right: 2px;
  }

  .ab-testimonial-prev i,
  .ab-testimonial-next i {
    font-size: 14px;
  }

  .ab-testimonials-item .ab-testimonials-product-count {
    font-size: 13px;
    line-height: 1.4;
    margin: 12px 0;
  }

  .ab-testimonials-item span {
    font-size: 11px;
    margin-top: 8px;
  }

  .ab-testimonials-item .ab-rating-stars {
    font-size: 14px;
    margin-bottom: 10px;
  }

  .ab-categories-item img {
    width: 80px;
    max-width: 100%;
    margin-bottom: 4px;
  }

  .ab-categories-item .ab-categories-product-count {
    text-align: center;
    position: static;
    bottom: auto;
    right: auto;
    margin-top: 0px !important;
    font-size: 11px;
    width: 100%;
    text-decoration: none;
  }

  /* Hide dots on small mobile */
  .ab-category-dots {
    display: none !important;
  }

  /* Center arrows on small mobile */
  .ab-slider-controls {
    justify-content: center !important;
  }

  .ab-category-nav-buttons {
    margin: 0 auto;
  }

  .ab-trending,
  .ab-categories,
  .ab-testimonials,
  .ab-features {
    padding: 20px 10px;
  }

  .ab-trending-title h1,
  .ab-categories-title h1,
  .ab-testimonials-title h1,
  .ab-features-title h1 {
    font-size: 24px;
  }

  .ab-trending-header,
  .ab-categories-header,
  .ab-testimonials-header,
  .ab-features-header {
    margin-bottom: 10px !important;
  }

  .ab-testimonials-title h1 {
    font-size: 20px;
  }

  .ab-categories-list {
    padding: 10px;
  }

  .ab-category-button {
    width: 100%;
    text-align: left;
  }

  .ab-features-list {
    grid-template-columns: repeat(1, 1fr);
  }

  .ab-feature-card:hover::before {
    transform: scale(1);
    opacity: 1;
  }

  .ab-feature-card:hover {
    transform: translateY(-2px) scale(1.01);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.12);
    z-index: 1;
  }

  .ab-feature-card {
    width: 100%;
  }

  .ab-logo img {
    width: 50px;
  }

  .ab-categories-slider-wrapper {
    margin: 0 -10px;
    padding-left: 10px;
    padding-right: 10px;
  }

  .ab-categories-list {
    gap: 12px;
    padding: 8px 0;
  }

  .ab-categories-item {
    width: 160px;
    min-width: 150px;
    max-width: 70%;
    padding: 10px 8px;
    height: 110px;
  }

  .ab-categories-item img {
    width: 80px;
    max-width: 100%;
    margin-bottom: 4px;
  }

  .ab-categories-item p {
    font-size: 12px;
  }

  .ab-categories-item .ab-categories-product-count {
    text-align: center;
    position: static;
    bottom: auto;
    right: auto;
    margin-top: 0px !important;
    font-size: 10px;
    width: 100%;
    text-decoration: none;
  }

  /* Hide dots */
  .ab-category-dots {
    display: none !important;
  }

  /* Center arrows */
  .ab-slider-controls {
    justify-content: center !important;
  }

  .ab-category-nav-buttons {
    margin: 0 auto;
  }
}