
/* listing css */
.listing-hero{
    padding-top: 10px;
    background-color: #fef1eb; 
    padding-bottom: 50px;
    color: var(--black);
}
.listing-hero-wrapper{
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns:  .6fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}
.listing-hero-right{
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns:  1fr .4fr;
    grid-auto-columns: 1fr;
    display: grid;
}
.listing-hero-left,.listing-hero-content{
    display: flex;
        align-items: flex-start;
        flex-direction: column;
        justify-content: center;
}

.list-wrapper{
    padding-top: 188px;
    padding-bottom: 188px;
    grid-column-gap: 20px;
    grid-row-gap: 20px;
    grid-template-rows: auto;
    grid-template-columns:  1fr 1fr;
    grid-auto-columns: 1fr;
    display: grid;
}
.list-left{
    background-color: #FCEEE8;
    border-radius: 8px;
    padding: 64px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.list-right{
    background-color: #E8EFF6;
    border-radius: 8px;
    padding: 64px;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.list-wrapper ul {
    margin-bottom: 0;
    padding-left: 0;
    list-style-type: none;
    display: flex;
    flex-direction: column;
    gap: 32px;
}
.list-wrapper ul li {
    background-image: url('../images/right-vector.svg');
    background-position: 0 6px;
    background-repeat: no-repeat;
    background-size: auto;
    padding-left: 30px;
}


.table-section{
    max-width: 1781px;
    padding-right: 40px;
    padding-left: 40px;
    margin: auto;
}
 
.table-top{
    grid-column-gap: 20px;
    grid-row-gap: 20px; 
    display: flex;
        max-width: 1620px;
        margin: auto;
        font-size: 16px;
        flex-wrap: wrap;
        
    justify-content: center;
}
.table-bottom{
    /* max-width: 2020px; */
    margin: auto;
}


.table-top > div{
    border-left: 1px solid #E7E7E7;
    padding: 20px 15px;
    position: relative;
}
.table-top > div:first-child {
    border-left:none; 
}
.table-top  .dropdown-menu {
    display: block;
    opacity: 0;
    visibility: hidden;
    transform: translateX(20%);
    transition: all 0.5s;
    max-height: 20vw;
    min-height: auto;
    overflow: auto;

}

.table-top  .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible; 
    will-change: transform;  
}

/* Arrow Styling */
.table-top .arrow {
    display: inline-block;
    margin-left: 5px;
    transition: transform 0.3s ease;
    position: absolute;
    right: 10px;
}

/* Rotate Arrow on Hover */
.table-top  .dropdown:hover .arrow {
    transform: rotate(180deg);
}

.tags-wrapper{
    display: flex; 
    gap: 10px;
    align-items: center;
}
.tags-list {
    display: flex;
    gap: 10px;
    align-items: center;
}
.tags-list span{
    font-size: 14px;
    background-color: #E8EFF6;
    border-radius: 4px;
    padding: 4px 8px; 
    line-height: auto;
    cursor: pointer;
}
.tags-clear a{
    font-size: 14px;
    text-decoration: underline;
    text-underline-offset: 3px;
    text-decoration-thickness: 1px;
}

.table-bottom .table thead th {
    background-color: var(--orange); /* Custom Header Color */
    color: white;
    text-align: center;
}
.table-bottom .table tbody td {
    text-align: center;
    vertical-align: middle;
}
.table-bottom .blue{
    background-color: var(--blue)!important;
}
.table-bottom .white{
    background-color: var(--white)!important;
    color: var(--black)!important;
}
.table-bottom .table thead .white {
    vertical-align: middle;
    border: 1px solid rgba(16, 15, 15, 0.1)!important;
}
.table-bottom .table>tbody>tr:nth-child(odd) {
    background-color: #E8EFF6; /* Alternating Row Colors */
}
.table-bottom .quantity-selector {
    display: flex;
    align-items: center;
    justify-content: center;
}
.table-bottom .quantity-selector button {
    border: none;  
    border-radius: 4px; 
    cursor: pointer;
    outline: none;
    white-space: nowrap;
}
.table-bottom  .quantity-selector > div button {
    border: none;  
    border-radius: 4px; 
    cursor: pointer;
    outline: none;
    background-color: transparent;
}
.table-bottom .quantity-selector input {
    width: 40px;
    text-align: center; 
    margin: 0 5px;
}
 
.table-bottom .table thead th {
    vertical-align: middle;
    border-bottom: 1px solid  rgba(255,255,255,10%);
}
.table-bordered th {
    border: 1px solid rgba(255, 255, 255, 10%);
}
.table-bottom  thead th{
    font-size: 18px;
    font-weight: 100;
    padding: .75rem 1rem;
}
.table-bottom  tbody td{
    font-size: 16px;
    padding: .75rem 1rem;
}

.table-bottom .quantity-selector div{
    background-color: #D3E1EE;
    color: var(--black);
    border-radius: 4px;
    padding: 14px 16px;
    display: flex;
}
.table-bottom .quantity-selector div input{
    background-color: transparent;
    border: none;
}
.add-button{
    background-color: var(--blue);
    color: var(--white);
    border-radius: 4px;
    padding: 14px 16px;
}
.table-bordered td{
    border: 0px solid #dee2e6;
    border: none;
} 

.table-pagination{
    padding-top: 48px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-size: 16px;
    flex-wrap: wrap;
    gap: 15px;
}
.table-pagination-wrapper{
    display: flex;
    gap: 8px;
}
.table-pagination-list{
    display: flex;
    gap: 8px;
}
.table-pagination-list div{
    width: 44px;
    height: 44px;
    border-radius: 100px;
    background-color: #E8EFF6;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #8E97A2;
}
.table-prev{
    width: 44px;
    height: 44px;
    border-radius: 100px;
    background-color: #E8EFF6;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--blue);
}
.table-next{
    width: 44px;
    height: 44px;
    border-radius: 100px;
    background-color: var(--blue);
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
}
.filter-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
.filter-list li{
    padding:5px 15px;
}

/* Hide default checkbox */
.FacetFilter {
    display: none;
}

/* Style the label to look like a custom checkbox */
.FacetFilter + label {
    position: relative;
    padding-left: 30px;
    cursor: pointer;
    font-size: 16px;
    color: #333;
    user-select: none;
}

/* Create a custom circular checkbox */
.FacetFilter + label::before {
    content: "";
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    border: 2px solid var(--blue);
    border-radius: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
}

/* Checked state - Fill the circle */
.FacetFilter:checked + label::before {
    background-color: var(--blue);
    border-color: var(--blue); 
}





.description {
    margin: 24px 0;
  }
  .description .accordion{
    border-top:  1px solid #E7E7E7;
    border-bottom:  1px solid #E7E7E7;
  }
  .description #faq .card {
    margin-bottom: 0px;
    border: 0;
  }
  
  .description #faq .card .card-header {
    border: 0;
    -webkit-box-shadow:none;
            box-shadow:none;
    border-radius: 0;
    padding: 0;
  }
  .description .btn.focus, .btn:focus {
    outline: 0;
    box-shadow:none;
}
  .description .card-header{
    background-color: transparent;
  }
  .description #faq .card .card-header .btn-header-link {
    color: var(--dark);
    display: block;
    text-align: left;
    background: transparent;
    color: var(--dark);
    padding: 20px 0; 
    font-size: 18px;
    cursor: pointer;
    
    transform: rotate('90deg');
  }
  
  .description #faq .card .card-header .btn-header-link:after {
    float: right;
    content: "";
    display: inline-block;
    width: 16px;  
    height: 16px;  
    background-image: url('../images/plus.svg');  
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;    
    transition: all 0.2s ease-in-out;
    position: absolute;
    right: 0;
    top: 25px; 
  }
  
  .description #faq .card .card-header .btn-header-link.collapsed {
    background: transparent;
    color: var(--dark);
  }
  
  .description #faq .card .card-header .btn-header-link.collapsed:after{
    content: "";
    display: inline-block;
    width: 16px;  
    height: 16px;  
    background-image: url('../images/plus.svg');  
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    transform: rotate(45deg);
    transition: all 0.2s ease-in-out;  
    position: absolute;
    right: 0;
    top: 25px;
  }
 
  .description #faq .card .collapsing {
    background: transparent;
    line-height: 30px;
  }
  
  .description #faq .card .collapse {
    border: 0;
  }
  
  .description #faq .card .collapse.show {
    background: transparent;
    line-height: 30px;
    color: var(--dark);
    opacity: 80%;
}
.card-body{
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 20px 0;  
    padding-top: 0;
}
.card-body p{
      font-size: 16px;
opacity: 80%;
  }
  .card-body p span{ 
opacity: 60%;
}



   /* Sidebar styles */
   .sidebar {
    position: fixed;
    top: 0;
    right: -300px; /* Initially hidden */
    width: 300px;
    height: 100%;
    background: #ffffff;
    box-shadow: -3px 0 5px rgba(0, 0, 0, 0.2);
    padding: 0px;
    transition: right 0.3s ease;
    z-index: 1000;
}
.sidebar h2{
    padding: 20px;
    font-size: 25px;
    background: var(--blue);
    color: var(--white);
}
/* Close button */
.close-btn {
    position: absolute;
    top: 24px;
    right: 15px;
    width: 18px;
    height: 18px;
    cursor: pointer;
    filter: invert(1);
}

/* Overlay effect */
.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 999;
}

/* Show sidebar effect */
.sidebar.active {
    right: 0;
}

.overlay.active {
    display: block;
}

/* Button styles */
.quotebutton {
    text-align: center;
    margin: 20px;
}

.quotebutton button {
    padding: 10px 20px;
    font-size: 16px;
    cursor: pointer;
    background: var(--blue);
    color: #fff;
    border: none;
    border-radius: 5px;
    outline: none;
    transition: all 0.6s ease-in-out;
}

.quotebutton button:hover {    
    box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.5);
}
.small-screen,.quotebutton{
    display: none;
}

.child-categories{
    list-style: none;
    margin-top: 20px;
    display: flex;
    flex-wrap: wrap;
}

.child-categories>div {
    border: 1px solid #c9c9c9;
    padding: 8px;
    min-height: 300px;
    max-width: 250px;
    width: 100%;
    margin: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.child-categories .category_name{
    text-align: center;
}

.child-categories>div a {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.child-categories .category_image {
    flex: 1;
}
.filters-block button {
    height: inherit !important;
}
.table-pagination-list a.active div {
    background-color: #006bb4;
    color: white;
}





