 :root {
     --primary: #B01E25;
     --secondary: #2c2c2c;
     --topbar-bg: #2c2c2c;
     --nav-bg: #ffffff;
     --nav-bottom-bg: #B01E25;
     --accent: #c8a96e;
     --white: #ffffff;
     --light-bg: #F4F4F4;
     --border: #e0d9ce;
     --overlay: rgba(0, 0, 0, 0.55);

 }

 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 body {
     font-family: 'Lato', sans-serif;
     background: var(--light-bg);
     overflow-x: hidden;
 }

 /* header css start */
 /* ─── TOP BAR ─────────────────────────────────── */
 .top-bar {
     background: var(--topbar-bg);
     padding: 7px 0;
     font-size: 13px;
     color: var(--white);
 }

 .top-bar a {
     color: var(--white);
     text-decoration: none;
     transition: color .2s;
 }

 .top-bar a:hover {
     color: var(--accent);
 }

 .social-icons a {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 28px;
     height: 28px;
     border: 1px solid rgba(255, 255, 255, .3);
     border-radius: 50%;
     font-size: 12px;
     margin-left: 5px;
     color: var(--white);
     transition: all .25s;
 }

 .social-icons a:hover {
     background: var(--primary);
     border-color: var(--primary);
 }

 /* ─── MAIN HEADER ─────────────────────────────── */
 .main-header {
     background: var(--white);
     padding: 12px 0;
     border-bottom: 1px solid var(--border);
     position: sticky;
     top: 0;
     z-index: 1000;
     box-shadow: 0 2px 12px rgba(0, 0, 0, .08);
 }

 /* Logo */
 .logo-img {
     max-height: 55px;
     width: auto;
 }

 /* Search */
 .search-form {
     display: flex;
     border: 2px solid var(--border);
     border-radius: 4px;
     overflow: hidden;
     transition: border-color .2s;
 }

 .search-form:focus-within {
     border-color: var(--accent);
 }

 .search-form input {
     border: none;
     outline: none;
     padding: 9px 14px;
     font-size: 13.5px;
     flex: 1;
     background: #fafafa;
     font-family: 'Lato', sans-serif;
 }

 .search-form button {
     background: var(--primary);
     color: var(--white);
     border: none;
     padding: 9px 18px;
     font-size: 13px;
     font-weight: 700;
     letter-spacing: .5px;
     cursor: pointer;
     transition: background .2s;
 }

 .search-form button:hover {
     background: var(--secondary);
 }

 /* Tools */
 .header-tools {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .tool-btn {
     display: flex;
     flex-direction: column;
     align-items: center;
     background: none;
     border: none;
     cursor: pointer;
     color: var(--primary);
     font-size: 11px;
     font-weight: 600;
     letter-spacing: .4px;
     text-transform: uppercase;
     padding: 4px 8px;
     transition: color .2s;
     position: relative;
     text-decoration: none;
 }

 .tool-btn i {
     font-size: 22px;
     margin-bottom: 2px;
 }

 .tool-btn:hover {
     color: var(--primary);
 }

 .cart-count {
     position: absolute;
     top: -2px;
     right: 2px;
     background: var(--primary);
     color: #fff;
     border-radius: 50%;
     width: 18px;
     height: 18px;
     font-size: 10px;
     display: flex;
     align-items: center;
     justify-content: center;
     font-weight: 700;
 }

 .phone-btn {
     background: var(--primary);
     color: var(--white) !important;
     border-radius: 4px;
     padding: 8px 14px;
     display: flex;
     align-items: center;
     gap: 7px;
     font-size: 13px;
     font-weight: 700;
     white-space: nowrap;
     text-decoration: none;
     transition: background .2s;
 }

 .phone-btn:hover {
     background: var(--secondary);
 }

 .phone-btn i {
     font-size: 16px;
 }

 /* ─── NAV BAR ─────────────────────────────────── */
 .nav-bar {
     background: var(--nav-bottom-bg);
     position: sticky;
     top: 80px;
     z-index: 999;
 }

 .nav-bar .navbar {
     padding: 0;
 }

 .nav-bar .nav-link {
     color: rgba(255, 255, 255, .88) !important;
     font-size: 12.5px;
     font-weight: 700;
     letter-spacing: .8px;
     text-transform: uppercase;
     padding: 14px 14px !important;
     position: relative;
     transition: color .2s;
 }

 /* .nav-bar .nav-link::after {
     content: '';
     position: absolute;
     bottom: 0;
     left: 50%;
     right: 50%;
     height: 2px;
     background: rgba(255, 255, 255, 0.7);
     transition: left .25s, right .25s;
 } */

 .nav-bar .nav-link:hover {
     color: var(--white) !important;
 }

 .nav-bar .nav-link:hover::after {
     left: 0;
     right: 0;
 }

 /* ── Hover Dropdown ── */
 .nav-bar .nav-item.dropdown {
     position: relative;
 }

 .nav-bar .dropdown-menu {
     display: block !important;
     background: var(--white);
     border: none;
     /* border-top: 3px solid var(--accent); */
     border-radius: 0 0 6px 6px;
     box-shadow: 0 8px 30px rgba(0, 0, 0, .18);
     min-width: 210px;
     padding: 8px 0;
     position: absolute;
     top: 100%;
     left: 0;
     opacity: 0;
     pointer-events: none;
     transform: translateY(8px);
     transition: opacity .22s ease, transform .22s ease;
     z-index: 9000;
 }

 .nav-bar .nav-item.dropdown:hover>.dropdown-menu {
     opacity: 1;
     pointer-events: all;
     transform: translateY(0);
 }

 .nav-bar .dropdown-item {
     font-size: 13px;
     color: var(--secondary);
     padding: 8px 20px;
     font-weight: 500;
     transition: all .18s;
     white-space: nowrap;
     border-left: 3px solid transparent;
 }

 .nav-bar .dropdown-item:hover {
     background: var(--light-bg);
     color: var(--primary);
     padding-left: 27px;
     border-left-color: var(--primary);
 }

 /* ─── OVERLAY ─────────────────────────────────── */
 .sidebar-overlay {
     position: fixed;
     inset: 0;
     background: var(--overlay);
     z-index: 1200;
     opacity: 0;
     pointer-events: none;
     transition: opacity .3s;
 }

 .sidebar-overlay.active {
     opacity: 1;
     pointer-events: all;
 }

 /* ─── MOBILE NAV SIDEBAR (LEFT) ───────────────── */
 .mobile-sidebar {
     position: fixed;
     top: 0;
     left: -320px;
     width: 300px;
     height: 100vh;
     background: var(--white);
     z-index: 1300;
     transition: left .35s cubic-bezier(.4, 0, .2, 1);
     overflow-y: auto;
     box-shadow: 4px 0 20px rgba(0, 0, 0, .2);
 }

 .mobile-sidebar.open {
     left: 0;
 }

 .sidebar-header {
     background: var(--nav-bottom-bg);
     padding: 16px 20px;
     display: flex;
     align-items: center;
     justify-content: space-between;
 }

 .sidebar-header img {
     max-height: 40px;
 }

 .sidebar-close-btn {
     background: none;
     border: none;
     color: var(--white);
     font-size: 22px;
     cursor: pointer;
     padding: 0;
 }

 .sidebar-close-btn:hover {
     color: var(--accent);
 }

 /* Mobile accordion nav */
 .mobile-nav {
     list-style: none;
     padding: 0;
     margin: 0;
 }

 .mobile-nav>li {
     border-bottom: 1px solid var(--border);
 }

 .mobile-nav>li>a,
 .mobile-nav>li>button {
     display: flex;
     align-items: center;
     justify-content: space-between;
     width: 100%;
     padding: 13px 20px;
     color: var(--primary);
     font-size: 13px;
     font-weight: 700;
     letter-spacing: .6px;
     text-transform: uppercase;
     text-decoration: none;
     background: none;
     border: none;
     cursor: pointer;
     transition: color .2s, background .2s;
 }

 .mobile-nav>li>a:hover,
 .mobile-nav>li>button:hover {
     color: var(--primary);
     background: var(--light-bg);
 }

 .mobile-nav>li>button i {
     transition: transform .3s;
 }

 .mobile-nav>li>button.open i {
     transform: rotate(180deg);
 }

 .mobile-submenu {
     list-style: none;
     padding: 0;
     margin: 0;
     background: var(--light-bg);
     max-height: 0;
     overflow: hidden;
     transition: max-height .35s ease;
 }

 .mobile-submenu.open {
     max-height: 500px;
 }

 .mobile-submenu li a {
     display: block;
     padding: 9px 30px;
     color: #555;
     font-size: 13px;
     text-decoration: none;
     border-bottom: 1px solid #ece8e0;
     transition: color .2s, padding .2s;
 }

 .mobile-submenu li a:hover {
     color: var(--primary);
     padding-left: 36px;
 }

 /* ─── CART SIDEBAR (RIGHT) ────────────────────── */
 .cart-sidebar {
     position: fixed;
     top: 0;
     right: -380px;
     width: 340px;
     height: 100vh;
     background: var(--white);
     z-index: 1300;
     transition: right .35s cubic-bezier(.4, 0, .2, 1);
     box-shadow: -4px 0 20px rgba(0, 0, 0, .2);
     display: flex;
     flex-direction: column;
 }

 .cart-sidebar.open {
     right: 0;
 }

 .cart-sidebar-header {
     background: var(--nav-bottom-bg);
     padding: 16px 20px;
     display: flex;
     align-items: center;
     justify-content: space-between;
     flex-shrink: 0;
 }

 .cart-sidebar-header h5 {
     color: var(--white);
     font-family: 'Playfair Display', serif;
     font-size: 18px;
     margin: 0;
 }

 .cart-sidebar-body {
     flex: 1;
     overflow-y: auto;
     padding: 16px;
 }

 .cart-item {
     display: flex;
     gap: 12px;
     padding: 12px 0;
     border-bottom: 1px solid var(--border);
 }

 .cart-item-img {
     width: 65px;
     height: 65px;
     object-fit: cover;
     border-radius: 4px;
     background: #f0ede8;
     display: flex;
     align-items: center;
     justify-content: center;
     color: #bbb;
     font-size: 24px;
     flex-shrink: 0;
 }

 .cart-item-info {
     flex: 1;
 }

 .cart-item-info h6 {
     font-size: 13px;
     color: var(--primary);
     margin-bottom: 4px;
     font-weight: 700;
 }

 .cart-item-info .price {
     color: var(--primary);
     font-size: 14px;
     font-weight: 700;
 }

 .cart-item-info .qty {
     font-size: 12px;
     color: #888;
 }

 .cart-remove {
     background: none;
     border: none;
     color: #bbb;
     font-size: 16px;
     cursor: pointer;
     align-self: flex-start;
     padding: 0;
     transition: color .2s;
 }

 .cart-remove:hover {
     color: #e74c3c;
 }

 .cart-sidebar-footer {
     padding: 16px;
     border-top: 2px solid var(--border);
     flex-shrink: 0;
     background: var(--light-bg);
 }

 .cart-total {
     display: flex;
     justify-content: space-between;
     font-weight: 700;
     font-size: 15px;
     margin-bottom: 12px;
     color: var(--primary);
 }

 .cart-total span:last-child {
     color: var(--primary);
 }

 .btn-checkout {
     display: block;
     width: 100%;
     background: var(--primary);
     color: var(--white);
     text-align: center;
     padding: 12px;
     font-weight: 700;
     letter-spacing: .8px;
     text-transform: uppercase;
     text-decoration: none;
     border-radius: 4px;
     font-size: 13px;
     border: none;
     cursor: pointer;
     transition: background .25s;
 }

 .btn-checkout:hover {
     background: var(--secondary);
     color: var(--white);
 }

 .btn-view-cart {
     display: block;
     width: 100%;
     background: transparent;
     color: var(--primary);
     text-align: center;
     padding: 10px;
     font-weight: 700;
     letter-spacing: .8px;
     text-transform: uppercase;
     text-decoration: none;
     border-radius: 4px;
     font-size: 13px;
     border: 2px solid var(--border);
     cursor: pointer;
     transition: all .25s;
     margin-top: 8px;
 }

 .btn-view-cart:hover {
     border-color: var(--primary);
     color: var(--primary);
 }

 /* ─── LOGIN DROPDOWN ──────────────────────────── */
 .login-dropdown-menu {
     min-width: 280px;
     padding: 20px;
     border: none;
     border-top: 3px solid var(--primary);
     box-shadow: 0 8px 30px rgba(0, 0, 0, .15);
 }

 .login-dropdown-menu .form-label {
     font-size: 12px;
     font-weight: 700;
     letter-spacing: .4px;
 }

 .login-dropdown-menu .form-control {
     font-size: 13px;
     padding: 8px 10px;
 }

 .login-dropdown-menu .btn-login {
     background: var(--primary);
     color: var(--white);
     width: 100%;
     padding: 9px;
     font-weight: 700;
     border: none;
     border-radius: 4px;
     cursor: pointer;
     transition: background .2s;
 }

 .login-dropdown-menu .btn-login:hover {
     background: var(--secondary);
 }

 .login-dropdown-menu .login-links {
     font-size: 12px;
     display: flex;
     justify-content: space-between;
     margin-top: 8px;
 }

 .login-dropdown-menu .login-links a {
     color: #666;
     text-decoration: none;
 }

 .login-dropdown-menu .login-links a:hover {
     color: var(--accent);
 }

 .login-divider {
     font-size: 12px;
     font-weight: 700;
     text-align: center;
     color: #999;
     margin: 10px 0;
 }

 /* ─── MOBILE HEADER ───────────────────────────── */
 .mobile-header {
     display: none;
     background: var(--white);
     padding: 10px 15px;
     position: sticky;
     top: 0;
     z-index: 1000;
     box-shadow: 0 2px 12px rgba(0, 0, 0, .1);
     align-items: center;
     justify-content: space-between;
 }

 .mobile-menu-btn {
     background: none;
     border: none;
     font-size: 24px;
     color: var(--primary);
     cursor: pointer;
     padding: 4px 8px;
 }

 .mobile-menu-btn:hover {
     color: var(--accent);
 }

 .mobile-logo img {
     max-height: 42px;
 }

 .mobile-cart-btn {
     background: none;
     border: none;
     font-size: 22px;
     color: var(--primary);
     cursor: pointer;
     position: relative;
     padding: 4px 8px;
 }

 .mobile-cart-btn:hover {
     color: var(--accent);
 }

 /* Mobile search */
 .mobile-search-bar {
     display: none;
     padding: 8px 15px;
     background: #f5f2ed;
     border-top: 1px solid var(--border);
     position: sticky;
     top: 62px;
     z-index: 999;
 }

 .mobile-search-bar .search-form input {
     background: #fff;
 }

 /* Responsive show/hide */
 @media (max-width: 991.98px) {
     .desktop-only {
         display: none !important;
     }

     .mobile-header {
         display: flex;
     }

     .mobile-search-bar {
         display: block;
     }

     .cart-sidebar {
         width: 300px;
     }
 }

 @media (min-width: 992px) {
     .mobile-only {
         display: none !important;
     }
 }

 /* Demo body spacer */
 .demo-content {
     height: 200vh;
     background: linear-gradient(180deg, #f9f7f4 0%, #f0ede8 100%);
     display: flex;
     align-items: flex-start;
     justify-content: center;
     padding-top: 60px;
 }

 .demo-text {
     text-align: center;
     color: #aaa;
     font-size: 16px;
     font-family: 'Playfair Display', serif;
 }

 /* header css end  */

 /* banner css start */
 /* ── Hero wrapper ── */
 .hero-section {
     padding-top: 24px;
     padding-bottom: 24px;
 }

 /* ── Shared image behaviour ── */
 .hero-img {
     display: block;
     width: 100%;
     object-fit: cover;
     border-radius: 12px;
 }

 /* ══════════════════════════════
      MOBILE  (< 992 px)
   ══════════════════════════════ */
 .mobile-hero-wrap {
     display: flex;
     flex-direction: column;
     gap: 16px;
 }

 /* Two-column promo row */
 .mobile-promo-row {
     display: grid;
     grid-template-columns: 1fr 1fr;
     gap: 16px;
 }

 .mobile-promo-row .hero-img {
     border-radius: 12px;
     aspect-ratio: 164 / 98;
 }

 /* ── MOBILE SLIDER ── */
 .mobile-slider-wrap {
     position: relative;
     width: 100%;
     border-radius: 12px;
     overflow: hidden;
     aspect-ratio: 343 / 183;
 }

 .mobile-slider-track {
     display: flex;
     height: 100%;
     transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .mobile-slide {
     min-width: 100%;
     height: 100%;
     flex-shrink: 0;
 }

 .mobile-slide>a {
     display: block;
     width: 100%;
     height: 100%;
 }

 .mobile-slide .hero-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 0;
 }

 /* Mobile dots */
 .mobile-dots {
     position: absolute;
     bottom: 8px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 6px;
     z-index: 10;
 }

 .mobile-dots .msdot {
     width: 7px;
     height: 7px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.5);
     border: none;
     cursor: pointer;
     padding: 0;
     transition: background 0.25s, transform 0.25s;
 }

 .mobile-dots .msdot.active {
     background: #fff;
     transform: scale(1.4);
 }

 /* Mobile progress */
 .mobile-progress {
     position: absolute;
     bottom: 0;
     left: 0;
     height: 3px;
     width: 0%;
     background: rgba(255, 255, 255, 0.8);
     z-index: 10;
 }

 /* Mobile arrows */
 .mobile-arrow {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(255, 255, 255, 0.22);
     border: 1.5px solid rgba(255, 255, 255, 0.4);
     color: #fff;
     width: 30px;
     height: 30px;
     border-radius: 50%;
     font-size: 20px;
     line-height: 1;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     z-index: 10;
     padding: 0;
     transition: background 0.2s;
 }

 .mobile-arrow:hover {
     background: rgba(255, 255, 255, 0.42);
 }

 .mobile-arrow.ms-prev {
     left: 8px;
 }

 .mobile-arrow.ms-next {
     right: 8px;
 }

 /* ══════════════════════════════
      DESKTOP  (≥ 992 px)
   ══════════════════════════════ */
 .desktop-hero-wrap {
     display: none;
 }

 @media (min-width: 992px) {
     .mobile-hero-wrap {
         display: none !important;
     }

     .desktop-hero-wrap {
         display: flex;
         gap: 20px;
         height: 432px;
         align-items: stretch;
     }

     /* Left banner – 68% */
     .desktop-main {
         flex: 0 0 68%;
         min-width: 0;
         position: relative;
         overflow: hidden;
         border-radius: 12px;
     }

     .desktop-main a,
     .desktop-main .hero-img {
         display: block;
         width: 100%;
         height: 100%;
     }

     .desktop-main .hero-img {
         object-fit: cover;
         border-radius: 0;
     }

     /* Right column – 32% */
     .desktop-side {
         flex: 0 0 32%;
         min-width: 280px;
         display: flex;
         flex-direction: column;
         gap: 20px;
         height: 100%;
     }

     .desktop-side .promo-card {
         flex: 1;
         min-height: 0;
         display: block;
         width: 100%;
         height: 100%;
         overflow: hidden;
         border-radius: 12px;
     }

     .desktop-side .promo-card a {
         display: block;
         width: 100%;
         height: 100%;
         overflow: hidden;
         border-radius: 12px;
     }

     .desktop-side .hero-img {
         height: 100%;
         border-radius: 12px;
     }
 }

 /* ── 22-inch monitor tweak ── */
 @media (min-width: 1600px) {
     .desktop-hero-wrap {
         height: 480px;
     }
 }

 /* ── hover effect ── */
 a .hero-img {
     transition: transform 0.35s ease, filter 0.35s ease;
 }

 a:hover .hero-img {
     transform: scale(1.015);
     filter: brightness(0.93);
 }

 .mobile-hero-wrap a {
     overflow: hidden;
     border-radius: 12px;
     display: block;
 }

 /* ══════════════════════════════
   DESKTOP MAIN BANNER SLIDER
══════════════════════════════ */
 .main-slider-wrap {
     position: relative;
     width: 100%;
     height: 100%;
     border-radius: 12px;
     overflow: hidden;
 }

 .main-slider-track {
     display: flex;
     width: 100%;
     height: 100%;
     transition: transform 0.55s cubic-bezier(0.4, 0, 0.2, 1);
 }

 .main-slide {
     min-width: 100%;
     height: 100%;
     flex-shrink: 0;
 }

 .main-slide>a {
     display: block;
     width: 100%;
     height: 100%;
     overflow: hidden;
 }

 .main-slide .hero-img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     border-radius: 0;
     transition: transform 0.35s ease, filter 0.35s ease;
 }

 .main-slide>a:hover .hero-img {
     transform: scale(1.015);
     filter: brightness(0.93);
 }

 /* Desktop Arrows */
 .main-arrow {
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     background: rgba(255, 255, 255, 0.22);
     border: 1.5px solid rgba(255, 255, 255, 0.4);
     color: #fff;
     width: 42px;
     height: 42px;
     border-radius: 50%;
     font-size: 28px;
     line-height: 1;
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     z-index: 10;
     backdrop-filter: blur(4px);
     transition: background 0.2s;
     padding: 0;
 }

 .main-arrow:hover {
     background: rgba(255, 255, 255, 0.42);
 }

 .main-prev {
     left: 12px;
 }

 .main-next {
     right: 12px;
 }

 /* Desktop Dots */
 .main-dots {
     position: absolute;
     bottom: 12px;
     left: 50%;
     transform: translateX(-50%);
     display: flex;
     gap: 7px;
     z-index: 10;
 }

 .main-dots .mdot {
     width: 8px;
     height: 8px;
     border-radius: 50%;
     background: rgba(255, 255, 255, 0.5);
     border: none;
     cursor: pointer;
     padding: 0;
     transition: background 0.25s, transform 0.25s;
 }

 .main-dots .mdot.active {
     background: #fff;
     transform: scale(1.4);
 }

 /* Desktop Progress bar */
 .main-progress {
     position: absolute;
     bottom: 0;
     left: 0;
     height: 3px;
     width: 0%;
     background: rgba(255, 255, 255, 0.8);
     z-index: 10;
 }

 /* banner css end */

 /* category css stsrt  */
 /* ══════════════════════════════
   TOP PICKS SECTION
══════════════════════════════ */
 .top-picks-section {
     padding: 60px 0 50px;
     background: #FFFFFF;
 }

 /* Section heading */
 .top-picks-section .section-title {
     font-family: 'Playfair Display', Georgia, serif;
     font-size: clamp(28px, 4vw, 42px);
     font-weight: 700;
     color: #1a1a1a;
     margin-bottom: 8px;
     letter-spacing: -0.5px;
 }

 .top-picks-section .section-sub {
     font-family: 'Lato', sans-serif;
     font-size: clamp(13px, 1.5vw, 16px);
     color: #888;
     margin-bottom: 40px;
     letter-spacing: 0.3px;
 }

 /* ── Category item ── */
 .cat-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     text-align: center;
     padding: 8px 6px 16px;
     cursor: pointer;
 }

 /* Circle image wrapper */
 .cat-img-wrap {
     width: 100%;
     max-width: 160px;
     aspect-ratio: 1 / 1;
     border-radius: 50%;
     overflow: hidden;
     background: #f5f0eb;
     margin: 0 auto 14px;
     transition: transform 0.32s ease, box-shadow 0.32s ease;
     box-shadow: 0 2px 12px rgba(0, 0, 0, 0.07);
 }

 .cat-item:hover .cat-img-wrap {
     transform: translateY(-5px) scale(1.04);
     box-shadow: 0 10px 28px rgba(0, 0, 0, 0.13);
 }

 .cat-img-wrap img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     border-radius: 50%;
     transition: filter 0.32s ease;
     box-shadow: 0 6px 20px rgba(0, 0, 0, 0.10);
 }

 .cat-item:hover .cat-img-wrap img {
     filter: brightness(0.93);
 }

 /* Category label */
 .cat-label {
     font-family: 'Lato', sans-serif;
     font-size: clamp(12px, 1.3vw, 15px);
     font-weight: 600;
     color: #2c2c2c;
     text-decoration: none;
     letter-spacing: 0.2px;
     transition: color 0.2s;
     line-height: 1.3;
 }

 .cat-item:hover .cat-label {
     color: #8B5E3C;
 }

 /* ── Row gap control ── */
 .top-picks-row {
     row-gap: 28px;
 }

 /* ── 22-inch monitor (≥ 1600px) — image slightly bigger ── */
 @media (min-width: 1600px) {
     .cat-img-wrap {
         max-width: 185px;
     }

     .top-picks-section {
         padding: 70px 0 60px;
     }
 }

 /* ── Tablet (768px – 991px) ── */
 @media (max-width: 991px) {
     .cat-img-wrap {
         max-width: 130px;
     }
 }

 /* ── Mobile (< 576px) ── */
 @media (max-width: 575px) {
     .top-picks-section {
         padding: 40px 0 30px;
     }

     .cat-img-wrap {
         max-width: 100px;
     }

     .cat-label {
         font-size: 12px;
     }

     .section-sub {
         margin-bottom: 28px;
     }
 }

 /* category css end */

 /* product css start */

 /* ===== PRODUCTS SECTION ===== */
 /* ===== PRODUCTS SECTION ===== */
 .gb-products-section {
     padding: 60px 0;
 }

 .gb-section-title {
     font-size: 32px;
     font-weight: 800;
     color: var(--secondary);
     margin-bottom: 5px;
     text-align: center;
 }

 .gb-title-underline {
     width: 120px;
     height: 4px;
     /* background: linear-gradient(to right, var(--accent), var(--primary)); */
     border-radius: 2px;
     margin: 0 auto 30px auto;
 }

 /* Product Card */
 .product-card-wrapper {
     position: relative;
     background: var(--white);
     border-radius: 16px;
     overflow: hidden;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.07);
     transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     height: 100%;
 }

 /* Image */
 .img-container {
     position: relative;
     overflow: hidden;
     aspect-ratio: 1 / 1;
 }

 .img-container img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.6s ease;
 }

 /* Sale Badge */
 .sale-badge {
     position: absolute;
     top: 15px;
     left: 15px;
     background: var(--primary);
     color: var(--white);
     padding: 4px 12px;
     border-radius: 20px;
     font-size: 12px;
     font-weight: 700;
     z-index: 10;
 }

 /* Hover Add to Cart Icon - floating over image */
 .cart-hover-icon {
     position: absolute;
     bottom: 12px;
     right: 12px;
     width: 42px;
     height: 42px;
     background: var(--primary);
     color: var(--white);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 16px;
     z-index: 20;
     opacity: 0;
     transform: translateY(10px) scale(0.85);
     transition: opacity 0.3s ease, transform 0.3s ease;
     box-shadow: 0 4px 12px rgba(176, 30, 37, 0.4);
     cursor: pointer;
     border: none;
     outline: none;
 }

 .cart-hover-icon:hover {
     background: var(--primary);
     transform: translateY(0) scale(1.1) !important;
 }

 /* Wishlist icon */
 .wishlist-hover-icon {
     position: absolute;
     bottom: 62px;
     right: 12px;
     width: 42px;
     height: 42px;
     background: var(--white);
     color: var(--primary);
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     font-size: 15px;
     z-index: 20;
     opacity: 0;
     transform: translateY(10px) scale(0.85);
     transition: opacity 0.3s ease 0.05s, transform 0.3s ease 0.05s;
     box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
     cursor: pointer;
     border: none;
     outline: none;
 }

 .wishlist-hover-icon:hover {
     background: var(--primary);
     color: var(--white);
     transform: translateY(0) scale(1.1) !important;
 }

 /* Content Area */
 .product-content {
     padding: 15px;
     background: var(--white);
     position: relative;
     z-index: 5;
     transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
     margin-bottom: -50px;
 }

 .product-name {
     font-size: 15px;
     font-weight: 600;
     margin-bottom: 5px;
     color: var(--secondary);
     white-space: nowrap;
     overflow: hidden;
     text-overflow: ellipsis;
 }

 .price-old {
     color: #aaa;
     text-decoration: line-through;
     font-size: 13px;
     margin-right: 8px;
 }

 .price-new {
     color: var(--primary);
     font-weight: 800;
     font-size: 17px;
 }

 /* Add to Cart Button (bottom) */
 .btn-add-cart {
     width: 100%;
     background: var(--primary);
     color: var(--white);
     border: none;
     padding: 10px;
     border-radius: 8px;
     font-weight: 600;
     margin-top: 12px;
     opacity: 0;
     transition: opacity 0.3s ease, background 0.2s;
     cursor: pointer;
     font-size: 14px;
     display: flex;
     align-items: center;
     justify-content: center;
     gap: 8px;
 }

 .btn-add-cart:hover {
     background: var(--secondary);
     color: var(--white);
 }

 /* HOVER EFFECTS */
 .product-card-wrapper:hover {
     transform: translateY(-10px);
     box-shadow: 0 15px 35px rgba(176, 30, 37, 0.18);
 }

 .product-card-wrapper:hover .img-container img {
     transform: scale(1.08);
 }

 .product-card-wrapper:hover .product-content {
     transform: translateY(-50px);
     margin-bottom: -50px;
 }

 .product-card-wrapper:hover .btn-add-cart {
     opacity: 1;
 }

 /* Show icons on hover */
 .product-card-wrapper:hover .cart-hover-icon {
     opacity: 1;
     transform: translateY(0) scale(1);
 }

 .product-card-wrapper:hover .wishlist-hover-icon {
     opacity: 1;
     transform: translateY(0) scale(1);
 }

 /* More Products Button */
 .more-products-btn {
     background: var(--primary);
     border-radius: 30px;
     color: var(--white);
     text-decoration: none;
     display: inline-flex;
     align-items: center;
     gap: 6px;
     white-space: nowrap;
     padding: 8px 20px;
     font-size: 14px;
     font-weight: 600;
     transition: background 0.2s;
 }

 .more-products-btn:hover {
     background: var(--secondary);
     color: var(--white);
 }

 /* Responsive */
 @media (max-width: 576px) {
     .product-content {
         margin-bottom: 0;
         transform: none !important;
     }

     .btn-add-cart {
         opacity: 1;
         margin-top: 10px;
     }

     .product-card-wrapper:hover {
         transform: none;
     }

     .cart-hover-icon,
     .wishlist-hover-icon {
         opacity: 1;
         transform: none;
     }

     .more-products-btn {
         padding: 5px 11px;
         font-size: 11px;
     }
 }

 @media (max-width: 768px) {
     .more-products-btn {
         padding: 6px 14px;
         font-size: 13px;
     }
 }

 .row.g-4+.row.g-4 {
     margin-top: 0;
 }

 /* product css end */

 /* brand css start */
 .brand-title {
     font-size: 2.25rem;
     color: #2c3e50;
     margin-top: 2rem;
     margin-bottom: 1rem;
 }

 .brand-description {
     font-family: 'Arial', sans-serif;
     font-size: 0.95rem;
     color: #666;
     max-width: 900px;
     margin: 0 auto 3rem auto;
     line-height: 1.6;
 }

 /* কার্ড এবং ইমেজ গ্রিড স্টাইল */
 .furniture-card {
     position: relative;
     border-radius: 15px;
     /* ছবির মতো সুন্দর রাউন্ডেড কর্নার */
     overflow: hidden;
     border: none;
     box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
     transition: transform 0.3s ease;
 }

 .furniture-card:hover {
     transform: translateY(-5px);
     /* হোভার করলে হালকা উপরে উঠবে */
 }

 .furniture-card img {
     width: 100%;
     height: 280px;
     /* একটি স্ট্যান্ডার্ড হাইট সেট করা হয়েছে */
     object-fit: cover;
     display: block;
 }

 /* ইমেজের ওপরের টেক্সট পজিশনিং */
 .card-text-overlay {
     position: absolute;
     top: 20px;
     left: 20px;
     z-index: 10;
 }

 .card-text-overlay h3 {
     font-size: 1.5rem;
     color: #ffffff;
     /* ডিফল্ট সাদা রঙ (যেমন: Dressing, Bedroom এ আছে) */
     font-weight: 500;
     line-height: 1.2;
     text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
     /* টেক্সট সহজে পড়ার জন্য হালকা শ্যাডো */
 }

 /* কিছু ছবিতে কালো/ডার্ক টেক্সট আছে, সেটার জন্য স্পেশাল ক্লাস */
 .text-dark-custom h3 {
     color: #4a3b32 !important;
     text-shadow: none !important;
 }

 /* brand css end */

 /* future css start */
 /* সেকশন ব্যাকগ্রাউন্ড ও টেক্সট স্টাইল */
 .features-section {
     background-color: #f8f9fa;
     /* হালকা অফ-হোয়াইট ব্যাকগ্রাউন্ড */
     padding: 4rem 1rem;
     font-family: 'Poppins', sans-serif;
 }

 .section-title {
     font-size: 2.25rem;
     color: #2b3e51;
     font-weight: 700;
     margin-bottom: 0.5rem;
 }

 .section-subtitle {
     font-size: 1.1rem;
     color: #6c757d;
     margin-bottom: 3.5rem;
 }

 /* কার্ডের কাস্টম স্টাইল */
 .feature-box {
     background-color: #fcfcfc;
     /* ছবির ভেতরের কার্ডের রঙ */
     border: 1px solid #e9ecef;
     /* হালকা বর্ডার */
     border-radius: 12px;
     /* ছবির মতো রাউন্ডেড কর্নার */
     padding: 2.5rem 1.5rem;
     text-align: center;
     height: 100%;
     transition: all 0.3s ease;
 }

 /* হোভার ইফেক্ট (ঐচ্ছিক, সুন্দর দেখানোর জন্য) */
 .feature-box:hover {
     box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
     transform: translateY(-3px);
 }

 /* আইকন স্টাইল (ছবির মতো মেরুন/লাল রঙ) */
 .feature-icon {
     font-size: 2.8rem;
     color: #a81c1c;
     /* ছবির কাছাকাছি ডার্ক রেড/মেরুন কালার */
     margin-bottom: 1.5rem;
     display: inline-block;
 }

 /* কার্ডের টাইটেল */
 .feature-box h4 {
     font-family: 'Georgia', serif;
     /* ছবির ফন্ট স্টাইলের সাথে মিল রাখার জন্য */
     font-size: 1.15rem;
     color: #1a2530;
     font-weight: 600;
     line-height: 1.4;
     margin-bottom: 0;
 }

 /* future css end */

