/* === Base Styles === */
.sidebar-module-container {
  background: #ffffff;
  padding: 24px;
  border-radius: 16px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.05);
  font-family: 'Segoe UI', sans-serif;
}

/* === Section Title === */
.sidebar-module-container .section-title {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  border-left: 4px solid #3b82f6;
  padding-left: 12px;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 10px;
  text-align: left;
}

/* === Widget === */
.sidebar-widget {
  margin-bottom: 24px;
}

.widget-title {
  font-size: 16px;
  font-weight: 600;
  color: #334155;
  margin-bottom: 16px;
  text-align: left;
  border-left: 3px solid #3b82f6;
  padding-left: 10px;
}

/* === Accordion Group === */
.accordion {
  margin-bottom: 12px;
}

.accordion-group .accordion-heading a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 12px 18px;
  font-size: 15px;
  color: #334155;
  background: #f8fafc;
  border-radius: 10px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.3s ease;
  box-shadow: inset 0 0 0 1px #e2e8f0;
  text-align: left;
}

/* === Hover Color (Unified Blue) === */
.accordion-group .accordion-heading a:hover {
  background: linear-gradient(to right, #3b82f6, #2563eb);
  color: #ffffff;
  box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

/* === Active State === */
.accordion-group .accordion-heading a.active {
  background-color: #e0f2fe;
  color: #0c4a6e;
  border: 1px solid #38bdf8;
}

/* === Responsive Styles === */
@media (max-width: 1024px) {
  .sidebar-module-container {
    padding: 20px;
    border-radius: 12px;
  }

  .sidebar-module-container .section-title {
    font-size: 18px;
    padding-left: 10px;
  }

  .widget-title {
    font-size: 15px;
  }

  .accordion-group .accordion-heading a {
    font-size: 14px;
    padding: 10px 16px;
  }
}

@media (max-width: 768px) {
  .sidebar-module-container {
    padding: 16px;
  }

  .sidebar-module-container .section-title {
    font-size: 16px;
    padding-left: 8px;
    margin-bottom: 16px;
  }

  .accordion-group .accordion-heading a {
    font-size: 13.5px;
    padding: 10px 14px;
  }
}

@media (max-width: 480px) {
  .sidebar-module-container {
    padding: 12px;
    border-radius: 10px;
  }

  .sidebar-module-container .section-title {
    font-size: 15px;
  }

  .accordion-group .accordion-heading a {
    padding: 10px 12px;
    font-size: 13px;
  }

  .accordion-group {
    margin-bottom: 10px;
  }
}

#category {
  width: 100%;
  background-color: #ffffff;
  overflow: hidden;
  position: relative;
  padding: 0;
  margin: 0;
}

/* === Carousel Structure === */
#category .owl-carousel {
  width: 100%;
}

/* === Each Slide === */
#category .item {
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 100%;
  min-height: 300px;
  display: flex;
  justify-content: center;
  align-items: center;
}

#category .item .image {
  width: 100%;
  text-align: center;
}

#category .item .image img {
  max-width: 100%;
  height: auto;
  border-radius: 12px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
  transition: transform 0.3s ease;
}

#category .item .image img:hover {
  transform: scale(1.02);
}

/* === Arrows === */
#category .owl-nav .owl-prev,
#category .owl-nav .owl-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.9);
  color: #333333;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  z-index: 9;
  cursor: pointer;
}

#category .owl-nav .owl-prev {
  left: 15px;
}

#category .owl-nav .owl-next {
  right: 15px;
}

#category .owl-nav .owl-prev:hover,
#category .owl-nav .owl-next:hover {
  background-color: #3b82f6;
  color: #ffffff;
}

/* === Hide all captions and text === */
#category .caption,
#category .big-text,
#category .excerpt {
  display: none !important;
}

/* === Dots === */
#category .owl-dots {
  position: absolute;
  bottom: 12px;
  left: 0;
  right: 0;
  text-align: center;
}

#category .owl-dot {
  width: 10px;
  height: 10px;
  background: #d1d5db;
  border-radius: 50%;
  margin: 0 4px;
  display: inline-block;
  transition: background 0.3s;
}

#category .owl-dot.active {
  background: #3b82f6;
}

/* === Responsive Handling === */
@media (max-width: 768px) {
  #category .item {
    min-height: 200px;
  }

  #category .owl-nav .owl-prev,
  #category .owl-nav .owl-next {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }
}

/* Ensure relative positioning on image container */
.product .image {
  position: relative;
}

.wishlist-btn {
  text-decoration: none !important; /* Ensures underline is removed */
  color: #4b5563; /* Gray tone */
  position: absolute;
  top: 10px;
  right: 10px;
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 18px;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  z-index: 5;
}

.wishlist-btn:hover {
  background-color: #3b82f6; /* Blue on hover */
  color: #fff;
}


.super-fancy-heading {
  font-family: 'Inter', 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  font-size: 30px;
  font-weight: 600;
  color: #222;
  margin: 40px 0 25px;
  padding-bottom: 2px;
  border-bottom: 3px solid #ff6f00;
  letter-spacing: 1px;
  text-transform: capitalize;
  display: inline-block;
  position: relative;
  text-align: center;
  /* Centering within parent */
  display: block;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 768px) {
  .super-fancy-heading {
    font-size: 24px;
    margin: 10px 0 10px;
  }
}
