:root {
  --primary: #B21F24;
  --secondbg: #e5e7eb;
  --white: #ffffff;
  --text: #4a5462;
  --dark: #2B2B2B;
  --placeholder:#a397a3;
}
.gt_white_content span{
    color: #000 !important;
}
.page-content, .entry-content, .entry-summary,.post,
.page,
* {
    margin: 0;
    padding: 0;
}

.wrapper {
    overflow: hidden;
    position: relative;
}

body {
    margin: 0px;
    padding: 0px;
    font-size: 14px;
    font-weight: normal;
    background: linear-gradient(180deg, #fdfdff 0%, #f8f7ff 100%);
     font-family: "Inter", sans-serif;
}

.container-fluid{
    padding-left:2%;
    padding-right:2%;
}
.container-fluid-nogap{
    padding-right: 0;
}
.custom-row-left{
    padding: 0;

}
.inner-div-wrapper{
    background:#f4f8ff;
    margin-left: 20px;

}
.gap-section{
    padding: 40px;
}
p,
a,
span,
table,
button,
th,
tr,
td,
h1,
h2,
h3,
h4,
h5,
h6,
img,
ul,
ol,
li {
    margin: 0px;
    padding: 0px;
  font-family: "Inter", sans-serif;
  transition: all linear .3s;

}

hr {
    border: none;
    height: 1px;
    background: rgba(0, 0, 0, 0.2);
    margin-bottom: 25px;
}

a.edit-button {
    text-decoration: none;
    padding: 5px 10px;
     background-color: var(--primary);
    margin-top: 15px;
    display: inline-block;
    color: #fff;
    border-radius: 10px;
}

.topheader{
    background-color: var(--dark);
    padding: 7px 0;
}

.topheader p{
    color: #fff;
}
.topheader a{
    color: #fff;
    text-decoration: none;
}
.topheader a:hover{
    color: var(--primary);
}
.topheader .top-header-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.topheader .top-header-left{
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 20px;
}
.topheader .top-header-right{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
}

/* header */

.header {
    border-bottom: 1px solid #e5e7eb;
}
.header .header-section-wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px 0;
}

.header .header-section-wrapper .header-logo img{
    width: 100%;
}
.header .header-section-wrapper .header-logo{
    width: 18%;
}
.header .header-section-wrapper .search-bar{
    width: 35%;
    position: relative;
}
.header .header-section-wrapper .search-bar .customsearch{
    width: 100%;
    padding:14px 15px;
    border:2px solid #e5e7eb;
    border-radius: 0.5rem;
    color: var(--placeholder);
    font-size: 16px;
    font-weight: 500;
}

.header .header-section-wrapper .search-bar .customsearch::placeholder{
    color: var(--placeholder);
}

.header .header-section-wrapper .search-bar button{
    position: absolute;
    top: 16%;
    right: 10px;
    padding: 0.5rem;
    border:none;
    background-color: var(--primary);
    color: var(--white);
    border-radius: 0.5rem;
    transition: all linear .3s;

}

.header .header-section-wrapper .search-bar button:hover{background-color: #9b0f14;}

.header .header-section-wrapper .cart-sec{
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 20px;
    position: relative;
}

.header .header-section-wrapper .cart-sec a{
    text-decoration: none;
    color:var(--dark);
    font-weight: 500;
    
}
.header .header-section-wrapper .cart-sec .cartbutton{
    padding: 0.625rem 1.25rem;
    background-color: #b21f24;
    border-radius: 0.5rem;
    border:none;
    color: #fff;
    display: flex;
    gap: 10px;
}
.header .header-section-wrapper .cart-sec a:hover{
    color: var(--primary);
}

.header .header-section-wrapper .cart-sec .cartbutton:hover{
    color: #fff;
}

/* BASE & DESKTOP STYLING */
/* Hide mobile navigation elements by default */
.mobile-nav-bar,
.mobile-sidebar-menu,
.mobile-menu-backdrop {
    display: none;
}

/* --- DESKTOP MENU HIDING ON MOBILE (Existing desktop menu) --- */
/* Hide the custom menu (the main desktop navigation) on screens <= 768px */
@media (max-width: 768px) {
    .custom-menu {
        display: none;
    }
}

/* --- MOBILE NAVIGATION BAR (The fixed bottom menu) --- */
@media (max-width: 768px) {
    .mobile-nav-item{
        color: #fff !important;
    }
    .header .header-section-wrapper .cart-sec{
        flex-direction: column;
    }
    
    .mobile-nav-bar {
        display: flex;
        position: fixed;
        bottom: 0;
        left: 0;
        width: 100%;
        justify-content: space-around;
        align-items: center;
        background-color: var(--primary); /* Dark background like in the image */
        color: #fff; /* White text/icons */
        height: 60px;
        z-index: 9999; 
        box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.2);
        padding: 5px 0;
    }

    .mobile-nav-item {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        text-decoration: none;
        color: inherit;
        flex: 1; 
        padding: 5px 0;
        position: relative;
        font-size: 10px;
        text-transform: uppercase;
        line-height: 1.2;
    }
    
    .mobile-nav-item svg {
        width: 20px;
        height: 20px;
        margin-bottom: 2px;
        stroke: currentColor;
    }

    /* Cart Count Badge Styling */
    .mobile-cart-count {
        position: absolute;
        top: -3px;
        right: 15%; 
        background-color:var(--dark); /* Red badge */
        color: white;
        border-radius: 50%;
        height: 20px;
        width: 20px;
        padding: 2px 5px;
        font-size: 9px;
        line-height: 1;
        min-width: 17px;
        text-align: center;
        display: flex;
        align-items: center;
        justify-content: center;
    }
    
    /* --- MOBILE SIDEBAR MENU --- */
    .mobile-sidebar-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 80%; /* Takes up 80% of the screen width */
        max-width: 320px;
        height: 100%;
        background-color: #fff;
        z-index: 10000;
        overflow-y: auto;
        /* By default, it's hidden with transform */
        transform: translateX(-100%); 
        transition: transform 0.3s ease-in-out;
        box-shadow: 4px 0 10px rgba(0, 0, 0, 0.3);
    }
    
    .mobile-sidebar-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px;
        border-bottom: 1px solid #eee;
    }
    
    .mobile-menu-close-btn {
        background: none;
        border: none;
        font-size: 30px;
        line-height: 1;
        cursor: pointer;
        color: #333;
        padding: 0;
    }
    
    .sidebar-menu-content {
        padding: 0; /* Changed padding to 0, list items will handle padding */
    }
    
    /* --- TARGETED MENU STYLING FOR SIDEBAR --- */
    /* Ensure the list is correctly formatted inside the slide-out menu */
    .mobile-main-nav-list {
        list-style: none;
        padding: 0;
        margin: 0;
    }
    
    .mobile-main-nav-list li {
        border-bottom: 1px solid #eee;
    }
    
    .mobile-main-nav-list li:last-child {
        border-bottom: none;
    }

    .mobile-main-nav-list a {
        display: block; /* Make links fill the entire list item space */
        padding: 12px 20px;
        text-decoration: none;
        color: #333;
        font-weight: 500;
        transition: background-color 0.2s;
    }
    
    .mobile-main-nav-list a:hover {
        background-color: #f5f5f5;
    }
    
    /* If the custom walker wraps links/images, you may need further targeting here */


    .mobile-menu-backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.5);
        z-index: 9999;
        display: none;
    }

    /* State when menu is open */
    body.mobile-menu-active .mobile-sidebar-menu {
        transform: translateX(0); /* Slide menu in */
        display: block; /* ADDED: Ensure it is displayed when active */
    }
    
    body.mobile-menu-active .mobile-menu-backdrop {
        display: block; /* Show backdrop */
    }
    
    body.mobile-menu-active {
        /* Prevents scrolling the main content when the menu is open */
        overflow: hidden; 
    }
}

/* Optional: Hide desktop search/cart in the main header on mobile for cleaner look */
@media (max-width: 768px) {
    .header-section-wrapper .search-bar,
    .header-section-wrapper .cart-sec {
        display: none;
    }
    /* Adjust top header content display for mobile */
    .top-header-content {
        justify-content: center;
        padding: 5px 0;
    }
    .top-header-right {
        display: none; /* Hide auxiliary links in top bar on small screens */
    }
}

.mobile-sidebar-menu .header-logo img{
    width: 200px;
}

/* Mobile sidebar menu – toggleable submenus */
.mobile-main-nav-list .sub-menu {
    display: none;                    /* Hidden by default */
    background: #f9f9f9;
    margin: 0;
}

.mobile-main-nav-list .menu-item-has-children > a {
    position: relative;
    padding-right: 40px !important;   /* Space for arrow */
    display: block;
}

/* Arrow icon (your own image) */
.mobile-main-nav-list .menu-item-has-children > a::after {
    content: "";
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    background: url('../images/angle-down.png') no-repeat center;
    background-size: contain;
    transition: transform 0.3s ease;
}

.mobile-main-nav-list .sub-menu li{
    list-style: none;
}
.mobile-main-nav-list .sub-menu li a{

    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;

}

.mobile-main-nav-list .sub-menu li a img{
    width: 35px;
}
/* Rotate arrow 180° when submenu is open */
.mobile-main-nav-list .menu-item-has-children.open > a::after {
    transform: translateY(-50%) rotate(180deg);
}

/* Optional: nice active style */
.mobile-main-nav-list .menu-item-has-children.open > a {
    background: #eef;
    font-weight: 600;
}

.header .header-section-wrapper .cart-wrapper .cart-count{
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    background-color: var(--white);
    line-height: 1rem;
    height: 1.25rem;
    width: 1.25rem;
    border-radius: 50%;
    position: absolute;
    top: -5px;
    right:-5px;
}

/* Search Bar Container */
.search-bar {
    position: relative;
}

.search-bar form {
    position: relative;
}

/* Search Results Dropdown */
.search-results-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-top: none;
    border-radius: 0 0 8px 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    max-height: 500px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
    margin-top: 0;
}

/* Search Loading/Error States */
.search-loading,
.search-no-results,
.search-error {
    padding: 20px;
    text-align: center;
    color: #666;
    font-size: 14px;
}

.search-error {
    color: #d32f2f;
}

/* Search Results List */
.search-results-list {
    padding: 0;
}

/* Search Group */
.search-group {
    border-bottom: 1px solid #f0f0f0;
}

.search-group:last-child {
    border-bottom: none;
}

.search-group-header {
    padding: 12px 16px;
    background: #f8f9fa;
    font-weight: 600;
    font-size: 12px;
    text-transform: uppercase;
    color: #666;
    letter-spacing: 0.5px;
}

/* Individual Search Result Item */
.search-result-item {
    display: flex;
    align-items: center;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s ease;
    border-bottom: 1px solid #f5f5f5;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background-color: #f8f9fa;
}

/* Result Image */
.result-image {
    width: 50px;
    height: 50px;
    margin-right: 12px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
    background: #f5f5f5;
    display: flex;
    align-items: center;
    justify-content: center;
}

.result-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Result Content */
.result-content {
    flex: 1;
    min-width: 0;
}

.result-title {
    font-weight: 500;
    font-size: 14px;
    margin-bottom: 6px;
    color: #222;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.result-meta {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 4px;
}

/* Result Badges */
.result-badge {
    display: inline-block;
    padding: 3px 8px;
    border-radius: 4px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.3px;
}

.result-badge-product {
    background-color: #e3f2fd;
    color: #1976d2;
}

.result-badge-shape {
    background-color: #f3e5f5;
    color: #7b1fa2;
}

.result-badge-material {
    background-color: #e8f5e9;
    color: #388e3c;
}

/* Result SKU */
.result-sku {
    font-size: 11px;
    color: #888;
}

/* Result Count */
.result-count {
    font-size: 11px;
    color: #666;
    font-style: italic;
}

/* Result Price */
.result-price {
    font-weight: 600;
    color: #d32f2f;
    font-size: 14px;
    margin-top: 4px;
}

/* Scrollbar Styling */
.search-results-dropdown::-webkit-scrollbar {
    width: 8px;
}

.search-results-dropdown::-webkit-scrollbar-track {
    background: #f1f1f1;
}