/* ===== REVIEW SECTION ===== */
.review-section {
    background: #f8f9fa;
    padding: 3.5rem 0;
}

.review-section h2 {
    font-size: 30px;
    font-weight: 700;
    color: var(--primary);
}

.review-card {
    background: #fff;
    border-radius: 16px;
    padding: 1.2rem;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
    height: 100%;
}

.reviewer-img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #e9ecef;
    flex-shrink: 0;
}

.review-body {
    background: #DEEAF1;
    border-radius: 12px;
    padding: 0.85rem 1.1rem;
}

.review-body p {
    font-size: 0.82rem;
    color: #495057;
    margin: 0;
    line-height: 1.7;
}

.star-rating .fa-star {
    font-size: 0.85rem;
}

.star-on {
    color: #ffc107;
}

.star-off {
    color: #dee2e6;
}

.slider-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 1.5rem;
}

.slider-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #dee2e6;
    cursor: pointer;
    transition: background 0.3s;
}

.slider-dots span.active {
    background: var(--primary);
}

.slider-nav {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}

.slider-nav button {
    background: #fff;
    border: 1px solid #dee2e6;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s;
    color: #495057;
}

.slider-nav button:hover {
    background: #0d6efd;
    color: #fff;
    border-color: #0d6efd;
}

.slides-wrapper {
    overflow: hidden;
}

