*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

body{
    font-family: 'Poppins', sans-serif;
    background-color: #fff;
    overflow-x: hidden;
    color: #333333;
}
/* =========================
HEADER
========================= */

.header{
   /* position:absolute;*/
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:#003B6F;
    border-top:2px solid #fff;
}

.navbar-p{
    max-width:1400px;
    margin:auto;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:14px 40px;
}

.logo{
    width:95px;
}

.logo img{
    width:100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    color: #fff;
    font-size: 24px;
    cursor: pointer;
    z-index: 1001;
}

.menu{
    display:flex;
    gap:45px;
    list-style:none;
}

.menu li a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:500;
}

.menu li a:hover{
    color:#F36639;
   
}

/* Dropdown Menu Styles */
.menu li {
    position: relative;
    list-style: none;
}

.menu ul,
.menu li ul {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.menu li ul li {
    list-style: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

.menu li ul li::before {
    content: none !important;
}

/* Target all WordPress menu classes */
.menu ul li,
.menu .sub-menu li,
.menu .sub-menu li::before,
.menu .sub-menu li::after,
.menu li.menu-item-has-children ul li::before,
.menu li.menu-item-has-children ul li::after {
    list-style: none !important;
    content: none !important;
    padding-left: 0 !important;
    margin-left: 0 !important;
}

/* Remove any default list styling */
.menu ul {
    list-style-type: none !important;
    list-style-image: none !important;
}

.menu li.has-dropdown > a {
    display: flex;
    align-items: center;
    gap: 5px;
}

.menu .dropdown-toggle {
    margin-left: 5px;
    font-size: 12px;
    transition: transform 0.3s ease;
}

.menu li.has-dropdown:hover .dropdown-toggle {
    transform: rotate(180deg);
}

.menu .sub-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #003B6F;
    min-width: 220px;
    list-style: none !important;
    padding: 10px 0;
    margin: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

.menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.menu .sub-menu li {
    padding: 0;
    list-style: none !important;
    margin: 0;
}

.menu .sub-menu li a {
    display: block;
    padding: 12px 20px;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.menu .sub-menu li a:hover {
    background: #F36639;
    color: #fff;
    padding-left: 25px;
}

/* Nested Dropdown */
.menu .sub-menu .sub-menu {
    top: 0;
    left: 100%;
}

.menu .sub-menu li:hover > .sub-menu {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

.account-btn{
    background:#F36639;
    color:#fff;
    padding:11px 24px;
    border-radius:50px;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
}

a.account-btn:hover{
    background:#000;
    color:#fff;
    padding:11px 24px;
    border-radius:50px;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
}

/* =========================
HERO
========================= */

.hero{
    position:relative;
    height:760px;
    overflow:hidden;
}

.slide{
    position:absolute;
    inset:0;
    opacity:0;
    transition:1s ease;
}

.slide.active{
    opacity:1;
    z-index:2;
}

.slide-bg{
    position:absolute;
    inset:0;
}

.slide-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.78);
}

.hero-container{
    position:relative;
    z-index:5;
    max-width:1400px;
    margin:auto;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:70px 60px 0;
}

/* =========================
LEFT CONTENT
========================= */

.hero-left{
    width:65%;
    color:#fff;
}

.hero-left h1{
    font-size:60px;
    line-height:1.1;
    font-weight:700;
    margin-bottom:25px;
}

.hero-left p{
    font-size:17px;
    color:#f2f2f2;
    line-height:1.8;
    margin-bottom:35px;
}

.hero-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-width:170px;
    height:58px;
    background:#F36639;
    border-radius:60px;
    color:#fff;
    text-decoration:none;
    font-size:20px;
    font-weight:700;
}

/* =========================
RIGHT IMAGES
========================= */

.hero-right{
    width:52%;
    position:relative;
    height:100%;
}

.machine-top{
    position:absolute;
    top:120px;
    right:40px;
    width:360px;
    filter:drop-shadow(0 20px 30px rgba(0,0,0,.5));
}

.machine-bottom{
    position:absolute;
    bottom:70px;
    right:120px;
    width:391px;
    filter:drop-shadow(0 20px 30px rgba(0,0,0,.5));
}

/* =========================
ARROWS
========================= */

.arrow{
    position:absolute;
    top:50%;
    transform:translateY(-50%);
    width:40px;
    height:40px;
    border-radius:50%;
    border:1px solid rgba(255,255,255,.8);
    z-index:20;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:20px;
    cursor:pointer;
    transition:.3s;
    user-select:none;
}

.arrow:hover{
    background:#fff;
    color:#000;
}

.arrow.left{
    left:14px;
}

.arrow.right{
    right:14px;
}

/* =========================
BOTTOM CURVE
========================= */

.bottom-curve{
    position:absolute;
    bottom:-2px;
    left:0;
    width:100%;
    z-index:10;
}

/* =========================
CATEGORY
========================= */

.categories{
    margin-top:40px;
    position:relative;
    z-index:50;
    padding-bottom:50px;
}

.category-wrap{
    max-width:1400px;
    margin:auto;
    display:flex;
    gap:18px;
    justify-content:center;
    padding:0 40px;
}

.card-p{
    background:#d9d9d9;
    width:300px;
    height:130px;
    border-radius:8px;
    display:flex;
    align-items:center;
    position:relative;
    overflow:hidden;
}

.card-p::before{
    content:'';
    position:absolute;
    left:56px;
    top:0;
    width:13px;
    height:100%;
    background:#ededed;
}

.card-image-p{
    width:90px;
    height:90px;
    border-radius:50%;
    overflow:hidden;
    margin-left:18px;
    border:12px solid #efefef;
    flex-shrink:0;
    position: relative;
}

.card-image-p img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.card-content{
    padding-left:24px;
}

.card-content h4{
    font-size:20px;
    color:#111;
    line-height:1.2;
    margin-top:10px;
    font-weight:500;
}

.card-content p{
    font-size:18px;
    color:#000;
    font-weight:500;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:1100px){

    .hero{
        height:1000px;
    }

    .hero-container{
        flex-direction:column;
        text-align:center;
    }

    .hero-left,
    .hero-right{
        width:100%;
    }

    .hero-left h1{
        font-size:56px;
    }

    .hero-right{
        height:500px;
    }

    .machine-top{
        right:50%;
        transform:translateX(50%);
    }

    .machine-bottom{
        right:50%;
        transform:translateX(50%);
    }

    .category-wrap{
        flex-wrap:wrap;
    }
}

@media(max-width:768px){

    .menu-toggle {
        display: block;
    }

    .menu {
        display: none;
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: #003B6F;
        flex-direction: column;
        gap: 0;
        padding: 20px 0;
        z-index: 1000;
    }

    .menu.active {
        display: flex;
    }

    .menu li {
        width: 100%;
        text-align: left;
    }

    .menu li a {
        display: block;
        padding: 15px 20px;
        border-bottom: 1px solid rgba(255,255,255,0.1);
    }

    .menu li.has-dropdown > a {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .menu .sub-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        display: none;
        padding-left: 20px;
    }

    .menu li:hover > .sub-menu {
        display: block;
    }

    .menu .dropdown-toggle {
        display: inline-flex;
        margin-left: auto;
    }

    .menu li.has-dropdown.open .dropdown-toggle {
        transform: rotate(180deg);
    }

    .account-btn {
        display: none;
    }

    .hero-left h1{
        font-size:42px;
    }

    .hero-left p{
        font-size:15px;
    }

    .machine-top{
        width:240px;
    }

    .machine-bottom{
        width:340px;
        bottom:120px;
    }

    .card{
        width:100%;
    }
       .about-section{height:auto;margin-bottom:20px;}
}


.products-section{
    padding:70px 0 60px;
    background:#f5f5f5;
}

.container{
    max-width:1400px;
    margin:auto;
    padding:0 40px;
}

.section-header{
    display:flex;
    align-items:center;
  /*  justify-content:center;*/
    position:relative;
    margin-bottom:40px;
}

.section-header h2{
    font-size:38px;
    font-weight:700;
    color:#000;
}

.product-arrows{
    position:absolute;
    right:0;
    display:flex;
    gap:14px;
}

.product-arrow{
    width:40px;
    height:40px;
    border:1.5px solid #000;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    cursor:pointer;
    font-size:25px;
    transition:.3s;
    background:#fff;
    padding-bottom: 3px;
}

.product-arrow:hover{
    background:#ff6f3d;
    color:#fff;
    border-color:#ff6f3d;
}

.products-slider{
    display:flex;
    gap:28px;
    overflow-x:auto;
    scroll-behavior:smooth;
    scrollbar-width:none;
    -ms-overflow-style:none;
    padding-bottom:10px;
}

.products-slider::-webkit-scrollbar{
    display:none;
}

.product-card{
   /* min-width:310px;*/
    background:#fff;
    border:1px solid #CFCFCF;
    border-radius:10px;
    padding:20px 18px 25px;
    text-align:center;
    flex-shrink:0;
}

.product-image{
    width:100%;
    height:180px;
    border-radius:15px;
    overflow:hidden;
    margin-bottom:18px;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:contain;
}

.product-card h3{
    font-size:20px;
    font-weight:500;
    color:#111;
    margin-bottom:10px;
}

.product-card span{
    display:block;
    font-size:17px;
    color:#555;
    margin-bottom:8px;
}

.product-card p{
    font-size:15px;
    color:#222;
    margin-bottom:26px;
}

.product-card a{
  /*  width:150px;*/
    height:38px;
    background:#F36639;
    border-radius:50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:16px;
    font-weight:600;
      padding:6px 28px;
}
/* =========================
ABOUT SECTION
========================= */

.about-section{
    position:relative;
    margin-top: 40px;
    
    overflow:hidden;
    background:url('https://images.unsplash.com/photo-1504307651254-35680f356dfd?q=80&w=2000&auto=format&fit=crop') center/cover no-repeat;
}

.about-overlay{
    position:absolute;
    inset:0;
    background:rgb(0 0 0 / 84%);
}

.about-container{
    position:relative;
    z-index:5;
    max-width:1400px;
    margin:auto;
    padding:0 40px;
    display:flex;
    align-items:center;
    gap:70px;
}

.about-image{
    width:42%;
    border-radius:24px;
    overflow:hidden;
    flex-shrink:0;
}

.about-image img{
    width:100%;
    height:444px;
    object-fit:cover;
}

.about-content{
    width:58%;
    color:#fff;
}

.about-content span{
    display:block;
    color:#ff6f3d;
    font-size:18px;
    margin-bottom:12px;
    font-weight:600;
}

.about-content h2{
    font-size:55px;
    line-height:1.1;
    margin-bottom:26px;
    font-weight:900;
}

.about-content p{
    font-size:14px;
    line-height:2;
    color:#efefef;
    margin-bottom:36px;
    max-width:850px;
}

.about-content a{
    width:170px;
    height:54px;
    background:#ff6f3d;
    border-radius:50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:17px;
    font-weight:700;
}

/* =========================
FIX PRODUCTS SLIDER
========================= */

.products-slider{
    display:flex;
    gap:14px;
    overflow:hidden;
    scroll-behavior:smooth;
}

.product-card{
    flex:0 0 calc((100% - 42px) / 4);
    box-sizing:border-box;
}

.product-image{
    width:100%;
    height:220px;
    overflow:hidden;
    border-radius:8px;
}

.product-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

@media (max-width:991px){
    .product-card{
        flex:0 0 calc((100% - 14px) / 2);
    }
}

@media (max-width:767px){
    .product-card{
        flex:0 0 100%;
    }
}

/* =========================
ABOUT SECTION FIX
========================= */

.about-section{
    position:relative;
    height: 525px;
    
    overflow:hidden;
    background:url('../img/Rectangle18.png') center/cover no-repeat;
}

.about-container{
    position:relative;
    z-index:5;
    max-width:1400px;
    margin:auto;
    padding:0 40px;
    display:flex;
    align-items:center;
    gap:60px;
}

/* IMAGE FIX */

.about-image{
    width:33%;
    border-radius:24px;
    overflow:hidden;
    flex-shrink:0;
    position:relative;
    margin-bottom:40px;
}

.about-image img{
    width:100%;
    height:444px;
    object-fit:cover;
    display:block;
}

/* CONTENT WIDTH */

.about-content{
    width:62%;
    color:#fff;
    padding-top:116px;
}

/* =========================
RESPONSIVE FIX
========================= */

@media(max-width:1100px){

    .products-slider{
        grid-template-columns:repeat(2,1fr);
    }

    .about-container{
        flex-direction:column;
    }

    .about-image,
    .about-content{
        width:100%;
    }

    .about-image{
        margin-bottom:0;
    }
}

@media(max-width:768px){

    .products-slider{
        grid-template-columns:1fr;
    }

    .about-content{
        text-align:center;
    }

    .about-content h2{
        font-size:38px;
    }
      .about-section{height:auto;margin-bottom:20px;padding-bottom:20px;}

}
/* =========================
SPECIAL PARTS
========================= */

.special-parts{
    padding:80px 0 70px;
    background:#f5f5f5;
}

.container{
    max-width:1400px;
    margin:auto;
    padding:0 40px;
}

.section-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    margin-bottom:45px;
}