.search-results-dropdown::-webkit-scrollbar-thumb {
    background: #ccc;
    border-radius: 4px;
}

.search-results-dropdown::-webkit-scrollbar-thumb:hover {
    background: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
    .search-results-dropdown {
        max-height: 400px;
    }
    
    .result-image {
        width: 40px;
        height: 40px;
        margin-right: 10px;
    }
    
    .result-title {
        font-size: 13px;
    }
    
    .search-result-item {
        padding: 10px 12px;
    }
}
/* custom-menu */
.custom-menu {
  background:  #f4f8ff;
  transition: all linear .3s;
}

.custom-menu .custom-menu-wrapper .menu{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    position: relative;
    width: max-content;
    margin: auto;
}

.custom-menu .custom-menu-wrapper .menu li{
    list-style: none;

}

.custom-menu .custom-menu-wrapper .menu li .sub-menu li{
    width: 33.33%;
}


.custom-menu .custom-menu-wrapper .menu li .sub-menu li a:hover{
    background-color: var(--secondbg);
}


.custom-menu .custom-menu-wrapper .menu li .sub-menu{
    flex-wrap: wrap;
    gap: 0;
    position: absolute;
    top: 100%;
    left: 0;
    height: auto;
    width: 100%;
    z-index: 9;
    margin: 0;
    background-color: #fff;
    display: none;
    justify-content: flex-start;
}

