 /* =============================================
           ROOT VARIABLES
        ============================================= */
 :root {
     --primary: #037768;
     --primary-text: #ffffff;
     --hover: #F68625;
     --menu-bg: #037768;
     --menu-text: #ffffff;
     --footer-bg: #037768;
     --footer-text: #ffffff;
     --border: #eeeeee;
     --shadow: rgba(99, 99, 99, 0.15) 0px 2px 8px 0px;
     --white: #ffffff;
     --black: #323232;
     --transition: 0.25s ease;
 }

 /* =============================================
           PERFORMANCE OPTIMIZATIONS
        ============================================= */
 *,
 *::before,
 *::after {
     box-sizing: border-box;
     margin: 0;
     padding: 0;
 }

 html {
     scroll-behavior: smooth;
     -webkit-text-size-adjust: 100%;
 }

 body {
     font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
     font-size: 16px;
     line-height: 1.6;
     color: var(--black);
     /* GPU-accelerated scrolling */
     -webkit-overflow-scrolling: touch;
     overflow-x: hidden;
 }

 img {
     max-width: 100%;
     height: auto;
     /* Prevent layout shift */
     display: block;
     /* GPU layer for images in scroll */
     will-change: transform;
     content-visibility: auto;
 }

 a {
     text-decoration: none;
     transition: color var(--transition);
 }

 ul {
     list-style: none;
     margin: 0;
     padding: 0;
 }

 h1,
 h2,
 h3,
 h4,
 h5,
 h6 {
     margin: 0;
     color: var(--black);
 }

 p {
     margin: 0;
     color: var(--black);
 }

 .section_padding {
     padding: 45px 0;
 }

 @media(max-width:991px) {
     .section_padding {
         padding: 20px 0;
     }
 }

 /* =============================================
           HEADER
        ============================================= */
 .header_area {
     background: var(--white);
     position: relative;
     z-index: 1000;
     /* Promote to own layer to avoid repaint during scroll */
     will-change: transform;
 }

 .sticky_header.fixed {
     position: fixed;
     top: 0;
     left: 0;
     right: 0;
     z-index: 9999;
     box-shadow: 0 2px 20px rgba(0, 0, 0, 0.12);
     background: var(--white);
     animation: slideDown 0.35s ease forwards;
 }

 @keyframes slideDown {
     from {
         transform: translateY(-100%);
         opacity: 0;
     }

     to {
         transform: translateY(0);
         opacity: 1;
     }
 }

 /* ---- Header Middle ---- */
 .header_middle {
     padding: 10px 0;
     border-bottom: 1px solid var(--border);
 }

 .header_middle_logo img {
     height: 50px;
     width: auto;
 }

 .header_middle_table_cell {
     display: flex;
     align-items: center;
     justify-content: flex-end;
     gap: 24px;
     height: 100%;
 }

 /* Cart Icon */
 .header_cart_btn {
     display: flex;
     align-items: center;
     gap: 10px;
     cursor: pointer;
     padding: 6px 14px;
     border-radius: 8px;
     transition: border-color var(--transition), box-shadow var(--transition);
 }


 .header_cart_btn i {
     font-size: 26px;
     color: var(--primary);
 }

 .cart_content p {
     font-size: 12px;
     color: #888;
     margin: 0;
 }

 .cart_content span {
     font-size: 15px;
     font-weight: 600;
     color: var(--black);
 }

 /* Auth */
 .header_middle_auth_link {
     display: flex;
     align-items: center;
     gap: 8px;
     color: var(--black);
     transition: color var(--transition);
 }

 .header_middle_auth_link:hover {
     color: var(--primary);
 }

 .header_middle_icon svg {
     width: 30px;
     color: var(--primary);
 }

 .header_middle_text span {
     display: block;
     font-size: 13px;
     line-height: 1.3;
 }

 /* ---- Desktop Search Bar ---- */
 .search_wrapper {
     position: relative;
     width: 100%;
 }

 .search_input_group {
     display: flex;
     align-items: center;
     border: 2px solid var(--primary);
     border-radius: 50px;
     overflow: hidden;
     background: #fff;
     transition: box-shadow var(--transition);
 }

 .search_input_group:focus-within {
     box-shadow: 0 0 0 4px rgba(3, 119, 104, 0.15);
 }

 .search_input_group input {
     flex: 1;
     border: none;
     outline: none;
     padding: 10px 20px;
     font-size: 15px;
     background: transparent;
 }

 .search_input_group button {
     border: none;
     background: var(--primary);
     color: #fff;
     padding: 0 20px;
     height: 44px;
     font-size: 17px;
     cursor: pointer;
     transition: background var(--transition);
 }

 /* Search Results Dropdown */
 .search_dropdown {
     display: none;
     position: absolute;
     top: calc(100% + 6px);
     left: 0;
     right: 0;
     background: var(--white);
     border-radius: 12px;
     box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
     max-height: 380px;
     overflow-y: auto;
     z-index: 99999;
     border: 1px solid var(--border);
 }

 .search_dropdown.active {
     display: block;
 }

 .search_dropdown::-webkit-scrollbar {
     width: 4px;
 }

 .search_dropdown::-webkit-scrollbar-thumb {
     background: var(--primary);
     border-radius: 10px;
 }

 .search_item {
     display: flex;
     align-items: center;
     gap: 12px;
     padding: 10px 16px;
     border-bottom: 1px solid var(--border);
     transition: background var(--transition);
     cursor: pointer;
 }

 .search_item:last-child {
     border-bottom: none;
 }

 .search_item:hover {
     background: #f0faf9;
 }

 .search_item img {
     width: 48px;
     height: 48px;
     object-fit: cover;
     border-radius: 6px;
 }

 .search_item_info p {
     font-size: 14px;
     color: var(--black);
     font-weight: 500;
 }

 .search_item_info span {
     font-size: 13px;
     color: var(--primary);
 }

 /* Mobile Search toggle */
 .mobile_search_bar {
     display: none;
     padding: 8px 12px;
     border-top: 1px solid var(--border);
     background: #fff;
 }

 .mobile_search_bar.open {
     display: block;
 }

 /* ---- Desktop Nav ---- */
 .header_bottom {
     background: var(--menu-bg);
 }

 .main_menu {
     display: flex;
     justify-content: center;
 }

 .main_menu>ul {
     display: flex;
     align-items: center;
     flex-wrap: wrap;
 }

 .main_menu>ul>li {
     position: relative;
 }

 .main_menu>ul>li>.main_menu_link {
     display: flex;
     align-items: center;
     gap: 5px;
     color: var(--menu-text);
     font-size: 14px;
     font-weight: 500;
     letter-spacing: 0.3px;
     padding: 14px 18px;
     text-transform: uppercase;
     transition: color var(--transition), background var(--transition);
 }

 .main_menu>ul>li>.main_menu_link i {
     font-size: 11px;
     transition: transform var(--transition);
 }

 .main_menu>ul>li:hover>.main_menu_link {
     color: var(--hover);
 }

 .main_menu>ul>li:hover>.main_menu_link i {
     transform: rotate(180deg);
 }

 /* Submenu */
 .submenu {
     position: absolute;
     top: 100%;
     left: 0;
     min-width: 220px;
     background: var(--white);
     border-radius: 0 0 8px 8px;
     box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
     opacity: 0;
     visibility: hidden;
     transform: translateY(-8px);
     transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
     z-index: 9999;
 }

 .main_menu>ul>li:hover>.submenu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 .submenu li {
     border-bottom: 1px solid var(--border);
     position: relative;
 }

 .submenu li:last-child {
     border-bottom: none;
 }

 .submenu li .submenu_link {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 9px 16px;
     color: var(--black);
     font-size: 14px;
     transition: color var(--transition), padding-left var(--transition);
 }

 .submenu li:hover>.submenu_link {
     color: var(--primary);
     padding-left: 22px;
     background: #f9fffe;
 }

 .submenu li .submenu {
     left: 100%;
     top: 0;
     border-radius: 0 8px 8px 8px;
 }

 .submenu li:hover>.submenu {
     opacity: 1;
     visibility: visible;
     transform: translateY(0);
 }

 /* =============================================
           MOBILE HEADER
        ============================================= */
 .header_mobile_device {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 6px 0;
 }

 .header_mobile_toggle i {
     font-size: 26px;
     color: var(--primary);
     cursor: pointer;
 }

 .header_mobile_logo img {
     height: 42px;
 }

 .header_mobile_search_icon i {
     font-size: 22px;
     color: var(--primary);
     cursor: pointer;
 }

 /* =============================================
           MOBILE SIDEBAR (OFFCANVAS)
        ============================================= */
 .header_mobile_menu.offcanvas {
     width: 85% !important;
     max-width: 340px;
 }

 .header_mobile_top {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 14px 18px;
     border-bottom: 2px solid var(--primary);
     background: #f9fffe;
 }

 .header_mobile_logo_m img {
     height: 38px;
 }

 .header_mobile_close_icon {
     width: 34px;
     height: 34px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: #fff;
     border-radius: 50%;
     cursor: pointer;
     transition: background var(--transition);
 }

 .header_mobile_close_icon:hover {
     background: #fff;
 }

 .header_mobile_close_icon i {
     font-size: 18px;
 }

 /* Mobile Menu List */
 .header_mobile_middle {
     overflow-y: auto;
     height: calc(100vh - 80px);
     padding-bottom: 30px;
 }

 .mobile_main_menu ul {
     margin: 0;
     padding: 0;
 }

 .mobile_menu_item {
     border-bottom: 1px solid var(--border);
 }

 .mobile_menu_top {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 12px 18px;
     cursor: pointer;
     transition: background var(--transition);
 }

 .mobile_menu_top:hover {
     background: #f0faf9;
 }

 .mobile_menu_top:active {
     background: #e0f5f2;
 }

 .mobile_main_menu_link {
     font-size: 15px;
     font-weight: 600;
     color: var(--black);
     text-transform: uppercase;
     letter-spacing: 0.5px;
 }

 .mobile_toggle_icon {
     width: 28px;
     height: 28px;
     display: flex;
     align-items: center;
     justify-content: center;
     background: var(--border);
     border-radius: 50%;
     flex-shrink: 0;
     transition: background var(--transition), transform var(--transition);
 }

 .mobile_toggle_icon i {
     font-size: 12px;
     color: var(--black);
     transition: transform var(--transition);
 }

 .mobile_menu_item.open .mobile_toggle_icon {
     background: var(--primary);
 }

 .mobile_menu_item.open .mobile_toggle_icon i {
     color: #fff;
     transform: rotate(180deg);
 }

 /* Sub-menu level 1 */
 .mobile_submenu {
     display: none;
     background: #f8fffe;
     border-left: 3px solid var(--primary);
     margin-left: 18px;
 }

 .mobile_menu_item.open>.mobile_submenu {
     display: block;
 }

 .mobile_sub_item {
     border-bottom: 1px solid #e8f5f3;
 }

 .mobile_sub_top {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 10px 16px;
     cursor: pointer;
     transition: background var(--transition);
 }

 .mobile_sub_top:hover {
     background: #e6f5f2;
 }

 .mobile_main_submenu_link {
     font-size: 14px;
     color: #444;
     font-weight: 500;
 }

 .mobile_sub_submenu_toggle_icon {
     width: 22px;
     height: 22px;
     display: flex;
     align-items: center;
     justify-content: center;
     flex-shrink: 0;
 }

 .mobile_sub_submenu_toggle_icon i {
     font-size: 11px;
     color: #888;
     transition: transform var(--transition);
 }

 .mobile_sub_item.open .mobile_sub_submenu_toggle_icon i {
     transform: rotate(90deg);
     color: var(--primary);
 }

 /* Sub-menu level 2 */
 .mobile_sub_submenu {
     display: none;
     background: #fff;
     border-left: 2px solid #b2dfdb;
     margin-left: 16px;
 }

 .mobile_sub_item.open>.mobile_sub_submenu {
     display: block;
 }

 .mobile_sub_submenu li {
     border-bottom: 1px solid #f0f0f0;
 }

 .mobile_sub_submenu li:last-child {
     border-bottom: none;
 }

 .mobile_main_sub_submenu_link {
     display: block;
     padding: 9px 16px;
     font-size: 13px;
     color: #666;
     transition: color var(--transition), padding-left var(--transition);
 }

 .mobile_main_sub_submenu_link:hover {
     color: var(--primary);
     padding-left: 22px;
 }

 /* =============================================
           BANNER
        ============================================= */
 .banner_area {
     overflow: hidden;
 }

 .slider_banner_item img {
     width: 100%;
     display: block;
 }

 .slider_banner_active .owl-nav div {
     background: rgba(3, 119, 104, 0.85);
     color: #fff;
     width: 44px;
     height: 44px;
     line-height: 44px;
     text-align: center;
     font-size: 18px;
     position: absolute;
     top: 50%;
     transform: translateY(-50%);
     border-radius: 50%;
     transition: background var(--transition);
     cursor: pointer;
 }

 .slider_banner_active .owl-nav div:hover {
     background: var(--hover);
 }

 .slider_banner_active .owl-nav .owl-prev {
     left: 12px;
 }

 .slider_banner_active .owl-nav .owl-next {
     right: 12px;
 }

 @media(max-width:768px) {
     .slider_banner_active .owl-nav div {
         display: none;
     }
 }

 /* =============================================
           CATEGORIES
        ============================================= */
 .section_title h2 {
     font-size: 22px;
     font-weight: 700;
     color: var(--black);
     letter-spacing: -0.3px;
 }

 .title_bottom_underline {
     color: #ccc;
     margin: 10px 0 !important;
 }

 .title_bottom_over_underline {
     height: 2px;
     max-width: 340px;
     background: rgb(170, 144, 124);
     margin: -10px auto 14px;
     border-radius: 2px;
 }

 .category-item {
     border-radius: 10px;
     padding: 8px;
     text-align: center;
     transition: transform 0.25s ease, box-shadow 0.25s ease;
     box-shadow: 0 2px 8px rgba(0, 0, 0, 0.07);
     background: #fff;
     overflow: hidden;
     /* GPU acceleration for hover */
     will-change: transform;
 }

 .category-item:hover {
     transform: translateY(-5px);
     box-shadow: 0 10px 22px rgba(3, 119, 104, 0.15);
 }

 .category-item-img {
     width: 100%;
     aspect-ratio: 3/4;
     overflow: hidden;
     border-radius: 6px;
     background: #f5f5f5;
 }

 .category-item-img img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     transition: transform 0.35s ease;
     /* Prevent blur during GPU composite */
     backface-visibility: hidden;
 }

 .category-item:hover .category-item-img img {
     transform: scale(1.05);
 }

 .category-item-name p {
     margin-top: 8px;
     font-size: 12px;
     font-weight: 600;
     color: #444;
     transition: color var(--transition);
     white-space: nowrap;
     text-overflow: ellipsis;
     overflow: hidden;
     text-transform: uppercase;
 }

 .category-item:hover .category-item-name p {
     color: var(--primary);
 }

 /* =============================================
           FOOTER
        ============================================= */
 .footer_area {
     background: var(--footer-bg);
     padding-top: 50px;
     /* Separate paint layer */
     isolation: isolate;
 }

 .footer_logo img {
     height: 48px;
 }

 .footer_description {
     margin-top: 14px;
 }

 .footer_description p {
     color: var(--footer-text);
     font-size: 14px;
     line-height: 1.7;
 }

 .footer_title {
     margin-bottom: 14px;
 }

 .footer_title h4 {
     color: var(--footer-text);
     font-size: 18px;
     font-weight: 600;
     position: relative;
     display: inline-block;
 }

 .footer_title h4::after {
     content: "";
     width: 50%;
     background: rgba(255, 255, 255, 0.5);
     height: 2px;
     display: block;
     margin-top: 3px;
 }

 .footer_list li {
     margin-bottom: 6px;
 }

 .footer_list_link {
     color: rgba(255, 255, 255, 0.85);
     font-size: 14px;
     transition: color var(--transition), padding-left var(--transition);
     display: inline-block;
 }

 .footer_list_link:hover {
     color: var(--hover);
     padding-left: 5px;
 }

 .footer_social ul {
     display: flex;
     gap: 8px;
     margin: 16px 0;
 }

 .footer_social_link {
     display: flex;
     align-items: center;
     justify-content: center;
     width: 38px;
     height: 38px;
     border-radius: 8px;
     border: 1px solid rgba(255, 255, 255, 0.3);
     color: var(--footer-text);
     font-size: 16px;
     transition: background var(--transition), color var(--transition), border-color var(--transition);
 }

 .footer_social_link:hover {
     background: var(--hover);
     border-color: var(--hover);
     color: #fff;
 }

 .footer_middle {
     padding: 14px 0;
     border-top: 1px solid rgba(255, 255, 255, 0.15);
     margin-top: 20px;
 }

 .footer_payment_method {
     text-align: center;
 }

 .footer_payment_method img {
     max-width: 100%;
     height: auto;
 }

 .footer_bottom {
     border-top: 1px solid rgba(255, 255, 255, 0.15);
     padding: 12px 0;
 }

 .footer_copyright p,
 .footer_develop_by p {
     color: rgba(255, 255, 255, 0.75);
     font-size: 13px;
 }

 .footer_develop_by {
     display: flex;
     align-items: center;
     gap: 8px;
     float: right;
 }

 .footer_develop_by_link {
     color: rgba(255, 255, 255, 0.9);
     font-weight: 600;
     transition: color var(--transition);
 }

 .footer_develop_by_link:hover {
     color: var(--hover);
 }

 @media(max-width:991px) {
     .footer_develop_by {
         float: none;
         justify-content: center;
         margin-top: 6px;
     }

     .footer_copyright {
         text-align: center;
     }

     .footer_area {
         padding-bottom: 65px;
     }
 }

 /* =============================================
           FIXED FOOTER MOBILE MENU
        ============================================= */
 .fixed_footer_menu {
     background: var(--white);
     box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
     position: fixed;
     bottom: 0;
     left: 0;
     right: 0;
     padding: 5px 10px 3px;
     z-index: 9998;
     display: none;
 }

 @media(max-width:991px) {
     .fixed_footer_menu {
         display: block;
     }
 }

 .fixed_footer_menu ul {
     display: flex;
     justify-content: space-around;
     align-items: center;
 }

 .fixed_footer_menu ul li {
     flex: 1;
 }

 .fixed_footer_menu_link {
     display: flex;
     flex-direction: column;
     align-items: center;
     gap: 2px;
     color: var(--black);
     position: relative;
     padding: 4px 0;
 }

 .fixed_footer_menu_link svg {
     width: 22px;
     color: var(--primary);
 }

 .fixed_footer_menu_link p {
     font-size: 11px;
     color: #666;
 }

 .fixed_footer_menu_link:hover {
     color: var(--primary);
 }

 .fixed_footer_menu_link:hover p {
     color: var(--primary);
 }

 .fixed_footer_cart_count {
     position: absolute;
     top: 0;
     right: 6px;
     background: var(--primary);
     color: #fff;
     width: 16px;
     height: 16px;
     line-height: 16px;
     text-align: center;
     font-size: 10px;
     border-radius: 50%;
 }

 /* =============================================
           FIXED COMMUNICATION (WhatsApp / Messenger)
        ============================================= */
 .fixed_communication_social {
     position: relative;
     z-index: 999;
 }

 /*  */
 .fixed_communication_toggle {
     position: fixed;
     bottom: 70px;
     right: 20px;
     width: 60px;
     /* Ektu boro kora hoyeche jate icon thikmoto thake */
     height: 60px;
     border-radius: 50%;
     display: flex;
     justify-content: center;
     align-items: center;
     cursor: pointer;
     z-index: 1000;
     background: #037768;
     /* Prothom chobir moto teal color */
     box-shadow: 0 4px 15px rgba(3, 119, 104, 0.4);
     transition: background 0.3s ease;
 }

 /* Icon gulo ke rotate korar main wrapper */
 .icon_wrapper {
     position: relative;
     width: 40px;
     height: 40px;
     transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
     /* Bounce effect er jonno */
 }

 .fixed_communication_toggle svg {
     position: absolute;
     top: 0;
     left: 0;
     transition: 0.3s;
 }

 /* Cross icon default vabe invisible thakbe */
 .icon-close {
     opacity: 0;
 }

 /* Active hoye gele background red hobe (Cross er moto) */
 .fixed_communication_social_active .fixed_communication_toggle {
     background: transparent;
     /* Red background SVG er vitor e ache */
     box-shadow: none;
 }

 /* Active thakle icon-wrapper ghure jabe */
 .fixed_communication_social_active .icon_wrapper {
     transform: rotate(360deg);
 }

 /* Active thakle message icon chole jabe, cross icon asbe */
 .fixed_communication_social_active .icon-msg {
     opacity: 0;
 }

 .fixed_communication_social_active .icon-close {
     opacity: 1;
 }

 /* Tooltip ba "Hide" text */
 .fixed_communication_toggle p {
     position: absolute;
     right: 110%;
     white-space: nowrap;
     background: #fff;
     color: #333;
     padding: 4px 10px;
     border-radius: 6px;
     font-size: 13px;
     box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
     opacity: 0;
     visibility: hidden;
     transition: 0.3s;
 }

 .fixed_communication_social_active:hover .fixed_communication_toggle p {
     opacity: 1;
     visibility: visible;
 }

 /*  */
 .communication_social {
     position: fixed;
     bottom: 130px;
     right: 22px;
 }

 .communication_social ul li {
     list-style: none;
     margin-bottom: 10px;
     transform: translateY(60px);
     opacity: 0;
     transition: transform 0.3s ease, opacity 0.3s ease;
 }

 .fixed_communication_social_active .communication_social ul li {
     transform: translateY(0) !important;
     opacity: 1 !important;
 }

 .communication_social ul li:nth-child(1) {
     transition-delay: 0.05s;
 }

 .communication_social ul li:nth-child(2) {
     transition-delay: 0.1s;
 }

 .communication_social ul li:nth-child(3) {
     transition-delay: 0.15s;
 }

 .communication_social ul li a {
     display: block;
     border-radius: 50%;
     position: relative;
 }

 .communication_social ul li a p {
     position: absolute;
     top: 50%;
     right: 110%;
     transform: translateY(-50%);
     white-space: nowrap;
     font-size: 12px;
     background: #fff;
     color: #333;
     padding: 4px 10px;
     border-radius: 6px;
     box-shadow: var(--shadow);
     opacity: 0;
     visibility: hidden;
     transition: 0.3s;
     margin-right: 8px;
 }

 .communication_social ul li:hover a p {
     opacity: 1;
     visibility: visible;
 }

 /* =============================================
           FIXED CART OFFCANVAS
        ============================================= */
 .fixed_product_card_content {
     width: 420px;
     max-width: 95vw;
     z-index: 9999;
 }

 @media(max-width:480px) {
     .fixed_product_card_content {
         width: 100% !important;
     }
 }

 .fixed_product_card_header {
     display: flex;
     align-items: center;
     justify-content: space-between;
     padding: 14px 16px;
     border-bottom: 1px solid var(--border);
     background: #f9fffe;
 }

 .fixed_product_card_header_icon {
     display: flex;
     align-items: center;
     gap: 10px;
 }

 .fixed_product_card_header_icon i {
     font-size: 24px;
     color: var(--primary);
 }

 .fixed_product_card_header_icon span {
     background: #e74c3c;
     color: #fff;
     width: 22px;
     height: 22px;
     line-height: 22px;
     text-align: center;
     border-radius: 50%;
     font-size: 13px;
 }

 .fixed_product_card_header_close {
     cursor: pointer;
 }

 .fixed_product_card_header_close i {
     background: #e74c3c;
     color: #fff;
     padding: 6px 10px;
     border-radius: 6px;
     font-size: 18px;
     transition: background var(--transition);
 }

 .fixed_product_card_header_close i:hover {
     background: #c0392b;
 }

 .fixed_product_card_body {
     flex: 1;
     overflow-y: auto;
 }

 .fixed_product_card_list {
     max-height: 65vh;
     overflow-y: auto;
     padding-bottom: 10px;
 }

 .fixed_product_card_list::-webkit-scrollbar {
     width: 4px;
 }

 .fixed_product_card_list::-webkit-scrollbar-thumb {
     background: var(--primary);
     border-radius: 4px;
 }

 .fixed_product_card_list ul li {
     list-style: none;
     border-bottom: 1px solid var(--border);
     padding: 12px 16px;
 }

 .fixed_product_card_list_table_cell {
     display: flex;
     gap: 14px;
 }

 .fixed_product_card_image img {
     width: 68px;
     border-radius: 6px;
     object-fit: cover;
 }

 .fixed_product_card_details {
     flex: 1;
 }

 .fixed_product_card_name_size_delete {
     display: flex;
     justify-content: space-between;
 }

 .fixed_product_card_name p {
     font-size: 14px;
     line-height: 1.4;
 }

 .fixed_product_card_delete_icon a {
     cursor: pointer;
 }

 .fixed_product_card_delete_icon i {
     font-size: 16px;
     color: #e74c3c;
 }

 .fixed_product_card_qty_price {
     display: flex;
     align-items: center;
     justify-content: space-between;
     margin-top: 8px;
 }

 .fixed_product_card_qty {
     display: flex;
     align-items: center;
 }

 .fixed_product_card_qty_minus,
 .fixed_product_card_qty_plus {
     width: 28px;
     height: 28px;
     border: 1px solid var(--border);
     display: flex;
     align-items: center;
     justify-content: center;
     cursor: pointer;
     font-size: 13px;
     transition: background var(--transition);
 }

 .fixed_product_card_qty_minus {
     border-radius: 4px 0 0 4px;
     border-right: none;
 }

 .fixed_product_card_qty_plus {
     border-radius: 0 4px 4px 0;
     border-left: none;
 }

 .fixed_product_card_qty_minus:hover,
 .fixed_product_card_qty_plus:hover {
     background: #f0faf9;
 }

 .fixed_product_card_qty input {
     width: 38px;
     height: 28px;
     border: 1px solid var(--border);
     text-align: center;
     font-size: 13px;
 }

 .fixed_product_card_close_price p {
     font-size: 15px;
     font-weight: 600;
     color: var(--primary);
 }

 .fixed_product_card_footer {
     position: sticky;
     bottom: 0;
     padding: 14px 16px;
     background: #f9fffe;
     border-top: 1px solid var(--border);
 }

 .fixed_product_card_footer_count {
     display: flex;
     justify-content: space-between;
     align-items: center;
     margin-bottom: 12px;
 }

 .fixed_product_card_footer_count strong {
     font-size: 17px;
 }

 .fixed_product_card_footer_checkout_link {
     display: block;
     width: 100%;
     background: var(--primary);
     color: #fff;
     text-align: center;
     padding: 12px;
     border-radius: 8px;
     font-size: 16px;
     font-weight: 600;
     transition: background var(--transition);
 }

 .fixed_product_card_footer_checkout_link:hover {
     background: var(--hover);
     color: #fff;
 }

 /* =============================================
           RESPONSIVE UTILITIES
        ============================================= */
 @media(min-width: 992px) {
     .mobile_only {
         display: none !important;
     }
 }

 @media(max-width: 991.98px) {
     .desktop_only {
         display: none !important;
     }
 }

 @media(max-width: 576px) {
     .container {
         padding-left: 10px !important;
         padding-right: 10px !important;
     }
 }

 /* =============================================
           TOASTR POSITION
        ============================================= */
 .toaster-center {
     top: 30%;
     left: 50%;
     transform: translate(-50%, -50%);
     position: fixed;
     z-index: 99999;
 }

 /* =============================================
           SCROLL PERFORMANCE — reduce paint areas
        ============================================= */
 .header_area,
 .fixed_footer_menu,
 .fixed_communication_toggle,
 .communication_social {
     transform: translateZ(0);
 }

 /* Prevent scrollbar shifting */
 html {
     scrollbar-gutter: stable;
 }


 /* product section start */
 .shop_area {
     padding: 40px 0 60px;
 }

 /* Product Card */
 .product_card {
     background: #fff;
     border-radius: 10px;
     overflow: hidden;
     box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
     transition: box-shadow 0.25s ease, transform 0.25s ease;
     height: 100%;
     display: flex;
     flex-direction: column;
 }

 .product_card:hover {
     box-shadow: 0 8px 28px rgba(0, 0, 0, 0.15);
     transform: translateY(-3px);
 }

 .product_image {
     position: relative;
     overflow: hidden;
     background: #eee;
 }

 .product_image img {
     width: 100%;
     height: 100%;
     object-fit: cover;
     display: block;
     transition: transform 0.4s ease;
 }

 .product_card:hover .product_image img {
     transform: scale(1.04);
 }

 .product_discount {
     position: absolute;
     top: 10px;
     left: 10px;
     background: #1a7f5a;
     color: #fff;
     font-size: 12px;
     font-weight: 600;
     padding: 3px 9px;
     border-radius: 4px;
     z-index: 2;
 }

 .product_content {
     padding: 12px 12px 14px;
     flex: 1;
     display: flex;
     flex-direction: column;
     gap: 6px;
 }

 .product_name_link {
     font-size: 13px;
     font-weight: 600;
     color: #1a1a1a;
     text-decoration: none;
     display: -webkit-box;
     -webkit-line-clamp: 2;
     -webkit-box-orient: vertical;
     overflow: hidden;
     line-height: 1.4;
     transition: color 0.2s;
 }

 .product_name_link:hover {
     color: #1a7f5a;
 }

 .product_price {
     display: flex;
     align-items: center;
     gap: 8px;
 }

 .product_new_price {
     font-size: 15px;
     font-weight: 700;
     color: #1a1a1a;
 }

 .product_discount_price {
     font-size: 12px;
     color: #e53935;
     text-decoration: line-through;
     font-weight: 400;
 }

 .product_container {
     margin-top: auto;
 }

 .product_btn_link {
     display: block;
     text-align: center;
     padding: 7px 4px;
     border-radius: 5px;
     font-size: 12px;
     font-weight: 500;
     text-decoration: none;
     transition: background 0.2s, color 0.2s;
     cursor: pointer;
 }

 /* Add to Cart - outline style */
 .product_btn:first-child .product_btn_link {
     background: transparent;
     border: 1.5px solid #1a7f5a;
     color: #1a7f5a;
 }

 .product_btn:first-child .product_btn_link:hover {
     background: #1a7f5a;
     color: #fff;
 }

 /* Order Now - filled style */
 .product_btn:last-child .product_btn_link {
     background: #1a7f5a;
     border: 1.5px solid #1a7f5a;
     color: #fff;
 }

 .product_btn:last-child .product_btn_link:hover {
     background: #155f44;
     border-color: #155f44;
 }

 /* Modal Styles */
 .cart_order_modal_container {
     border-radius: 12px;
     overflow: hidden;
 }

 .modal-header {
     background: #1a7f5a;
     color: #fff;
     border: none;
     padding: 14px 20px;
 }

 .modal-header .btn-close {
     filter: invert(1);
 }

 .modal_cart_order_title {
     font-size: 15px;
     font-weight: 600;
     margin: 0;
 }

 .product_select_attribute_container_modal p {
     font-size: 13px;
     font-weight: 600;
     color: #444;
     margin-bottom: 10px;
 }

 .product_select_attribute_modal ul {
     list-style: none;
     padding: 0;
     margin: 0;
     display: flex;
     flex-direction: column;
     gap: 8px;
 }

 .product_select_attribute_modal li {
     display: flex;
     align-items: center;
     justify-content: space-between;
     background: #f8f8f8;
     border-radius: 7px;
     padding: 8px 12px;
 }

 .select_size_name_modal span {
     font-size: 13px;
     font-weight: 600;
     color: #1a1a1a;
     background: #e0e0e0;
     padding: 3px 10px;
     border-radius: 4px;
 }

 .select_price_btn_modal {
     display: flex;
     align-items: center;
     gap: 12px;
 }

 .select_price_modal {
     font-size: 13px;
     font-weight: 700;
     color: #1a1a1a;
 }

 .select_price_btn_modal button,
 .select_order_button {
     background: #1a7f5a;
     color: #fff;
     border: none;
     padding: 5px 14px;
     border-radius: 5px;
     font-size: 12px;
     font-weight: 500;
     cursor: pointer;
     font-family: 'Poppins', sans-serif;
     transition: background 0.2s;
 }

 .select_price_btn_modal button:hover,
 .select_order_button:hover {
     background: #155f44;
 }

 /* Responsive tweaks */
 @media (max-width: 575px) {
     .product_name_link {
         font-size: 12px;
     }

     .product_new_price {
         font-size: 13px;
     }

     .product_btn_link {
         font-size: 11px;
         padding: 6px 2px;
     }
 }

 /*  product section end*/