.section-top h2{
     font-size:54px;
    font-weight:900;
    color:#000;
    margin:0;
}

.slider-buttons{
  position:absolute;
    right:43px;
    display:flex;
    gap:12px;
}

.slide-btn{
    width:46px;
    height:46px;
    border-radius:50%;
    border:1.5px solid #000;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    cursor:pointer;
    background:#fff;
    transition:.3s;
}

.slide-btn:hover{
    background:#ff6f3d;
    border-color:#ff6f3d;
    color:#fff;
}



/* =========================
WORKING SPECIAL PARTS SLIDER
========================= */

.parts-grid{
    display:flex;
    gap:14px;
    overflow-x:hidden;
    scroll-behavior:smooth;
    padding-bottom:10px;
}

/* CARD */

.part-card{
    flex:0 0 calc((100% - 42px) / 4);
    box-sizing:border-box;
    background:#fff;
    border:1px solid #dadada;
    border-radius:10px;
    text-align:center;
    padding:22px 20px 34px;
}

.part-image{
    width:100%;
    height:182px;
    border-radius:8px;
    overflow:hidden;
    margin-bottom:18px;
}

.part-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.part-card h3{
    font-size:20px;
    color:#111;
    font-weight:700;
    margin-bottom:8px;
}

.part-card span{
    display:block;
    font-size:16px;
    color:#666;
    margin-bottom:8px;
}