.custom-menu .custom-menu-wrapper .menu li .sub-menu img{
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.custom-menu .custom-menu-wrapper .menu li a{
    text-decoration: none;
    color:#374151;
    font-size: 0.875rem;
    font-weight: 500;
    font-size: 16px;
    padding: 15px 20px;
    display: inline-block;
}

.sticky{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background-color: var(--primary);
}
.sticky .custom-menu-wrapper .menu li a{
    color: #fff;
}
.custom-menu .custom-menu-wrapper .menu li:hover .sub-menu{
    display: flex;
    z-index: 2;
} 
.custom-menu .custom-menu-wrapper .menu li a:hover{
    color: var(--primary);
}
.sticky .custom-menu-wrapper .menu li a:hover{
    color: #fff;
}
.custom-menu .custom-menu-wrapper .menu li .sub-menu li a{
    padding: 10px 15px;

       display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 15px;
}
.sticky .custom-menu-wrapper .menu li .sub-menu li a{
   color: var(--text);
}

/* page-content */
.page-content{
    background-color: #fff;
}
.sidebar-wrapper {
    padding: 20px 0;
}
.sidebar-wrapper h4{
    font-weight: 700;
    font-size: 21px;
    color: var(--dark);
    margin-bottom: 15px;
}

.sidebar-wrapper h5{
    font-size: 14px;
    font-weight: 400;
    color: var(--placeholder);
    margin: 10px 0;
}

.sidebar-quick select{
    width: 100%;
    background-color: var(--white);
    border: 1px solid #d1d5db;
    padding: 12px;
    border-radius: 5px;
}

.sidebar-quick .quick-shop-btn{
    display: block;
    width: 100%;
    text-decoration: none;
    padding: 0.620rem 1.20rem;
    background-color: #b21f24;
    border:2px solid #b21f24;
    border-radius: 0.5rem;
    color: #fff;
    font-size: 14px;
    margin-top: 10px;
    font-weight: 700;
}

.sidebar-quick .quick-shop-btn:disabled,
.sidebar-quick .quick-shop-btn[disabled] {
    cursor: not-allowed;
}


.sidebar-quick .quick-shop-btn:hover{
    background-color: transparent;
    color: #b21f24;
}

/* sidebar-shape */
.sidebar-shape{
    margin-top: 40px;
}

.sidebar-shape h4{
    border-bottom: 1px solid #e5e7eb;
    padding: 0 0 15px 0;
}


.sidebar-shape .shape-menu {
    list-style: none;
    padding: 0;
    margin: 0;
}

.sidebar-shape .shape-parent-item {
    margin-bottom: 5px;
}

.sidebar-shape .shape-parent-link {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px;
    background:#fbfaff;
    text-decoration: none;
    color: #333;
    border-radius: 4px;
    transition: background 0.3s;
    font-size: 15px;
}

.sidebar-shape .shape-parent-link:hover {
    background: #f9f9fb;
}

.sidebar-shape .shape-parent-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.sidebar-shape .shape-image {
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.sidebar-shape .shape-child-link{
      display: flex;
    align-items: center;
    gap: 10px;
    padding-left: 10px;
    text-decoration: none;
    color: #666;
    transition: color 0.3s, background 0.3s;
    border-radius: 4px;
    font-size: 15px;
}
.sidebar-shape .shape-child-link .shape-image{
    height: 30px;
    width: 30px;
}

.sidebar-shape .shape-name {
    flex: 1;
}

.sidebar-shape .toggle-icon {
    font-weight: bold;
    font-size: 18px;
    transition: transform 0.3s;
    margin-left: 10px;
}

.sidebar-shape .shape-parent-link.active .toggle-icon {
    transform: rotate(180deg);
}

.sidebar-shape .shape-submenu {
    list-style: none;
    padding: 0;
    margin: 5px 0 0 0;
}

.sidebar-shape .shape-submenu li {
    padding: 8px 10px 8px 25px;
}

.sidebar-shape .shape-submenu a {
    text-decoration: none;
    color: #666;
    transition: color 0.3s;
}

.sidebar-shape .shape-submenu a:hover {
    color: #000;
}

/* banner */
.banner{
    position: relative;
}
.owl-theme .owl-nav{
display: none;
}

.banner .owl-theme .owl-dots{
    position: absolute;
    bottom: 7%;
    right: 30px;
    z-index: 22;
    width: max-content;
}
.banner .owl-theme .owl-dots .owl-dot span{
    background-color: var(--primary);
    height: 16px;
    width: 16px;
    border:2px solid #fff;
}

.banner .owl-theme .owl-dots .owl-dot.active span{
    width: 28px;
}

.banner .banner-float-wrapper{
    position: absolute;
    top: 5%;
    right: 5%;
    height: auto;
    width: 24rem;
    z-index: 2;
}

.banner .banner-float-wrapper .banner-float-content{
    background: rgba(255, 255, 255, 0.95); 
    backdrop-filter: blur(0.5rem);  
    border-radius: 0.75rem; 
    padding: 1.5rem; 
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 
            0 10px 10px -5px rgba(0, 0, 0, 0.04); 
}

.banner-float-content h4{
 color: var(--text);
 font-size: 0.875rem;
 font-weight: 700;   
}

.banner-float-content h3{
color: var(--dark);
font-weight:800;
font-size: 1.5rem;
margin: 10px 0;
}

.banner-float-content p{
    color: #374151;
    font-size: 14px;
    line-height: 2;
}

.banner .banner-link-button{
    display: inline-block;
    text-decoration: none;
    padding: 0.625rem 1.25rem;
    background-color: #b21f24;
    border-radius: 0.5rem;
    color: #fff;
    font-size: 16px;
    margin-top: 10px;
}

.banner .banner-link-button:hover{
    background-color: var(--white);
    color: var(--primary);
}
.banner .banner-single .iso{
    position: absolute;
    top: 20px;
    left: 20px;
    z-index: 9;
    width: 150px;
}
/* main-title */
.main-title{
    display: block;
    text-align: center;
    margin-bottom: 40px;
}

.main-title h2{
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 2.5rem;
    margin-bottom: 1rem;
    color: #2b2b2b;
}

.main-title p{
    font-size: 1.125rem;
    line-height: 1.75rem;
    color: #4b5563;
    width: 50%;
    margin: auto;

}

/* Replace .inventory-listings flex styles with grid */
.inventory-listings {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    justify-content: center;
    padding: 0 1rem; /* optional */
}

.inventory-listings .inventory-single {
    width: 100%; /* take full grid cell */
    border: 2px solid #e5e7eb;
    padding: 1.5rem;
    background-color: #fff;
    display: flex;
    flex-direction: column;
    height: 100%; /* ensures it fills the grid cell */
    border-radius: 20px;
    justify-content: space-between;
    transition: all linear .3s;
}

.inventory-listings .inventory-single:hover{
    box-shadow: 0 20px 25px -5px rgb(0 0 0 / 0.1), 0 8px 10px -6px rgb(0 0 0 / 0.1);
    transform: translateY(-0.25rem);
    border-color: var(--primary);

}

.inventory-listings .inventory-single .single-top{
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 10px;
    margin-bottom: 15px;
}

.inventory-listings .inventory-single .single-top h3{
    color: #2b2b2b;
    font-weight: 700;
    font-size: 1.25rem;
}

.inventory-listings .inventory-single .single-top span{
    display: flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    width: 45px;
    border-radius: 5px;
    background-color: #f3f4f6;
    transition: all linear .3s;
}
.inventory-listings .inventory-single:hover .single-top span svg {
    color: var(--white);
}
.inventory-listings .inventory-single:hover .single-top span{
    background-color: var(--primary);
}
.inventory-listings .inventory-menus a{
    text-decoration: none;
    display: block;
    color: #4b5563;
    line-height: 2;
}

.inventory-listings .inventory-menus a:hover{
    color: var(--primary);
}

.inventory-listings .browse-link{
    text-decoration: none;
    display: block;
    margin-top: 30px;
    color: #374151;
    font-weight: 500;
    padding: 0.625rem;
    background-color: #f9fafb;
    text-align: center;
    border-radius: 5px;
    font-size: 15px;
}

.inventory-listings .browse-link:hover{
    background-color: var(--primary);
    color: var(--white);
}

/* whychoose */
.whychoose{
    background: linear-gradient(to right, #2B2B2B, #3A3A3A);
    padding-top: 2rem;   
    padding-bottom: 2rem; 
}

.whychoose ul{
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.whychoose ul li{
    list-style: none;
    width: 31%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    border-right: 1px solid #5f5f5f;
    gap: 10px;
}
.whychoose ul li span{
    height: 50px;
    width: 50px;
    background-color: var(--primary);
    border-radius: 0.5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
}
.whychoose ul li:last-child{
    border-right: none;
    width: max-content;
}
.whychoose ul li h4{
    font-size: 1.125rem;
    line-height: 1.75rem;
    font-weight: 700;
    color: var(--white);
}
.whychoose ul li p{
    color: #d1d5db;
    font-size: 0.875rem;
    line-height: 1.25rem;
}

/* whyabout */
.whyabout{
    padding: 40px 0;
}
.whyabout .experience-list{
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.whyabout .experience-list li{
    list-style: none;
    width: 24%;
    background-color: #f9fafb;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid #e5e7eb;
    transition: border-color 0.3s ease;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: #4b5563;
}

.whyabout .experience-list li .value{
    font-size: 1.875rem; /* text-3xl */
    line-height: 2.25rem;
    font-weight: 700; /* font-bold */
    color: #B21F24; /* text-[#B21F24] */
    margin-bottom: 0.5rem; /* mb-2 */
    display: block;
}

/* footer */
.metalXpress-footer{
        padding: 50px 0;
        background-color: var(--dark);
        position: relative;
    }

.metalXpress-footer h4{
        font-size: 1.125rem;
        line-height: 1.75rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 15px;
    }

.metalXpress-footer .footer-menu ul li a{
        text-decoration: none;
        color: #d1d5db;
        font-size: 16px;
    }
.metalXpress-footer .footer-menu ul li{
        list-style: none;
        line-height: 2;
    }

.metalXpress-footer .footer-menu ul li a:hover{
        color: var(--primary);
        padding-left: 7px;
    }

.metalXpress-footer .footer-contact ul li{
        list-style: none;
        color: #fff;
        display: flex;
        align-items: flex-start;
        justify-content: flex-start;
        gap: 10px;
        margin-bottom: 20px;
    }

.metalXpress-footer .footer-contact ul li p{
        color: #d1d5db;
        font-size: 14px;
        margin-bottom: 5px;
    }

.metalXpress-footer .footer-contact ul li h5{
        font-size: 16px;
        color: #e5e7eb;
    }
.metalXpress-footer img{
        width: 150px;
        margin-top: 10px;
        position: absolute;
        top: 50px;
        right: 10%;
        z-index: 2;
    }
/* copyright */
.copyright{
    border-top: 1px solid #374151;
    background-color: var(--dark);
}

.copyright .copyright-content{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 0;
}

.copyright .copyright-content p{
    color: #9ca3af;
    font-size: 0.875rem;
}

.copyright .copyright-content a{
    color: #9ca3af;
}


/* about-page-content */
.about-page-content .inner-div-wrapper{
    background-color: #fffcfc;
}
.about-page-content .inner-div-wrapper h3, .about-page-content .inner-div-wrapper h2, .about-page-content .inner-div-wrapper h1{
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 10px;
}

.about-page-content .inner-div-wrapper li, .about-page-content .inner-div-wrapper p{
    color: #2b2b2b;
    font-size: 17px;
    line-height: 2;
}
/* Taxonomy Single Page */
.taxonomy-page h1{
    font-size: 27px;
    font-weight: 700;
    margin-bottom: 10px;
}

.taxonomy-page p{
    font-size: 15px;
    line-height: 2;
}

/* shapes-tab-section */
.shapes-tab-section .tab-content ul{
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 10px;
}
.shapes-tab-section .tab-content p{
        font-size: 15px;
    line-height: 2;
}
.shapes-tab-section .tab-content ul li{
    list-style: none;
    width: 45%;
    font-size: 15px;
    line-height: 2;
}

.shapes-tab-section .tab-content ul li a{
    font-weight: 600;
}


.taxonomy-page .nav.nav-tabs{
    background-color: var(--primary);
}

.taxonomy-page .nav-tabs .nav-link{
    border-radius: 0;
    border: none;
    color: var(--white);

}
.taxonomy-page .nav-tabs .nav-link{
    margin: 0;
    font-weight: 500;
    padding: 12px;
    font-size: 15px;
}
.taxonomy-page .nav-tabs .nav-item.show .nav-link:hover,.taxonomy-page  .nav-tabs .nav-item.show .nav-link, .taxonomy-page  .nav-tabs .nav-link.active{
    background-color: #840202;
    border: none;
    color: var(--white);
}

.taxonomy-page .tab-content{
    background-color: #fff;
    padding: 20px;
}
.taxonomy-page .gap-section .main-title{
    text-align: left;
}
.taxonomy-images {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.taxonomy-images a {
    width: 19.99%;
    height: 250px;
    overflow: hidden;
}

.taxonomy-images img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
    display: block;
}

.taxonomy-images a:hover img {
    transform: scale(1.1);
}

/* taxonomy call us now */
.taxonomy-callus{
    background-color: var(--primary);
    padding: 20px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
}

.taxonomy-callus h4{
      font-size: 35px;
      color: var(--white);
      font-weight: 700;
}

/* Taxonomy Table */
.taxonomy-page thead{
    background-color: var(--primary);
    color: var(--white);
}
.taxonomy-page thead th{
    padding: 14px;
    font-size: 16px;

}

.taxonomy-page .product-name{
    font-weight: 500;
    font-size: 15px;
}

.taxonomy-page .product-name a{
    text-decoration: none;
    color: var(--dark);
    text-transform: capitalize;
}

.taxonomy-page .product-name small{
    font-size: 14px;
}
.taxonomy-page td{
    font-size: 14px;
    font-weight: 500;
    vertical-align: middle;
}
.taxonomy-page td.price-cell{
    line-height: 1.2;
    width: 12%;
}

.taxonomy-page .qty-input,
.taxonomy-page .variation-select{
    border-radius: 0;
    padding: 10px;
    font-size: 15px;
    font-weight: 500;
}
.taxonomy-page table{
background-color: var(--white);
}
.taxonomy-page table tr:nth-child(even){
background-color: #f4f8ff;
}

.taxonomy-page table .btn{
    font-size: 16px;
    font-weight: 700;
    background-color: var(--primary);
    border-radius: 5px;
    padding: 10px 15px;
}
.taxonomy-page table .btn{
    color: #fff;
    border:none
}
.taxonomy-page table .text-muted{
    font-size: 14px;
}




/* Quick Search Page Styling */
.search-info{
    margin:50px 0 30px 0;
}
.search-info h1 {
    font-size: 28px;
    margin-bottom: 15px;
}

.active-filters {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.active-filters p {
    margin: 0;
    font-weight: 600;
}

.filter-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: 500;
}

.filter-material {
    background-color: #e8f5e9;
    color: #388e3c;
}

.filter-shape {
    background-color: #f3e5f5;
    color: #7b1fa2;
}

.remove-filter {
    color: inherit;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.2s;
}

.remove-filter:hover {
    opacity: 1;
}

.clear-all-filters {
    color: #d32f2f;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
}

.clear-all-filters:hover {
    text-decoration: underline;
}

.products-count {
    margin-bottom: 20px;
    font-size: 16px;
    color: #666;
}

/* Product Page */
    /* Hero Section */
    .mx-custom-product-page{
        background-color: #fff;
    }
.mx-custom-product-page .mx-hero-dark { background: #342323; padding: 60px 0; color: #fff; border-bottom: 5px solid #b21f24; }
.mx-custom-product-page .mx-bread { font-size: 0.8rem; margin-bottom: 15px; opacity: 0.6; }
.mx-custom-product-page .mx-bread a { color: #fff; text-decoration: none; }
.mx-custom-product-page .mx-title { font-size: 3.5rem; font-weight: 900; text-transform: uppercase; margin-bottom: 10px; }
.mx-custom-product-page .mx-status { color: #2ecc71; font-weight: 800; font-size: 0.85rem; letter-spacing: 1px; }
.mx-custom-product-page .single_add_to_cart_button{
    margin-top: 10px !important;
}
.mx-custom-product-page .mx-price-tag
,.woocommerce-Price-amount.amount{
    font-size: 20px;
    font-family: "Inter", sans-serif;
    font-weight: 900;
}
.mx-custom-product-page .reset_variations{
    font-size: 15px;
    text-decoration: none;
    display: inline-block;
    margin-top: 10px;
    background: #5b5bff;
    color: #fff;
    padding: 5px 20px;
}
.mx-custom-product-page .mx-description-short p{
    color: #374151;
    margin: 10px 0;
    line-height: 2;
    font-size: 15px;
}
    /* Gallery Fix: No jumping transitions */
.mx-custom-product-page .mx-gallery-wrapper .woocommerce-product-gallery__image { transition: none !important; }
.mx-custom-product-page .mx-gallery-wrapper img { border:none; }

    /* Price */
.mx-custom-product-page .mx-price-tag .price { font-size: 2.8rem !important; color: #b21f24 !important; font-weight: 900 !important; display: block; margin-bottom: 20px; }

    /* Variations & Selects */
.mx-custom-product-page .variations { width: 100%; border: none !important; }
.mx-custom-product-page .variations th, .variations td { display: block; width: 100%; padding: 5px 0; border: none !important; text-align: left;color: #3a2222 !important; }
.mx-custom-product-page .variations label { font-weight: 800; text-transform: uppercase; font-size: 0.8rem; }
.mx-custom-product-page .variations select { 
        width: 100% !important; height: 50px !important; border: 2px solid #000 !important; 
        border-radius: 0 !important; font-weight: 700 !important; padding: 0 10px !important;
        background: #fdfdfd !important;
    }

    /* Add to Cart Area */
.mx-custom-product-page .quantity input.qty { height: 50px; width: 80px; border: 2px solid #000; font-weight: 800; text-align: center; }
.mx-custom-product-page .single_add_to_cart_button { 
        height: 50px; background: #b21f24 !important; color: #fff !important; 
        border: none !important; padding: 0 40px !important; font-weight: 900 !important; 
        text-transform: uppercase !important; border-radius: 0 !important;
    }

    /* CTA Box */
.mx-custom-product-page .mx-cta-box { background: #f8f8f8; padding: 25px; border-left: 5px solid #b21f24; }
.mx-custom-product-page .mx-btn-black { 
        display: block; background: #a00; color: #fff; text-align: center; 
        padding: 15px; font-weight: 900; text-decoration: none; margin-top: 15px;
    }
.mx-custom-product-page .mx-btn-black:hover { background: #b21f24; color: #fff; }

    /* Specs Table Design */
.mx-custom-product-page .mx-label { font-weight: 900; text-transform: uppercase; border-bottom: 3px solid #000; padding-bottom: 10px; margin-bottom: 25px; }
.mx-custom-product-page .mx-spec-table table { width: 100%; border-collapse: collapse; }
.mx-custom-product-page .mx-spec-table th { background: #b21f24 !important; color: #fff; padding: 12px !important; font-size: 0.8rem; text-transform: uppercase; width: 40% !important; }
.mx-custom-product-page .mx-spec-table td { padding: 12px !important ; border: 1px solid #eee; font-weight: 600; background: #fff; }
.mx-custom-product-page .mx-spec-table tr:nth-child(even) td { background: #fafafa; }
    /* --- GALLERY STABILIZATION (Anti-Flicker) --- */
.mx-custom-product-page .woocommerce-product-gallery {
        position: relative;
        background: #ffffff;
        border: none;
        margin-bottom: 20px;
    }

    /* Force the container to a consistent height to stop the jumping */
.mx-custom-product-page .woocommerce-product-gallery .flex-viewport {
        transition: none !important;
        border-bottom:none;
    }

    /* Fix for the zoom jumping issue: Disable transitions on the zoom image */
.mx-custom-product-page .zoomImg {
        transition: none !important;
        background: #ffffff;
    }

    /* The Magnifying Glass Icon */
.mx-custom-product-page .woocommerce-product-gallery__trigger {
        position: absolute;
        top: 15px;
        right: 15px;
        z-index: 99;
        background: #ffffff;
        width: 40px;
        height: 40px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
        border: 1px solid #eeeeee;
    }

.mx-custom-product-page .woocommerce-product-gallery__trigger img {
        width: 20px !important;
        height: 20px !important;
    }

    /* --- THUMBNAIL GRID --- */
.mx-custom-product-page .flex-control-thumbs {
        display: flex !important;
        flex-wrap: wrap;
        gap: 10px;
        padding: 15px 0 0 0 !important;
        margin: 0 !important;
        list-style: none !important;
    }

.mx-custom-product-page .flex-control-thumbs li {
        width: 15% !important;
        float: none !important;
        margin: 0 !important;
    }

.mx-custom-product-page .flex-control-thumbs img {
        width: 100% !important;
        height: auto !important;
        border: 2px solid #eeeeee;
        cursor: pointer;
        transition: border-color 0.2s ease, opacity 0.2s ease;
        opacity: 0.7;
    }

    /* Active Thumbnail Style (Red border) */
.mx-custom-product-page .flex-control-thumbs img.flex-active {
        border-color: #b21f24 !important;
        opacity: 1;
    }

.mx-custom-product-page .flex-control-thumbs img:hover {
        opacity: 1;
        border-color: #b21f24;
    }

    /* --- RESPONSIVE FIXES --- */
    @media (max-width: 768px) {
    .mx-custom-product-page .flex-control-thumbs {
            grid-template-columns: repeat(3, 1fr); /* 3 per row on mobile */
        }
    }

    /* Hide the annoying 'Emoji' zoom icon if it looks weird */
.mx-custom-product-page .woocommerce-product-gallery__trigger .emoji {
        display: inline-block !important;
    }

/* Quick order page */
.quick-order-wrapper .quick-quote-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--white);
}

.quick-order-wrapper .form-header {
    margin-bottom: 30px;
}

.quick-order-wrapper .form-intro h2 {
    color: #dc2626;
    font-size: 28px;
    margin-bottom: 15px;
    font-weight: 700;
}

.quick-order-wrapper .form-intro p {
    color: #374151;
    margin-bottom: 10px;
    line-height: 1.6;
}

.quick-order-wrapper .form-intro em {
    color: #059669;
}

.quick-order-wrapper .form-fields {
    background: #fff;
    padding: 0;
}

.quick-order-wrapper .form-row {
    margin-bottom: 20px;
}

.quick-order-wrapper .form-row.two-column {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.quick-order-wrapper .form-group {
    display: flex;
    flex-direction: column;
}

.quick-order-wrapper .form-group.full-width {
    width: 100%;
}

.quick-order-wrapper .form-group label {
    font-weight: 600;
    color: #1f2937;
    margin-bottom: 8px;
    font-size: 14px;
}

.quick-order-wrapper .form-group .wpcf7-form-control-wrap {
    width: 100%;
}

.quick-order-wrapper .form-group input[type="text"],
.quick-order-wrapper .form-group input[type="email"],
.quick-order-wrapper .form-group input[type="tel"],
.quick-order-wrapper .form-group select,
.quick-order-wrapper .form-group textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #d1d5db;
    border-radius: 4px;
    font-size: 14px;
    transition: border-color 0.2s;
}

.quick-order-wrapper .form-group input[type="text"]:focus,
.quick-order-wrapper .form-group input[type="email"]:focus,
.quick-order-wrapper .form-group input[type="tel"]:focus,
.quick-order-wrapper .form-group select:focus,
.quick-order-wrapper .form-group textarea:focus {
    outline: none;
    border-color: #3b82f6;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.quick-order-wrapper .helper-text {
    font-size: 13px;
    color: #6b7280;
    margin-bottom: 10px;
}

.quick-order-wrapper .file-types {
    font-size: 12px;
    color: #9ca3af;
    margin-top: 8px;
    font-style: italic;
}

.quick-order-wrapper .form-group input[type="file"] {
    padding: 8px;
    border: 1px dashed #d1d5db;
    border-radius: 4px;
    background: #f9fafb;
}

.quick-order-wrapper .recaptcha-wrapper {
    display: flex;
    justify-content: flex-start;
}

.quick-order-wrapper .form-actions {
    display: flex;
    gap: 10px;
    margin-top: 25px;
}

.quick-order-wrapper .form-actions .form-group {
    flex-direction: row;
    gap: 10px;
}

.quick-order-wrapper .btn-submit,
.quick-order-wrapper .btn-reset {
    padding: 12px 30px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.2s;
    border: none;
}

.quick-order-wrapper .btn-submit {
    background: #dc2626;
    color: #fff;
}

.quick-order-wrapper .btn-submit:hover {
    background: #b91c1c;
}

.quick-order-wrapper .btn-reset {
    background: #fff;
    color: #374151;
    border: 1px solid #d1d5db;
}

.quick-order-wrapper .btn-reset:hover {
    background: #f3f4f6;
}

/* Responsive */
@media (max-width: 768px) {
    .quick-order-wrapper .form-row.two-column {
        grid-template-columns: 1fr;
    }
    
    .quick-order-wrapper .quick-quote-form-wrapper {
        padding: 15px;
    }
    
    .quick-order-wrapper .form-intro h2 {
        font-size: 24px;
    }
}

/* Contact Form 7 Validation Styles */
.quick-order-wrapper .wpcf7-not-valid-tip {
    color: #dc2626;
    font-size: 12px;
    margin-top: 5px;
}

.quick-order-wrapper .wpcf7-form-control.wpcf7-not-valid {
    border-color: #dc2626 !important;
}

.quick-order-wrapper .wpcf7-response-output {
    margin: 20px 0;
    padding: 15px;
    border-radius: 4px;
}

.quick-order-wrapper .wpcf7-mail-sent-ok {
    background: #d1fae5;
    color: #065f46;
    border: 1px solid #6ee7b7;
}

.quick-order-wrapper .wpcf7-validation-errors,
.quick-order-wrapper .wpcf7-acceptance-missing {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fca5a5;
}

    /* Everything inside .gap-section stays perfectly spaced */
.inventory-page .main-title h1 {
    font-size: 3.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.inventory-page .lead-subtitle {
    font-size: 1.25rem;
    color: #555;
    font-weight: 400;
    max-width: 800px;
    margin: 0 auto;
}

.inventory-page .inventory-icon-hero {
    font-size: 6rem;
    color: #0066cc;
    line-height: 1;
}
.inventory-page .inventory-menu-pills{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
}
.inventory-page h4 {
    font-size: 1.5rem;
    color: #333;
     display: block;
    text-align: center;
    margin-bottom: 20px;
    font-weight: 700;
}

.inventory-page .menu-pill {
    display: inline-block;
    background: #0066cc;
    color: #fff;
    padding: 0.65rem 1.5rem;
    margin: 0.45rem 0.6rem 0.45rem 0;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 3px 10px rgba(0,102,204,0.25);
}

.inventory-page .menu-pill:hover {
    background: #0052a3;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,102,204,0.35);
    color:#fff;
}

.inventory-page .inventory-main-content .entry-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.inventory-page .inventory-main-content .entry-content h2,
.inventory-page .inventory-main-content .entry-content h3 {
    color: #1a1a1a;
    margin-top: 2.5rem;
    font-weight: 600;
}

/* Mobile adjustments */
@media (max-width: 768px) {
    .inventory-page .main-title h1 { font-size: 2.6rem; }
    .inventory-page .inventory-icon-hero { font-size: 4.5rem; }
    .inventory-page .menu-pill {
        display: block;
        width: fit-content;
        margin: 0.6rem auto 0.6rem 0;
    }
}

/* Parent page content */
/* ------------------------------
   PRODUCT ROW LAYOUT
------------------------------ */
.product-row {
    background: var(--white);
    border-radius: 14px;
    padding: 18px 22px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 4px 14px rgba(0,0,0,0.06);
    transition: .25s;
}

.product-row:hover {
    border-color: var(--primary);
}

/* --- top row layout --- */
.product-row__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-row__left {
    display: flex;
    align-items: center;
    gap: 18px;
}

.product-row__icon img {
    width: 60px;
    height: 60px;
    object-fit: contain;
}

.placeholder-icon {
    width: 60px;
    height: 60px;
    background: var(--secondbg);
    color: var(--placeholder);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
}

/* --- title --- */
.product-row__title a {
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    color: var(--dark);
}

/* --- toggle button --- */
.product-row__toggle {
    padding: 8px 18px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 15px;
    transition: .25s;
}

.product-row__toggle:hover {
    opacity: 0.8;
}

/* --- content hidden --- */
.product-row__content {
    display: none;
    padding-top: 20px;
    border-top: 1px solid #eee;
    margin-top: 18px;
}

/* ------------------------------
   DESCRIPTION
------------------------------ */
.product-row__description {
    font-size: 15px;
    color: var(--text);
    margin-bottom: 20px;
}

/* ------------------------------
   TABS
------------------------------ */
.product-tabs__nav {
    display: flex;
    gap: 10px;
    margin-bottom: 18px;
}

.product-tab-btn {
    padding: 6px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background: var(--white);
    cursor: pointer;
    transition: .25s;
}

.product-tab-btn.active {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

.product-tab-pane {
    display: none;
}

.product-tab-pane.active {
    display: block;
}

/* Gallery */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 8px;
}

.gallery-grid img {
    width: 100%;
    border-radius: 8px;
}

/* Specs */
.spec-list li {
    margin: 20px 0;
    list-style: none;
    color: #374151;
    line-height: 2;
}
.spec-list li span{
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 2.5rem;
    margin-bottom: 1rem;
    display: block;
    color: #2b2b2b;
}
.spec-list li ul li{
    list-style: disc;
    margin: 8px 0;
}
/* 50/50 Split Layout */
.gallery-3d-split {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin: 20px 0;
}

.split-3d,
.split-gallery {
    flex: 1;
    min-width: 300px;
}

.split-3d {
    flex-basis: 50%;
}

.split-gallery {
    flex-basis: 45%;
}

/* product-search-input */
#product-search-input{
    width: 100%;
    padding: 10px;
    background: #fff;
    border: 3px solid #dfdede;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(30%, 1fr));
    gap: 16px;
}

.gallery-grid a {
    display: block;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 6px 15px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.gallery-grid a:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.25);
}

.gallery-grid img {
    width: 100%;
    height: auto;
    display: block;
}

/* Tabs Styling */
.product-tabs__nav {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 30px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eee;
}

.product-tab-btn {
    padding: 12px 28px;
    background: #f8f8f8;
    border: none;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.product-tab-btn.active {
    background: #c00;
    color: white;
}

.parent-page-content__grid{
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Big Check Products Button */
.check-products-btn-wrapper {
    text-align: center;
    margin: 40px 0 20px;
    padding: 20px 0;
}

.check-products-btn {
    display: inline-block;
    background: #c00;
    color: white !important;
    font-size: 20px;
    font-weight: 700;
    padding: 18px 50px;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(204, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.check-products-btn:hover {
    background: #a00;
    transform: translateY(-3px);
    box-shadow: 0 12px 25px rgba(204, 0, 0, 0.4);
}

/* contact page */
/* CONTAINER */
.contact-page .container {
    max-width: 1050px;
    margin: 0 auto;
    padding: 60px 20px;
}

/* HERO */
.contact-page .contact-hero {
    text-align: center;
    margin-bottom: 60px;
}

.contact-page .contact-hero h1 {
    font-size: 42px;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 15px;
}

.contact-page .contact-hero p {
    font-size: 17px;
    color: var(--text);
}

/* WRAPPER (2 Columns) */
.contact-page .contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

@media (max-width: 768px) {
    .contact-page .contact-wrapper {
        grid-template-columns: 1fr;
    }
}

/* LEFT INFO */
.contact-page .contact-info h2 {
    font-size: 28px;
    margin-bottom: 10px;
    color: var(--dark);
}

.contact-page .contact-info .desc {
    color: var(--text);
    margin-bottom: 35px;
}

.contact-page .info-item {
    margin-bottom: 25px;
}

.contact-page .info-item h4 {
    font-size: 15px;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 5px;
}

.contact-page .info-item p,
.contact-page .info-item a {
    color: var(--dark);
    text-decoration: none;
    font-size: 16px;
}

/* RIGHT FORM CARD */
.contact-page .contact-form-card {
    background: var(--white);
    padding: 35px;
    border-radius: 18px;
    border: 1px solid #e5e5e5;
    box-shadow: 0 8px 24px rgba(0,0,0,0.04);
}

.contact-page .contact-form-card h2 {
    font-size: 26px;
    margin-bottom: 25px;
    color: var(--dark);
}

/* FORM FIELDS */
.contact-page input,
.contact-page textarea {
    width: 100%;
    padding: 14px 16px;
    margin-bottom: 18px;
    border: 1px solid #dadada;
    border-radius: 12px;
    font-size: 15px;
    color: var(--text);
    background: #f4f8ff;
    transition: 0.25s ease;
}

.contact-page input:focus,
.contact-page textarea:focus {
    background: #fff;
    border-color: var(--primary);
    outline: none;
}

/* BUTTON */
.contact-page .contact-btn {
    width: 100%;
    padding: 15px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
}

.contact-page .contact-btn:hover {
    background: #991b1f;
}


/* Waterjet Page */
.waterjet-page .waterjet-hero {
  background: linear-gradient(135deg, var(--dark) 0%, #3a3a3a 100%);
  padding: 60px 0;
  color: var(--white);
}
.waterjet-page .owl-theme .owl-dots{
    position: absolute;
    bottom: -15px;
    right: 30px;
    z-index: 22;
    width: max-content;
}
.waterjet-page .owl-theme .owl-dots .owl-dot span{
    background-color: var(--primary);
    height: 16px;
    width: 16px;
    border:2px solid #fff;
}

.waterjet-page .owl-theme .owl-dots .owl-dot.active span{
    width: 28px;
}
.waterjet-page .waterjet-badge {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 8px 20px;
  border-radius: 25px;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 20px;
}

.waterjet-page .waterjet-hero h1 {
  font-size: 48px;
  font-weight: bold;
  margin-bottom: 20px;
  color: var(--white);
}

.waterjet-page .waterjet-hero p {
  font-size: 20px;
  color: #d1d5db;
  margin-bottom: 30px;
  line-height: 1.6;
}

.waterjet-page .btn-primary-custom {
  background: var(--primary);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  border: none;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
}

.waterjet-page .btn-primary-custom:hover {
  background: #8f1a1e;
  color: var(--white);
  text-decoration: none;
}

.waterjet-page .btn-secondary-custom {
  border: 2px solid var(--white);
  color: var(--white);
  padding: 12px 32px;
  border-radius: 8px;
  font-weight: 600;
  background: transparent;
  text-decoration: none;
  display: inline-block;
  transition: all 0.3s;
  margin-left: 15px;
}

.waterjet-page .btn-secondary-custom:hover {
  background: var(--white);
  color: var(--dark);
  text-decoration: none;
}

.waterjet-page .hero-feature-box {
  background: linear-gradient(135deg, var(--primary) 0%, #8f1a1e 100%);
  border-radius: 16px;
  padding: 40px;
}

.waterjet-page .hero-feature-inner {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
}

.waterjet-page .hero-feature-inner img {
  width: 48px;
  height: 48px;
  margin-bottom: 15px;
}

.waterjet-page .hero-feature-inner h3 {
  color: var(--dark);
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 10px;
}

.waterjet-page .hero-feature-inner p {
  color: var(--text);
  margin: 0;
  font-size: 16px;
}

/* Capabilities Grid */
.waterjet-page .capabilities-section {
  padding: 60px 0;
}

.waterjet-page .capability-card {
  background: var(--white);
  border-radius: 12px;
  padding: 30px;
  box-shadow: 0 4px 6px rgba(0,0,0,0.1);
  transition: all 0.3s;
  margin-bottom: 20px;
  height: 100%;
}

.waterjet-page .capability-card:hover {
  box-shadow: 0 12px 24px rgba(0,0,0,0.15);
  transform: translateY(-5px);
}

.waterjet-page .capability-card img {
  width: 40px;
  height: 40px;
  margin-bottom: 15px;
}

.waterjet-page .capability-card h3 {
  font-size: 20px;
  font-weight: bold;
  color: var(--dark);
  margin-bottom: 15px;
}

.waterjet-page .capability-card p {
  color: var(--text);
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
}

/* What is Waterjet Section */
.waterjet-page .waterjet-info-section {
  background: var(--white);
  padding: 60px 0;
}

.waterjet-page .waterjet-info-section h2 {
  font-size: 40px;
  font-weight: bold;
  color: var(--dark);
  margin-bottom: 25px;
}

.waterjet-page .waterjet-info-section p {
  font-size: 18px;
  color: var(--text);
  line-height: 1.8;
  margin-bottom: 20px;
}

.waterjet-page .specs-box {
  background: var(--secondbg);
  border-radius: 16px;
  padding: 40px;
}

.waterjet-page .specs-box h3 {
  font-size: 28px;
  font-weight: bold;
  color: var(--dark);
  margin-bottom: 25px;
}

.waterjet-page .inner-div-wrapper li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #d1d5db;
  padding-bottom: 15px;
  margin-bottom: 15px;
  list-style: none;
}

.waterjet-page .inner-div-wrapper li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.waterjet-page .inner-div-wrapper li {
  font-weight: 600;
  color: var(--text);
}

.waterjet-page .inner-div-wrapper strong {
  color: var(--primary);
  font-weight: bold;
}

/* Advantages Section */
.waterjet-page .advantages-section {
  padding: 60px 0;
}

.waterjet-page .advantages-section h2 {
  font-size: 40px;
  font-weight: bold;
  color: var(--dark);
  text-align: center;
  margin-bottom: 50px;
}

.waterjet-page .inner-div-wrapper .advantage-item {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 15px;
  background: var(--white);
  border-radius: 8px;
  padding: 25px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.08);
  margin-bottom: 20px;
  transition: all 0.3s;
}

.waterjet-page .inner-div-wrapper .advantage-item:hover {
  box-shadow: 0 8px 16px rgba(0,0,0,0.12);
}

.waterjet-page .inner-div-wrapper .advantage-item svg {
  color: #22c55e;
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  margin-top: 2px;
}

.waterjet-page .advantage-item p {
  color: var(--text);
  font-size: 18px;
  margin: 0;
}
.waterjet-page .advantages-list{
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
  flex-wrap: wrap;
}
.waterjet-page .advantages-list li{
    width: 45%;
}
.waterjet-page .advantage-item{
    list-style: none;
    color: var(--text);
  font-size: 18px;
}

/* Materials Section */
.waterjet-page .materials-section {
  background: linear-gradient(135deg, var(--dark) 0%, #1a1a1a 100%);
  color: var(--white);
  padding: 60px 0;
}

.waterjet-page .materials-section h2 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 15px;
}

.waterjet-page .materials-section .subtitle {
  text-align: center;
  color: #d1d5db;
  font-size: 18px;
  margin-bottom: 50px;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.waterjet-page .material-tag {
  background: #3a3a3a;
  border-radius: 8px;
  padding: 20px;
  text-align: center;
  transition: all 0.3s;
  cursor: default;
  margin-bottom: 15px;
}

.waterjet-page .material-tag:hover {
  background: var(--primary);
  cursor: pointer;
}

.waterjet-page .material-tag p {
  margin: 0;
  font-weight: 600;
}

.waterjet-page .materials-footer {
  text-align: center;
  color: #9ca3af;
  font-size: 18px;
  margin-top: 40px;
}

/* Applications Section */
.waterjet-page .applications-section {
  padding: 60px 0;
}

.waterjet-page .applications-section h2 {
  font-size: 40px;
  font-weight: bold;
  color: var(--dark);
  text-align: center;
  margin-bottom: 50px;
}

.waterjet-page .application-card {
  background: var(--secondbg);
  border-radius: 12px;
  padding: 40px;
  transition: all 0.3s;
  margin: 15px 0;
}

.waterjet-page .application-card:hover {
  box-shadow: 0 12px 24px rgba(0,0,0,0.1);
  transform: translateY(-5px);
}
#selected-material-desc{
    background-color: var(--primary);
    color: #fff;
}
#selected-material-desc p{
    color: #fff;
    font-size: 16px;
    line-height: 2;
}
#selected-material-desc p strong{
    color: #fff;
}
.waterjet-page .application-card h3 {
  font-size: 24px;
  font-weight: bold;
  color: var(--dark);
  margin-bottom: 15px;
}

.waterjet-page .application-card p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

/* Quote Form Section */
.waterjet-page .quote-form-section {
  background: var(--secondbg);
  padding: 80px 0;
}

.waterjet-page .quote-form-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--white);
  border-radius: 16px;
  padding: 50px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.waterjet-page .quote-form-container h2 {
  font-size: 36px;
  font-weight: bold;
  color: var(--dark);
  text-align: center;
  margin-bottom: 15px;
}

.waterjet-page .quote-form-container .subtitle {
  text-align: center;
  color: var(--text);
  font-size: 18px;
  margin-bottom: 40px;
}

.waterjet-page .form-group {
  margin-bottom: 25px;
}

.waterjet-page .form-group label {
  display: block;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 8px;
}

.waterjet-page .form-control-custom {
  width: 100%;
  padding: 12px 16px;
  border: 2px solid #d1d5db;
  border-radius: 8px;
  font-size: 16px;
  transition: all 0.3s;
}

.waterjet-page .form-control-custom:focus {
  outline: none;
  border-color: var(--primary);
}

.waterjet-page .form-control-custom::placeholder {
  color: var(--placeholder);
}

.waterjet-page textarea.form-control-custom {
  min-height: 120px;
  resize: vertical;
}

.waterjet-page .submit-btn {
  width: 100%;
  background: var(--primary);
  color: var(--white);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 18px;
  border: none;
  cursor: pointer;
  transition: all 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.waterjet-page .submit-btn:hover {
  background: #8f1a1e;
}

/* Why Choose Us Section */
.waterjet-page .why-choose-section {
  padding: 60px 0;
}

.waterjet-page .why-choose-section h2 {
  font-size: 40px;
  font-weight: bold;
  color: var(--dark);
  text-align: center;
  margin-bottom: 50px;
}

.waterjet-page .why-choose-card {
  text-align: center;
  margin-bottom: 30px;
}

.waterjet-page .why-icon-circle {
  background: #fee2e2;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 25px;
}

.waterjet-page .why-icon-circle svg {
  color: var(--primary);
  width: 40px;
  height: 40px;
}

.waterjet-page .why-choose-card h3 {
  font-size: 24px;
  font-weight: bold;
  color: var(--dark);
  margin-bottom: 15px;
}

.waterjet-page .why-choose-card p {
  color: var(--text);
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.waterjet-page .cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, #8f1a1e 100%);
  color: var(--white);
  padding: 60px 0;
}

.waterjet-page .cta-section h2 {
  font-size: 40px;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.waterjet-page .cta-section p {
  font-size: 20px;
  text-align: center;
  margin-bottom: 40px;
  color: #fee2e2;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.waterjet-page .cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

.waterjet-page .btn-white {
  background: var(--white);
  color: var(--primary);
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 18px;
  border: none;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.waterjet-page .btn-white:hover {
  background: var(--secondbg);
  color: var(--primary);
  text-decoration: none;
}

.waterjet-page .btn-outline-white {
  border: 2px solid var(--white);
  color: var(--white);
  background: transparent;
  padding: 16px 32px;
  border-radius: 8px;
  font-weight: bold;
  font-size: 18px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 0.3s;
}

.waterjet-page .btn-outline-white:hover {
  background: var(--white);
  color: var(--primary);
  text-decoration: none;
}

@media (max-width: 768px) {
  .waterjet-page .waterjet-hero h1 {
    font-size: 36px;
  }

  .waterjet-page .waterjet-hero p {
    font-size: 18px;
  }

  .waterjet-page .btn-secondary-custom {
    margin-left: 0;
    margin-top: 10px;
  }

  .waterjet-page .hero-feature-box {
    margin-top: 30px;
  }
}


.gallery-waterjet { background: var(--white); padding: 60px 0; }
.gallery-waterjet-title { font-size: 2.8rem; font-weight: 700; color: var(--dark); position: relative; display: inline-block; }
.gallery-waterjet-title::after { content: ''; width: 90px; height: 5px; background: var(--primary); position: absolute; bottom: -15px; left: 50%; transform: translateX(-50%); }
.waterjet-page .inner-div-wrapper .gallery-waterjet-tabs .nav-item{
    border:none;
    margin: 0;
}
.gallery-waterjet-tabs{
    border: none;
}
.gallery-waterjet-tabs .nav-link { color: var(--text); font-weight: 600; border: 2px solid var(--primary); border-radius: 50px; padding: 10px 32px; margin: 0 10px; }
.gallery-waterjet-tabs .nav-link.active { background: var(--primary); color: #fff; }

.gallery-waterjet-item { display: block; border-radius: 12px; overflow: hidden; transition: all 0.4s; }
.gallery-waterjet-item:hover { transform: translateY(-10px); box-shadow: 0 20px 40px rgba(0,0,0,0.15) !important; }
.gallery-waterjet-item img { transition: transform 0.6s; }
.gallery-waterjet-item:hover img { transform: scale(1.08); }

/* VIDEO STYLES – FIXED & WORKING */
.gallery-waterjet-video-wrapper { background: #000; cursor: pointer; }
.gallery-waterjet-video { width: 100%; height: 100%; object-fit: cover; display: block; }

.gallery-waterjet-play-icon {
    position: absolute;
    top: 50%; left: 50%;
    width: 68px; height: 68px;
    margin-top: -34px; margin-left: -34px;
    pointer-events: none;
    opacity: 0.9;
    transition: opacity 0.3s;
}
.gallery-waterjet-video-wrapper:hover .gallery-waterjet-play-icon { opacity: 0; }

/* product-filters */

.cart-success-row {
    transition: all 0.3s ease;
}
.cart-success-row td {
    border-top: 2px solid #198754 !important;
}
.product-row.filtered-out {
    display: none !important;
}
.product-filters .card-header {
    border-bottom: 2px solid #dee2e6;
}
.product-filters .card {
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.product-filters .card-header{
    background-color: var(--primary);
}

.product-filters .card-header h4{
    color: #fff;
    font-size: 20px;
    font-weight: 700;
    margin: 0;
        display: flex;
    align-items: center;
    justify-content: space-between;
}

.product-filters .card-header h4 button{
    color: #fff;
    border-color: #fff;
}

.product-filters  .form-select{
background-color: #f4f8ff;
}
.product-filters select option{
    padding: 10px;
    display: block;
}
/* shipping-btn */
.taxonomy-page table .shipping-btn{
    background-color: transparent;
}
.taxonomy-page table .shipping-btn svg{
    color: var(--primary);
}


/* ————————————————————
   CLASSIC, PROFESSIONAL, TIMELESS REVIEW SECTION
   No avatars, no rounded cards, no modern fluff — just clean, readable, trustworthy.
   ———————————————————— */

#comments { 
    margin: 70px 0 40px 0;
    padding: 0;
    background: transparent;
    font-family: "Inter", sans-serif;
    line-height: 1.7;
}

#comments .comments-title,
#comments #reply-title {
    font-family: "Inter", sans-serif;
    font-size: 22px !important;
    font-weight: bold !important;
    color: #000 !important;
    margin: 0 0 30px 0 !important;
    padding-bottom: 10px;
    border-bottom: 2px solid #cc0000;
    text-align: left;
}

/* Remove avatars completely */
#comments .avatar,
#comments .comment-author img {
    display: none !important;
}

/* Classic comment list */
#comments .comment-list {
    list-style: none;
    padding: 0;
    margin: 0 0 50px 0;
}

#comments .comment {
    margin: 0 0 35px 0;
    padding: 0 0 35px 0;
    border-bottom: 1px solid #ddd;
    position: relative;
}

#comments .comment:last-child {
    border-bottom: none;
    padding-bottom: 0;
    margin-bottom: 0;
}

#comments .comment-meta {
    margin-bottom: 12px;
    font-size: 13px;
    color: #666;
    font-family: "Inter", sans-serif;
}

#comments .comment-author {
    font-weight: bold;
    color: #cc0000;
    font-size: 15px;
}

#comments .comment-author .fn {
    font-style: normal;
}

#comments .comment-author .says {
    font-weight: normal;
    color: #666;
    margin-left: 5px;
}

#comments .comment-metadata {
    margin-left: 8px;
    display: inline;
}

#comments .comment-metadata a {
    color: #666;
    text-decoration: none;
}

#comments .comment-metadata a:hover {
    color: #cc0000;
    text-decoration: underline;
}

#comments .comment-content {
    margin: 15px 0 0 0;
    font-size: 16px;
    color: #000;
}

#comments .comment-content p {
    margin: 0 0 15px 0;
}

#comments .comment-awaiting-moderation {
    color: #cc0000;
    font-style: italic;
    font-size: 13px;
    margin-top: 8px;
    display: block;
}

#comments .reply {
    margin-top: 15px;
    font-size: 13px;
}

#comments .comment-reply-link {
    color: #cc0000;
    text-decoration: none;
    font-weight: bold;
    font-family: "Inter", sans-serif;
}

#comments .comment-reply-link:hover {
    text-decoration: underline;
}

/* ——— COMMENT FORM ——— */
#comments #respond {
    margin-top: 50px;
    padding-top: 30px;
    border-top: 2px solid #cc0000;
}

#comments #reply-title {
    border-bottom: none;
    padding-bottom: 0;
    display: flex;
    gap: 20px;
}

#comments #reply-title small a {
    font-size: 14px;
    color: #666;
    text-decoration: underline;
}

