/* General Styles */
body {
    margin: 0;
    font-family: Lato, sans-serif;
  }
  
  .card-container {
    padding: 100px 150px;
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.40) 0%, rgba(0, 0, 0, 0.40) 100%), url('/imgs/catalog-card-bg.png');
    background-size: cover;
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 30px;
    flex-wrap: wrap;
  }
  
  .card {
    width: 228px;
    padding: 10px 20px;
    background: white;
    box-shadow: 0px 0px 24px rgba(0, 0, 0, 0.65);
    text-align: center;
    color: black;
    font-size: 20px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    word-wrap: break-word;
    cursor: pointer;
  }
  
  /* .card.active {
    background: #F6881F;
  } */
   .card:hover{
    background: #F6881F;
   }
  

.category-sidebar {
    padding: 20px;
    background: #f8f9fa;
    min-height: 100vh;
    border-radius: 4px;
}



.product-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    padding: 20px;
}

/* Product and Subcategory Item Styles */
.product-item {
    width: 250.67px;
    /* height: 300px; */
    padding: 20px;
    background: white;
    outline: 2px #939598 solid;
    outline-offset: -2px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 15px;
}

.product-image {
    align-self: stretch;
    height: 168px;
    object-fit: cover;
}

.product-title {
    align-self: stretch;
    text-align: center;
    color: black;
    font-size: 21px;
    font-family: Lato, sans-serif;
    font-weight: 700;
    text-transform: capitalize;
    word-wrap: break-word;
}

.product-buy-button {
    align-self: stretch;
    padding: 10px 50px;
    background: #F6881F;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
}

.product-buy-text {
    text-align: center;
    color: white;
    font-size: 20px;
    font-family: Lato, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    word-wrap: break-word;
    text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.25);
}

.form-check {
    margin-bottom: 10px;
}

.form-check-input:checked + .form-check-label {
    font-weight: bold;
}

h1.shop-category-title {
  font-family: Lato;
  font-size: 49px;
  font-style: normal;
  font-weight: 800;
  line-height: normal;
  letter-spacing: 1.96px;
  text-transform: uppercase;
  color: black;
  text-align: center;
  margin-bottom: 40px;
}
.container-fluid {
  padding: 150px 20px;
}

/* Category List Styles */
.category-list {
    align-self: stretch;
    padding: 20px;
    outline: 2px #D9D9D9 solid;
    outline-offset: -2px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 100px;
    min-width: 280px;
    align-items: start;
    height: max-content;
}

.filter-title {
    color: black;
    font-size: 26px;
    font-family: Lato, sans-serif;
    font-weight: 700;
    text-transform: capitalize;
    word-wrap: break-word;
}

.divider {
    align-self: stretch;
    height: 0px;
    outline: 2px black solid;
    outline-offset: -1px;
}

.filter-category {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-category-title {
    /* text-align: center; */
    color: #58585A;
    font-size: 18px;
    font-family: Lato, sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.72px;
    word-wrap: break-word;
}

.filter-children {
    margin-left: 5px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.filter-children .filter-category {
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.filter-children .filter-category-title {
    text-align: start;
    color: #58585A;
    font-size: 16px;
    font-family: Lato, sans-serif;
    font-weight: 500;
    line-height: 21px;
    word-wrap: break-word;
}

/* .filter-children .filter-category-title::before {
    content: '';
    width: 19px;
    height: 19px;
    border: 3px #D9D9D9 solid;
    display: inline-block;
    margin-right: 10px;
} */
.shop-category-container {
  display: flex;
  justify-content: center;
  max-width: 1180px;
  margin: auto;
  gap: 50px;
  padding: 0 20px 150px 20px;
  border-bottom: 2px solid #D8D8D8;
}
.shop-category-container a {
  text-decoration: none;
}
.category-details {
  display: flex;
  justify-content: center;
  gap: 50px;
  max-width: 1140px;
  margin: auto;
  margin-bottom: 150px;
  padding: 0 20px;

}
.category-details img {
  width: 415px;
}
.category-details-group {
  padding-top: 10px;
}
.category-details h2.category-title {
  font-family: Lato;
  font-size: 34px;
  font-style: normal;
  font-weight: 900;
  line-height: normal;
  letter-spacing: 1.36px;
  text-transform: uppercase;
}
.dropdown-toggle{
  display: none;
}

@media (max-width: 1200px) {
  .shop-category-container {
    flex-direction: column;
    align-items: center;
    padding-bottom: 50px;
  }
  .category-list{
    max-width: 280px;
    margin: auto;
  }
  .product-grid{
    justify-content: center;
  }
  .category-details {
    margin-bottom: 50px;
    flex-direction: column;
    align-items: start;
    max-width: 350px;
}
  .category-details img {
    width: 100%;
  }
  .container-fluid {
    padding: 50px 20px;
}
.category-dropdown {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

/* Toggle button */
.dropdown-toggle {
  align-self: stretch;
  padding: 10px;
  background: #F6881F;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border: none;
  cursor: pointer;
  width: 280px;
  display: block;
}

.dropdown-title {
  text-align: center;
  color: black;
  font-size: 18px;
  font-family: Lato, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.72px;
  word-wrap: break-word;
}

.dropdown-icon {
  width: 24px;
  height: 24px;
}

/* Hide category list by default */
.category-list {
  display: none;
  flex-direction: column;
  gap: 10px;
  transition: max-height 0.3s ease;
}

/* Show category list when active */
.category-list.active {
  display: flex;
}
}

@media (max-width: 768px) {
  .card-container {
    padding: 20px;
    flex-direction: column;
    gap: 20px;
  }

  .card {
    width: 100%;
    font-size: 15px;
    letter-spacing: 0.6px;
  }
  
}