.part-card p{
    font-size:18px;
    color:#222;
    margin-bottom:24px;
}

.part-card a{
    width:145px;
    height:38px;
    background:#ff6f3d;
    border-radius:50px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
}

/* TABLET */

@media (max-width:991px){

    .part-card{
        flex:0 0 calc((100% - 14px) / 2);
    }

}

/* MOBILE */

@media (max-width:767px){

    .part-card{
        flex:0 0 100%;
    }

}
/* =========================
BLOG SECTION
========================= */

.blog-section{
    position:relative;
    padding:45px 0 45px;
    background:#003f7d;
    overflow:hidden;
}

.blogp-section{
    position:relative;
    padding:45px 0 45px;
   
    overflow:hidden;
}

.blog-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.18);
}

.blog-container{
    position:relative;
    z-index:5;
    max-width:1400px;
    margin:auto;
    padding:0 40px;
}

.blogp-container{
    position:relative;
    z-index:5;
    max-width:1400px;
    margin:auto;
    padding:0 40px;
}

.blog-heading{
    text-align:center;
    margin-bottom:30px;
}

.blog-heading span{
    display:block;
    color:#ff6f3d;
    font-size:18px;
    font-weight:600;
    margin-bottom:12px;
}

.blog-heading h2{
    font-size:45px;
    color:#fff;
    font-weight:900;
}

.blog-grid-p{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:28px;

}

.blog-card{
    border-radius:10px;
    overflow:hidden; 
}

.blog-card-p{
    border-radius:10px;
    overflow:hidden;   background: #003b6f;
  padding: 20px;
  border-radius: 20px;
}

.blog-image{
    width:100%;
    height:280px;
    overflow:hidden;
    border-radius:8px;
}

.blog-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.4s;
}

.blog-card:hover .blog-image img{
    transform:scale(1.08);
}

.blog-content{
    padding-top:18px;
}

.blog-content p{
    font-size:16px;
    line-height:1.9;
    color:#fff;
    margin-bottom:22px;
}

.blog-content a{
    color:#fff;
    text-decoration:none;
    font-size:15px;
    font-weight:600;
}

/* =========================
DOTS
========================= */

.blog-dots{
    display:flex;
    justify-content:center;
    gap:10px;
    margin-top:25px;
}

.blog-dots span{
    width:11px;
    height:11px;
    border-radius:50%;
    background:#fff;
    opacity:.4;
}

.blog-dots span.active{
    background:#ff6f3d;
    opacity:1;
}

/* =========================
RESPONSIVE
========================= */



@media(max-width:768px){

    .parts-grid{
        grid-template-columns:1fr;
    }

    .section-top h2,
    .blog-heading h2{
        font-size:38px;
    }

    .part-card h3{
        font-size:28px;
    }

    .blog-image{
        height:240px;
    }
}
/* =========================
BLOG GRID FIX
========================= */

