.page-header {
    display: none;
}
.elementor-nav-menu .sub-menu {
    width: 250px !important;
    min-width: 250px !important;
}
.elementor-nav-menu .sub-menu a {
    white-space: normal !important;
    word-break: break-word;
    line-height: 1.4;
}
.elementor-image-box-title a {
    text-decoration: none !important;
}
h3.elementor-image-box-title {
    padding: 0 10px 10px 10px;
}
.elementor-widget-image-box .elementor-image-box-img img{
	 border-radius: 8px 8px 0 0;
}
.elementor-image-box-img{
	overflow: hidden;
    border-radius: 8px 8px 0 0;
}
div#reviews {
    display: none;
}

/*Quality page*/
.hov-grow{
    overflow: hidden;
}

/*Tag page*/
.woocommerce .woocommerce-ordering {
    display: none !important;
}

/*form custom code*/
.wpcf7 input, .wpcf7 select{
	height: 42px !important;
	margin-bottom: 0px !important;
	padding: 5px 12px !important;
}
textarea.wpcf7-form-control.wpcf7-textarea.wpcf7-validates-as-required{
	height: 100px !important;
}

.wpcf7 form {
    max-width: 800px;
}

.wpcf7 label {
    width: 100%;
    display: block;
}

.wpcf7 input,
.wpcf7 textarea {
    width: 100%;
    padding: 15px;
    border: 1px solid #DFCDB7;
    border-radius: 6px;
    margin-top: 8px;
    font-size: 16px;
	background: #fafafa;
}

.row-2 {
    display: flex;
    gap: 20px;
}

.row-2 > div {
    width: 50%;
}
.row-3 {
    display: flex;
    gap: 20px;
}

.row-3 > div:first-child{
    width:70%;
}

.row-3 > div:last-child{
    width:30%;
}

.file-upload {
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid #021E3B;
    height: 60px;
    border-radius: 6px;
    cursor: pointer;
    color: #021E3B;
    font-weight: 500;
		margin-top: 25px;
    padding-top: 10px;
}

.file-upload input {
    display: none;
}

.file-upload span {
    pointer-events: none;
}
.file-upload:hover{
	background: #021E3B;
	color: #ffffff;
}

.wpcf7-submit {
    border: 2px solid #021E3B;
    background: transparent;
    color: #021E3B;
    padding: 10px 25px;
    font-size: 16px;
    letter-spacing: 3px;
    cursor: pointer;
}
input.wpcf7-form-control.wpcf7-submit.has-spinner {
    width: 146px;
    border-radius: 0;
}

.wpcf7-submit:hover{
	background: #021E3B !important;
	color: #fff !important;
}

.captcha {
    margin: 20px 0;
}

.custom-popup-form input,
.custom-popup-form select {
    width: 100%;
    height: 42px;
    padding: 5px 12px;
    margin-bottom: 0px;
    font-size: 18px;
    border-radius: 0;
    box-shadow: none;
}

.custom-popup-form input::placeholder {
    color: #777;
}

.custom-popup-form input[type="submit"] {
    width: auto;
    padding: 15px 35px;
    border: 2px solid #021E3B;
    background: transparent;
    color: #021E3B;
    letter-spacing: 4px;
    font-size: 22px;
    cursor: pointer;
    transition: 0.3s;
}

.custom-popup-form input[type="submit"]:hover {
    background: #021E3B;
    color: #fff;
}
/* Background Overlay Blur */
.pum-overlay {
    background: rgba(0, 0, 0, 0.65) !important;
    backdrop-filter: blur(8px) !important;
    -webkit-backdrop-filter: blur(8px) !important;
}

/* Popup Box */
.pum-container {
    background: #fff !important;
    border-radius: 12px !important;
    padding: 45px !important;
    box-shadow: 0 10px 40px rgba(0,0,0,0.25);
}

/* Close Button */
.pum-close {
    background: #021E3B !important;
    width: 60px !important;
    height: 50px !important;
    border-radius: 0 0 0 20px !important;
    font-size: 16px !important;
}

/* Inputs */
.wpcf7 input, .wpcf7 select {
    width: 100%;
    height: 60px;
    margin-bottom: 22px;
    padding: 15px 18px;
    border: 1px solid #ddd;
    font-size: 18px;
    box-shadow: none !important;
}

