 @media (min-width: 991px) {

     /*.bottom-margin {*/
     /*    margin-bottom: 130px;*/
     /*}*/
     .mobile-view {
         display: none;
     }
 }

 @media (max-width: 991px) {
     .pc-view {
         display: none;
     }

     .mobile-img {
         height: auto !important;
     }

     .mobile_Shop_Section .row {
         display: block !important;
     }
 }

 .product-sort-bar {
     display: flex;
     flex-wrap: wrap;
     align-items: center;
     justify-content: space-between;
     background-color: #fff;
     padding: 12px 16px;
     border-radius: 8px;
     /*box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);*/
     margin-bottom: 1rem;
 }

 .product-sort-bar h6 {
     margin: 0;
     font-weight: 500;
     color: #333;
 }

 .product-sort-bar select {
     min-width: 180px;
 }

 .product-sort-bar select {
     min-width: 180px;
     border: 1px solid #ccc;
     border-radius: 6px;
     padding: 6px 10px;
     background-color: #fff;
     transition: all 0.2s ease-in-out;
 }

 .custom-padding {
     padding: 10px 0;
 }

 .product-card {
     position: relative;
     overflow: hidden;
     border: 1px solid #ddd;
     border-radius: 4px;
     transition: box-shadow 0.3s;
 }

 .product-card:hover {
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
 }

 .product-img {
     width: 100%;
     height: auto;
     aspect-ratio: 4/3;
     display: block;
     object-fit: cover;
     object-position: center
 }



 .product-card:hover .add-to-cart {
     display: block;
 }



 .product-title {
     font-size: 16px;
     font-weight: 500;
     margin-bottom: 4px;
 }

 .product-meta {
     display: flex;
     /*justify-content: center;*/
     column-gap: 5px;
     font-size: 13px;
     color: #666;
 }

 .product-meta .regular {
     text-decoration: line-through;
     font-size: 16px;
 }

 .product-meta .sale {
     /*font-weight: bold;*/
     color: black;
     font-size: 16px;
 }

 .category-group a {
     color: #000;
     text-decoration: none;
     font-weight: 500;
     cursor: pointer;
 }

 .category-group ul li {
     font-size: 14px;
     color: #555;
     margin-bottom: 5px;
 }

 .category-group hr {
     margin: 10px 0;
     border-top: 1px solid #e0e0e0;
 }

 .toggle-arrow {
     cursor: pointer;
     /*font-size: 18px;*/
     font-weight: bold;
     transition: transform 0.3s ease;
     /* smooth rotation */
 }

 .toggle-arrow.active {
     transform: rotate(180deg);
 }

 .filter-sidebar h6 {
     font-size: 15px;
 }

 /* Base container */
 .filter-sidebar {
     background-color: #fff;
     border: 1px solid #eee;
     border-radius: 6px;
     font-family: 'Segoe UI', sans-serif;
     font-size: 15px;
     max-width: 300px;


     overflow: auto;
     -webkit-overflow-scrolling: touch;
     padding-bottom: 30px;
 }

 /* Section titles */
 .filter-title {
     font-weight: 600;
     font-size: 20px;
     color: #222;
 }

 /* Subsection headings */
 .filter-group {
     margin-bottom: 25px;
 }

 .filter-group .filter-heading {
     font-weight: 600;
     font-size: 16px;
     color: #222;
     margin-bottom: 10px;
     position: relative;
     cursor: pointer;
 }

 .filter-group .filter-heading::after {
     content: "^";
     font-size: 14px;
     float: right;
     transition: transform 0.3s ease;
 }

 .filter-group.collapsed .filter-heading::after {
     transform: rotate(180deg);
 }

 .form-check {
     display: flex;
     align-items: center;
     /* aligns input and label vertically */
     gap: 8px;
     /* space between checkbox and text */
     margin-bottom: 6px;
     padding-left: 0;
     /* reset Bootstrap padding */
 }

 .form-check-input {
     position: relative;
     /* remove absolute positioning */
     margin: 0;
     /* reset margins */
     width: 16px;
     height: 16px;
     /* make sure checkbox size matches text line-height */
 }

 /*.form-check-input:checked {*/
 /*    background-color: black !important;*/
 /*    color:black !important;*/
 /*    border-color: black; */
 /*}*/

 .form-check-label {
     font-weight: 400;
     color: #333;
     cursor: pointer;
 }

 /* Select box */
 .custom-select {
     border-radius: 4px;
     height: 40px;
     font-size: 15px;
     padding: 8px 12px;
     border: 1px solid #ccc;
     background-color: #fff;
 }

 /* Divider */
 hr {
     border-top: 1px solid #ddd;
     margin: 10px 0;
 }

 /* Optional hover/focus styles */
 .form-check-input:focus {
     box-shadow: none;
 }

 .form-check-input:checked~.form-check-label {
     color: #000;
     font-weight: 500;
 }

 a {
     color: black;
 }

 .bg-color {
     background-color: #f7f7f7;
 }

 .custom-mb {
     margin-bottom: 3rem;
 }

 /* < !-- pc categories --> */
 .categories {
     font-size: 1.2rem;
 }

 /* Container */
 .svc-container {
     max-width: 400px;
     margin: 0 auto;
     border-radius: 8px;
     background: #fff;
     /*border: 1px solid #eee;*/
 }

 /* Menu Item */
 .svc-item {
     border-bottom: 1px solid #eee;
 }

 .svc-item:last-child {
     border-bottom: none;
 }

 /* Main Link */
 .svc-link {
     display: flex;
     justify-content: space-between;
     align-items: center;
     width: 100%;
     padding: 1rem 0;
     font-size: 0.95rem;
     color: #444;
     cursor: pointer;
     border: none;
     border: none;
     /* remove default border */
     background: transparent;
     /* remove default bg */
     outline: none;
 }

 .svc-link .categories {
     color: #212121;
 }

 .svc-link .categories:hover {
     color: #ff6b47 !important;
     background: #f9f9f9 !important;
 }

 .svc-link:hover {
     color: #ff6b47 !important;
     background: #f9f9f9 !important;
 }

 /* Toggle Button */
 .svc-toggle {
     background: none;
     border: none;
     font-size: 0.9rem;
     color: #999;
     cursor: pointer;
     transition: transform 0.3s ease, color 0.3s ease;
 }

 .svc-item.open .svc-toggle i {
     transform: rotate(180deg);
     color: #ff6b47;
 }

 /* Submenu (hidden by default) */
 .svc-submenu-wrapper {
     max-height: 0;
     overflow: hidden;
     transition: max-height 0.3s ease;
 }

 .svc-item.open .svc-submenu-wrapper {
     max-height: 500px;
     /* adjust if needed */
 }

 .svc-submenu {
     background: #f8f9fa;
 }

 .svc-submenu-link {
     display: block;
     padding: 0.75rem 1.5rem;
     font-size: 1.09rem;
     color: #111 !important;
     /*font-weight:500;*/
     text-decoration: none;
     transition: all 0.2s ease;
 }

 .svc-submenu-link:hover {
     color: #ff6b47;
     background: #fff5f3;
     padding-left: 1.75rem;
 }

 /* Mobile adjustments */
 @media (max-width: 576px) {
     .svc-container {
         margin: 0 1rem;
         max-width: none;
     }

     .svc-link {
         padding: 0.875rem 1.25rem;
     }

     .svc-submenu-link {
         padding: 0.625rem 1.25rem;
     }
 }

 /* < !-- mobile filter --> */
 .custom-btn {
     border: 2px solid #ccc;
     border-radius: 50px;
     /* pill shape */
     background-color: white;
     color: #333;
     font-size: 14px;
     font-weight: 500;
     padding: 6px 20px;
     box-shadow: none;
     transition: all 0.2s ease-in-out;
 }

 .mobile-filter-sidebar {
     position: fixed;
     top: 0;
     left: 0;
     width: 66.67%;
     height: 100vh;
     background: rgba(255, 255, 255, 0.98);
     backdrop-filter: blur(10px);
     z-index: 9999;
     display: flex;
     flex-direction: column;
     transform: translateX(-100%);
     transition: transform 0.4s ease-in-out;
     ;
 }

 .mobile-filter-sidebar.show {
     transform: translateX(0);
 }

 /*Overlay for outside click */
 .filter-overlay {
     position: fixed;
     top: 0;
     right: 0;
     width: 33.33%;
     height: 100vh;
     /*background: rgba(0,0,0,0.5);*/
     z-index: 9999;
     display: none;
 }

 .filter-overlay.show {
     display: block;
 }

 .top-section {
     /*flex items-center justify-between p-4 border-b*/
     display: flex;
     padding: 14px;
     align-items: center;
     justify-content: space-between;
 }


 

    