 .featured-content {
     display: block;
     padding: 6px 4px;
 }

 .featured-prod-name {
     font-size: 14px;
     font-weight: 500;
     color: #222;
     margin-bottom: 6px;
     line-height: 1.3;
 }

 .price-box {
     display: flex;
     align-items: center;
     gap: 6px;
     flex-wrap: wrap;
 }

 .sale-price {
     font-size: 16px;
     font-weight: 600;
     color: #000;
 }

 .mrp {
     font-size: 13px;
     color: #888;
     text-decoration: line-through;
 }

 .ge-points {
     margin-top: 5px;
     font-size: 12px;
     color: #0a8f3c;
     background: #e9f8ef;
     display: inline-block;
     padding: 3px 8px;
     border-radius: 12px;
 }


 .best-badge {
     position: absolute;
     top: 8px;
     left: 8px;
     background: linear-gradient(135deg, #ff9800, #ff5722);
     color: #fff;
     font-size: 11px;
     font-weight: 600;
     padding: 4px 8px;
     border-radius: 6px;
     z-index: 2;
 }

 .featured-img-box {
     position: relative;
 }

 .new-arrivals .featured-img-box {
     width: 150px;
     /* height: 100px;  */
     cursor: auto;
 }


 /* PRODUCT PRICE BLOCK */
 .product-price-main {
     margin: 12px 0 16px;
 }

 /* PRICE ROW */
 .price-row {
     display: flex;
     align-items: center;
     gap: 10px;
     flex-wrap: wrap;
 }

 .price-row .sale-price {
     font-size: 24px;
     font-weight: 700;
     color: #111;
 }

 .price-row .mrp {
     font-size: 15px;
     color: #888;
     text-decoration: line-through;
 }

 .price-row .discount {
     font-size: 13px;
     color: #fff;
     background: #ff5252;
     padding: 4px 8px;
     border-radius: 6px;
 }

 /* GE POINTS */
 .ge-point-row {
     margin-top: 6px;
     font-size: 14px;
     color: #0a8f3c;
     background: #e9f8ef;
     padding: 6px 10px;
     border-radius: 8px;
     display: inline-block;
 }


 /* category or subcategory page  */

 /* ================= GRID ================= */
 .Categories-screen-main {
     display: grid;
     grid-template-columns: repeat(3, 1fr);
     gap: 16px;
 }

 /* ================= CARD ================= */
 .categories-slider-head {
     background: #ffffff;
     border-radius: 14px;
     padding: 14px 6px;
     text-align: center;
     text-decoration: none;
     /* border: 1px solid #f0f0f0; */
     transition: transform 0.15s ease;
 }

 .categories-slider-head:active {
     transform: scale(0.97);
 }

 /* ================= IMAGE OVAL ================= */
 .categories-img-oval {
     width: 100px;
     height: 100px;
     margin: 0 auto 8px;
     border-radius: 50%;
     background: #f3f4f6;
     display: flex;
     align-items: center;
     justify-content: center;
 }

 .categories-img-oval img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 50%;
 }

 /* ================= LETTER FALLBACK ================= */
 .cat-letter {
     font-size: 30px;
     font-weight: 700;
     color: #6b7280;
 }

 /* ================= TEXT ================= */
 .categories-name {
     font-size: 14px;
     font-weight: 600;
     margin: 0;
     background: linear-gradient(90deg, #000000, #000000);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 .categories-items {
     font-size: 12px;
     color: #6b7280;
     margin-top: 2px;
 }

 /* ================= OPTIONAL: DESKTOP ================= */
 @media (min-width: 768px) {
     .Categories-screen-main {
         grid-template-columns: repeat(4, 1fr);
     }
 }


 /* Oval image – same as before but softer */
 .categories-img-oval {
     width: 90px;
     height: 101px;
     border-radius: 50px;
     background: #f5f6fa;
     display: flex;
     align-items: center;
     justify-content: center;
     overflow: hidden;
 }

 /* Image fit */
 .categories-img-oval img {
     width: 100%;
     height: 100%;
     object-fit: cover;
 }

 /* Name letter fallback */
 .cat-letter {
     font-size: 28px;
     font-weight: 700;
     color: #2563eb;
 }

 /* CATEGORY NAME – highlighted */
 .categories-name {
     font-size: 13px;
     font-weight: 600;
     margin-top: 6px;
     background: linear-gradient(90deg, #2563eb, #38bdf8);
     -webkit-background-clip: text;
     -webkit-text-fill-color: transparent;
 }

 /* ITEMS – subtle highlight */
 .categories-items {
     font-size: 11px;
     font-weight: 500;
     color: #555;
 }



 /* checout page  */
 .eneum-main {
     /* overflow: hidden; */
     color: var(--3, #555);
     text-overflow: ellipsis;
     white-space: wrap !important;
     font-family: Jost;
     font-size: 16px;
     font-style: normal;
     font-weight: 400;
     line-height: 20px;
 }

 /* CARD STYLE SECTIONS */
 .section-card {
     background: #fff;
     border-radius: 12px;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
     padding: 20px;
     margin: 15px 12px;
 }

 .section-title {
     font-size: 18px;
     font-weight: 700;
     margin-bottom: 12px;
     color: #333;
 }

 .order-total {
     font-size: 16px;
     font-weight: 600;
     margin-bottom: 15px;
 }

 .order-total span {
     color: #FE6601;
 }

 .order-items {
     border-top: 1px solid #eee;
     padding-top: 10px;
 }

 .order-item {
     display: flex;
     justify-content: space-between;
     padding: 8px 0;
     border-bottom: 1px solid #f1f1f1;
 }

 .order-item:last-child {
     border-bottom: none;
 }

 .product-name {
     font-weight: 500;
     color: #555;
 }

 .product-qty {
     font-weight: 500;
     color: #777;
 }

 /* BILLING FORM */
 .billing-form {
     display: flex;
     flex-direction: column;
     gap: 15px;
 }

 .form-group label {
     font-weight: 600;
     margin-bottom: 6px;
     display: block;
     color: #333;
 }

 .form-group label span {
     color: red;
 }

 .input-field {
     width: 100%;
     padding: 12px 14px;
     border: 1px solid #ddd;
     border-radius: 8px;
     font-size: 15px;
     transition: 0.3s;
 }

 .input-field:focus {
     border-color: #FE6601;
     box-shadow: 0 0 5px rgba(254, 102, 1, 0.3);
     outline: none;
 }

 /* PLACE ORDER BUTTON */
 .button-main button {
     border-radius: 10px;
     /* background: #f1cd01; */
     padding: 14px;
     /* color: #fff; */
     text-align: center;
     font-family: 'Jost', sans-serif;
     font-size: 18px;
     font-weight: 600;
     line-height: 24px;
     width: 100%;
     transition: 0.3s;
     cursor: pointer;
 }



 /* RESPONSIVE */
 @media (max-width: 480px) {
     .section-card {
         margin: 15px 8px;
     }

     .section-title {
         font-size: 16px;
     }
 }


 .discount {
     font-size: 11px;
     background: none;
     color: #000000;
     padding: 2px 6px;
     border-radius: 4px;
 }

 .price-it span {
     color: black;
     padding-left: 5px;
 }

 .cart-product-box-main {
     position: relative;
 }

 .cart-page-remove {
     position: absolute;
     top: 6px;
     right: 6px;
     font-size: 22px;
     color: #999;
     text-decoration: none;
     cursor: pointer;
     z-index: 5;
 }

 .cart-page-remove:hover {
     color: #ff3b3b;
 }

 /* CART CARD */
 .cart-card {
     display: flex;
     gap: 12px;
     background: #fff;
     border-radius: 14px;
     padding: 12px;
     margin-bottom: 12px;
     box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
     align-items: flex-start;
 }

 /* IMAGE BOX */
 .cart-product-box {
     width: 90px;
     height: 90px;
     border-radius: 10px;
     overflow: hidden;
     flex-shrink: 0;
     background: #f5f5f5;
 }

 .cart-product-box img {
     width: 100%;
     height: 100%;
     object-fit: contain;
 }

 /* PRODUCT INFO */
 .cart-card p {
     margin: 3px 0;
 }

 .Knee-Long {
     font-size: 14px;
     font-weight: 600;
     color: #333;
     line-height: 1.3;
 }

 .eiasm {
     font-size: 18px;
     font-weight: 700;
     color: #000000;
 }

 .knee-price {
     font-size: 13px;
     color: #000000;
     font-weight: 400;
 }

 .kneeTile p {
     font-size: 12px;
     color: #666;
 }

 /* REMOVE BUTTON */
 .cart-page-remove {
     background: #fff;
     width: 26px;
     height: 26px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
 }

 /* SUMMARY BOX */
 .subDis-main {
     background: #fff;
     border-radius: 12px;
     padding: 12px;
     margin-top: 15px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
 }

 .subtotal {
     display: flex;
     justify-content: space-between;
     font-size: 14px;
     padding: 4px 0;
 }

 .subtotal span {
     font-weight: 600;
 }

 .discount span {
     color: #e53935;
 }

 .delivery span {
     color: #2e7d32;
 }

 /* TOTAL BAR */
 .btn-total-amountPrice-main {
     margin-top: 12px;
     background: #fff;
     padding: 12px;
     border-radius: 12px;
     box-shadow: 0 3px 12px rgba(0, 0, 0, 0.08);
 }

 .ttooya {
     font-weight: 600;
     font-size: 14px;
 }



 /* MOBILE */
 @media(max-width:480px) {
     .cart-card {
         padding: 10px;
     }

     .cart-product-box {
         width: 75px;
         height: 75px;
     }
 }

 /* product details page  */

 @media (max-width: 600px) {

     .button-main.Verify-btn,
     .finger-screen-btn {
         position: fixed;
         width: 100%;
         margin: 0 auto;
         height: 100px;
     }
 }

 .product-bottom-action {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     display: flex;
     /* background: #ffffff; */
     /* border-top: 1px solid #e6e6e6; */
     z-index: 999;
     gap: 10px;
     /* height: 100px; */
 }

 .addToCartButtonSingle {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding-bottom: 49px;
 }

 .button-main a {
     border-radius: 8px;
     background: #054eae;
     padding: 12px;
     color: var(--1, #FFF);
     text-align: center;
     font-family: Jost;
     font-size: 18px;
     font-weight: 600;
     line-height: 24px;
     display: block;
 }

 /* new arrival section  */
 .arrival-price-box {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-top: 4px;
     gap: 6px;
 }

 /* SALE PRICE */
 .arrival-price-box .sale-price {
     font-size: 15px;
     font-weight: 600;
     color: #111;
 }

 /* GE POINT CHIP */
 .ge-arrival {
     font-size: 11px;
     font-weight: 500;
     color: #0a8f3c;
     background: linear-gradient(135deg, #e9f8ef, #d9f3e4);
     border: 1px solid #bfe6cf;
     padding: 3px 8px;
     border-radius: 12px;
     white-space: nowrap;
 }

 /* ---------- TABS ---------- */
 .tab-btn-main {
     display: flex;
     gap: 10px;
     overflow-x: auto;
     padding-bottom: 8px;
 }

 .tab-btn {
     padding: 7px 16px;
     border-radius: 20px;
     font-size: 13px;
     font-weight: 500;
     color: #555;
     background: #f3f3f3;
     white-space: nowrap;
     transition: all 0.3s ease;
 }

 .tab-btn:hover {
     background: #000;
     color: #fff;
 }

 .tab-btn.tab-active {
     background: #000;
     color: #fff;
 }

 .new-arrivals {
     text-align: left;
 }

 .Shor-arrivals {
     font-size: 13px;
     margin: 6px 0 4px;
     line-height: 1.3;
 }

 /* PRICE + GE */
 /* ===== TABS WRAPPER ===== */
 .tab-btn-main {
     display: flex;
     gap: 8px;
     overflow-x: auto;
     padding: 10px 0;
 }

 /* ===== TAB BUTTON ===== */
 .tab-btn {
     padding: 8px 16px;
     font-size: 14px;
     font-weight: 500;
     color: #333;
     background: #f1f1f1;
     /* normal bg */
     border: 1px solid #ddd;
     border-radius: 4px;
     /* square look */
     white-space: nowrap;
     transition: all 0.25s ease;
 }

 .tab-btn:hover {
     background: #e6e6e6;
     color: #000;
 }

 .tab-btn.tab-active {
     background: #000;
     color: #fff;
     border-color: #000;
 }

 .tab-btn-main::-webkit-scrollbar {
     display: none;
 }

 .featured-img-box {
     position: relative;
     overflow: hidden;
 }

 .ge-points-badge {
     position: absolute;
     top: 8px;
     left: 8px;
     background: linear-gradient(135deg, #e9f8ef, #c9efd9);
     color: #0a8f3c;
     font-size: 12px;
     font-weight: 600;
     padding: 4px 8px;
     border-radius: 4px;
     z-index: 2;
     box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
     pointer-events: none;
 }

 .simple-footer {
     position: fixed;
     bottom: 0;
     left: 0;
     width: 100%;
     background: #fff;
     display: flex;
     justify-content: space-around;
     padding: 8px 0;
     border-top: 1px solid #eaeaea;
     z-index: 999;
 }

 .simple-footer a {
     text-align: center;
     color: #777;
     font-size: 12px;
     text-decoration: none;
 }

 .simple-footer a i {
     font-size: 20px;
     display: block;
     margin-bottom: 4px;
 }

 .simple-footer a.active {
     color: #000;
 }

 /* category heading design  */


 /* row */
 .categories-main {
     display: flex;
     align-items: center;
     justify-content: space-between;
     gap: 12px;
     padding: 10px 12px;
 }

 /* left wrap */
 .categories-title-wrap {
     flex: 1;
     min-width: 0;
     padding: 6px 14px;
     border-radius: 20px;
 }

 /* heading base */
 .fancy-head {
     margin: 0;
     font-size: 18px;
     font-weight: 800;
     line-height: 1;
 }

 /* ribbon look */
 .fancy-head span {
     position: relative;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     padding: 10px 18px;
     color: #fff;
     border-radius: 14px;
     background: linear-gradient(90deg, #b31217, #e52d27, #2b5876, #4e4376);
     box-shadow: 0 10px 22px rgba(0, 0, 0, .12);
 }

 /* torn/brush bottom */
 .fancy-head span:after {
     content: "";
     position: absolute;
     left: 10px;
     right: 10px;
     bottom: -10px;
     height: 16px;
     background: rgba(255, 255, 255, .18);
     border-radius: 0 0 14px 14px;
     clip-path: polygon(0 30%, 8% 70%, 16% 35%, 24% 80%, 32% 45%,
             40% 85%, 50% 50%, 60% 82%, 70% 48%, 80% 75%,
             90% 40%, 100% 65%, 100% 100%, 0 100%);
     opacity: .9;
 }

 /* View all */
 .view-all-text {
     display: flex;
     align-items: center;
     gap: 6px;
     font-size: 13px;
     font-weight: 700;
     color: #111;
     text-decoration: none;
     white-space: nowrap;
 }

 .view-all-arrow {
     width: 14px;
     height: 14px;
     display: block;
     opacity: .8;
 }

 /* mobile tuning */
 @media(max-width:480px) {
     .categories-main {
         padding: 8px 10px;
     }

     .fancy-head span {
         padding: 9px 14px;
         border-radius: 12px;
     }

     .view-all-text {
         font-size: 12px;
     }
 }

 /* ====================category heading design=====================================  */


 /*============== banner slider ======================*/

 .shop-card {
     width: 100%;
 }

 .shop-ad-card {
     background-size: contain;
     /* pehle cover tha – isse image kat rahi thi */
     background-position: center;
     background-repeat: no-repeat;

     width: 100%;
     min-height: 350px;
     /* minimum height do */

     display: flex;
     flex-direction: column;
     justify-content: center;
 }

 .slick-slide {
     margin: 0 5px;
 }

 .shop-ad-card {
     border-radius: 16px;
     margin: 0px 8px 0 0px;
 }

 /*=========== banner slider================ */


 .btn-cart {
     background: #bfbebe;
     color: #000000;
     border: 1px solid #d1d5db;
     margin-left: 4px;
 }

 .btn-buy {
     background: #0349aa;
     color: #ffffff;
     margin-right: 4px;
 }

 .button-main button:hover {
     background: #a3a3a3;
 }


 /* login Page  */

 :root {
     --brand: #2874f0;
     --accent: #fb641b;
     --bg1: #f7f9ff;
     --bg2: #f3f6fb;
     --text: #0f172a;
     --muted: #64748b;
     --border: #e6edf7;
     --card: #ffffff;
 }

 /* PAGE WRAP */
 .login-wrapper {
     min-height: 100dvh;
     /* mobile safe */
     padding: 18px 12px;
     display: grid;
     place-items: center;
     background:
         radial-gradient(900px 500px at 20% 15%, rgba(40, 116, 240, .12), transparent 55%),
         radial-gradient(800px 420px at 85% 80%, rgba(251, 100, 27, .10), transparent 55%),
         linear-gradient(180deg, var(--bg1), var(--bg2));
 }

 /* CARD */


 .login-top {
     padding: 18px 18px 10px;
     text-align: center;
 }

 .brand {
     display: flex;
     justify-content: center;
     margin-bottom: 8px;
 }

 .logo {
     height: 46px;
     width: auto;
     display: block;
 }

 .title {
     margin: 0;
     font-size: 20px;
     font-weight: 900;
     color: var(--text);
     letter-spacing: .2px;
 }

 .subtitle {
     margin: 6px 0 0;
     font-size: 13px;
     color: var(--muted);
     font-weight: 600;
 }



 /* INPUT GROUP (avoid bootstrap input-group flex issues) */
 .login-card .input-group {
     display: block !important;
     width: 100%;
     margin: 0 0 14px 0 !important;
 }

 .login-card .input-group label {
     display: block !important;
     width: 100%;
     margin: 0 0 6px 0 !important;
     font-size: 12px;
     font-weight: 800;
     color: #334155;
 }



 .input-ico {
     width: 36px;
     height: 36px;
     border-radius: 12px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: #f1f6ff;
     color: var(--brand);
     flex: 0 0 36px;
     font-size: 14px;
 }

 .login-card .input-box input {
     border: none;
     outline: none;
     width: 100%;
     background: transparent;
     font-size: 16px;
     /* mobile zoom fix */
     color: var(--text);
     padding: 6px 0;
 }

 .login-card .input-box input::placeholder {
     color: #94a3b8;
 }

 .login-card .input-box:focus-within {
     border-color: rgba(40, 116, 240, .60);
     box-shadow: 0 0 0 4px rgba(40, 116, 240, .10);
 }

 /* SHOW/HIDE */
 .toggle-pass {
     user-select: none;

     cursor: pointer;
     border-radius: 999px;
     padding: 7px 12px;
     font-size: 12px;
     font-weight: 900;
     color: var(--brand);
     background: #eef5ff;
     white-space: nowrap;
     transition: .18s ease;
 }

 .toggle-pass:hover {
     background: #e5f0ff;
 }

 /* ACTIONS */
 .login-actions {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin: 8px 0 6px;
     font-size: 12px;
     color: #334155;
 }

 .remember {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     font-weight: 700;
 }

 .remember input {
     width: 16px;
     height: 16px;
     accent-color: var(--brand);
 }

 .link {
     color: var(--brand);
     text-decoration: none;
     font-weight: 900;
 }

 .link:hover {
     text-decoration: underline;
 }

 /* BUTTON */
 .btn-login {
     width: 100%;
     border: none;
     outline: none;
     background: var(--accent);
     color: #fff;
     border-radius: 14px;
     padding: 13px 14px;
     font-weight: 900;
     letter-spacing: .5px;
     margin-top: 10px;
     box-shadow: 0 12px 24px rgba(251, 100, 27, .22);
     transition: .18s ease;
 }

 .btn-login:hover {
     transform: translateY(-1px);
     box-shadow: 0 14px 28px rgba(251, 100, 27, .28);
 }

 .btn-login:active {
     transform: translateY(0);
 }

 /* BADGE */
 .secure {
     margin: 12px 0 6px;
     display: flex;
     justify-content: center;
 }

 .secure-badge {
     font-size: 12px;
     font-weight: 900;
     color: #166534;
     background: #ecfdf5;
     border: 1px solid #bbf7d0;
     padding: 8px 12px;
     border-radius: 999px;
     display: inline-flex;
     align-items: center;
     gap: 8px;
 }

 .divider {
     display: flex;
     align-items: center;
     gap: 12px;
     margin: 12px 0;
     color: #94a3b8;
     font-size: 12px;
     font-weight: 900;
     justify-content: center;
 }

 .divider:before,
 .divider:after {
     content: "";
     height: 1px;
     flex: 1;
     background: rgba(148, 163, 184, .35);
 }

 .btn-signup {
     display: block;
     width: 100%;
     text-align: center;
     border: 1.5px solid rgba(40, 116, 240, .55);
     color: var(--brand);
     padding: 11px 14px;
     border-radius: 14px;
     font-weight: 900;
     text-decoration: none;
     background: rgba(40, 116, 240, .06);
     transition: .18s ease;
 }

 .btn-signup:hover {
     background: rgba(40, 116, 240, .10);
     border-color: rgba(40, 116, 240, .75);
 }



 .login-card .input-box {
     width: 100%;
     display: flex;
     align-items: center;
     gap: 10px;
     background: #ffffff;
     border: 1px solid var(--border);
     border-radius: 14px;
     padding: 9px 8px;
     transition: .18s ease;
 }

 .login-card {
     width: 100%;
     max-width: 537px;
     background: var(--card);
     border: 1px solid rgba(15, 23, 42, .06);
     border-radius: 18px;
     box-shadow: 0 3px 8px rgba(15, 23, 42, .10);
     overflow: hidden;
 }

 .login-body {
     padding: 12px 51px 18px;
 }

 /* =====================================prodduct page fiter css============================  */
 /* category list ko scrollable */
 .cat-list {
     max-height: 45vh;
     /* screen ke hisaab se */
     overflow-y: auto;
     -webkit-overflow-scrolling: touch;
     padding-right: 6px;
     margin-top: 10px;
 }

 /* category option UI */
 .cat-opt {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 10px 10px;
     border: 1px solid #eee;
     border-radius: 10px;
     margin-bottom: 8px;
     background: #fff;
     cursor: pointer;
 }

 .cat-opt input {
     width: 18px;
     height: 18px;
 }

 /* search spacing */
 .cat-search {
     margin-top: 10px;
     border-radius: 12px;
     height: 42px;
 }

 /* PRODUCT PRICE UI (aapka same) */
 .product-price-ui {
     margin-top: 4px;
 }

 .price-line {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .price-line .sale-price {
     font-size: 16px;
     font-weight: 600;
     color: #111;
 }

 .price-line .mrp {
     font-size: 13px;
     color: #888;
     text-decoration: line-through;
 }

 .ge-point-chip {
     margin-top: 4px;
     font-size: 12px;
     font-weight: 500;
     color: #0a8f3c;
     background: #e9f8ef;
     padding: 4px 8px;
     border-radius: 10px;
     display: inline-block;
 }

 /* bottom bar like image */
 .sf-bar {
     position: fixed;
     left: 0;
     right: 0;
     bottom: 0px;
     /* footer ke upar */
     display: flex;
     background: #fff;
     border-top: 2px solid #eee;
     z-index: 999;
 }

 .sf-btn {
     flex: 1;
     padding: 12px 10px;
     border: 0;
     background: #fff;
     font-weight: 700;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
 }

 .sf-btn+.sf-btn {
     border-left: 1px solid #eee;
 }

 .sf-ic {
     font-size: 18px;
     line-height: 1;
 }

 /* Modal sheet style */
 .sheet-modal .modal-dialog {
     margin: 0;
     position: fixed;
     left: 0;
     right: 0;
     bottom: 0;
 }

 .sheet {
     border-radius: 18px 18px 0 0;
     border: 0;
     min-height: 55vh;
 }

 .sheet-head {
     padding: 16px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     border-bottom: 1px solid #eee;
 }

 .sheet-title {
     font-size: 18px;
     font-weight: 800;
 }

 .sheet-x {
     border: 0;
     background: transparent;
     font-size: 28px;
     line-height: 1;
     padding: 0 6px;
 }

 .sheet-clear {
     font-weight: 700;
     text-decoration: underline;
     color: #111;
 }

 .sheet-body {
     padding: 14px 16px 18px;
 }

 .sheet-opt {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 12px 4px;
     border-bottom: 1px solid #f2f2f2;
     font-size: 16px;
 }

 .sheet-opt input {
     width: 18px;
     height: 18px;
 }

 .sheet-actions {
     display: flex;
     gap: 12px;
     margin-top: 16px;
 }

 .sheet-btn {
     flex: 1;
     padding: 14px 12px;
     border-radius: 10px;
     font-weight: 800;
     border: 1px solid #111;
 }

 .sheet-btn.light {
     background: #fff;
     color: #111;
 }

 .sheet-btn.dark {
     background: #111;
     color: #fff;
 }

 /* filter ui */
 .filter-block {
     margin-bottom: 18px;
 }

 .filter-h {
     font-weight: 800;
     margin-bottom: 10px;
 }

 .price-row {
     display: flex;
     gap: 10px;
 }

 .price-inp {
     flex: 1;
     padding: 12px 10px;
     border: 1px solid #ddd;
     border-radius: 10px;
     outline: none;
 }

 .chip-opt {
     display: inline-flex;
     align-items: center;
     gap: 8px;
     border: 1px solid #eee;
     padding: 8px 10px;
     border-radius: 999px;
     margin: 6px 6px 0 0;
     font-weight: 700;
 }

 .chip-opt input {
     width: 16px;
     height: 16px;
 }

 .cat-opt {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 10px 4px;
     border-bottom: 1px solid #f4f4f4;
 }

 .cat-opt input {
     width: 18px;
     height: 18px;
 }

 /* top filters row button look */
 .filterSvg2-main,
 .sorting {
     border: 0;
     background: transparent;
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .sheet {
     border-radius: 18px;
     overflow: hidden;
 }

 .sheet-head {
     padding: 16px 16px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     border-bottom: 1px solid #eee;
 }

 .sheet-title {
     font-size: 18px;
     font-weight: 700;
 }

 .sheet-clear {
     text-decoration: none;
     font-weight: 600;
 }

 .sheet-body {
     padding: 14px 16px 90px;
 }

 /* bottom space for actions */

 .sheet-actions {
     position: sticky;
     bottom: 0;
     background: #fff;
     padding: 12px 16px;
     display: flex;
     gap: 12px;
     border-top: 1px solid #eee;
     z-index: 10;
 }

 .sheet-btn {
     flex: 1;
     height: 46px;
     border-radius: 12px;
     border: 1px solid #ddd;
     font-weight: 700;
 }

 .sheet-btn.light {
     background: #fff;
 }

 .sheet-btn.dark {
     background: #111;
     color: #fff;
     border-color: #111;
 }

 .filter-block {
     margin-bottom: 16px;
 }

 .filter-h {
     font-weight: 700;
     margin-bottom: 10px;
 }

 .price-row {
     display: flex;
     gap: 10px;
 }

 .price-inp {
     width: 100%;
     height: 42px;
     border-radius: 12px;
     border: 1px solid #ddd;
     padding: 0 12px;
 }

 .chip-opt {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 10px 10px;
     border: 1px solid #eee;
     border-radius: 12px;
     margin-bottom: 8px;
     background: #fff;
 }

 .chip-opt input {
     width: 18px;
     height: 18px;
 }

 .cat-search {
     margin-top: 10px;
     border-radius: 12px;
     height: 42px;
 }

 .cat-list {
     max-height: 45vh;
     overflow-y: auto;
     -webkit-overflow-scrolling: touch;
     padding-right: 6px;
     margin-top: 10px;
 }

 .cat-opt {
     display: flex;
     align-items: center;
     gap: 10px;
     padding: 10px 10px;
     border: 1px solid #eee;
     border-radius: 10px;
     margin-bottom: 8px;
     background: #fff;
 }

 .cat-opt input {
     width: 18px;
     height: 18px;
 }