#comments .comment-form {
    font-family: "Inter", sans-serif;
}

#comments .comment-form p {
    margin-bottom: 22px;
}
#comments #respond .submit{
    background-color: var(--primary) !important;
    color: #fff !important;
}
#comments .comment-form label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #000;
    font-weight: bold;
}

#comments .comment-form input[type="text"],
#comments .comment-form input[type="email"],
#comments .comment-form input[type="url"],
#comments .comment-form textarea {
    width: 100%;
    max-width: 100%;
    padding: 10px 12px;
    border: 1px solid #999;
    background: #fff;
    font-size: 15px;
    font-family: "Inter", sans-serif;
    box-sizing: border-box;
}

#comments .comment-form textarea {
    height: 160px;
    resize: vertical;
}

#comments .comment-form input:focus,
#comments .comment-form textarea:focus {
    border-color: #cc0000;
    outline: none;
    background: #fffff8;
}

#comments .required {
    color: #cc0000;
}

#comments .comment-form-cookies-consent {
    font-size: 13px;
    color: #555;
}

#comments .form-submit {
    margin: 30px 0 0 0;
}

#comments #submit {
    background: #cc0000;
    color: white;
    border: 2px solid #cc0000;
    padding: 12px 28px;
    font-size: 16px;
    font-weight: bold;
    font-family: "Inter", sans-serif;
    cursor: pointer;
    transition: all 0.2s;
}