/* Submit Button */
.wpcf7-submit {
    padding: 14px 35px !important;
    border: 2px solid #021E3B !important;
    background: transparent !important;
    color: #021E3B !important;
    letter-spacing: 4px;
    font-size: 20px !important;
	margin-top: 20px !important;
}

/*blog fetch*/
.custom-blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
    max-width:1300px;
    margin:auto;
}

.custom-blog-card{
    border:1px solid #ddd;
    padding:20px;
    background:#fff;
}

.custom-blog-card img{
    width:100%;
    height:280px;
    object-fit:cover;
}
.custom-blog-card img:hover{
	filter:brightness(0.5);
}

.blog-title{
    font-size:22px;
    line-height:1.5;
    margin:25px 0 15px;
	height: 100px;
}

.blog-title a{
    text-decoration:none;
    color:#222;
}

.blog-title a:hover{
	color: #021E3B;
}

.blog-excerpt{
    font-size:16px;
    line-height:1.8;
    color:#555;
    margin-bottom:20px;
	height: 168px;
}

.blog-btn{
    display:inline-block;
    padding:12px 24px;
    border:1px solid #021E3B;
    color:#021E3B;
    text-decoration:none !important;
    border-radius:6px;
    transition:0.3s;
}

.blog-btn:hover{
    background:#021E3B;
    color:#fff;
}

/* TABLET */
@media(max-width:991px){

    .custom-blog-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

/* MOBILE */
@media(max-width:767px){

    .custom-blog-grid{
        grid-template-columns:1fr;
    }

    .custom-blog-card img{
        height:auto;
    }
	.blog-title{
		height: auto;
	}
	.blog-excerpt{
		height: auto;
	}

}
section#comments {
    display: none;
}

/*sidebar*/
/* MENU WRAPPER */

.custom-menu-wrapper{
    width:100%;
}

/* MAIN MENU */

.custom-header-menu{
    display:flex;
    flex-direction:column;
    width:100%;
    margin:0;
    padding:0;
    list-style:none;
}

/* MENU ITEM */

.custom-header-menu li{
    position:relative;
    width:100%;
    list-style:none;
    border-bottom:1px solid #e5e5e5;
}

/* TOP LINK */

.custom-header-menu li > a{
    color:#021E3B;
    text-decoration:none;
    font-size:16px;
    font-weight:400;
    display:block;
    width:100%;
    padding:18px 40px 18px 0;
    font-family:'Poppins';
}

/* HOVER */

.custom-header-menu li > a:hover{
    color:#021E3B;
    background:none;
}

/* TOGGLE BUTTON */

.submenu-toggle{
    position:absolute;
    top:22px;
    right:0;
    width:14px;
    height:14px;
    cursor:pointer;
}

/* ARROW */

.submenu-toggle::before{
    content:"";
    display:block;
    width:8px;
    height:8px;
    border-right:2px solid #021E3B;
    border-bottom:2px solid #021E3B;
    transform:rotate(45deg);
    transition:0.3s ease;
}

/* ACTIVE ROTATION */

.menu-item-has-children.active > .submenu-toggle::before{
    transform:rotate(-135deg);
}

/* SUBMENU */

.custom-header-menu .sub-menu{
    display:none;
    width:100%;
    margin:0;
    padding:0 0 0 18px;
    list-style:none;
}

/* OPEN SUBMENU */

.custom-header-menu .menu-item-has-children.active > .sub-menu{
    display:block;
}

/* SUBMENU LINKS */

.custom-header-menu .sub-menu li{
    border:none;
}

.custom-header-menu .sub-menu li a{
    padding:12px 0;
    font-size:15px;
    color:#021E3B;
    display:block;
}

/*Product page*/

/* MAIN LAYOUT */
.custom-product-page {
  display: flex;
  max-width: 1300px;
  margin: 40px auto;
  gap: 40px;
  align-items: flex-start;
}

/* LEFT CONTENT */
.custom-product-content {
  width: 70%;
}

/* RIGHT SIDEBAR */
.custom-product-sidebar {
  width: 30%;
    background: #fff;
    padding: 0px 25px 25px 40px;
    position: sticky;
    top: 100px;
    border-left: 1px solid #c8c8c8;
}

