/* Sidebar General Styling */
/* Sidebar General Styling */
/* Sidebar General Styling */
/* side-bar */
.side-bar {
  min-width: 290px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}


.side-bar {
  width: 100%;
  padding: 15px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: flex-start;
}

.side-bar a {
  display: block;
  text-decoration: none;
}

.side-bar img {
  max-width: 100%;
  height: auto;
}

/* Category Title */
.category-title img {
  margin-bottom: 0px;
}

/* Main Category Styling */
.category-list ul {
  list-style: none;
  padding: 0;
  margin: 0;
  line-height: 35px;
}

.category-list > ul > li {
  position: relative;
  margin-bottom: 18px;
  padding-left: 20px; /* Space for the dot */
}

.category-list > ul > li::before {
  content: ""; /* Add dot before the main category */
  position: absolute;
  left: 0;
  color: #5f3c13; /* Match the dot color */
  font-size: 20px;
}

.category-list > ul > li > a {
  font-size: 20px;
  color: #5f3c13;
  text-decoration: none;
  transition: color 0.3s;
}

.category-list > ul > li > a:hover {
  color: #c6442c;
}

.category-list ul li a::after {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  background: url("https://gigaplus.makeshop.jp/kerorin/img/indicator.svg") no-repeat center;
  background-size: contain;
  margin-left: 5px;
  padding-right: 45px;
}


/* Subcategory Styling */
.sub-category {
  list-style: none;
  padding: 0;
  margin: 10px 0 0 20px; /* Indent for subcategories */
}

.sub-category li {
  position: relative;
  /* margin-bottom: 10px; */
}

.sub-category li > a {
  font-size: 18px; /* Slightly smaller font for subcategories */
  color: #5f3c13;
  text-decoration: none;
  transition: color 0.3s;
}

.sub-category li > a:hover {
  color: #c6442c;
}

nav.category-list a {
  position: relative;
  display: flex;
  align-items: center;
}

nav.category-list {
  width: 100%;
}
nav.category-list a::after {
  position: absolute;
  right: 0;
}

@media (max-width: 1165px) {
  .side-bar {
    max-width: 100%;
    min-width: auto;
  }
}
@media (max-width: 1054px) {
  .category-list ul li a::after {
    padding-right: 17px;
}
}


@media (max-width: 900px) {
  .side-bar {
    width: 80%;
    padding: 15px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: flex-start;
    min-width: 236px;
}
}
@media (max-width: 650px) {
  .side-bar {
      display: none;
  }
}


/* End Sidebar General Styling */
/* End Sidebar General Styling */
/* End Sidebar General Styling */