#comments #submit:hover {
    background: #a30000;
    border-color: #a30000;
}

/* Responsive */
@media (max-width: 768px) {
    #comments .comment-form input,
    #comments .comment-form textarea {
        font-size: 16px; /* prevents zoom on iOS */
    }
}



/* FORCE CLEAR SEPARATION BETWEEN EVERY COMMENT – GUARANTEED TO SHOW */
#comments .comment-list li {
    margin-bottom: 20px;
    padding-bottom: 20px;
    position: relative;
    padding: 15px;
    background-color: #f4f8ff;
}


#comments .comment-list .children li{
    background-color: #fff;
    margin-top: 10px;
}



/* Login and register page */
.elegant-login-page .container-login {
            width: 100%;
            max-width: 1200px;
            margin: 40px auto;
            display: flex;
            box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
            border-radius: 20px;
            overflow: hidden;
            background: white;
        }

.elegant-login-page .left-panel {
            flex: 1;
            background: linear-gradient(135deg, #B21F24 0%, #D32F2F 100%);
            color: white;
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            position: relative;
            overflow: hidden;
        }

.elegant-login-page .left-panel::before {
            content: '';
            position: absolute;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            top: -100px;
            right: -100px;
        }

.elegant-login-page .left-panel::after {
            content: '';
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            bottom: -80px;
            left: -80px;
        }

.elegant-login-page .logo {
            display: flex;
            align-items: center;
            margin-bottom: 30px;
        }

.elegant-login-page .logo-icon {
            width: 50px;
            height: 50px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
            font-size: 24px;
        }

.elegant-login-page .logo-text {
            font-size: 28px;
            font-weight: 700;
        }

.elegant-login-page .logo-text span {
            color: #ffd700;
        }

.elegant-login-page .left-panel h1 {
            font-size: 42px;
            margin-bottom: 20px;
            line-height: 1.2;
            font-weight: 700;
        }

.elegant-login-page .left-panel p {
            font-size: 18px;
            opacity: 0.9;
            line-height: 2;
        }


.elegant-login-page .feature {
            display: flex;
            align-items: center;
            margin: 40px 0;
        }

.elegant-login-page .feature i {
            width: 40px;
            height: 40px;
            background: rgba(255, 255, 255, 0.2);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 15px;
        }

.elegant-login-page .right-panel {
            flex: 1;
            padding: 60px 40px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            background: white;
        }

.elegant-login-page .auth-container {
            max-width: 400px;
            margin: 0 auto;
            width: 100%;
        }

.elegant-login-page .auth-header {
            text-align: center;
            margin-bottom: 40px;
        }

.elegant-login-page .auth-header h2 {
            font-size: 32px;
            color: #2c3e50;
            margin-bottom: 10px;
        }

.elegant-login-page .auth-header p {
            color: #7f8c8d;
            font-size: 16px;
        }

.elegant-login-page .tabs {
            display: flex;
            margin-bottom: 30px;
            border-bottom: 1px solid #eee;
        }

.elegant-login-page .tab {
            flex: 1;
            text-align: center;
            padding: 15px;
            cursor: pointer;
            font-weight: 600;
            color: #7f8c8d;
            transition: all 0.3s;
            position: relative;
        }

.elegant-login-page .tab.active {
            color: #B21F24;
        }

.elegant-login-page .tab.active::after {
            content: '';
            position: absolute;
            bottom: -1px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #B21F24;
            border-radius: 3px 3px 0 0;
        }

.elegant-login-page .form-container {
            position: relative;
            min-height: 350px;
        }

.elegant-login-page .auth-form {
            display: none;
            animation: fadeIn 0.5s ease;
        }

.elegant-login-page .auth-form.active {
            display: block;
        }

        @keyframes fadeIn {
            from { opacity: 0; transform: translateY(10px); }
            to { opacity: 1; transform: translateY(0); }
        }

.elegant-login-page .form-group {
            margin-bottom: 25px;
            position: relative;
        }

.elegant-login-page .form-group label {
            display: block;
            margin-bottom: 8px;
            font-weight: 500;
            color: #2c3e50;
        }

.elegant-login-page .input-with-icon {
            position: relative;
        }

.elegant-login-page .input-with-icon i {
            position: absolute;
            left: 15px;
            top: 50%;
            transform: translateY(-50%);
            color: #7f8c8d;
        }

.elegant-login-page .form-control {
            width: 100%;
            padding: 15px 15px 15px 45px;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            font-size: 16px;
            transition: all 0.3s;
            background: #f9f9f9;
        }

.elegant-login-page .form-control:focus {
            outline: none;
            border-color: #B21F24;
            box-shadow: 0 0 0 3px rgba(178, 31, 36, 0.1);
            background: white;
        }

.elegant-login-page .form-options {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 25px;
        }

.elegant-login-page .checkbox-container {
            display: flex;
            align-items: center;
        }

.elegant-login-page .checkbox-container input {
            margin-right: 8px;
        }

.elegant-login-page .forgot-link {
            color: #B21F24;
            text-decoration: none;
            font-size: 14px;
        }

.elegant-login-page .forgot-link:hover {
            text-decoration: underline;
        }

.elegant-login-page .submit-btn {
            width: 100%;
            padding: 16px;
            background: linear-gradient(135deg, #B21F24 0%, #D32F2F 100%);
            color: white;
            border: none;
            border-radius: 10px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            box-shadow: 0 4px 15px rgba(178, 31, 36, 0.3);
            display: flex;
            align-items: center;
            justify-content: center;
        }

.elegant-login-page .submit-btn:hover {
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(178, 31, 36, 0.4);
        }

.elegant-login-page .submit-btn i {
            margin-left: 8px;
        }

.elegant-login-page .divider {
            text-align: center;
            margin: 30px 0;
            position: relative;
            color: #7f8c8d;
        }

.elegant-login-page .divider::before {
            content: '';
            position: absolute;
            top: 50%;
            left: 0;
            width: 25%;
            height: 1px;
            background: #e0e0e0;
        }

.elegant-login-page .divider::after {
            content: '';
            position: absolute;
            top: 50%;
            right: 0;
            width: 25%;
            height: 1px;
            background: #e0e0e0;
        }

.elegant-login-page .social-auth {
            display: flex;
            gap: 15px;
            margin-bottom: 30px;
        }

.elegant-login-page .social-btn {
            flex: 1;
            padding: 12px;
            border: 1px solid #e0e0e0;
            border-radius: 10px;
            background: white;
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: all 0.3s;
        }

.elegant-login-page .social-btn:hover {
            background: #f5f5f5;
            transform: translateY(-2px);
        }

.elegant-login-page .social-btn i {
            margin-right: 8px;
            font-size: 18px;
        }

.elegant-login-page .google i {
            color: #DB4437;
        }

.elegant-login-page .facebook i {
            color: #4267B2;
        }

.elegant-login-page .twitter i {
            color: #1DA1F2;
        }

.elegant-login-page .auth-footer {
            text-align: center;
            margin-top: 30px;
            color: #7f8c8d;
            font-size: 14px;
        }

.elegant-login-page .auth-footer a {
            color: #B21F24;
            text-decoration: none;
        }

.elegant-login-page .auth-footer a:hover {
            text-decoration: underline;
        }

        /* Responsive Design */
        @media (max-width: 900px) {
    .elegant-login-page .container {
                flex-direction: column;
            }
            
    .elegant-login-page .left-panel {
                padding: 40px 30px;
            }
            
    .elegant-login-page .right-panel {
                padding: 40px 30px;
            }
        }

        @media (max-width: 480px) {
    .elegant-login-page .left-panel h1 {
                font-size: 32px;
            }
            
    .elegant-login-page .social-auth {
                flex-direction: column;
            }
            
    .elegant-login-page .form-options {
                flex-direction: column;
                align-items: flex-start;
            }
            
    .elegant-login-page .forgot-link {
                margin-top: 10px;
            }
        }










.elegant-login-page.logged-in-view {
    background: #f8fafc;
    min-height: 100vh;
    padding: 0;
    font-family: "Inter", sans-serif;
}

.elegant-login-page.logged-in-view .container {

    margin: 0 auto;
    background: transparent;
    border-radius: 0;
    box-shadow: none;
    overflow: visible;
    padding: 40px 20px;
}

.elegant-login-page.logged-in-view .woocommerce {

   min-height: auto;
    background: white;
    border-radius: 24px;
    box-shadow: 0 4px 32px rgba(0, 0, 0, 0.08);
    padding: 40px;
    margin: 0 auto;
}

/* Navigation - Modern Redesign */
.elegant-login-page.logged-in-view .woocommerce-MyAccount-navigation {
    background: white;
    padding: 0;
    border-right: none;
    border-radius: 20px;
}

.elegant-login-page.logged-in-view .woocommerce-MyAccount-navigation ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 0;
    margin: 0;
}

.elegant-login-page.logged-in-view .woocommerce-MyAccount-navigation-link {
    margin: 0;
    border-bottom: none;
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.elegant-login-page.logged-in-view .woocommerce-MyAccount-navigation-link a {
    display: flex;
    align-items: center;
    padding: 20px 24px;
    color: #64748b;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    transition: all 0.3s ease;
    background: #f8fafc;
    border: 1px solid transparent;
    border-radius: 16px;
    position: relative;
}

.elegant-login-page.logged-in-view .woocommerce-MyAccount-navigation-link a:hover {
    color: #1e293b;
    background: white;
    border-color: #e2e8f0;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(178, 31, 36, 0.12);
}

.elegant-login-page.logged-in-view .woocommerce-MyAccount-navigation-link.is-active a {
    color: #B21F24;
    background: linear-gradient(135deg, rgba(178, 31, 36, 0.04) 0%, rgba(178, 31, 36, 0.08) 100%);
    border: 1px solid rgba(178, 31, 36, 0.12);
    font-weight: 600;
}

.elegant-login-page.logged-in-view .woocommerce-MyAccount-navigation-link.is-active a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: #B21F24;
    border-radius: 0 4px 4px 0;
}

.elegant-login-page.logged-in-view .woocommerce-MyAccount-navigation-link--customer-logout {
    margin-top: 20px;
}

.elegant-login-page.logged-in-view .woocommerce-MyAccount-navigation-link--customer-logout a {
    color: #ef4444;
    background: rgba(239, 68, 68, 0.04);
    border: 1px solid rgba(239, 68, 68, 0.12);
}

.elegant-login-page.logged-in-view .woocommerce-MyAccount-navigation-link--customer-logout a:hover {
    color: #dc2626;
    background: rgba(239, 68, 68, 0.08);
    border-color: rgba(239, 68, 68, 0.2);
}

/* Content Area - Modern Design */
.elegant-login-page.logged-in-view .woocommerce-MyAccount-content {
    padding: 0;
    background: transparent;
}
.elegant-login-page.logged-in-view .woocommerce-Address-title{
    text-align: left;
}
.elegant-login-page.logged-in-view .woocommerce-Address-title .edit{
    float: none;
    display: block;
    margin-bottom: 15px;
}
.elegant-login-page.logged-in-view .woocommerce-Button.wc-forward.button{
    display: none;
}
.elegant-login-page.logged-in-view .woocommerce-MyAccount-content .woocommerce-notices-wrapper {
    margin-bottom: 32px;
}

.elegant-login-page.logged-in-view .woocommerce-MyAccount-content p {
    color: #475569;
    line-height: 1.7;
    margin-bottom: 24px;
    font-size: 15px;
    font-weight: 400;
}

.elegant-login-page.logged-in-view .woocommerce-MyAccount-content strong {
    color: #1e293b;
    font-weight: 600;
}

.elegant-login-page.logged-in-view .woocommerce-MyAccount-content a {
    color: #B21F24;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
}

.elegant-login-page.logged-in-view .woocommerce-MyAccount-content a:hover {
    color: #8a191d;
}

.elegant-login-page.logged-in-view .woocommerce-MyAccount-content a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: #B21F24;
    transition: width 0.3s ease;
}