/* FIX THEME WIDTH */
.single-product .site-main,
.single-product .content-area {
  width: 100% !important;
  max-width: 100% !important;
}

/* SIDEBAR STYLE */
.sidebar-title {
  font-size: 30px;
  font-weight: 700;
  color: #021E3B;
  margin-bottom: 20px;
}

.sidebar-list {
  list-style: none;
  padding: 0;
}

.sidebar-list li {
  margin-bottom: 12px;
}

.sidebar-list a {
  text-decoration: none;
  color: #021E3B;
  font-size: 16px;
	font-weight: 500;
}
/*product custom*/
.woocommerce div.product .woocommerce-tabs ul.tabs{
	display: none;
}
.woocommerce div.product div.images.woocommerce-product-gallery{
	display: none;
}
#tab-description h2 {
    display: none;
}
.tax-product_cat header.woocommerce-products-header {
    display: none;
}
.tax-product_cat p.woocommerce-result-count {
    display: none;
}
.tax-product_cat form.woocommerce-ordering {
    display: none;
}
.tax-product_cat ul.products.columns-4 {
    display: none;
}
.tax-product_cat nav.woocommerce-pagination {
    display: none;
}

/*custom banner*/

.custom-hero-banner {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
}

.custom-hero-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* dark overlay */
.custom-hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}

.hero-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
    z-index: 2;
}