.blog-grid{
    display:flex;
    gap:28px;
    overflow:hidden;
    width:100%;
}



/* EXACT 3 CARDS */

.blog-card{
    flex:0 0 calc(33.333% - 19px);
    max-width:calc(33.333% - 19px);
}

/* IMAGE */

.blog-image{
    width:100%;
    height:260px;
}

/* TABLET */

@media(max-width:1100px){

    .blog-card{
        flex:0 0 calc(50% - 14px);
        max-width:calc(50% - 14px);
    }

}

/* MOBILE */

@media(max-width:768px){

    .blog-card{
        flex:0 0 100%;
        max-width:100%;
    }

}
/* =========================
NEWSLETTER SECTION
========================= */

/* =========================
NEWSLETTER FIX
========================= */

.newsletter-section{
    position:relative;
    background:#f96b3a;
    padding:55px 20px 90px;
    overflow:visible;
    z-index:2;
}

/* TITLE */

.newsletter-content h2{
    color:#fff;
    font-size:34px;
    line-height:1.35;
    font-weight:800;
    margin-bottom:18px;
}

.newsletter-content p{
    color:#fff;
    font-size:13px;
    margin-bottom:40px;
}

/* WHITE BOX */

.newsletter-box{
    position:absolute;
    left:50%;
    transform:translateX(-50%);
    bottom:-58px;
    width:100%;
    max-width:700px;
    background:#fff;
    border-radius:18px;
    padding:38px 45px;
    border:2px solid #2c8fff;
    z-index:20;
    box-shadow:0 8px 25px rgba(0,0,0,.08);
}

/* FORM */

.newsletter-form{
    width:100%;
    display:flex;
    align-items:center;
    background:#f3f3f3;
    border-radius:60px;
    padding:8px;
}

.newsletter-form input{
    flex:1;
   
    border:none;
    background:transparent;
    padding:0 28px;
    font-size:14px;
    outline:none;
}

.newsletter-form .smt-btn{
    width:180px;
    height:58px;
    border:none;
    background:#000;
    border-radius:60px;
    color:#fff;
    font-size:15px;
    font-weight:700;
    cursor:pointer;
}

.newsletter-form button:hover{background:#f96b3a;}

/* MACHINE IMAGE */

.newsletter-machine{
    position:absolute;
    top:-5px;
    right:-30px;
    width:340px;
    opacity:.12;
}

/* =========================
FOOTER FIX
========================= */

.footer{
    position:relative;
    background:#003a75;
    padding:60px 0 20px;
    margin-top:0;
}

/* HONEYCOMB BG */

.footer::before{
    content:'';
    position:absolute;
    inset:0;
      background-image: url("../img/footer.png");
    
}

/* CONTAINER */

.footer-container{
    position:relative;
    z-index:5;
    max-width:1400px;
    margin:auto;
    padding:0 35px;
    display:grid;
    grid-template-columns:1.2fr 1fr 1fr;
    gap:90px;
}

/* LOGO */

.footer-logo{
    width:90px;
    margin-bottom:26px;
    filter:brightness(0) invert(1);
}

/* LEFT TEXT */

.footer-about p{
    color:#fff;
    font-size:13px;
    line-height:1.9;
    max-width:330px;
    margin-bottom:26px;
}

/* SOCIAL */

.social-icons{
    display:flex;
    gap:10px;
}

.social-icons a{
    width:36px;
    height:36px;
    border:1px solid rgba(255,255,255,.7);
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    text-decoration:none;
    font-size:15px;
}

/* TITLES */

.footer-col h3{
    color:#fff;
    font-size:20px;
    font-weight:700;
    margin-bottom:30px;
}

/* LINKS */

.footer-col ul li{
    margin-bottom:16px;
    list-style: none;
}

.footer-col ul li a{
    color:#fff;
    text-decoration:none;
    font-size:14px;
}

.footer-col ul li a:hover{
    color:#F36639;
   
}

/* CONTACT */

.contact-item{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:24px;
}

.contact-item span{
    font-size:18px;
    color:#fff;
}

.contact-item p{
    color:#fff;
    font-size:14px;
    line-height:1.7;
}

.contact-item.phone a{
    color:#fff;
    font-size:22px;
    font-weight:800;
    text-decoration:none;
}

/* BOTTOM */

.footer-bottom{
    position:relative;
    z-index:5;
    max-width:1400px;
   /* margin:30px auto 0;*/
    padding:22px 35px 0;
    border-top:1px solid rgba(255,255,255,.08);
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.footer-bottom p{
    color:#fff;
    font-size:12px;
}

/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .newsletter-box{
        position:relative;
        bottom:auto;
        margin-top:40px;
    }

    .footer{
        padding-top:80px;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:45px;
    }

}

@media(max-width:767px){

    .newsletter-content h2{
        font-size:26px;
    }

    .newsletter-form{
        flex-direction:column;
        gap:12px;
        background:transparent;
        padding:0;
    }

    .newsletter-form input{
        width:100%;
        background:#f3f3f3;
        border-radius:50px;
        height:55px;
    }

    .newsletter-form button{
        width:100%;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }
    
    .newsletter-content{padding:2px!important;}
    
    .newsletter-box{
   padding:10px 5px;}
   
   .newsletter-form p{display:block!important;}
   .newsletter-form .smt-btn{width:100%;margin-top:8px;}
   .hero{height:860px;}
   .eof-product-row{display:block!important;}
  
.footer::before{background-repeat: no-repeat;
    background-size: cover;}

}
.bac-pi {
  border: 1px solid #fff;
    padding: 10px;
    border-radius: 20px;
}
.newsletter-content {
  text-align: center;
  padding:0 20%;
}
.about-section{
    overflow: visible;
    
}

.about-container{
    display: flex;
   
    position: relative;
}

.about-image{
    position: relative;
    transform: translateY(120px); /* image niche jayegi */
    z-index: 5;
}

.about-image img{
    width: 100%;
    max-width: 500px;
    height: 444px;
    object-fit: cover;
    border-radius: 20px;
    display: block;
}
.part-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}
.part-card a:hover {
    background: #000;}

    .hero-left a:hover {
    background: #000; border: 1px solid #ffffff;}
     .about-content a:hover {
    background: #000; border: 1px solid #ffffff;}

    .card-p::after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:0;
    height:4px;
    background:#ff6600;
    transition:.4s ease;
}

.card-p:hover::after{
    width:100%;
}

.card-p{
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
}

.card-p:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.card-image-p{
    overflow: hidden;
}

.card-image-p img{
    transition: transform 0.5s ease;
}

.card-p:hover .card-image-p img{
    transform: scale(1.1) rotate(3deg);
}

.card-content{
    transition: all 0.4s ease;
}

.card-p:hover .card-content{
    transform: translateX(8px);
}

/*product*/
.product-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.15);
}