.elegant-login-page.logged-in-view .woocommerce-MyAccount-content a:hover::after {
    width: 100%;
}

/* Welcome Header */
.elegant-login-page.logged-in-view .woocommerce-MyAccount-content p:first-child {
    font-size: 18px;
    color: #1e293b;
    margin-bottom: 40px;

}

.elegant-login-page.logged-in-view .woocommerce-MyAccount-content p:first-child strong {
    color: #B21F24;
    font-weight: 600;
}

/* Quick Actions Grid */
.elegant-login-page.logged-in-view .dashboard-actions {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 32px;
}

.elegant-login-page.logged-in-view .action-card {
    background: white;
    padding: 32px;
    border-radius: 20px;
    border: 1px solid #f1f5f9;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.elegant-login-page.logged-in-view .action-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
    border-color: rgba(178, 31, 36, 0.2);
}

.elegant-login-page.logged-in-view .action-card h3 {
    color: #1e293b;
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
}

.elegant-login-page.logged-in-view .action-card p {
    color: #64748b;
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}


/* .lost-password-view  */
.lost-password-view .container-login{
    flex-direction: column;
}
.woocommerce form .form-row{
    width: 100%;
}
.wp-block-woocommerce-cart {
  color: var(--text);
}

/* Cart items table */
.wp-block-woocommerce-cart .wc-block-cart-items__header {
  text-align: center;
}