.slides-track {
    display: flex;
    transition: transform 0.4s ease;
}

.slide-item {
    flex: 0 0 33.333%;
    padding: 0 10px;
    box-sizing: border-box;
}

/*  */



 /* footer start */
 /* মূল ফুটার ব্যাকগ্রাউন্ড */
 .main-footer {
     background-color: #f4f7fa;
     /* ছবির হালকা ব্লুইশ-গ্রে ব্যাকগ্রাউন্ড */
     padding: 4rem 0 3rem 0;
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
 }

 /* ফুটার হেডিং স্টাইল */
 .footer-heading {
     color: #a81c1c;
     /* ছবির মেরুন/লাল রঙ */
     font-size: 1.25rem;
     font-weight: 700;
     margin-bottom: 1.5rem;
 }

 /* কন্টাক্ট লিস্ট স্টাইল */
 .contact-info-list {
     list-style: none;
     padding-left: 0;
     margin-bottom: 0;
 }

 .contact-info-list li {
     display: flex;
     align-items: flex-start;
     margin-bottom: 0.75rem;
     color: #2b3e51;
     font-size: 0.95rem;
 }

 .contact-info-list li i {
     color: #a81c1c;
     /* আইকনের মেরুন রঙ */
     font-size: 1.1rem;
     width: 25px;
     margin-top: 3px;
 }

 .contact-info-list li strong {
     color: #000;
     margin-right: 5px;
 }

 /* সোশ্যাল মিডিয়া আইকন স্টাইল (হুবহু কালার ম্যাচিং) */
 .social-links {
     display: flex;
     gap: 10px;
 }

 .social-icon {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 38px;
     height: 38px;
     color: #fff !important;
     border-radius: 6px;
     /* হালকা রাউন্ডেড স্কয়ার */
     font-size: 1.1rem;
     text-decoration: none;
     transition: opacity 0.2s;
 }

 .social-icon:hover {
     opacity: 0.9;
 }

 .bg-facebook {
     background-color: #3b5998;
 }

 .bg-twitter {
     background-color: #1da1f2;
 }

 .bg-instagram {
     background-color: #6a4a3a;
 }

 /* ছবির খয়েরি-চকলেট কালার টোন */
 .bg-youtube {
     background-color: #cd201f;
 }

 .bg-pinterest {
     background-color: #cb2027;
 }

 /* ইউজফুল লিংক স্টাইল */
 .useful-links-list {
     list-style: none;
     padding-left: 0;
     margin-bottom: 0;
 }

 .useful-links-list li {
     margin-bottom: 0.6rem;
 }

 .useful-links-list li a {
     color: #2b3e51;
     text-decoration: none;
     font-size: 0.95rem;
     transition: color 0.2s;
 }

 .useful-links-list li a:hover {
     color: #a81c1c;
 }

 /* বটম কপিরাইট বার */
 .bottom-footer {
     background-color: #1a2530;
     /* ছবির ডার্ক নেভি/ব্ল্যাক ব্যাকগ্রাউন্ড */
     color: #adb5bd;
     padding: 1.25rem 0;
     font-size: 0.9rem;
 }

 .bottom-footer strong {
     color: #fff;
 }

 /* পেমেন্ট গেটওয়ে ইমেজ স্টাইল */
 .payment-gateways {
     display: flex;
     gap: 10px;
     align-items: center;
     justify-content: flex-end;
 }

 .payment-gateways img {
     height: 32px;
     background-color: #fff;
     padding: 2px 6px;
     border-radius: 4px;
     object-fit: contain;
 }

 /* মোবাইল স্ক্রিনের জন্য অ্যালাইনমেন্ট ঠিক করা */
 @media (max-width: 767.98px) {
     .payment-gateways {
         justify-content: center;
         margin-top: 1rem;
     }

     .bottom-footer .text-start {
         text-align: center !important;
     }
 }

 /* footer end  */





 /* mobile footer bottom */
 /* ===== MOBILE BOTTOM NAV ===== */
 .mobile-bottom-nav {
     display: none;
     /* desktop te lukano */
     position: fixed;
     bottom: 0;
     left: 0;
     right: 0;
     z-index: 9999;
     background: var(--white);
     border-top: 2px solid var(--border);
     box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.10);
     padding: 8px 0 10px;
 }

 /* শুধু mobile এ দেখাবে */
 @media (max-width: 991.98px) {
     .mobile-bottom-nav {
         display: block;
     }

     /* mobile nav এর জন্য page এর নিচে space */
     body {
         padding-bottom: 75px;
     }
 }

 .mobile-nav-inner {
     display: flex;
     align-items: center;
     justify-content: space-around;
 }

 .mobile-nav-item {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 4px;
     text-decoration: none;
     color: var(--secondary);
     flex: 1;
     transition: color 0.2s;
     position: relative;
     padding: 4px 0;
 }

 .mobile-nav-item:hover,
 .mobile-nav-item.active {
     color: var(--primary);
 }

 .mobile-nav-icon {
     position: relative;
     font-size: 22px;
     line-height: 1;
 }

 .mobile-nav-label {
     font-size: 11px;
     font-weight: 600;
     letter-spacing: 0.3px;
 }

 /* Cart badge */
 .cart-badge {
     position: absolute;
     top: -7px;
     right: -10px;
     background: var(--primary);
     color: var(--white);
     font-size: 10px;
     font-weight: 700;
     width: 18px;
     height: 18px;
     border-radius: 50%;
     display: flex;
     align-items: center;
     justify-content: center;
     line-height: 1;
 }

 /* Divider between items */
 .mobile-nav-divider {
     width: 1px;
     height: 35px;
     background: var(--border);
     flex-shrink: 0;
 }

 /* mobile footer bottom */



 /* checkout css start */
 .checkout-wrapper {
     padding: 30px 0 60px;
 }

 /* ===== COUPON BAR ===== */
 .coupon-bar {
     background: #fff;
     border: 1px solid #e8e8e8;
     padding: 12px 20px;
     margin-bottom: 30px;
     font-size: 14px;
     color: #555;
 }

 .coupon-bar a {
     color: var(--primary);
     font-weight: 600;
     text-decoration: none;
 }

 .coupon-bar a:hover {
     text-decoration: underline;
 }

 /* ===== SECTION TITLE ===== */
 .section-heading {
     font-size: 17px;
     font-weight: 800;
     letter-spacing: 0.5px;
     color: var(--secondary);
     margin-bottom: 22px;
     text-transform: uppercase;
 }

 /* ===== FORM STYLES ===== */
 .form-label {
     font-size: 13px;
     font-weight: 600;
     color: #333;
     margin-bottom: 5px;
 }

 .required-star {
     color: var(--primary);
     margin-left: 2px;
 }

 .form-control {
     border: 1px solid var(--border);
     border-radius: 3px;
     padding: 9px 12px;
     font-size: 14px;
     color: #333;
     background: #fff;
     transition: border-color 0.2s;
 }

 .form-control:focus {
     border-color: var(--secondary);
     box-shadow: none;
     outline: none;
 }

 .country-value {
     font-size: 14px;
     color: #333;
     padding: 4px 0;
 }

 .form-check-input {
     border-color: #aaa;
 }

 .form-check-input:checked {
     background-color: var(--secondary);
     border-color: var(--secondary);
 }

 .form-check-label {
     font-size: 13px;
     color: #444;
 }

 .field-group {
     margin-bottom: 18px;
 }

 /* ===== ORDER SUMMARY BOX ===== */
 .order-box {
     background: #fff;
     border: 1px solid var(--border);
 }

 .order-box .order-header {
     display: flex;
     justify-content: space-between;
     padding: 12px 18px;
     border-bottom: 2px solid var(--secondary);
     font-weight: 800;
     font-size: 13px;
     letter-spacing: 0.5px;
     color: var(--secondary);
     text-transform: uppercase;
 }

 .order-box .order-row {
     display: flex;
     justify-content: space-between;
     align-items: center;
     padding: 13px 18px;
     border-bottom: 1px solid #eee;
     font-size: 13px;
     color: #444;
 }

 .order-box .order-row .product-name {
     color: #333;
 }

 .order-box .order-row .subtotal-amt {
     color: #555;
     font-size: 13px;
 }

 .order-box .order-row.subtotal-row {
     font-weight: 700;
     color: #222;
 }

 .order-box .order-row.subtotal-row .subtotal-amt {
     color: var(--primary);
     font-weight: 700;
 }

 .order-box .order-row.total-row {
     font-weight: 800;
     font-size: 15px;
     color: #111;
     border-bottom: none;
 }

 .order-box .order-row.total-row .total-amt {
     color: var(--primary);
     font-weight: 800;
     font-size: 17px;
 }

 /* ===== PAYMENT METHODS ===== */
 .payment-section {
     padding: 15px 18px;
     border-top: 1px solid #eee;
 }

 .payment-option {
     margin-bottom: 10px;
 }

 .payment-option input[type="radio"] {
     accent-color: var(--secondary);
     width: 16px;
     height: 16px;
     cursor: pointer;
 }

 .payment-option label {
     font-size: 13px;
     font-weight: 600;
     color: #333;
     cursor: pointer;
     display: inline-flex;
     align-items: center;
     gap: 8px;
     margin-left: 6px;
 }

 .payment-option img {
     height: 22px;
     object-fit: contain;
 }

 /* Cash on delivery info box */
 .cod-info {
     background: #f9f9f9;
     border: 1px solid #e5e5e5;
     padding: 12px 15px;
     font-size: 13px;
     color: #555;
     margin: 8px 0 14px;
     border-radius: 2px;
 }

 /* ===== PRIVACY NOTE ===== */
 .privacy-note {
     padding: 0 18px 15px;
     font-size: 12px;
     color: #777;
     line-height: 1.6;
 }

 .privacy-note a {
     color: var(--secondary);
     font-weight: 600;
     text-decoration: none;
 }

 .privacy-note a:hover {
     color: var(--primary);
 }

 /* ===== PLACE ORDER BUTTON ===== */
 .btn-place-order {
     width: 100%;
     background: var(--secondary);
     color: var(--white);
     border: none;
     padding: 15px;
     font-size: 14px;
     font-weight: 800;
     letter-spacing: 1.5px;
     text-transform: uppercase;
     cursor: pointer;
     transition: background 0.2s;
     border-radius: 0;
 }

 .btn-place-order:hover {
     background: var(--primary);
     color: var(--white);
 }

 /* ===== YOUR ORDER TITLE ===== */
 .your-order-title {
     font-size: 17px;
     font-weight: 800;
     letter-spacing: 0.5px;
     color: var(--secondary);
     margin-bottom: 18px;
     text-transform: uppercase;
     text-align: center;
 }

 /* ===== RESPONSIVE ===== */
 @media (max-width: 767px) {
     .your-order-title {
         margin-top: 30px;
         text-align: left;
     }

     .checkout-wrapper {
         padding: 20px 0 40px;
     }
 }

 /* checkout css end */