.product-image{
    overflow: hidden;
}

.product-image img{
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img{
    transform: scale(1.1) rotate(3deg);
}

.product-card{
    transition: all 0.4s ease;
}

.product-card:hover .card-content{
    transform: translateX(8px);
}

   .product-card a:hover {
    background: #000; border: 1px solid #ffffff;}

 /*   aboutpage*/

/* =========================
FOOTER FIX
========================= */





/* =========================
RESPONSIVE
========================= */

@media(max-width:991px){

    .newsletter-box{
        position:relative;
        bottom:auto;
        margin-top:40px;
    }

    .footer{
        padding-top:80px;
    }

    .footer-container{
        grid-template-columns:1fr;
        gap:45px;
    }

}

@media(max-width:768px){

    .newsletter-content h2{
        font-size:26px;
    }

    .newsletter-form{
        flex-direction:column;
        gap:12px;
        background:transparent;
        padding:0;
    }

    .newsletter-form input{
        width:100%;
        background:#f3f3f3;
        border-radius:50px;
    }

    .newsletter-form button{
        width:100%;
    }

    .footer-bottom{
        flex-direction:column;
        gap:10px;
        text-align:center;
    }

}
.inner-banner{
    position: relative;
    background: url('../img/inner-banner.jpg') center center/cover no-repeat;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.banner-overlay{
    position:absolute;
    inset:0;
    background: rgba(0,0,0,0.77);
}

.banner-content{
    position: relative;
    z-index: 2;
    color:#fff;
    padding:0 10%;
}

.banner-content h1{
    font-size:50px;
    font-weight: 700;
    margin-bottom: 15px;
}

.breadcrumb{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    font-size:14px;
}

/* =========================
   ABOUT SECTION
========================= */

.aboutp-section{
    padding: 100px 5%;
    background:#fff;
}

.aboutp-container{
    display:flex;
    align-items:flex-start;
    gap:60px;
    flex-wrap:wrap;
}

.aboutp-image{
  /*  flex:1;*/
    min-width:350px;
}

.aboutp-image img{
    width:100%;
    max-width:400px;
    border-radius:20px;
    display:block;
    height: 472px;
}

.aboutp-content{
    flex:1.5;
    min-width:320px;
}

.sub-title{
    color:#ff6b2c;
    font-size:14px;
    display:block;
    margin-bottom:15px;
}

.aboutp-content h2{
    font-size:45px;
    margin-bottom:25px;
    line-height:1.2;
}

.aboutp-content p{
    font-size:14px;
    color:#333333;
  
    margin-bottom:25px;
}

/* =========================
   WHY SECTION
========================= */

.why-section{
    background:#120003;
    padding:100px 5%;
}

.why-container{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:60px;
    flex-wrap:wrap;
}

.why-content{
    flex:1;
    min-width:320px;
    color:#fff;
}

.why-content h2{
    font-size:52px;
    margin-bottom:25px;
}

.why-content p{
    color:#d2d2d2;
    line-height:1.9;
    margin-bottom:30px;
}

/* LIST */

.why-list{
    list-style:none;
}

.why-list li{
    position:relative;
    padding-left:35px;
    margin-bottom:18px;
    font-size:16px;
}

.why-list li::before{
    content:"✦";
    position:absolute;
    left:0;
    top:0;
    color:#ff6b2c;
}

/* IMAGE */

.why-image{
    flex:1;
    min-width:320px;
}

.why-image img{
    width:100%;
    max-width:520px;
    border-radius:20px;
    display:block;
    margin:auto;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .banner-content h1{
        font-size:42px;
    }

    .about-content h2,
    .why-content h2{
        font-size:36px;
    }

    .about-container,
    .why-container{
        flex-direction:column;
    }

}   
/* =========================
   FAQ SECTION
========================= */

.faq-section{
    padding:50px 7%;
    background:#fff;
}

.faq-heading{
    text-align:center;
    margin-bottom:40px;
}

.faq-heading h2{
    font-size:52px;
    margin-bottom:20px;
    font-weight:700;
}

.faq-heading p{
    color:#777;
    max-width:700px;
    margin:auto;
    line-height:1.8;
}

.faq-container{
    display:flex;
    align-items:flex-start;
    gap:50px;
    flex-wrap:wrap;
}

/* IMAGE */

.faq-image{
    flex:1;
    min-width:320px;
}

.faq-image img{
    width:100%;
    border-radius:12px;
    display:block;
}

/* FAQ CONTENT */

.faq-content{
    flex:1;
    min-width:320px;
}

/* FAQ ITEM */

.faq-item{
    background:#f1f1f1;
    border-radius:5px;
    margin-bottom:15px;
    overflow:hidden;
}

.faq-question{
    padding:20px 25px;
    font-size:16px;
    font-weight:600;
    cursor:pointer;
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.faq-answer{
    padding:0 25px 20px;
    line-height:1.8;
    color:#555;
    display:none;
}

/* ACTIVE */

.faq-item.active .faq-answer{
    display:block;
}

.faq-item.active .faq-question{
    background:#ececec;
}

/* =========================
   CONTACT SECTION
========================= */

.contact-section{
    position:relative;
    background:url('../img/cont-img-s.png') center center/cover no-repeat;
    padding:40px 7%;
    overflow:hidden;
}

.contact-overlay{
    position:absolute;
    inset:0;
    background:rgba(0,0,0,0.55);
}

.contact-content{
    position:relative;
    z-index:2;
    max-width:500px;
}

.contact-content h2{
    color:#fff;
    font-size:52px;
    line-height:1.3;
    margin-bottom:35px;
}

/* BUTTON */

.contact-btn{
    display:inline-block;
    padding:16px 38px;
    background:#ff6b2c;
    color:#fff;
    text-decoration:none;
    border-radius:50px;
    font-weight:600;
    transition:.3s;
}

.contact-btn:hover{
    background:#fff;
    color:#000;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .faq-heading h2,
    .contact-content h2{
        font-size:36px;
    }

    .faq-container{
        flex-direction:column;
    }

}



/* =========================
   SINGLE PRODUCT SECTION
========================= */

.single-product-section{
    padding:80px 5%;
    max-width:1400px;
    margin:auto;
}

/* TOP LAYOUT */

.single-product-container{
    display:grid;
    grid-template-columns:420px 1fr;
    gap:50px;
    align-items:flex-start;
}

/* =========================
   PRODUCT GALLERY
========================= */

.main-image img{
    width:100%;
    height:420px;
    object-fit:cover;
    border-radius:10px;
    border:3px solid #1e90ff;
    display:block;
}

/* THUMBNAILS */

.thumbnail-images{
    display:flex;
    gap:10px;
    margin-top:15px;
}

.thumbnail-images img{
    width:60px;
    height:60px;
    object-fit:cover;
    border-radius:8px;
    cursor:pointer;
    border:2px solid transparent;
    transition:.3s;
}

.thumbnail-images img:hover{
    border-color:#1e90ff;
}

.active-thumb{
    border-color:#1e90ff !important;
}

/* =========================
   PRODUCT DETAILS
========================= */

.product-details{
    padding-top:10px;
}

.product-brand{
    display:block;
    font-size:14px;
    font-weight:600;
    margin-bottom:8px;
}

.product-details h2{
    font-size:44px;
    margin-bottom:20px;
    line-height:1.2;
}

.product-number{
    display:inline-block;
    background:#f1f1f1;
    padding:10px 15px;
    border-radius:4px;
    font-size:14px;
    margin-bottom:30px;
    color:#555;
}

/* QTY */

.qty-box{
    display:flex;
    align-items:center;
    gap:10px;
    margin-bottom:35px;
}

.qty-box span{
    font-size:14px;
}

.qty-box button{
    width:32px;
    height:32px;
    border:none;
    background:#ececec;
    cursor:pointer;
    font-size:18px;
}

.qty-box input{
    width:45px;
    height:32px;
    text-align:center;
    border:1px solid #ddd;
}

/* DESCRIPTION */

.product-description{
    font-size:14px;
    line-height:1.9;
    color:#555;
    margin-bottom:35px;
    max-width:700px;
}

/* BUTTON */

.cart-btn{
    display:inline-block;
    background:#f46a33;
    color:#fff;
    padding:14px 32px;
    border-radius:40px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
    transition:.3s;
}

.cart-btn:hover{
    background:#000;
}

/* =========================
   PRODUCT SPECIFICATION
========================= */

.product-specification{
    margin-top:30px;
    padding-top:30px;
    border-top:1px solid #ddd;
}

.product-specification h2{
    font-size:42px;
    margin-bottom:30px;
}

.product-specification p{
    font-size:14px;
    line-height:1.9;
    color:#555;
    margin-bottom:25px;
    max-width:1000px;
}

/* =========================
   RELATED PRODUCTS
========================= */

.related-products{
    margin-top:80px;
}

.related-products h2{
    font-size:42px;
    margin-bottom:40px;
}

.related-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* CARD */

.related-card{
    border:1px solid #e5e5e5;
    border-radius:10px;
    padding:20px;
    text-align:center;
    transition:.3s;
}

.related-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.related-card img{
    width:100%;
    height:160px;
    object-fit:cover;
    border-radius:8px;
    margin-bottom:15px;
}

.related-card h3{
    font-size:24px;
    margin-bottom:10px;
}

.related-card span{
    display:block;
    color:#666;
    font-size:13px;
    margin-bottom:8px;
}

.related-card p{
    font-size:14px;
    margin-bottom:20px;
}

.related-card a{
    display:inline-block;
    padding:12px 24px;
    background:#f46a33;
    color:#fff;
    text-decoration:none;
    border-radius:30px;
    font-size:13px;
    transition:.3s;
}

.related-card a:hover{
    background:#000;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .single-product-container{
        grid-template-columns:1fr;
    }

    .related-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .related-grid{
        grid-template-columns:1fr;
    }

    .product-details h2,
    .product-specification h2,
    .related-products h2{
        font-size:32px;
    }

}

/* =========================
   CONTACT PAGE SECTION
========================= */

.contact-page-section{
    padding:100px 5%;
    background:#f7f7f7;
}

/* CONTAINER */

.contact-page-container{
    display:grid;
    grid-template-columns:2fr 1fr;
    gap:35px;
    align-items:flex-start;
}

/* =========================
   FORM BOX
========================= */

.contact-form-box{
    background:#fff;
    padding:40px;
    border-radius:14px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
}

.contact-form-box h2{
    font-size:42px;
    margin-bottom:20px;
}

.contact-form-box p{
    color:#666;
    line-height:1.9;
    margin-bottom:35px;
    display:contents;
}

/* FORM */

.form-row{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:20px;
    margin-bottom:0px;
}

.contact-form-box input,
.contact-form-box textarea{
    width:100%;
    border:none;
    background:#f1f1f1;
    padding:18px 20px;
    border-radius:8px;
    outline:none;
    font-size:15px;
    transition:.3s;
    margin-bottom:20px;
}

.contact-form-box input:focus,
.contact-form-box textarea:focus{
    border:2px solid #1e90ff;
    background:#fff;
}

.full-input{
    margin-bottom:20px;
}

.contact-form-box textarea{
    height:160px;
    resize:none;
    margin-bottom:30px;
}

/* BUTTON */

.submit-btn{
    background:#F36639!important;
    color:#fff;
    border:none;
    padding:16px 38px;
    border-radius:50px;
    font-size:15px;
    cursor:pointer;
    transition:.3s;
    width:40%!important;
}

.submit-btn:hover{
    background:#000;
    width:40%;
}

/* =========================
   INFO BOX
========================= */

.contact-info-box{
    background:#fff;
    padding:40px 30px;
    border-radius:14px;
    box-shadow:0 5px 20px rgba(0,0,0,0.08);
    text-align:center;
}

.contact-info-box h3{
    font-size:32px;
    line-height:1.5;
    margin-bottom:45px;
}

.contact-icon{
    width:70px;
    height:70px;
    margin:auto;
    border-radius:50%;
    background:#fff3ed;
    color:#f46a33;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:34px;
    margin-bottom:25px;
}

.contact-info-box h4{
    font-size:28px;
    margin-bottom:15px;
}

.contact-info-box p{
    color:#666;
    font-size:18px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:991px){

    .contact-page-container{
        grid-template-columns:1fr;
    }

}

@media(max-width:768px){

    .form-row{
        grid-template-columns:1fr;
    }

    .contact-form-box h2,
    .contact-info-box h3{
        font-size:30px;
    }

    .contact-info-box h4{
        font-size:24px;
    }

}

/*cartpage*/

/* =========================
   CART SECTION
========================= */

.cart-section{
    padding:80px 5%;
    background:#fff;
}

.cart-wrapper{
    border:3px solid #1e90ff;
    border-radius:12px;
    overflow:hidden;
}

/* =========================
   HEADER
========================= */

.cart-header{
    display:grid;
    grid-template-columns:1fr 200px 120px;
    padding:20px 30px;
    font-weight:700;
    border-bottom:1px solid #ddd;
    background:#fff;
}

/* =========================
   CART ITEM
========================= */

.cart-item{
    display:grid;
    grid-template-columns:1fr 200px 120px;
    align-items:center;
    padding:25px 30px;
    border-bottom:1px solid #ddd;
}

/* PRODUCT */

.cart-product{
    display:flex;
    align-items:center;
    gap:20px;
}

.cart-product img{
    width:90px;
    height:90px;
    object-fit:cover;
    border-radius:10px;
}

.cart-info h3{
    font-size:20px;
    margin-bottom:8px;
}

.cart-info span{
    color:#777;
    font-size:14px;
}

/* =========================
   QTY
========================= */

.cart-qty{
    display:flex;
    align-items:center;
    gap:10px;
}

.cart-qty button{
    width:34px;
    height:34px;
    border:none;
    background:#ececec;
    cursor:pointer;
    font-size:18px;
    border-radius:4px;
}

.cart-qty input{
    width:50px;
    height:34px;
    text-align:center;
    border:1px solid #ddd;
    border-radius:4px;
}

/* =========================
   REMOVE
========================= */

.remove-btn{
    width:34px;
    height:34px;
    border:1px solid #ff5a2f;
    background:#fff;
    color:#ff5a2f;
    border-radius:50%;
    cursor:pointer;
    transition:.3s;
}

.remove-btn:hover{
    background:#ff5a2f;
    color:#fff;
}

/* =========================
   FOOTER
========================= */

.cart-footer{
    background:#003d79;
    padding:20px 30px;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:20px;
}

.cart-left-btns{
    display:flex;
    gap:15px;
    flex-wrap:wrap;
}

/* BUTTONS */

.cart-btn,
.inquiry-btn{
    display:inline-block;
    padding:14px 28px;
    border-radius:40px;
    text-decoration:none;
    color:#fff;
    font-size:14px;
    transition:.3s;
}

.update-btn{
    background:#0059b2;
}

.continue-btn{
    background:#0059b2;
}

.inquiry-btn{
    background:#f46a33;
}

.cart-btn:hover,
.inquiry-btn:hover{
    opacity:.9;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:768px){

    .cart-header{
        display:none;
    }

    .cart-item{
        grid-template-columns:1fr;
        gap:20px;
    }

    .cart-footer{
        flex-direction:column;
        align-items:flex-start;
    }

}

/* =========================
   PRODUCT SECTION
========================= */

.product-section{
    padding:100px 5%;
    background:#f7f7f7;
}

/* TOP */

.product-top{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:30px;
    margin-bottom:60px;
    flex-wrap:wrap;
}

.product-text p{
    color:#555;
    margin-bottom:15px;
    line-height:1.8;
}

/* FILTER */

.product-filter{
    display:flex;
    align-items:center;
    gap:15px;
}

.product-filter label{
    font-size:15px;
    font-weight:600;
    white-space:nowrap;
}

.product-filter select{
    padding:14px 18px;
    border:none;
    border-radius:8px;
    background:#ececec;
    min-width:260px;
    outline:none;
    cursor:pointer;
}

/* GRID */

.product-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:25px;
}

/* CARD */

.product-card{
    background:#fff;
    border:1px solid #e4e4e4;
    border-radius:12px;
    padding:25px;
    text-align:center;
    transition:.3s;
}

.product-card:hover{
    transform:translateY(-5px);
    box-shadow:0 10px 30px rgba(0,0,0,0.08);
}

.product-card img{
    width:100%;
    height:180px;
    object-fit:cover;
    border-radius:10px;
    margin-bottom:20px;
}

.product-card h3{
    font-size:20px;
    margin-bottom:8px;
}

.product-card span{
    display:block;
    color:#777;
    margin-bottom:10px;
}

.product-card p{
    color:#444;
    margin-bottom:25px;
}

/* BUTTON */



.product-card a:hover{
    background:#000;
}

/* RESPONSIVE */

@media(max-width:1100px){

    .product-grid{
        grid-template-columns:repeat(2,1fr);
    }

}

@media(max-width:768px){

    .product-grid{
        grid-template-columns:1fr;
    }

    .product-top{
        flex-direction:column;
    }

    .product-filter{
        width:100%;
        flex-direction:column;
        align-items:flex-start;
    }

    .product-filter select{
        width:100%;
    }

}
/* =========================
   PAGINATION
========================= */

.custom-pagination{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin-top:70px;
    flex-wrap:wrap;
}

/* PREV & NEXT */

.page-btn{
    padding:12px 22px;
    border:1px solid #dcdcdc;
    border-radius:6px;
    text-decoration:none;
    color:#444;
    font-size:15px;
    transition:.3s;
    background:#fff;
}

.page-btn:hover{
    background:#f46a33;
    color:#fff;
    border-color:#f46a33;
}

/* PAGE NUMBER */

.page-number{
    width:42px;
    height:42px;
    border-radius:8px;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    color:#222;
    background:#fff;
    border:1px solid #ddd;
    transition:.3s;
    font-weight:600;
}

.page-number:hover{
    background:#f46a33;
    color:#fff;
    border-color:#f46a33;
}

/* ACTIVE */

.page-number.active{
    background:#2b2233;
    color:#fff;
    border-color:#2b2233;
}

/* DOTS */

.dots{
    color:#777;
    font-size:18px;
}

/* MOBILE */

@media(max-width:768px){

    .custom-pagination{
        gap:8px;
    }

    .page-btn{
        padding:10px 16px;
        font-size:14px;
    }

    .page-number{
        width:38px;
        height:38px;
        font-size:14px;
    }

}

/*newheadr*/
.navbar-p{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.menu{
    display:flex;
    gap:30px;
    list-style:none;
}

.menu-toggle{
    display:none;
    font-size:28px;
    cursor:pointer;
}

@media (max-width:991px){

    .menu-toggle{
        display:block;
    }

    .menu{
        position:absolute;
        top:100%;
        left:0;
        width:100%;
        background:#003B6F;
        flex-direction:column;
        padding:20px;
        display:none;
        z-index:1000;
    }

    .menu.active{
        display:flex;
    }

    .menu li{
        width:100%;
        text-align:left;
    }

    .menu li a{
        display:block;
        padding:15px 0;
    }

    .menu li.has-dropdown > a{
        display:flex;
        align-items:center;
        justify-content:space-between;
    }

    .menu .dropdown-toggle{
        display:inline-flex;
        margin-left:auto;
    }

    .menu li.has-dropdown.open .dropdown-toggle{
        transform:rotate(180deg);
    }

    .menu .sub-menu{
        position:static;
        display:none;
        padding-left:15px;
    }

    .account-btn{
        display:none;
    }

    .navbar-p{
        position:relative;
    }
}

/*.woocommerce-cart .product-price,
.woocommerce-cart .product-subtotal,
.woocommerce-checkout .product-total,
.woocommerce-checkout .cart-subtotal,
.woocommerce-checkout .order-total,
.woocommerce-Price-amount {
    display: none !important;
}*/

dl, ol, ul {
    margin-top: 0;
    margin-bottom: 0rem!important;}
    .woocommerce-MyAccount-navigation ul{
	list-style: none;
}
.woocommerce-MyAccount-navigation ul li.is-active a{
	color: #dd4829;
}
.woocommerce-MyAccount-navigation ul li a{
	display: block;
	margin: 15px 0px;
}
header.woocommerce-Address-title.title h2 {
    font-size: 23px;
    font-weight: 600;
    margin-bottom: 10px;
}
.woocommerce-EditAccountForm.edit-account label{
	display:block;
	width:100%;
}
.woocommerce-address-fields .woocommerce-input-wrapper span{
	display:block;
	width:100%;
}
.woocommerce form .woocommerce-address-fields .form-row {
    padding: 3px;
    margin: 0 0 6px;
    display: block;
}
.woocommerce-EditAccountForm.edit-account span.password-input {
    width: 100%;
}
.woocommerce-MyAccount-content h2{
    font-size: 25px;
    font-weight: 600;
}
@media (min-width:1100px){
	
.woocommerce-MyAccount-content {
    float: left;
    width: 60%;
	background:#eeeeee;
      padding: 10px;
 }
nav.woocommerce-MyAccount-navigation {
    width: 30%;
    float: left;
    background: #eee;
    padding: 14px 30px;
    margin-right: 35px;}}
  
    span.woocommerce-Price-amount .amount{font-size:13px;}
.product__item__text ins {
    text-decoration: none;
}
del{
	text-decoration: line-through;
    text-decoration-thickness: 2px;
    text-decoration-color: #d85133;
    text-decoration-skip-ink: auto;
}

a {text-decoration: none;
    background-color: transparent;}
    
    .woocommerce form .form-row {
    padding: 3px;
    margin: 0 0 6px;
    display: block;}
    
.blog-detail{padding:50px 0px;}
.blogde{display:flex; gap:25px;}
.newsletter-form p{margin-bottom:0; display:flex;align-items:center;gap:30px;}

.banner-content a{color:#fff;}

/* Desktop */
.account-btn {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Mobile */
@media (max-width: 767px) {
    .account-btn .account-text {
        display: none;
    }
    .navbar-p{padding:14px 15px;}
}
@media (max-width: 767px) {
    .account-btn {
        justify-content: center;
    }

    .account-btn .account-text {
        display: none;
    }
}