.wp-block-woocommerce-cart .wc-block-cart-items__header th {
  color: var(--dark);
  font-weight: bold;
  padding: 15px 0;
}

.wp-block-woocommerce-cart .wc-block-cart-items__row {
  border-bottom: 1px solid var(--secondbg);
}

.wp-block-woocommerce-cart .wc-block-cart-item__image img {
  border-radius: 4px;
}

/* Product names and links */
.wp-block-woocommerce-cart .wc-block-components-product-name {
  color: var(--dark);
  text-decoration: none;
  font-weight: bold;
}

.wp-block-woocommerce-cart .wc-block-components-product-name:hover {
  color: var(--primary);
}

/* Prices */
.wp-block-woocommerce-cart .wc-block-components-product-price,
.wp-block-woocommerce-cart .wc-block-formatted-money-amount {
  color: var(--primary);
  font-weight: bold;
}

/* Quantity selector */
.wp-block-woocommerce-cart .wc-block-components-quantity-selector {
  border: 1px solid var(--secondbg);
  border-radius: 4px;
}

.wp-block-woocommerce-cart .wc-block-components-quantity-selector__input {
  color: var(--text);
  background-color: var(--white);
  border: none;
}

.wp-block-woocommerce-cart .wc-block-components-quantity-selector__button {
  background-color: var(--secondbg);
  color: var(--dark);
}

.wp-block-woocommerce-cart .wc-block-components-quantity-selector__button:hover:not(:disabled) {
  background-color: var(--primary);
  color: var(--white);
}

/* Remove button */
.wp-block-woocommerce-cart .wc-block-cart-item__remove-link {
  color: var(--primary);
  text-decoration: none;
}

.wp-block-woocommerce-cart .wc-block-cart-item__remove-link:hover {
  text-decoration: underline;
}

/* Cart totals sidebar */
.wp-block-woocommerce-cart .wc-block-cart__totals-title {
  color: var(--dark);
  border-bottom: 2px solid var(--primary);
  padding-bottom: 10px;
}