.hero-title {
    font-size: 36px;
    font-weight: bold;
    margin-bottom: 10px;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb a {
    color: #fff !important;
}

.woocommerce-breadcrumb {
    color: #fff;
}

.woocommerce-breadcrumb a {
    color: #fff;
    text-decoration: none;
}
.summary.entry-summary {
    display: none !important;
}
.woocommerce div.product div.images img {
    display: block;
    width: 100%;
    height: auto;
    box-shadow: none;
    margin-left: 258px;
}
.woocommerce:where(body:not(.woocommerce-uses-block-theme)) .woocommerce-breadcrumb {
    font-size: .92em;
    color: #fff !important;
}

.woocommerce .star-rating {
    display: none !important;
}

.woocommerce ul.products li.product, .woocommerce-page ul.products li.product {
    
    border: 1px solid #021E3B !important;
    padding: 13px !important;
    border-radius: 15px !important;
  
}
section.related.products.woocommerce ul.products li.product a img {
    width: 100%;
    height: 130px !important;
    display: block;
    margin: 0 0 1em;
    box-shadow: none;
	object-fit:cover !important;
}
thead {
    background: #021E3B;
    color: #fff;
}
.tagss {
    display: flex;
    gap: 18px;
    padding-top: 11px;
}
.single-tag{
	    background: #021E3B;
    color: #fff;
	padding: 10px 20px;
	border-radius:5px;
}
.single-tag:hover{
	background: #fff;
	color: #021E3B;
	border: 1px solid #021E3B;
}
.custom-share-buttons{
    display:flex;
    gap:10px;
    margin-bottom:20px;
	  justify-content:end;
}

.custom-share-buttons a{
    padding:10px 18px;
    color:#fff;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    border-radius:3px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
	  gap:14px;
}

.share-facebook{
    background:#1877f2;
}

.share-twitter{
    background:#000;
}

.custom-product-tags{
    margin-top:30px;
	margin-bottom: 30px;
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    align-items:center;
}

.custom-product-tags h3{
    width:100%;
    margin-bottom:10px;
}

.single-tag{
    background:#021E3B;
    border:1px solid #ddd;
    padding:8px 14px;
    border-radius:4px;
    font-size:14px;
}



.related.products ul.products li.product {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
    min-height: 375px; /* card fixed height */
    border: 1px solid #eee;
    padding: 15px;
    box-sizing: border-box;
}

/* Image Same Size */
.related.products ul.products li.product img {
    width: 100%;
    height: 220px;
    object-fit: contain;
}

/* Title Same Height */
.related.products .woocommerce-loop-product__title {
    min-height: 50px;
    font-size: 16px;
    line-height: 24px;
}

/* Button Bottom Align */
.related.products ul.products li.product .button {
    margin-top: auto;
	display: none;
}

.woocommerce .eael-product-wrap {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    min-height: 400px; /* fixed card height */
    border: 1px solid #eee;
    padding: 15px;
    box-sizing: border-box;
}

/* Same Image Height */
.woocommerce .eael-product-wrap img {
    width: 100%;
    height: 220px;
    object-fit: contain;
}

/* Same Title Height */
.woocommerce-loop-product__title {
    min-height: 55px;
    line-height: 24px;
    font-size: 16px;
	color: #000;
}

/* Button Bottom Align */
.woocommerce .eael-product-wrap .button {
    margin-top: auto;
}

.related.products ul.products li.product:hover{
    transform: scale(1.03);
    box-shadow: 0 8px 30px rgba(0,0,0,0.12);
}
.related.products ul.products li.product:hover .woocommerce-loop-product__title{
    color: #021E3B;
}
.related h2 {
    text-transform: uppercase;
}

/*category page content*/

/* SECTION */
.custom-subcategory-section{
    margin-bottom:90px;
    width:100%;
    overflow:hidden;
}

/* TITLE */
.custom-subcategory-title{
    text-align:center;
    font-size: 36px;
    line-height:1.2;
    font-weight:400;
    color:#000;
    text-transform:normal;
    margin-bottom:55px;
    position:relative;
}

.custom-subcategory-title:after{
    content:'';
    width:210px;
    height:1px;
    background:#021E3B;
    display:block;
    margin:22px auto 0;
}

/* GRID */
.custom-subcategory-products{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:32px;
    width:100%;
}

/* CARD */
.custom-product-card{
    border:1px solid #021E3B;
    border-radius:24px;
    padding:16px;
    background:#ffffff;
    transition:0.3s;
    min-width:0;
}

.custom-product-card:hover{
    transform:translateY(-5px);
}

/* INNER BOX */
.custom-product-card a{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    align-items:center;
    min-height:100%;
    border: none;
    padding:14px 14px 30px;
    text-decoration:none;
    background:#ffffff;
}

/* IMAGE */
.custom-product-card img{
    width:100%;
    height:168px;
    object-fit:contain;
    margin-bottom:25px;
}

/* TITLE */
.custom-product-card h3{
    font-size: 18px;
    line-height:1.15;
    font-weight:700;
    color:#1f1f1f;
    text-align:center;
    margin:0 0 10px;
    min-height:85px;
}

/* BUTTON */
.view-more-btn{
    width: 198px;
    height: 32px;
    background: #333333;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    display:flex;
    align-items:center;
    justify-content:center;
    transition:0.3s;
}

.custom-product-card:hover .view-more-btn{
    background:#021E3B;
}

/* RESPONSIVE */
@media(max-width:1024px){

    .custom-subcategory-products{
        grid-template-columns:repeat(2,minmax(0,1fr));
    }

    .custom-subcategory-title{
        font-size:42px;
    }

    .custom-product-card h3{
        font-size:20px;
    }
}

@media(max-width:767px){

    .custom-subcategory-products{
        grid-template-columns:1fr;
    }

    .custom-subcategory-title{
        font-size:30px;
        margin-bottom:40px;
    }

    .custom-product-card img{
        height:220px;
    }

    .custom-product-card h3{
        font-size:18px;
        min-height:auto;
    }

    .view-more-btn{
        width:100%;
    }
	.custom-hero-banner{
		margin-top: 66px;
	}
	.hero-overlay{
		width: 340px;
	}
	.hero-title{
		font-size: 30px;
	}
	.custom-product-page{
		display: block;
	}
	.custom-product-content{
		width: 100%;
		padding: 0 11px;
	}
	ul.products.columns-4{
		width: 330px;
	}
	.custom-product-sidebar{
		width: 100%;
	}
	.related.products ul.products li.product img{
		height: 130px;
	}
	.related.products ul.products li.product{
		min-height: 282px;
	}
	.row-2 , .row-3{
        display:block;
    }

    .row-2 > div{
        width:100%;
        margin-bottom:20px;
    }
	.row-3 > div:first-child{
        width:100%;
        margin-bottom:20px;
    }
	.woocommerce-Tabs-panel table,
    .product table,
    .entry-content table{
        display:block;
        width:100%;
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
        white-space:nowrap;
    }
	.blog-content table,
    .single-post table,
    .post-content table,
    .elementor-widget-theme-post-content table{
        display:block;
        width:100%;
        overflow-x:auto;
        -webkit-overflow-scrolling:touch;
        white-space:nowrap;
    }
}