.wp-block-woocommerce-cart .wc-block-components-totals-wrapper {
  background-color: var(--white);
  border-radius: 6px;
  padding: 15px;
  border-top: none;
}
.wc-block-cart .wp-block-woocommerce-cart-order-summary-block{
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.wp-block-woocommerce-cart .wc-block-components-totals-item {
  color: var(--text);
}

.wp-block-woocommerce-cart .wc-block-components-totals-item__label {
  color: var(--dark);
}

.wp-block-woocommerce-cart .wc-block-components-totals-item__value {
  color: var(--primary);
  font-weight: bold;
}

.wp-block-woocommerce-checkout-order-summary-block{
    background-color: var(--white);
}

/* Coupon panel */
.wp-block-woocommerce-cart .wc-block-components-panel__button {
  color: var(--primary);
  background: none;
  border: none;
  cursor: pointer;
}

.wp-block-woocommerce-cart .wc-block-components-panel__button:hover {
  color: var(--dark);
}

/* Checkout button */
.wp-block-woocommerce-cart .wc-block-cart__submit-button {
  background-color: var(--primary) !important;
  color: var(--white) !important;
  border: none;
  border-radius: 4px;
  padding: 15px 30px;
  font-weight: bold;
  text-decoration: none;
  display: block;
  text-align: center;
  transition: background-color 0.3s ease;
}

.wp-block-woocommerce-cart .wc-block-cart__submit-button:hover {
  background-color: var(--dark) !important;
  color: var(--white) !important;
}

/* Product metadata */
.wp-block-woocommerce-cart .wc-block-components-product-details__name {
  color: var(--dark);
  font-weight: bold;
}

.wp-block-woocommerce-cart .wc-block-components-product-details__value {
  color: var(--text);
}

/* Notices and snackbar */
.wp-block-woocommerce-cart .wc-block-components-notices,
.wp-block-woocommerce-cart .wc-block-components-notices__snackbar {
  background-color: var(--secondbg);
  border-left: 4px solid var(--primary);
}

.wc-block-checkout__actions .wc-block-checkout__actions_row .wc-block-components-checkout-place-order-button{
     background-color: var(--primary) !important;
  color: var(--white) !important;
  border: none;
  border-radius: 4px;
  padding: 15px 30px;
  font-weight: bold;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: background-color 0.3s ease;
}
/* Responsive Design */


/* Modern Typography Scale */
.elegant-login-page.logged-in-view {
    font-size: 15px;
    line-height: 1.6;
}

.elegant-login-page.logged-in-view h1, 
.elegant-login-page.logged-in-view h2, 
.elegant-login-page.logged-in-view h3 {
    font-weight: 600;
    line-height: 1.3;
    color: #1e293b;
}

/* Smooth Animations */
.elegant-login-page.logged-in-view .woocommerce-MyAccount-navigation-link,
.elegant-login-page.logged-in-view .woocommerce-MyAccount-content * {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Focus States */
.elegant-login-page.logged-in-view .woocommerce-MyAccount-navigation-link a:focus {
    outline: 2px solid #B21F24;
    outline-offset: 2px;
    border-radius: 16px;
}

.elegant-login-page.logged-in-view .woocommerce-MyAccount-content a:focus {
    outline: 2px solid #B21F24;
    outline-offset: 2px;
    border-radius: 4px;
}




.mx-single-product {min-height:100vh;}
.mx-hero {background: linear-gradient(135deg, rgba(0,0,0,0.88), rgba(20,20,20,0.75)), url('<?php echo esc_url($main_image); ?>') center/cover no-repeat; color:white; padding:140px 0 120px; margin:0 0 80px; text-align:center;}
.mx-hero h1 {font-size:4.2rem; font-weight:900; letter-spacing:-3px; margin-bottom:1rem; text-shadow:0 15px 40px rgba(0,0,0,0.8);}
.mx-call-btn {text-decoration: none; color: #fff; background:#cc0000; padding:28px 90px; font-size:1.8rem; font-weight:900; border-radius:80px; box-shadow:0 25px 60px rgba(204,0,0,0.6); transition:all .4s; display:inline-block;}
.mx-call-btn:hover {transform:translateY(-10px) scale(1.08); background:#ff1a1a; color: #fff;}

.mx-selector-card {background:white; border-radius:32px; padding:60px; box-shadow:0 30px 80px rgba(0,0,0,0.12); border:2px solid #f0f0f0;}
.callback-form-box {
    background: #ffffff;
    padding: 20px;
    margin-top: 20px;
    border-radius: 10px;
    box-shadow: 0 6px 18px rgba(0,0,0,0.08);
}

.callback-form-box h4 {
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 700;
}

.callback-form-box p {
    font-size: 14px;
    color: #666;
    margin-bottom: 15px;
}

.callback-form-box .form-group {
    margin-bottom: 12px;
}

.callback-form-box input,
.callback-form-box textarea {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #ddd;
    border-radius: 6px;
    font-size: 14px;
}

.callback-form-box input:focus,
.callback-form-box textarea:focus {
    outline: none;
    border-color: #b11217;
}

.callback-form-box .callback-btn {
    width: 100%;
    background: #b11217;
    color: #fff;
    border: none;
    padding: 12px;
    border-radius: 6px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    transition: 0.25s ease;
}

.callback-form-box .callback-btn:hover {
    background: #8e0f13;
}

/* custompriceDisplay */
.custompriceDisplay .mx-price-big{
    font-size: 20px;
    font-weight: 700;
}
 .custom-single-product-btn{
        background: #cc0000;
    color: white;
    padding: 18px 40px;
    font-size: 1rem;
    font-weight: 900;
    border-radius: 80px;
}

/* Success message */
.added-success {
    background: linear-gradient(135deg, #28a745, #20c997);
    color: white; padding: 35px; border-radius: 28px; font-size: 2.2rem; font-weight: 900;
    text-align: center; margin: 40px 0; box-shadow: 0 20px 50px rgba(40,167,69,0.5);
    animation: bounceIn 1s;
}
@keyframes bounceIn {0%{transform:scale(0.3);opacity:0}50%{transform:scale(1.08)}70%{transform:scale(0.95)}100%{transform:scale(1);opacity:1}}

.gallery-thumb {width:120px; height:120px; object-fit:cover; border-radius:20px; cursor:pointer; border:5px solid #eee; transition:all .4s; margin:12px;}
.gallery-thumb:hover, .gallery-thumb.active {border-color:#cc0000; transform:scale(1.15); box-shadow:0 15px 35px rgba(204,0,0,0.3);}

.related-products{
    display: none;
}

/* Large laptops / small desktops (optional) */
@media (max-width: 1200px) {
.metalXpress-footer img{
    width: 90px;
}
.taxonomy-callus h4{
    font-size: 25px;
}
.taxonomy-callus img{
    width: 30px;
}
}




@media (max-width: 1024px) {
    .elegant-login-page.logged-in-view .woocommerce {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 32px;
    }
    
    .elegant-login-page.logged-in-view .woocommerce-MyAccount-navigation {
        order: 2;
    }
    
    .elegant-login-page.logged-in-view .woocommerce-MyAccount-navigation ul {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 12px;
    }
    
    .elegant-login-page.logged-in-view .woocommerce-MyAccount-navigation-link.is-active a::before {
        width: 24px;
        height: 4px;
        top: auto;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        border-radius: 4px 4px 0 0;
    }
}

@media (max-width: 992px) {
    .elegant-login-page.logged-in-view .container {
        padding: 20px 16px;
    }
    
    .elegant-login-page.logged-in-view .woocommerce {
        padding: 24px;
        gap: 24px;
    }
    
    .elegant-login-page.logged-in-view .woocommerce-MyAccount-navigation-link a {
        padding: 18px 20px;
        font-size: 14px;
    }
    
    .elegant-login-page.logged-in-view .woocommerce-MyAccount-content p:first-child,
    .elegant-login-page.logged-in-view .woocommerce-MyAccount-content p:nth-child(2) {
        padding: 24px;
    }
    
    .elegant-login-page.logged-in-view .dashboard-actions {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .container-fluid-nogap{
        padding-right: 2%;
    }
    .sidebar-small-forms{
        display: flex;
        align-items: flex-end;
        justify-content: space-between;
        gap: 20px;
    }
    .sidebar-small-forms span{
        width: 40%;
    }
    .sidebar-quick .quick-shop-btn{
        width: 20%;
    }
    .sidebar-shape .shape-parent-item{
        width: 49%;
    }
    .sidebar-shape .shape-menu{
        display: flex;
        justify-content: space-between;
        align-items: flex-start;
        flex-wrap: wrap;
    }
    .banner .banner-float-wrapper .banner-float-content{
        padding: .5rem;
    }
    .banner-float-content h3{
        font-size: 1rem;
    }
    .banner .banner-link-button{
        font-size: 14px;
    }
    .inner-div-wrapper{
        margin-left: 0;
    }
    .main-title h2{
        font-size: 1.7rem;
    }
    .main-title p{
        font-size: 1rem;
        width: 100%;
    }
    .whychoose ul{
        flex-wrap: wrap;
        gap: 20px;
        justify-content: center;
    }
    .whychoose ul li{
        width: 47%;
        border: 0;
    }
    .whyabout .experience-list{
        flex-wrap: wrap;
        gap: 20px;
    }
    .whyabout .experience-list li{
        width: 48%;
    }
    .metalXpress-footer img{
        top: 60%;
    }
    .taxonomy-page thead th,.taxonomy-page table .btn{
        font-size: 14px;
    }
    .wc-block-components-notices__snackbar.wc-block-components-notice-snackbar-list{
        display: none;
    }
    .wp-block-woocommerce-checkout-order-summary-block .wc-block-components-checkout-order-summary__title{
        padding: 20px !important;
    }
    .wp-block-woocommerce-checkout-order-summary-block{
        padding: 20px;
        margin-bottom: 20px;
    }
    .custom-menu .custom-menu-wrapper .menu li a{
        font-size: 14px;
        padding: 15px;
    }
    .waterjet-page .waterjet-hero h1{
        font-size: 28px;
    }
    .waterjet-page .waterjet-hero p{
        font-size: 15px;
    }
    .waterjet-page .btn-secondary-custom,.waterjet-page .btn-primary-custom{
        padding: 12px 20px;
        margin: 0;
    }
    .waterjet-page .capability-card{
        height: auto;
    }
    .waterjet-page .specs-box h3,.waterjet-page .waterjet-info-section h2{
        font-size: 21px;
    }
    .waterjet-page .waterjet-info-section p{
        font-size: 14px;
    }
    .waterjet-page .advantage-item{
        font-size: 15px;
    }
    .gallery-waterjet-title,.waterjet-page .advantages-section h2{
        font-size: 25px;
    }
    .gallery-waterjet-title::after{
        height: 1px;
        width: 47px;
    }
    .waterjet-page .application-card{
        margin: 0;
    }
    .waterjet-page .why-choose-section h2{
        font-size: 30px;
    }
    .waterjet-page .why-choose-card h3{
        font-size: 20px;
    }

}

@media (max-width: 767px) {
    .mx-hero h1{
        font-size: 20px;
        font-weight: 400;
        letter-spacing: 0;
    }
    .mx-hero{
        padding: 50px 0;
    }
    .mx-call-btn{
        padding: 18px 30px;
        font-size: 17px;
        font-weight: 400;
    }
    .mx-selector-card{
        padding: 30px;
    }
    .xoo-wsc-basket{
        bottom:72px;
        width: 54px;
        height: 54px;
    }
    .xoo-wsc-bki{
        font-size: 22px;
    }
    .mobile-main-nav-list .sub-menu li a img{
            width: 35px;
    height: 35px;
    object-fit: contain;
    }
    .elegant-login-page.logged-in-view .woocommerce {
        padding: 20px;
    }
    
    .elegant-login-page.logged-in-view .woocommerce-MyAccount-navigation ul {
        grid-template-columns: 1fr;
    }
    
    .elegant-login-page.logged-in-view .woocommerce-MyAccount-content p:first-child {
        font-size: 16px;
        padding: 20px;
    }
    
    .elegant-login-page.logged-in-view .woocommerce-MyAccount-content p {
        font-size: 14px;
    }
    .topheader .top-header-content{
        flex-direction: column;
    }
    .header .header-section-wrapper .header-logo{
        width: 48%;
    }
    .sidebar-shape{
        margin-top: 10px;
    }
    .header .cart-wrapper{
        display: none;
    }
    .header .header-section-wrapper .cart-sec a{
    padding: 7px 10px;
    background-color: #b21f24;
    border-radius: 0.5rem;
    border:none;
    color: #fff;
    }
    .sidebar-wrapper h4{
        font-size: 17px;
    }
    .sidebar-shape .shape-parent-item{
        width: 100%;
    }
    .banner .banner-float-wrapper{
        position: inherit;
        display: none;
    }
    .banner .banner-float-wrapper .banner-float-content{
        backdrop-filter: none;
        box-shadow: none;
    }
    .banner .banner-single .iso{
        width: 30px;
    }
    .sidebar-shape h4{
        border: none;
        padding: 0;
        margin: 0;
    }
    .sidebar-wrapper{
        padding: 10px 0;
    }
    .sidebar-shape .shape-menu{
        margin-top: 15px;
    }
    .inventory-listings{
        padding: 0;
    }
    .whychoose ul li:last-child,.whychoose ul li{
        width: 100%;
    }
    .whyabout .experience-list{
        gap: 0;
    }
    .whyabout .experience-list li{
        margin-bottom: 15px;
        padding: 16px;
    }
    .footer-menu{
        margin:30px 0;
    }
    .about-page-content .inner-div-wrapper h3, .about-page-content .inner-div-wrapper h2, .about-page-content .inner-div-wrapper h1{
        font-size: 19px;
    }
    .contact-page .contact-form-card{
        padding: 25px;
    }
    .contact-page .contact-form-card h2{
        font-size: 20px;
    }
    .elegant-login-page .container-login{
        max-width: 100%;
    }
    .elegant-login-page .container-login{
        flex-direction: column-reverse;
    }
    .elegant-login-page .left-panel h1{
        font-size: 22px;
    }
    .elegant-login-page .left-panel p{
        font-size: 15px;
    }
    .elegant-login-page .feature h3{
        font-size: 17px;
    }
    .elegant-login-page .feature{
        flex-direction: column;
        align-items: flex-start;
    }
    .elegant-login-page .feature i{
        margin-bottom: 10px;
    }
    .gap-section{
        padding: 20px;
    }
    .quick-order-wrapper .quick-quote-form-wrapper .main-title{
        text-align: left;
    }
    .quick-search-page{
        padding: 0 20px;
    }
    .taxonomy-page td.price-cell{
        width: 100%;
    }
    .taxonomy-images a{
        width: 46.99%;
        height: 120px;
    }
    .taxonomy-page h1{
        font-size: 17px;
    }



        .table-responsive {
        border: 0;
    }
    
    #productsTable thead {
        display: none;
    }
    
    #productsTable tbody tr {
        display: block;
        margin-bottom: 20px;
        border: 1px solid #ddd;
        border-radius: 8px;
        background: #fff;
        box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    }
    
    #productsTable tbody td {
        display: block;
        text-align: left !important;
        padding: 14px 16px !important;
        border: none;
        border-bottom: 1px solid #eee;
    }
    
    #productsTable tbody td:last-child {
        border-bottom: none;
    }
    
    #productsTable tbody td:before {
        content: attr(data-label);
        font-weight: 600;
        display: block;
        margin-bottom: 6px;
        color: #222;
        font-size: 14px;
    }
    
    #productsTable .form-select,
    #productsTable .form-control,
    #productsTable .btn {
        width: 100% !important;
        margin-top: 8px;
    }

    #productsTable .shipping-icons-wrapper {
        justify-content: center !important;
        margin-top: 10px;
    }

    .cart-success-row td {
        padding: 1.5rem !important;
        text-align: center;
    }
    .taxonomy-page .inner-div-wrapper, .taxonomy-page .gap-section{
        display: flex;
        flex-direction: column-reverse;
    }
    .taxonomy-page table{
        background-color: transparent;
    }
    .product-row{
        padding: 11px 7px;
    }
    .single-page-wrapper .offset-1{
        margin-left:0;
    }
    .wp-block-woocommerce-checkout{
        padding-top: 0;
    }

}