 :root{
    --primary:#2a4988;
    --secondary:#ff5622;
    --text:#1B1F3B;
    --muted:#6D7387;
    --border:#E7EAF3;
    --bg:#F8FAFD;
}

body{
    font-family:'Inter',sans-serif;
    background:#fff;
    color:var(--text);
}

/* =========================
   HEADER
========================= */

.main-header{
    height:82px;
    border-bottom:1px solid #eceef4;
    background:#fff;
    position:relative;
    z-index:99;
}
header img.custom-logo{ width:auto; max-width:100%; max-height:45px; }
.navbar{
    height:82px;
    padding:0;
}

.navbar-brand img{
    max-height:38px;
}

.navbar-nav{
    gap:34px;
}

.nav-link{
    font-size:16px;
    font-weight:600;
    color:#19233c;
    padding:30px 0 !important;
    position:relative;
}

.nav-link.active{
    color:var(--primary);
}

.nav-link.active:after{
    content:"";
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:3px;
    background:var(--secondary);
    border-radius:50px;
}

.nav-link:hover{
    color:var(--primary);
}

/* MENU */

.main-header .navbar-nav{
    gap: 15px;
}

.main-header .navbar-nav li{
    position: relative; margin: 0 10px;
}

.main-header .navbar-nav .nav-link{
    padding: 25px 10px;
    color: #0b2c5f;
    font-weight: 600;
}


/* SUBMENU */

.main-header .navbar-nav .sub-menu{
    position: absolute; width: 500px; background: url(../images/sleeping-pill-menu.jpg) !important;  background-size: cover !important;
    background-repeat: no-repeat !important;
    height: auto;
    background-position: right !important;
    top: 100%;
    left: 0;

    min-width: 260px;

    background-color: #fff;

    list-style: none;

    padding: 15px 0;
    margin: 0;

    opacity: 0;
    visibility: hidden;

    transition: .3s ease;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    z-index: 999;
}


/* HOVER */

.main-header .navbar-nav li:hover > .sub-menu{
    opacity: 1;
    visibility: visible;
}


/* SUBMENU LINKS */

.main-header .navbar-nav .sub-menu li{
    width: 100%;
}

.main-header .navbar-nav .sub-menu li a{
    display: block;

    padding: 10px 20px !important;

    color: #222;

    text-decoration: none;

    font-size: 15px;
}

.main-header .navbar-nav .sub-menu li a:hover{
color: #ff5622;}


/* MOBILE */

@media(max-width:991px){

    .main-header .navbar-nav .sub-menu{

        position: static;

        opacity: 1;
        visibility: visible;

        box-shadow: none;

        display: none;

        width: 100%;

    }

    .main-header .navbar-nav li.open > .sub-menu{
        display: block;
    }

}

.enquire-btn{
    background:var(--secondary);
    border:none;
    color:#fff;
    font-size:14px;
    font-weight:700;
    padding:13px 24px;
    border-radius:12px;
    display:flex;
    align-items:center;
    gap:10px;
    transition:.3s;
}

.enquire-btn:hover{
    background:#ef5d0d;
    color:#fff;
}

/* =========================
   HERO SECTION
========================= */

.hero-section{
    position:relative;
    overflow:hidden;
    background:url(../images/zoltrate_bnr_02.webp) no-repeat; background-size: 70%; background-position: right bottom;
}

.hero-section::before{
    content: "";
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;

    background: linear-gradient(90deg, rgb(246 242 240) 0%, rgb(245 240 237) 28%, rgba(255, 255, 255, 0.45) 48%, rgba(255, 255, 255, 0.00) 70%);

}
.hero-wrapper{
    position:relative;
}

.hero-content{
    padding-top:0px;
    position:relative;
    z-index:2;
}

.hero-tag{
    color:var(--secondary);
    font-size:14px;
    font-weight:800;
    text-transform:uppercase;
    margin-bottom:20px;
}

.hero-title{
    font-size:68px;
    line-height:1.02;
    font-weight:800;
    color:#10204D;
    margin-bottom:28px;
    letter-spacing:-2px;
}

.hero-title span{
    color:var(--secondary);
}

.hero-text{
    max-width:520px;
    color:#000;
    line-height:1.9;
    font-size:18px;
    margin-bottom:42px;
}

.hero-btns{
    display:flex;
    gap:18px;
    margin-bottom:55px;
}

.btn-primary-custom{
    background:var(--secondary);
    border:none;
    color:#fff;
    padding:16px 28px;
    border-radius:14px;
    font-size:15px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:10px;
    transition:.3s;
}

.btn-primary-custom:hover{
    background:#ef5d0d;
    color:#fff;
}

.btn-outline-custom{
    border:2px solid #C7D2F0;
    color:#18377B;
    padding:14px 28px;
    border-radius:14px;
    font-size:15px;
    font-weight:700;
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#fff;
    transition:.3s;
}

.btn-outline-custom:hover{
    background:#18377B;
    color:#fff;
}

/* =========================
   FEATURES
========================= */

.hero-features{
    display:flex;
    flex-wrap:wrap;
    gap:16px;
}

.feature-box{
    background:#fff;
    border:1px solid var(--border);
    border-radius:16px;
    padding:18px 20px;
    min-width:175px;
    display:flex;
    align-items:center;
    gap:14px;
    box-shadow:0 8px 24px rgba(15,40,98,.04);
}

.feature-icon{
    width:42px;
    height:42px;
    border-radius:12px;
    background:#F5F8FF;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#173A86;
    font-size:20px;
}

.feature-box h6{
    margin:0;
    font-size:14px;
    line-height:1.5;
    color:#2B3553;
    font-weight:700;
}

/* =========================
   IMAGE SIDE
========================= */

.hero-image-side{
    position:absolute;
    right:0;
    top:0;
    width:54%;
    height:100%;
}

.hero-bg{
    position:absolute;
    inset:0;
    overflow:hidden;
}

.hero-bg img{
    width:100%;
    height:100%;
    object-fit:cover;
}

.hero-overlay{
    position:absolute;
    inset:0;
    background:linear-gradient(to right,#ffffff 0%,rgba(255,255,255,.88) 18%,rgba(255,255,255,.12) 55%,rgba(255,255,255,0) 100%);
}

.blue-strip{
    position:absolute;
    right:0;
    top:0;
    width:138px;
    height:100%;
    background:#003A9B;
}

.dot-pattern{
    position:absolute;
    right:28px;
    bottom:42px;
    display:grid;
    grid-template-columns:repeat(5,6px);
    gap:8px;
}

.dot-pattern span{
    width:6px;
    height:6px;
    border-radius:50%;
    background:#2F71FF;
}

/* =========================
   FLOATING CARD
========================= */

.product-card{
    position:absolute;
    right:70px;
    top:120px;
    width:320px;
    background:#fff;
    border-radius:28px;
    padding:28px;
    z-index:5;
    box-shadow:0 30px 80px rgba(10,32,88,.18);
}

.product-badge{
    position:absolute;
    top:18px;
    right:18px;
    width:34px;
    height:34px;
    border-radius:50%;
    background:var(--secondary);
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:16px;
}

.product-image{
    background:#F8FAFF;
    border-radius:18px;
    padding:18px;
    text-align:center;
    margin-bottom:22px;
}

.product-image img{
    max-width:100%;
    height:180px;
    object-fit:contain;
}

.product-card h4{
    font-size:30px;
    font-weight:800;
    color:#10204D;
    margin-bottom:16px;
}

.product-card p{
    font-size:18px;
    line-height:1.7;
    color:#5D667E;
    margin-bottom:26px;
}

.view-btn{
    width:100%;
    background:#123C93;
    color:#fff;
    border:none;
    height:58px;
    border-radius:14px;
    font-size:16px;
    font-weight:700;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:10px;
    transition:.3s;
}

.view-btn:hover{
    background:#0e327d;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1399px){

.hero-title{
    font-size:58px;
}

.product-card{
    width:290px;
}

}

@media(max-width:1199px){

.hero-image-side{
    position:relative;
    width:100%;
    height:650px;
}

.hero-wrapper{
    min-height:auto;
}

.hero-content{
    padding-top:80px;
    padding-bottom:70px;
}

.product-card{
    right:40px;
}

}

@media(max-width:991px){

.navbar-nav{
    gap:0;
}

.hero-title{
    font-size:48px;
}

.hero-image-side{
    height:560px;
}

.product-card{
    width:260px;
    padding:22px;
}

.feature-box{
    min-width:100%;
}

}

@media(max-width:767px){

.hero-title{
    font-size:42px;
    letter-spacing:-1px;
}

.hero-text{
    font-size:16px;
}

.hero-btns{
    flex-direction:column;
}

.hero-image-side{
    height:520px;
}

.product-card{
    position:relative;
    right:auto;
    top:auto;
    margin:40px auto 0;
}

.blue-strip{
    width:90px;
}

}
/* =========================
   PRODUCTS SECTION
========================= */

.products-section{
    padding:90px 0 0;
    background:#fff;
}

.products-top{
    margin-bottom:45px;
    gap:20px;
}

.sub-title{
    display:block;
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    color:#FF6B1A;
    margin-bottom:12px;
    letter-spacing:.5px;
}

.products-heading h2{
    font-size:48px;
    line-height:1.18;
    font-weight:800;
    color:#0F1F4A;
    margin-bottom:18px;
    letter-spacing:-1.5px;
}

.products-heading h2 span{
    color:#1145C5;
}

.products-heading p{
    max-width:430px;
    font-size:16px;
    line-height:1.9;
    color:#6B7287;
    margin:0;
}

.view-all-btn{
    margin-top:24px;
    color:#1848C6;
    text-decoration:none;
    font-size:14px;
    font-weight:700;
    display:flex;
    align-items:center;
    gap:10px;
}

.view-all-btn:hover{
    color:#0F2D7B;
}

/* =========================
   PRODUCT BOX
========================= */

.product-box{
    border:1px solid #E4E8F2;
    border-radius:18px;
    background:#fff;
    overflow:hidden;
    height:100%;
    transition:.35s;
}

.product-box:hover{
    transform:translateY(-6px);
    box-shadow:0 18px 50px rgba(18,40,92,.08);
}

.product-image{
    height:220px;
    display:flex;
    align-items:center;
    justify-content:center;
    padding:28px;
}

.product-image img{
    max-width:100%;
    max-height:160px;
    object-fit:contain;
}

.product-content{
    padding:0 22px 18px;
}

.product-content h4{
    font-size:22px;
    font-weight:800;
    color:#1A2343;
    margin-bottom:10px;
}

.product-content p{
    font-size:15px;
    line-height:1.7;
    color:#616A81;
    min-height:50px;
    margin-bottom:18px;
}

.rating-stars{
    display:flex;
    align-items:center;
    gap:6px;
    color:#FF7A1A;
    font-size:14px;
}

.product-footer{
    padding:18px 22px;
    border-top:1px solid #EEF1F7;
}

.product-footer a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-decoration:none;
    color:#153A91;
    font-size:15px;
    font-weight:700;
}

.product-footer a:hover{
    color:#0D2C74;
}

/* =========================
   WHY SECTION
========================= */

.why-section{
    position:relative;
    background:linear-gradient(90deg,#032E8C 0%, #022770 100%);
    overflow:hidden;
    margin-top:80px;
    padding:0;
}

.why-section:before{
    content:"";
    position:absolute;
    left:-100px;
    top:0;
    width:400px;
    height:100%;
    background:radial-gradient(circle,rgba(59,113,255,.25) 0%,transparent 70%);
}

.why-section:after{
    content:"";
    position:absolute;
    right:-120px;
    top:0;
    width:400px;
    height:100%;
    background:radial-gradient(circle,rgba(59,113,255,.18) 0%,transparent 70%);
}

.doctor-image{
    position:relative;
    margin-top:-35px;
}

.doctor-image img{
    width:100%; height: auto;

}

.why-content{
    padding:65px 0;
    position:relative;
    z-index:2;
}

.why-tag{
    display:block;
    color:#fff;
    font-size:15px;
    font-weight:700;
    margin-bottom:10px;
    opacity:.9;
}

.why-content h2{
    font-size:54px;
    line-height:1.1;
    font-weight:800;
    color:#fff;
    margin-bottom:48px;
    letter-spacing:-1.5px;
}

.why-content h2 span{
    color:#FF6B1A;
}

.why-box{
    color:#fff;
}

.why-icon{
    width:72px;
    height:72px;
    border-radius:50%;
    background:linear-gradient(180deg,#2565FF 0%, #0B3AA8 100%);
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:28px;
    margin-bottom:22px;
    box-shadow:0 15px 40px rgba(0,0,0,.18);
}

.why-box h4{
    font-size:22px;
    font-weight:700;
    margin-bottom:16px;
}

.why-box p{
    color:rgba(255,255,255,.82);
    font-size:15px;
    line-height:1.9;
    margin:0;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1199px){

.products-heading h2{
    font-size:40px;
}

.why-content h2{
    font-size:44px;
}

}

@media(max-width:991px){

.products-section{
    padding-top:70px;
}

.products-heading h2{
    font-size:36px;
}

.doctor-image{
    text-align:center;
    margin-top:0;
}

.doctor-image img{
    max-width:250px;
}

.why-content{
    padding-top:10px;
}

.why-content h2{
    font-size:38px;
}

}

@media(max-width:767px){

.products-heading h2{
    font-size:30px;
}

.why-content h2{
    font-size:32px;
}

.product-content h4{
    font-size:20px;
}

}


/* =========================
   COMMON
========================= */

.section-tag{
    display:inline-block;
    font-size:13px;
    font-weight:800;
    text-transform:uppercase;
    color:#FF6B1A;
    margin-bottom:14px;
}

.about-zoltrate-section,
.health-section,
.faq-testimonial-section{
    padding:90px 0;
    background:#fff;
}

/* =========================
   ABOUT SECTION
========================= */

.about-content h2{
    font-size:50px;
    line-height:1.15;
    font-weight:800;
    color:#12214A;
    margin-bottom:24px;
    letter-spacing:-1.5px;
}

.about-content h2 span{
    color:#FF6B1A;
}

.about-content p{
    color:#5E667D;
    font-size:16px;
    line-height:2;
}

.about-feature-box{
    display:flex;
    gap:18px;
}

.about-feature-box .feature-icon{
    min-width:58px;
    height:58px;
    border-radius:50%;
    background:#F5F8FF;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#1541A1;
    font-size:24px;
}

.about-feature-box h4{
    font-size:18px;
    font-weight:700;
    color:#13214A;
    margin-bottom:10px;
}

.about-feature-box p{
    font-size:15px;
    line-height:1.8;
    color:#6A7287;
    margin:0;
}

/* =========================
   HEALTH BOX
========================= */

.health-box{
    border:1px solid #E5EAF3;
    border-radius:22px;
    overflow:hidden;
    background:#E5EAF3;
}

.health-image{
    height:100%;
}

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

.health-content{
    padding:40px;
}

.health-content h2{
    font-size:42px;
    line-height:1.15;
    font-weight:800;
    color:#12214A;
    margin-bottom:18px;
    letter-spacing:-1px;
}

.health-content h2 span{
    color:#1145C5;
}

.health-content p{
    color:#667087;
    line-height:1.9;
    margin-bottom:24px;
}

.health-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    height:50px;
    padding:0 22px;
    border-radius:12px;
    background:#1542A8;
    color:#fff;
    text-decoration:none;
    font-weight:700;
    font-size:14px;
}

.health-btn:hover{
    background:#0D2F7D;
    color:#fff;
}

.health-tips{
    padding:40px;
}

.health-tips ul{
    padding:0;
    margin:0;
    list-style:none;
}

.health-tips li{
    display:flex;
    align-items:center;
    gap:16px;
    padding:18px 0;
    border-bottom:1px solid #EDF1F7;
    color:#1B2A52;
    font-size:15px;
    font-weight:600;
}

.health-tips li:last-child{
    border-bottom:none;
}

.health-tips li i{
    color:#1541A1;
    font-size:22px;
}

/* =========================
   FAQ
========================= */

.faq-wrapper h2{
    font-size:42px;
    line-height:1.2;
    font-weight:800;
    color:#12214A;
    margin-bottom:0px;
    letter-spacing:-1px;
}

.custom-accordion .accordion-item{
    border:1px solid #E6EBF3;
    border-radius:12px !important;
    overflow:hidden;
    margin-bottom:14px;
}

.custom-accordion .accordion-button{
    background:#fff;
    box-shadow:none !important;
    padding:20px 24px;
    font-size:15px;
    font-weight:700;
    color:#15224A;
}

.custom-accordion .accordion-button:not(.collapsed){
    background:#F8FAFF;
    color:#1142A3;
}

.custom-accordion .accordion-body{
    padding:0 24px 22px;
    color:#667087;
    line-height:1.8;
}

/* =========================
   TESTIMONIAL
========================= */

.testimonial-wrapper{
    border:1px solid #E4E9F2;
    border-radius:24px;
    padding:50px;
    height:100%;
    position:relative;
}

.testimonial-wrapper h2{
    font-size:40px;
    font-weight:800;
    color:#12214A;
    margin-bottom:36px;
    letter-spacing:-1px;
}

.testimonial-box{
    text-align:center;
}

.quote-icon{
    font-size:52px;
    color:#D7DFEF;
    margin-bottom:18px;
}

.testimonial-box p{
    font-size:18px;
    line-height:2;
    color:#586177;
    max-width:620px;
    margin:0 auto 34px;
}

.testimonial-user{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:16px;
}

.testimonial-user img{
    width:58px;
    height:58px;
    border-radius:50%;
    object-fit:cover;
}

.testimonial-user h5{
    margin:0;
    font-size:17px;
    font-weight:700;
    color:#14224B;
}

.testimonial-user span{
    color:#6B7287;
    font-size:14px;
}

.carousel-indicators{
    position:relative;
    margin-top:28px;
    margin-bottom:0;
}

.carousel-indicators [data-bs-target]{
    width:10px;
    height:10px;
    border-radius:50%;
    border:none;
    background:#CAD5EA;
}

.carousel-indicators .active{
    background:#1541A1;
}

.slider-arrow{
    width:48px;
    height:48px;
    border-radius:50%;
    border:1px solid #DCE4F2;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#123D9B;
    font-size:18px;
}

.carousel-control-prev,
.carousel-control-next{
    opacity:1;
    width:auto; align-items: start; padding-top: 15px;
}



.testimonial-wrapper .carousel-control-prev, .testimonial-wrapper
.carousel-control-next{
    opacity:1;
    width:auto; align-items: center;
}

.testimonial-wrapper .carousel-control-prev{
    left:-10px;
}

.testimonial-wrapper .carousel-control-next{
    right:-10px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1199px){

.about-content h2,
.health-content h2,
.faq-wrapper h2,
.testimonial-wrapper h2{
    font-size:36px;
}

}

@media(max-width:991px){

.about-zoltrate-section,
.health-section,
.faq-testimonial-section{
    padding:70px 0;
}

.health-content,
.health-tips{
    padding:30px;
}

.testimonial-wrapper{
    padding:40px 25px;
}

}

@media(max-width:767px){

.about-content h2,
.health-content h2,
.faq-wrapper h2,
.testimonial-wrapper h2{
    font-size:30px;
}

.testimonial-box p{
    font-size:16px;
}

.health-content,
.health-tips{
    padding:24px;
}

}

/* =========================
   TOP INFO BAR
========================= */

.top-info-bar{
    background:linear-gradient(90deg,#1FC4D0 0%, #0068B8 100%);
    padding:22px 0;
    position:relative;
    overflow:hidden;
}

.top-info-box{
    display:flex;
    align-items:flex-start;
    gap:18px;
    padding:0 28px;
    border-right:1px solid rgba(255,255,255,.18);
    min-height:70px;
}

.top-info-icon{
    min-width:58px;
    height:58px;
    border-radius:50%;
    border:2px solid rgba(255,255,255,.35);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:28px;
}

.top-info-box h4{
    color:#fff;
    font-size:20px;
    font-weight:700;
    margin-bottom:6px;
}

.top-info-box p{
    color:rgba(255,255,255,.88);
    font-size:14px;
    line-height:1.6;
    margin:0;
}

/* =========================
   FOOTER
========================= */

.main-footer{
    background:#fff;
    border-top:1px solid #E7EBF2;
}

.footer-top{
    padding:70px 0 55px;
}

.footer-logo img{
    max-height:42px;
}

.footer-about p{
    color:#667087;
    font-size:15px;
    line-height:1.9;
    margin:28px 0;
    max-width:280px;
}

.footer-socials{
    display:flex;
    gap:12px;
}

.footer-socials a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#F5F7FC;
    color:#173C96;
    display:flex;
    align-items:center;
    justify-content:center;
    text-decoration:none;
    font-size:16px;
    transition:.3s;
}

.footer-socials a:hover{
    background:#173C96;
    color:#fff;
}

.footer-links h4,
.footer-contact h4,
.footer-newsletter h4{
    font-size:18px;
    font-weight:700;
    color:#14224A;
    margin-bottom:28px;
}

.footer-links ul,
.footer-contact ul{
    list-style:none;
    padding:0;
    margin:0;
}

.footer-links ul li{
    margin-bottom:14px;
}

.footer-links ul li a{
    color:#667087;
    text-decoration:none;
    font-size:15px;
    transition:.3s;
}

.footer-links ul li a:hover{
    color:#123D9B;
}

.footer-contact ul li{
    display:flex;
    align-items:flex-start;
    gap:14px;
    margin-bottom:18px;
}

.footer-contact ul li i{
    color:#123D9B;
    font-size:18px;
    margin-top:3px;
}

.footer-contact ul li span,
.footer-contact ul li a{
    color:#667087;
    font-size:15px;
    line-height:1.8;
    text-decoration:none;
}

.footer-contact ul li a:hover{
    color:#123D9B;
}

.footer-newsletter p{
    color:#667087;
    font-size:15px;
    line-height:1.8;
    margin-bottom:18px;
}

.footer-newsletter form{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.footer-newsletter input{
    height:52px;
    border:1px solid #DCE3F0;
    border-radius:10px;
    padding:0 16px;
    font-size:14px;
    outline:none;
    transition:.3s;
}

.footer-newsletter input:focus{
    border-color:#1541A1;
}

.footer-newsletter button{
    height:48px;
    border:none;
    border-radius:10px;
    background:#FF6B1A;
    color:#fff;
    font-size:14px;
    font-weight:700;
    transition:.3s;
}

.footer-newsletter button:hover{
    background:#EA5D10;
}

/* =========================
   FOOTER BOTTOM
========================= */

.footer-bottom{
    border-top:1px solid #E7EBF2;
    padding:22px 0;
    display:flex;
    justify-content:space-between;
    align-items:center;
    flex-wrap:wrap;
    gap:18px;
}

.footer-bottom-left{
    color:#667087;
    font-size:14px;
}

.footer-bottom-links{
    display:flex;
    align-items:center;
    gap:14px;
    flex-wrap:wrap;
}

.footer-bottom-links a{
    color:#667087;
    text-decoration:none;
    font-size:14px;
}

.footer-bottom-links a:hover{
    color:#123D9B;
}

.footer-bottom-links span{
    color:#C6CEDD;
}

.footer-badge{
    border:2px solid #1E5AD6;
    color:#1E5AD6;
    padding:8px 18px;
    border-radius:8px;
    font-size:12px;
    font-weight:800;
    letter-spacing:.5px;
}

/* =========================
   RESPONSIVE
========================= */

@media(max-width:1199px){

.top-info-box{
    padding:0 18px;
}

.top-info-box h4{
    font-size:18px;
}

}

@media(max-width:991px){

.top-info-bar{
    padding:18px 0;
}

.top-info-box{
    border-right:none;
    border-bottom:1px solid rgba(255,255,255,.15);
    padding:18px 0;
}

.footer-top{
    padding:60px 0 40px;
}

}

@media(max-width:767px){

.top-info-box{
    min-height:auto;
}

.top-info-icon{
    min-width:50px;
    height:50px;
    font-size:24px;
}

.top-info-box h4{
    font-size:17px;
}

.footer-bottom{
    flex-direction:column;
    text-align:center;
}

.footer-bottom-links{
    justify-content:center;
}

}

/*-------------------------------------------*/
.trust-banner {
    /* background: linear-gradient(90deg, #022a75, #001f5a); */
    border-radius: 20px;
    padding: 22px 0px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

.trust-banner .trust-item{
    position:relative;
    padding-right:35px;
}

.trust-banner .trust-item::after{
    content:"";
    position:absolute;
    right:15px;
    top:50%;
    transform:translateY(-50%);
    width:1px;
    height:55px;
    background:rgba(255,255,255,0.15);
}

.trust-banner .trust-item.last-item::after{
    display:none;
}

.trust-banner .icon-box {
    width: 45px;
    height: 45px;
    min-width: 45px;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
}

.trust-banner .icon-box i{
    color:#ffcc4d;
    font-size:24px;
}

.trust-banner .trust-content h5 {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 0px;
}

.trust-banner .trust-content p {
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
    font-size: 14px;
}

.trust-banner .payment-card {
    width: 60px;
    height: 40px;
    border-radius: 8px;
    border: 2px solid rgba(255, 255, 255, 0.15);
    background: rgb(255 255 255);
    color: #fff;
    font-size: 14px;
    font-weight: 700;
}

.trust-banner .payment-card img{
    width: 30px;
}
p.registration-para {
    color: #47997a !important;
    margin: 0;
}

/*-------------------------------------------*/
.review-section{
    padding:0 0 60px;
}


.review-section .rating-wrap{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    flex-wrap:wrap;
}

.review-section .rating-stars i {
    color: #ffc107;
    font-size: 22px;
    margin-right: 2px;
}

.review-section .rating-text {
    font-size: .875rem;
    color: rgb(104, 117, 141);
}

.review-section .rating-text strong {
    color: #071a3d;
    font-weight: 800;
    margin-right: 8px;
    font-size: 18px;
}

.review-section .review-card {
    background: #fff;
    border-radius: 24px;
    padding: 30px;
    border: 1px solid #ececec;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    height: 100%;
    transition: 0.3s;
}

.review-section .review-card:hover{
    transform:translateY(-6px);
}

.review-section .review-stars {
    margin-bottom: 10px;
}

.review-section .review-stars i {
    color: #ffc107;
    font-size: 18px;
    margin-right: 2px;
}

.review-section .review-text{
    position:relative;
    padding-left:22px;
    margin-bottom:30px;
}

.review-section .quote-icon{
    position:absolute;
    left:-15px;
    top:-10px;
    font-size:40px;
    color:#d9e5ff;
}

.review-section .review-text p {
    font-size: 16px;
    line-height: 26px;
    color: var(--text);
    margin: 0;
    position: relative;
}

.review-section .review-footer{
    border-top:1px solid #ececec;
    padding-top:24px;
}

.review-section .user-name {
    font-size: 16px;
    font-weight: 700;
    color: #071a3d;
    margin-bottom: 2px;
    line-height: 20px;
}

.review-section .user-location {
    font-size: 14px;
    color: #697284;
    margin-bottom: 16px;
    line-height: 16px;
}

.review-section .purchase-date {
    font-size: 14px;
    color: #9099ac;
    line-height: 18px;
}

.review-section .verified-badge {
    color: #17b44a;
    font-size: 14px;
    font-weight: 500;
    white-space: nowrap;
}

.review-section .verified-badge i{
    margin-right:5px;
}

/*----------------------------------------------*/
.how-work-section{
    padding:60px 0;
    position:relative;
}


.how-work-section .steps-wrapper {
    position: relative;
    margin: 25px 0 0;
}

.how-work-section .steps-line {
    position: absolute;
    top: 100px;
    left: 12%;
    width: 76%;
    height: 2px;
    background: #dfe3ea;
    z-index: 0;
}
section.how-work-section.trust-signals .steps-line {
    top: 50px;
}
section.how-work-section.trust-signals .step-icon {
    margin-bottom: 25px;
}
section.how-work-section.trust-signals p {
    font-size: 17px;
    font-weight: 500;
}

.how-work-section .step-card{
    position:relative;
    text-align:center;
    z-index:2;
}

.how-work-section .step-icon{
    width:100px;
    height:100px;
    margin:auto;
    border-radius:22px;
    display:flex;
    align-items:center;
    justify-content:center;
    position:relative;
    box-shadow:0 12px 25px rgba(0,0,0,0.12);
}

.how-work-section .step-icon i{
    color:#fff;
    font-size:44px;
}

.how-work-section .step-number {
    position: absolute;
    top: -12px;
    right: -12px;
    width: 42px;
    height: 42px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
    color: #1c2d4d;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.10);
}

.how-work-section .blue{
    background:linear-gradient(135deg,#3f86ff,#1149d8);
}

.how-work-section .purple{
    background:linear-gradient(135deg,#b847ff,#7800d9);
}

.how-work-section .green{
    background:linear-gradient(135deg,#0ecb51,#009635);
}

.how-work-section .orange{
    background:linear-gradient(135deg,#ff9f00,#d36b00);
}

.how-work-section .step-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #071938;
    margin-top: 35px;
    margin-bottom: 15px;
}

.how-work-section .step-card p{
    font-size:14px;
    line-height:26px;
    color:var(--text);
    max-width:360px;
    margin:auto;
}

.how-work-section .consult-btn{
    margin-top:50px;
}

.how-work-section .consult-btn .btn {
    background: #022460;
    border: none;
    padding: 12px 45px;
    font-size: 16px;
    font-weight: 700;
    border-radius: 10px;
    color: #fff;
    box-shadow: 0 12px 20px rgba(47, 102, 231, 0.25);
    transition: 0.3s;
}

.how-work-section .consult-btn .btn:hover{
    background:#1e54d3;
    transform:translateY(-3px);
}

.how-work-section .consult-btn i{
    margin-left:10px;
}

/*----------------------------------------------------------*/
.safety-section{
    padding:0 0 60px;
}
section.safety-section .section-title {
    margin: 0 0 30px;
}

.info-card{
background: #fff;
    border-radius: 26px;
    padding: 30px 30px 20px;
    height: 100%;
    border: 1px solid #ebebeb;
}

.warning-card{
    background:#fff5f5;
    border:1px solid #ffbcbc;
}

.about-card{
    background:#fafafa;
    border:1px solid #dddddd;
}

.help-card{
    background:#f3f7ff;
    border:1px solid #bdd3ff;
    margin-top:30px;
}

.card-heading {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.card-heading i {
    font-size: 20px;
}

.warning-card .card-heading i,
.warning-card .card-heading h3{
    color:#c31212;
}

.about-card .card-heading i,
.about-card .card-heading h3{
    color:#061938;
}

.help-card .card-heading i,
.help-card .card-heading h3{
    color:#1f56d9;
}

.card-heading h3 {
    font-size: 18px;
    font-weight: 800;
    margin: 0;
}

.warning-list{
    padding-left:22px;
    margin:0;
}

.warning-list li {
    color: #c31212;
    font-size: 16px;
    line-height: 26px;
    margin-bottom: 14px;
}

.about-content p, .help-card p {
    font-size: 16px;
    line-height: 26px;
    color: #4f5f77;
    margin-bottom: 18px;
}

.about-content p strong,
.help-card p strong{
    color:#061938;
}

.help-card ul{
    padding-left:22px;
    margin-bottom:0;
}

.help-card ul li{
    font-size:18px;
    line-height:1.9;
    color:#1f56d9;
    margin-bottom:10px;
}


.inner-banner {
    position: relative;
    padding: 50px 0;
    background: linear-gradient(135deg, #022460, #10498b);
    overflow: hidden;
}

.inner-banner::before{
    content:'';
    position:absolute;
    width:300px;
    height:300px;
    background:rgba(255,255,255,0.04);
    border-radius:50%;
    top:-120px;
    right:-120px;
}

.inner-banner-content{
    position:relative;
    z-index:2;
}

.inner-banner-content h1{
    color:#fff;
    font-size:48px;
    font-weight:800;
    margin-bottom:15px;
}

.breadcrumb-wrap{
    color:#cbd5e1;
    font-size:15px;
}

.breadcrumb-wrap a{
    color:#fff;
    text-decoration:none;
}

.page-content-section{
    background:#f8fafc;
}

.page-content-wrapper{
    background:#fff;
    padding:30px;
    border-radius:20px;
    box-shadow:0 10px 40px rgba(0,0,0,0.05);
}

.page-content-wrapper h2 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 5px;
    margin-top: 0px;
    color: #0f172a;
}

.page-content-wrapper h3{
    font-size:28px;
    font-weight:700;
    margin-bottom:18px;
    margin-top:30px;
    color:#0f172a;
}

.page-content-wrapper h4{
    font-size:24px;
    font-weight:600;
    margin-bottom:15px;
    margin-top:25px;
    color:#0f172a;
}

.page-content-wrapper p {
    margin-bottom: 25px;
    line-height: 28px;
}

.page-content-wrapper ul{
    padding-left:0px;
    margin-bottom:25px;
}

.page-content-wrapper ul li{
 list-style: none;
    margin: 10px 0;
	  line-height: 28px;
    background-image: url(https://www.diazepam10mg.co.uk/wp-content/uploads/2026/05/checklist.png);
    background-repeat: no-repeat;
    background-size: 17px;
    background-position: 0px 4px;
    padding-left: 24px;
}

.page-content-wrapper strong{
    color:#0f172a;
}

.page-content-wrapper a{
    color:#2563eb;
    text-decoration:none;
}

.page-content-wrapper img{
    max-width:100%;
    height:auto;
    border-radius:16px;
    margin:25px 0;
}

.page-content-wrapper table{
    width:100%;
    margin-bottom:30px;
}

.page-content-wrapper table th,
.page-content-wrapper table td{
    border:1px solid #e2e8f0;
    padding:14px;
}

.page-content-wrapper blockquote{
    border-left:4px solid #2563eb;
    padding-left:20px;
    margin:30px 0;
    font-size:20px;
    font-style:italic;
    color:#1e293b;
}

@media(max-width:991px){

    .inner-banner{
        padding:70px 0;
    }

    .inner-banner-content h1{
        font-size:36px;
    }

    .page-content-wrapper{
        padding:30px;
    }

}

@media(max-width:767px){

    .inner-banner-content h1{
        font-size:30px;
    }

    .page-content-wrapper{
        padding:25px 20px;
    }

    .page-content-wrapper h2{
        font-size:28px;
    }

    .page-content-wrapper h3{
        font-size:24px;
    }

}

.custom-breadcrumb{
    margin:0;
    padding:0;
    list-style:none;
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;
    flex-wrap:wrap;
}

.custom-breadcrumb li{
    position:relative;
    color:#cbd5e1;
    font-size:15px;
    font-weight:500;
}

.custom-breadcrumb li a{
    color:#ffffff;
    text-decoration:none;
    transition:0.3s;
}

.custom-breadcrumb li a:hover{
    color:#38bdf8;
}

.custom-breadcrumb li:not(:last-child)::after{
    content:'/';
    position:relative;
    margin-left:12px;
    color:#94a3b8;
}

.custom-breadcrumb li span{
    color:#38bdf8;
}


.single-product-main{
    background:#f8fafc;
}

.custom-breadcrumb-wrap{
    margin-bottom:40px;
}

.product-gallery-wrap,
.product-info-wrap,
.product-tab-box{
    background:#fff;
    border-radius:24px;
    padding:25px;
    box-shadow:0 10px 40px rgba(0,0,0,0.04);
}

.product-title{
    font-size:44px;
    line-height:1.2;
    font-weight:800;
    color:#0f172a;
    margin-bottom:20px;
}

.product-category{
    margin-bottom:15px;
}

.product-category a{
    background:#dbeafe;
    color:#1d4ed8;
    padding:8px 16px;
    border-radius:50px;
    text-decoration:none;
    font-size:14px;
    font-weight:600;
}

.product-rating-wrap{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:25px;
}

.rating-text{
    font-size:15px;
    color:#64748b;
}

.product-price{
    font-size:42px;
    font-weight:800;
    color:#0b5ed7;
    margin-bottom:25px;
}

.product-short-description{
    margin-bottom:30px;
}
.product-tab-box ul {
    padding: 0;
    margin-bottom: 25px;
}




.medicine-highlights{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:16px;
    margin-bottom:35px;
}

.highlight-item{
    background:#eff6ff;
    padding:15px 18px;
    border-radius:14px;
    font-weight:600;
    color:#0f172a;
    display:flex;
    align-items:center;
    gap:10px;
}

.highlight-item i{
    color:#0b5ed7;
}

.product-cart-wrap{
    margin-bottom:35px;
}

.single_add_to_cart_button{
    background:#0b5ed7 !important;
    border:none !important;
    border-radius:12px !important;
    padding:16px 30px !important;
    font-size:17px !important;
    font-weight:700 !important;
}

.qty{
    height:52px;
    border-radius:12px;
    border:1px solid #dbe2ea;
}

.secure-strip{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
    padding-top:25px;
    border-top:1px solid #e2e8f0;
}

.secure-item{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:15px;
    font-weight:600;
    color:#334155;
}

.secure-item i{
    color:#0b5ed7;
}

.trust-badges{
    margin-top:25px;
    display:flex;
    flex-wrap:wrap;
    gap:15px;
}

.trust-badge {
    background: #eff6ff;
    padding: 8px 10px;
    border-radius: 12px;
    font-size: 12px;
    font-weight: 600;
    color: #0f172a;
    display: flex;
    align-items: center;
    gap: 5px;
}

.medical-notice{
    margin-top:35px;
    background:#fff7ed;
    border:1px solid #fed7aa;
    border-radius:18px;
    padding:24px;
    display:flex;
    gap:20px;
}

.notice-icon i{
    color:#ea580c;
    font-size:28px;
}

.notice-content h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 6px;
}

.notice-content p {
    margin: 0;
    color: #7c2d12;
    font-size: 14px;
    line-height: 20px;
}

.product-tabs-wrap{
    margin-top:60px;
}

.product-tabs-wrap .nav-pills{
    gap:15px;
}

.product-tabs-wrap .nav-link {
    border-radius: 12px;
    padding: 14px 24px;
    font-weight: 700;
    color: #0f172a;
    background: #eff5fe;
}
section.product-pages-main {
    padding: 0 0 50px;
}
.product-tabs-wrap .nav-link.active{
    background:#0b5ed7;
}

.medical-notice p {
    margin: 0 !important;
}

.product-tab-box{
    margin-top:10px;
}

.product-tab-box h3{
    font-size:30px;
    font-weight:700;
    margin-bottom:20px;
}
.product-tab-box p {
    margin-bottom: 25px;
    line-height: 28px;
}
.product-tab-box li{
list-style: none;
    margin: 10px 0;
    background-image: url(https://www.diazepam10mg.co.uk/wp-content/uploads/2026/05/checklist.png);
    background-repeat: no-repeat;
    background-size: 17px;
    background-position: 0px 4px;
    padding-left: 24px;
}
@media(max-width:991px){

    .product-title{
        font-size:34px;
    }

    .medicine-highlights{
        grid-template-columns:1fr;
    }

}

@media(max-width:767px){

    .product-gallery-wrap,
    .product-info-wrap,
    .product-tab-box{
        padding:25px;
    }

    .product-title{
        font-size:28px;
    }

    .product-price{
        font-size:34px;
    }

}

.shop-page-main{
    background:#f8fafc;
}

.shop-top-header{
    background:#fff;
    border-radius:24px;
    padding:35px;
    margin-bottom:50px;
    box-shadow:0 10px 40px rgba(0,0,0,0.04);
}

.shop-title-wrap h1{
    font-size:42px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:15px;
}

.shop-title-wrap p{
    line-height:28px;
    margin:0;
}

.shop-search-filter{
    display:flex;
    gap:20px;
    align-items:center;
    justify-content:end;
    flex-wrap:wrap;
}

.search-form{
    position:relative;
    width:100%;
    max-width:380px;
}

.search-field{
    width:100%;
    height:58px;
    border-radius:14px;
    border:1px solid #dbe2ea;
    padding:0 60px 0 20px;
    font-size:15px;
}

.search-form button{
    position:absolute;
    top:0;
    right:0;
    width:58px;
    height:58px;
    border:none;
    background:#0b5ed7;
    color:#fff;
    border-radius:0 14px 14px 0;
}

.shop-sort select{
    height:58px;
    border-radius:14px;
    border:1px solid #dbe2ea;
    padding:0 18px;
    font-size:15px;
    min-width:220px;
}

.shop-sidebar{
    position:sticky;
    top:30px;
}

.sidebar-box{
    background:#fff;
    border-radius:24px;
    padding:30px;
    margin-bottom:30px;
    box-shadow:0 10px 40px rgba(0,0,0,0.04);
}

.sidebar-box h3{
    font-size:24px;
    font-weight:700;
    margin-bottom:25px;
    color:#0f172a;
}

.category-filter{
    list-style:none;
    padding:0;
    margin:0;
}

.category-filter li{
    margin-bottom:15px;
}

.category-filter li:last-child{
    margin-bottom:0;
}

.category-filter li a{
    display:flex;
    justify-content:space-between;
    align-items:center;
    text-decoration:none;
    color:#334155;
    font-weight:600;
    padding:14px 18px;
    border-radius:12px;
    background:#f8fafc;
    transition:0.3s;
}

.category-filter li a:hover{
    background:#0b5ed7;
    color:#fff;
}

.category-filter li span{
    background:#dbeafe;
    color:#1d4ed8;
    width:30px;
    height:30px;
    border-radius:50%;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:13px;
}

.trust-sidebar ul{
    list-style:none;
    padding:0;
    margin:0;
}

.trust-sidebar li{
    display:flex;
    gap:12px;
    margin-bottom:18px;
    font-weight:600;
    color:#334155;
}

.trust-sidebar li i{
    color:#0b5ed7;
}

.shop-result-bar{
    margin-bottom:30px;
}

.result-count{
    font-size:15px;
    font-weight:600;
    color:#64748b;
}

.product-card {
    position: relative;
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 0px 2px #ccc;
    transition: 0.3s;
}

.product-card:hover{
    transform:translateY(-5px);
}

.product-badge{
    position: absolute;
    top: 10px;
    left: 10px;
    background: #0b5ed7;
    color: #fff;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    z-index: 2;
}

.product-image{
    display:block;
    padding:20px;
    background:#f8fafc;
}

.product-image img{
    width:100%;
}

.product-content{
    padding:20px 15px;
}

.product-category{
    margin-bottom:15px;
}

.product-category a{
    font-size:13px;
    font-weight:700;
    color:#1d4ed8;
    text-decoration:none;
}

.product-content h3{
    font-size:20px;
    line-height:1.4;
    margin-bottom:5px;
	text-align:center;
}

.product-content h3 a {
    text-decoration: none;
    color: #0f172a;
    font-weight: 600;
}

.product-short-desc {
    font-size: 14px;
    line-height: 20px;
    margin: 5px 0 10px;
    text-align: center;
}

.product-price{
    font-size:32px;
    font-weight:800;
    color:#0b5ed7;
    margin-bottom:20px;
}

.product-trust {
    display: flex;
    gap: 5px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.product-trust span {
    background: #eff6ff;
    color: #1d4ed8;
    padding: 8px 10px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 600;
}

.product-cart-btn .button {
    width: 100%;
    border: none !important;
    background: #0b5ed7 !important;
    color: #fff !important;
    border-radius: 10px !important;
    padding: 12px 20px !important;
    font-weight: 700 !important;
    width: 100%;
    display: block;
    text-align: center;
}

.custom-pagination{
    margin-top:60px;
}

.custom-pagination .page-numbers{
    display:flex;
    justify-content:center;
    gap:10px;
    flex-wrap:wrap;
}

.custom-pagination .page-numbers li{
    list-style:none;
}

.custom-pagination .page-numbers a,
.custom-pagination .page-numbers span{
    width:48px;
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:#fff;
    border-radius:12px;
    text-decoration:none;
    color:#0f172a;
    font-weight:700;
}

.custom-pagination .page-numbers .current{
    background:#0b5ed7;
    color:#fff;
}

.home-page h2 {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 5px;
}
.home-page h3 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
    color: #2568ef;
}
.home-page p {
    margin: 0 0 25px;
}
section.faq-bg-home {
    background: #f5f8ff;
    padding: 50px 0;
}

.home-page ul li {
    list-style: none;
    margin: 10px 0;
    background-image: url(https://www.diazepam10mg.co.uk/wp-content/uploads/2026/05/checklist.png);
    background-repeat: no-repeat;
    background-size: 17px;
    background-position: 0px 4px;
    padding-left: 24px;
}
.common-txt {
    margin: 50px 0 0;
    text-align: center;
}
section.how-work-section.trust-signals {
    padding: 60px 0 40px;
}
.final-cta-section {
    margin: 0 0 60px;
}

@media(max-width:991px){

    .shop-title-wrap h1{
        font-size:34px;
    }

    .shop-search-filter{
        justify-content:start;
    }

}

@media(max-width:767px){

    .shop-top-header,
    .sidebar-box,
    .product-content{
        padding:25px;
    }

    .product-content h3{
        font-size:22px;
    }

    .product-price{
        font-size:28px;
    }

}

/* =========================
PREMIUM PURCHASE BOX
========================= */

.premium-purchase-box{
    background:#fff;
    margin-top:35px;
   
    position:relative;
    overflow:hidden;
}

/* Top Gradient Glow */
.premium-purchase-box:before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px; display:none;
    width:260px;
    height:260px;
    background:rgba(37,99,235,.06);
    border-radius:50%;
}

/* Benefits */

.purchase-benefits{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-bottom:28px;
}

.purchase-benefits span {
    background: #f3f7fd;
    color: #1e293b;
    padding: 8px 12px;
    border-radius: 10px;
    font-size: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 8px;
}

.purchase-benefits i{
    color:#2563eb;
}

/* Price Area */

.premium-price-header{
    margin-bottom:30px;
}

.price-label{
    display:block;
    color:#64748b;
    font-size:14px;
    margin-bottom:8px;
}

.premium-main-price{
    font-size:42px;
    font-weight:800;
    line-height:1;
    color:#0f172a;
}

.premium-main-price del{
    font-size:22px;
    opacity:.5;
    margin-right:10px;
}

.premium-main-price ins{
    text-decoration:none;
}
.product-pages-main td.value {
    padding: 0;
}
section.product-pages-main .single_variation_wrap {
    margin: 0;
}

.product-pages-main .woocommerce-Price-amount.amount {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 10px !important;
}

.product-pages-main table.variations {
    margin: 0;
}

/* Cart Form */

.premium-cart-form{
    margin-top:20px;
}

/* Woo Variations */

.variations{
    width:100%;
    margin-bottom:20px;
}

.variations td{
    padding-bottom:18px;
}

.variations label{
    font-size:15px;
    font-weight:700;
    color:#0f172a;
    margin-bottom:8px;
}

.variations select{
    width:100%;
    height:54px;
    border-radius:16px;
    border:1px solid #d8e1ee;
    background:#f8fbff;
    padding:0 18px;
    font-size:15px;
    transition:.3s ease;
}

.variations select:focus{
    outline:none;
    border-color:#2563eb;
    background:#fff;
    box-shadow:0 0 0 4px rgba(37,99,235,.1);
}

/* Quantity + Cart */

.single_variation_wrap{
    margin-top:25px;
}

.woocommerce-variation-add-to-cart{
    display:flex;
    align-items:center;
    gap:16px;
    flex-wrap:wrap;
}

/* Qty */

.quantity{
    margin:0 !important;
}

.quantity input{
    width:90px !important;
    height:56px;
    border-radius:16px;
    border:1px solid #dbe4f0;
    text-align:center;
    font-size:18px;
    font-weight:700;
    background:#f8fbff;
}

/* Button */

.single_add_to_cart_button{
    height:56px;
    border:none !important;
    border-radius:18px !important;
    padding:0 36px !important;
    font-size:16px !important;
    font-weight:700 !important;
    background:linear-gradient(135deg,#2563eb,#1d4ed8) !important;
    color:#fff !important;
    transition:.3s ease;
    box-shadow:0 10px 25px rgba(37,99,235,.25);
}

.single_add_to_cart_button:hover{
    transform:translateY(-2px);
    box-shadow:0 16px 30px rgba(37,99,235,.35);
}

/* Secure Strip */

.premium-secure-strip{
    margin-top:28px;
    padding-top:24px;
    border-top:1px solid #e8edf5;
    display:flex;
    flex-wrap:wrap;
    gap:16px;
}

.premium-secure-strip .secure-item{
    display:flex;
    align-items:center;
    gap:8px;
    font-size:14px;
    font-weight:600;
    color:#334155;
    background:#f8fbff;
    padding:10px 16px;
    border-radius:50px;
}

.premium-secure-strip i{
    color:#2563eb;
}

.home-page ul {
    padding: 0 !important;
    margin-bottom: 25px;
}

/*-----------START CTA-------------*/


.final-cta-section .final-cta-box {
    /* max-width: 850px; */
    margin: 0 0 25px;
    background: #ffffff;
    padding: 25px 25px;
    border-radius: 24px;
    box-shadow: 0 0px 1px #89aeef;
    position: relative;
    overflow: hidden;
}

.final-cta-section .final-cta-box::before {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    background: rgba(0, 102, 255, 0.05);
    border-radius: 50%;
    top: -60px;
    right: -60px;
}



.final-cta-section .cta-icon
 {
    width: 35px;
    height: 35px;
    margin: 0 0;
    background: linear-gradient(135deg, #022460, #0166c9);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    position: relative;
    z-index: 2;
    line-height: 46px;
}

.final-cta-box-intro {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 10px;
}

.final-cta-section .final-cta-box h2 {
    line-height: 26px;
    font-size: 24px;
    font-weight: 700;
    color: #0d1b2a;
    margin-bottom: 5px;
    position: relative;
    z-index: 2;
}

.final-cta-section .cta-subtitle {
    font-size: 18px;
    font-weight: 600;
    color: #0066ff;
    margin-bottom: 0px;
    position: relative;
    z-index: 2;
}

.final-cta-section .cta-description {
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
}

.final-cta-section .cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #022460, #022460);
    color: #fff;
    padding: 12px 34px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    transition: 0.3s ease;
    position: relative;
    z-index: 2;
}

.final-cta-section .cta-btn:hover {
    transform: translateY(-3px);
    color: #fff;
    box-shadow: 0 18px 35px rgba(0, 102, 255, 0.35);
}



/*-----------END CTA-------------*/

/* Sticky Desktop */

@media(min-width:992px){

    .product-info-wrap{
        position:sticky;
        top:120px;
    }

}

/* Mobile */

@media(max-width:767px){

    .premium-purchase-box{
        padding:22px;
    }

    .premium-main-price{
        font-size:34px;
    }

    .woocommerce-variation-add-to-cart{
        flex-direction:column;
        align-items:stretch;
    }

    .single_add_to_cart_button{
        width:100%;
    }

    .quantity input{
        width:100% !important;
    }

}

/* Hide single variation rows */

.variations tr{
    display:flex;
    flex-direction:column;
    margin-bottom:18px;
}

.variations select{
    display:none !important;
}

.reset_variations{
    display:none !important;
}

/* Hide rows having only one option */

.single-option-hidden{
    display:none !important;
}

/* =========================================
PREMIUM VARIATION BUTTONS
========================================= */

.premium-variation-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-top:10px;
}

/* Tablet Buttons */

.variation-btn{
    min-width:120px;
    height:58px;
    border-radius:18px;
    border:1px solid #dbe4f0;
    background:#fff;
    font-size:18px;
    font-weight:700;
    color:#0f172a;
    transition:.3s ease;
    position:relative;
    padding:0 20px;
}

/* Hover */

.variation-btn:hover{
    transform:translateY(-2px);
    border-color:#2563eb;
    box-shadow:0 10px 25px rgba(37,99,235,.12);
}

/* Active */

.variation-btn.active{
    background:linear-gradient(135deg,#2563eb,#1d4ed8);
    color:#fff;
    border-color:#2563eb;
    box-shadow:0 14px 28px rgba(37,99,235,.25);
}

/* Optional Savings Badge */

.variation-btn.active:after{
    content:"Selected";
    position:absolute;
    top:-10px;
    right:-8px;
    background:#16a34a;
    color:#fff;
    font-size:11px;
    font-weight:700;
    padding:4px 8px;
    border-radius:30px;
}

/* Labels */

.variations label{
    font-size:18px;
    font-weight:800;
    margin-bottom:16px;
    display:block;
    color:#0f172a;
}

/* Better spacing */

.variations td{
    padding-bottom:28px;
}

/* Mobile */

@media(max-width:767px){

    .variation-btn{
        width:100%;
        min-width:unset;
        font-size:16px;
        height:54px;
    }

}

/* Dynamic Price Animation */

.dynamic-product-price{
    transition:.3s ease;
    display:inline-block;
}

/* Animation Effect */

.dynamic-product-price.price-updated{
    transform:scale(1.05);
    color:#2563eb;
}

/* Woo Price */

.dynamic-product-price .woocommerce-Price-amount{
    font-size:inherit;
    font-weight:inherit;
}

/* Sale Price */

.dynamic-product-price del{
    opacity:.45;
    margin-right:12px;
    font-size:.6em;
}

.dynamic-product-price ins{
    text-decoration:none;
}

/* =====================================================
PREMIUM CART PAGE
===================================================== */

.premium-cart-page{
    background:#f8fbff;
}

/* Layout */

.woocommerce-cart .woocommerce{
    display:flex;
    gap:40px;
    align-items:flex-start;
    flex-wrap:wrap;
}

/* Left Area */

.woocommerce-cart-form{
    flex:1;
    background:#fff;
    border-radius:28px;
    padding:35px;
    border:1px solid #e7edf5;
    box-shadow:0 10px 40px rgba(15,23,42,.05);
}

/* Right Area */

.cart-collaterals{
    width:420px;
}

.cart_totals{
    width:100% !important;
    background:#fff;
    border-radius:28px;
    padding:35px;
    border:1px solid #e7edf5;
    box-shadow:0 10px 40px rgba(15,23,42,.05);
    position:sticky;
    top:120px;
}

/* Hide Table Borders */

.shop_table{
    border:none !important;
}

.shop_table th,
.shop_table td{
    border:none !important;
    background:none !important;
}

/* Product Row */

.shop_table tbody tr{
    border-bottom:1px solid #eef2f7;
}

/* Product Image */

.product-thumbnail img{
    width:90px !important;
    border-radius:18px; height:auto;
    background:#f8fbff;
    padding:10px;
}

/* Product Name */

.product-name a{
    font-size:22px;
    font-weight:700;
    color:#0f172a;
    text-decoration:none;
}

/* Variation */

.variation{
    margin-top:0px;
}

.variation dt,
.variation dd{
    font-size:14px;
    color:#64748b; margin:0;
}
.variation dd p{ margin:0}

/* Price */

.product-price,
.product-subtotal{
    font-size:22px;
    font-weight:800;
    color:#0f172a;
}

/* Quantity */

.quantity{
    display:flex;
    align-items:center;
    width:140px;
    height:54px;
    border-radius:16px;
    overflow:hidden;
    border:1px solid #dbe4f0;
    background:#f8fbff;
}

.quantity button{
    width:40px;
    height:54px;
    border:none;
    background:none;
    font-size:22px;
    font-weight:700;
    color:#0f172a;
}

.quantity input{
    border:none !important;
    background:none !important;
    text-align:center;
    font-size:18px;
    font-weight:700;
}

/* Remove */

.product-remove a{
    width:42px;
    height:42px;
    border-radius:50%;
    background:#fff1f2;
    display:flex !important;
    align-items:center;
    justify-content:center;
    color:#ef4444 !important;
    transition:.3s;
}

.product-remove a:hover{
    background:#ef4444;
    color:#fff !important;
}

/* Totals */

.cart_totals h2{
    font-size:28px;
    font-weight:800;
    margin-bottom:25px;
}

/* Total Amount */

.order-total td{
    font-size:34px;
    font-weight:800;
    color:#0f172a;
}

/* Checkout Button */

.checkout-button{
    width:100%;
    height:60px;
    border-radius:18px !important;
    background:linear-gradient(135deg,#2563eb,#1d4ed8) !important;
    color:#fff !important;
    font-size:18px !important;
    font-weight:700 !important;
    display:flex !important;
    align-items:center;
    justify-content:center;
    transition:.3s;
    box-shadow:0 12px 30px rgba(37,99,235,.25);
}

.checkout-button:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 35px rgba(37,99,235,.35);
}

/* Coupon */

.coupon{
    margin-top:20px;
}

.coupon input{
    height:52px;
    border-radius:14px;
    border:1px solid #dbe4f0;
    padding:0 18px;
}

/* Secure Badge */

.cart-secure-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    padding:12px 18px;
    border-radius:50px;
    background:rgba(255,255,255,.12);
    color:#fff;
    font-weight:700;
    margin-bottom:20px;
}

.cart-banner-text{
    color:#dbeafe;
    margin-top:15px;
    font-size:17px;
}

/* Trust Box */

.cart-trust-box{
    margin-top:30px;
    padding-top:25px;
    border-top:1px solid #eef2f7;
}

.cart-trust-item{
    display:flex;
    align-items:center;
    gap:12px;
    font-weight:600;
    color:#334155;
}

.cart-trust-item i{
    width:42px;
    height:42px;
    border-radius:14px;
    background:#eff6ff;
    color:#2563eb;
    display:flex;
    align-items:center;
    justify-content:center;
}

/* Hide Coupon Toggle */

.woocommerce-form-coupon-toggle{
    display:none;
}

/* Mobile */

@media(max-width:991px){

    .woocommerce-cart .woocommerce{
        flex-direction:column;
    }

    .cart-collaterals{
        width:100%;
    }

    .cart_totals{
        position:relative;
        top:0;
    }

}

@media(max-width:767px){

    .woocommerce-cart-form,
    .cart_totals{
        padding:22px;
        border-radius:22px;
    }

    .product-name a{
        font-size:18px;
    }

    .order-total td{
        font-size:28px;
    }

}

/* =========================================
CART PAGE FINAL ORGANIZATION
========================================= */

/* Better overall spacing */

.shop_table.cart{
    margin:0;
}

/* Header alignment */

.shop_table thead th{
    font-size:16px;
    font-weight:700;
    color:#0f172a;
    padding-bottom:0px !important;
}

/* Product row spacing */

.shop_table.cart tbody tr.cart_item td{
    vertical-align:middle;
    padding-top:30px !important;
    padding-bottom:30px !important;
}

/* Remove icon spacing */

.product-remove{
    width:70px;
    text-align:center;
}

/* Product image area */

.product-thumbnail{
    width:130px;
}

/* Product details */

.product-name{
    width:40%;
}

/* Product title */

.product-name a{
    display:block;
    margin-bottom:14px;
    line-height:1.3;
}



/* Better price alignment */

.product-price,
.product-subtotal{
    text-align:center;
    min-width:140px;
}

/* Quantity alignment */

.product-quantity{
    min-width:150px;
    text-align:center;
}

/* Quantity box center */

.quantity{
    margin:auto;
}

/* Coupon + update area */

.actions{
    padding-top:0px !important;
}

/* Better coupon layout */

.coupon{
    display:flex;
    gap:16px;
    align-items:center;
    flex-wrap:wrap; width:auto; float:left; margin:10px 0;
}

/* Coupon field */

.coupon input{
    width:260px !important;
    background:#f8fbff;
}

/* Coupon button */

.coupon button{
    height:52px;
    padding:0 24px !important;
    border-radius:14px !important;
    border:none !important;
    background:#0f172a !important;
    color:#fff !important;
    font-weight:700 !important;
}

/* Update button */

button[name="update_cart"]{
    height:52px;
    padding:0 24px !important;
    border-radius:14px !important;
    border:none !important;
    background:#2563eb !important;
    color:#fff !important;
    font-weight:700 !important; width:auto; float:right; margin:10px 0;
}

/* Summary rows */

.cart_totals table tr{
    display:flex;
    justify-content:space-between;
    align-items:flex-start;
    gap:15px;
    padding:18px 0;
    border-bottom:1px solid #eef2f7;
}

/* Shipping text */

.shipping td{
    text-align:right;
    max-width:220px;
    font-size:14px;
    color:#475569;
}

/* Total section */

.order-total th{
    font-size:22px;
    font-weight:800;
}

.order-total td{
    font-size:42px;
    line-height:1;
}

/* Checkout spacing */

.wc-proceed-to-checkout{
    padding-top:25px !important;
    padding-bottom:10px !important;
}

/* Trust section spacing */

.cart-trust-box{
    margin-top:20px;
}

/* Better trust icons */

.cart-trust-item{
    padding:10px 0;
}

/* Hover effect */

.cart-trust-item i{
    transition:.3s ease;
}

.cart-trust-item:hover i{
    transform:translateY(-2px);
    background:#2563eb;
    color:#fff;
}

/* Better mobile structure */

@media(max-width:991px){

    .shop_table.cart tbody tr.cart_item{
        display:flex;
        flex-wrap:wrap;
    }

    .product-name{
        width:auto;
    }

}

/* Mobile cleanup */

@media(max-width:767px){

    .shop_table thead{
        display:none;
    }

    .shop_table.cart tbody tr.cart_item{
        display:block;
        position:relative;
    }

    .product-remove{
        position:absolute;
        top:15px;
        right:0;
    }

    .product-thumbnail{
        width:100%;
        margin-bottom:20px;
    }

    .product-price,
    .product-quantity,
    .product-subtotal{
        text-align:left;
        margin-top:20px;
    }

    .coupon{
        flex-direction:column;
        align-items:stretch;
    }

    .coupon input,
    .coupon button,
    button[name="update_cart"]{
        width:100% !important;
    }

}

/* =========================================
PREMIUM CHECKOUT PAGE
========================================= */

.premium-checkout-page{
    background:#f8fbff;
}

/* Layout */

.woocommerce-checkout .woocommerce{
    display:grid;
    gap:40px;
    align-items:start;
}

/* Left Checkout Form */

.woocommerce-checkout form.checkout{
}

/* Right Summary */

#order_review{
    background:#fff;
    border-radius:30px;
    padding:35px;
    border:1px solid #e7edf5;
    box-shadow:0 10px 40px rgba(15,23,42,.05);
    position:sticky;
    top:120px;
}

/* Headings */

.woocommerce-checkout h3{
    font-size:28px;
    font-weight:800;
    margin-bottom:25px;
    color:#0f172a;
}

/* Labels */

.woocommerce-checkout label{
    font-size:15px;
    font-weight:700;
    color:#334155;
    margin-bottom:10px;
}

/* Inputs */

.woocommerce-checkout input,
.woocommerce-checkout select,
.woocommerce-checkout textarea{
    height:auto;
    border-radius:16px !important;
    border:1px solid #dbe4f0 !important;
    background:#f8fbff !important;
    padding:0 18px !important;
    font-size:15px;
    transition:.3s ease;
}

/* Textarea */

.woocommerce-checkout textarea{
    height:140px !important;
    padding-top:18px !important;
}

/* Focus */

.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus{
    border-color:#2563eb !important;
    background:#fff !important;
    box-shadow:0 0 0 4px rgba(37,99,235,.08);
}
.wc_payment_methods{ padding:0; list-style:none;}
.wc_payment_method label{ margin:0 !important}

/* Order Summary Table */

.shop_table{
    border:none !important;
}

.shop_table th,
.shop_table td{
    border:none !important;
    background:none !important;
    padding:16px 0 !important;
}

/* Product Rows */

.cart_item{
    border-bottom:1px solid #eef2f7;
}

/* Total */

.order-total td{
    font-size:36px;
    font-weight:800;
    color:#0f172a;
}

/* Payment Box */

.wc_payment_methods{
    margin-top:25px !important;
}

.wc_payment_method{
    background:#f8fbff;
    border-radius:18px;
    padding:18px;
    margin-bottom:15px;
    border:1px solid #e7edf5;
}

/* Place Order Button */

#place_order{
    width:100%;
    height:62px;
    border:none !important;
    border-radius:18px !important;
    background:linear-gradient(135deg,#2563eb,#1d4ed8) !important;
    color:#fff !important;
    font-size:18px !important;
    font-weight:700 !important;
    box-shadow:0 14px 30px rgba(37,99,235,.25);
    transition:.3s ease;
}

#place_order:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 35px rgba(37,99,235,.35);
}

/* Privacy */

.woocommerce-privacy-policy-text{
    margin-top:20px;
    font-size:14px;
    color:#64748b;
}

/* Mobile */

@media(max-width:991px){

    .woocommerce-checkout .woocommerce{
        grid-template-columns:1fr;
    }

    #order_review{
        position:relative;
        top:0;
    }

}

@media(max-width:767px){

    .woocommerce-checkout form.checkout,
    #order_review{
        padding:22px;
        border-radius:22px;
    }

}

/* =========================================
FINAL CHECKOUT LAYOUT FIX
========================================= */

/* Main Checkout Form Layout */

form.checkout.woocommerce-checkout{
    display:grid;
    grid-template-columns:minmax(0,1fr) 420px;
    gap:40px;
    align-items:start;
}

/* Left Column */

.col2-set {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #e7edf5;
    box-shadow: 0 10px 40px rgba(15, 23, 42, .05);
}

/* Right Column */

#order_review_heading{
    display:none;
}

#order_review {
    width: 100%;
    background: #fff;
    border-radius: 20px;
    padding: 25px;
    border: 1px solid #e7edf5;
    box-shadow: 0 10px 40px rgba(15, 23, 42, .05);
    position: sticky;
    top: 120px;
}

/* Billing Heading */

.woocommerce-billing-fields h3 {
    font-size: 29px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #0f172a;
}

/* Inputs */

.woocommerce-checkout input.input-text,
.woocommerce-checkout select,
.woocommerce-checkout textarea{
    width:100%;
    height:50px;
    border-radius:16px !important;
    border:1px solid #dbe4f0 !important;
    background:#f8fbff !important;
    padding:0 18px !important;
    font-size:15px;
    transition:.3s ease;
}
.select2-container--default .select2-selection--single{ height:50px; padding:12px 0 0 10px; font-size:15px;     border-radius:16px !important;
    border:1px solid #dbe4f0 !important; background:#f8fbff !important; }
.select2-container--default .select2-selection--single .select2-selection__arrow{ top:12px; right:10px;}
/* Textarea */
.ship-to-different-address label input{ height:auto;}
.woocommerce-checkout textarea{
    height:140px !important;
    padding-top:18px !important;
}

/* Focus */

.woocommerce-checkout input:focus,
.woocommerce-checkout select:focus,
.woocommerce-checkout textarea:focus{
    border-color:#2563eb !important;
    background:#fff !important;
    box-shadow:0 0 0 4px rgba(37,99,235,.08);
}

/* Labels */

.woocommerce-checkout label{
    font-size:15px;
    font-weight:700;
    color:#334155;
    margin-bottom:10px;
}

/* Field Spacing */

.woocommerce-checkout .form-row{
    margin-bottom:15px !important; flex:0 0 48%;
}

/* Order Summary Title */

#order_review:before {
    content: "Order Summary";
    display: block;
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 15px;
}

/* Order Table */

.woocommerce-checkout-review-order-table {
    border: none !important;
    width: 100%;
}

.woocommerce-checkout-review-order-table th,
.woocommerce-checkout-review-order-table td{
    border:none !important;
    background:none !important;
    padding:6px 0 !important;
}
ul.woocommerce-shipping-methods{ margin:0; padding:0; list-style:none; text-align:left}

/* Product Row */

.cart_item{
    border-bottom:1px solid #eef2f7;
}

/* Total */

.order-total td{
    font-size:40px;
    font-weight:800;
    color:#0f172a;
}

/* Payment Methods */

.wc_payment_methods{
    margin-top:30px !important;
}

.wc_payment_method{
    background:#f8fbff;
    border:1px solid #e7edf5;
    border-radius:18px;
    padding:18px;
    margin-bottom:16px;
}

/* Payment Text */

.payment_box{
    background:#fff !important;
    border-radius:14px;
    margin-top:14px !important;
}

/* Place Order Button */

#place_order{
    width:100%;
    height:62px;
    border:none !important;
    border-radius:18px !important;
    background:linear-gradient(135deg,#2563eb,#1d4ed8) !important;
    color:#fff !important;
    font-size:18px !important;
    font-weight:700 !important;
    box-shadow:0 14px 30px rgba(37,99,235,.25);
    transition:.3s ease;
}

#place_order:hover{
    transform:translateY(-2px);
    box-shadow:0 18px 35px rgba(37,99,235,.35);
}

/* Privacy Text */

.woocommerce-privacy-policy-text{
    font-size:14px;
    color:#64748b;
    margin-top:18px;
}

/* Coupon */

.woocommerce-form-coupon-toggle{
    margin-bottom:30px;
}

.checkout_coupon{
    background:#fff;
    border-radius:24px;
    padding:25px;
    margin-bottom:30px !important;
    border:1px solid #e7edf5;
}

/* Mobile */

@media(max-width:991px){

    form.checkout.woocommerce-checkout{
        grid-template-columns:1fr;
    }

    #order_review{
        position:relative;
        top:0;
    }

}

@media(max-width:767px){
	.woocommerce-checkout .form-row{ flex:0 0 100%}
    .col2-set,
    #order_review{
        padding:22px;
        border-radius:22px;
    }

    .woocommerce-billing-fields h3{
        font-size:30px;
    }

}

.woocommerce-checkout .col-1, .woocommerce-checkout .col-2{ width:100%;}
.woocommerce-checkout .col-1 .woocommerce-billing-fields__field-wrapper{ display:flex; flex-flow:row wrap; justify-content:space-between; width:100%;}

/* =========================================
PREMIUM THANK YOU PAGE
========================================= */

.woocommerce-order{
    max-width:1100px;
    margin:auto;
}

/* Main Success Box */

.woocommerce-order{
    background:#fff;
    border-radius:32px;
    padding:50px;
    border:1px solid #e7edf5;
    box-shadow:0 10px 40px rgba(15,23,42,.05);
    position:relative;
    overflow:hidden;
}

/* Glow Effect */

.woocommerce-order:before{
    content:"";
    position:absolute;
    top:-120px;
    right:-120px;
    width:260px;
    height:260px;
    background:rgba(37,99,235,.05);
    border-radius:50%;
}

/* Thank You Title */

.woocommerce-order h2:first-child,
.woocommerce-order h1{
    font-size:52px;
    font-weight:800;
    color:#0f172a;
    margin-bottom:18px;
    line-height:1.1;
}

/* Order Number */

.woocommerce-order p{
    font-size:17px;
    color:#475569;
    line-height:1.8;
}

/* Success Notice */

.woocommerce-thankyou-order-received{
    background:#eff6ff;
    border:1px solid #bfdbfe;
    padding:18px 24px;
    border-radius:18px;
    color:#1d4ed8;
    font-weight:700;
    margin-bottom:35px;
}

/* Section Titles */

.woocommerce-order h2{
    font-size:34px;
    font-weight:800;
    color:#0f172a;
    margin-top:45px;
    margin-bottom:25px;
}

/* Tables */

.woocommerce-order table{
    border:none !important;
    margin-top:20px;
}

.woocommerce-order table th,
.woocommerce-order table td{
    border:none !important;
    padding:18px 20px !important;
    background:none !important;
}

/* Table Rows */

.woocommerce-order table tbody tr{
    border-bottom:1px solid #eef2f7;
}

/* Product Name */

.product-name{
    font-weight:700;
    color:#0f172a;
}

/* Total */

.order-total td,
.order-total th{
    font-size:24px;
    font-weight:800;
    color:#0f172a;
}

/* Bank Transfer Box */

.wc-bacs-bank-details{
    background:#f8fbff;
    border-radius:24px;
    padding:30px;
    margin-top:30px;
    border:1px solid #dbeafe;
}

/* Bank Details Title */

.wc-bacs-bank-details-heading{
    font-size:28px;
    font-weight:800;
    margin-bottom:20px;
    color:#0f172a;
}

/* Important Text */

.woocommerce-order strong{
    color:#0f172a;
}

/* Red Alert Text */

.woocommerce-order p strong{
    color:#dc2626;
}

/* Support Box */

.customer-support-box{
    margin-top:40px;
    background:#f8fbff;
    border-radius:24px;
    padding:28px;
    border:1px solid #e7edf5;
}

/* Support Heading */

.customer-support-box h3{
    font-size:26px;
    font-weight:800;
    margin-bottom:14px;
    color:#0f172a;
}

/* Trust Badges */

.order-trust-strip{
    display:flex;
    gap:18px;
    flex-wrap:wrap;
    margin-top:40px;
}

.order-trust-item{
    background:#f8fbff;
    border:1px solid #e7edf5;
    border-radius:50px;
    padding:12px 18px;
    font-size:14px;
    font-weight:700;
    color:#334155;
    display:flex;
    align-items:center;
    gap:10px;
}

.order-trust-item i{
    color:#2563eb;
}

/* Mobile */

@media(max-width:767px){

    .woocommerce-order{
        padding:28px;
        border-radius:24px;
    }

    .woocommerce-order h1,
    .woocommerce-order h2:first-child{
        font-size:38px;
    }

    .woocommerce-order h2{
        font-size:28px;
    }

}


/* =========================================
SHOP SEO SECTION
========================================= */

.shop-seo-section{
    padding-top:80px;
}

.shop-seo-wrapper{
    background:#fff;
    border-radius:32px;
    padding:30px;
    border:1px solid #e7edf5;
    box-shadow:0 10px 40px rgba(15,23,42,.05);
}

/* Top */

.seo-mini-title {
    display: inline-flex;
    align-items: center;
    padding: 6px 18px;
    border-radius: 50px;
    background: #eff6ff;
    color: #2563eb;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 12px;
}

.shop-seo-top h2 {
    font-size: 28px;
    font-weight: 700;
    /* color: #0f172a; */
    margin-bottom: 5px;
}

.shop-seo-top p {
    font-size: 16px;
    line-height: 28px;
    margin-bottom: 25px;
}

.shop-seo-top ul {
    padding: 0;
    margin-bottom: 25px;
}

.single-product-main.product-dels-page {
    background: linear-gradient(135deg, #022460, #10498b);
    padding: 10px 0;
    margin-bottom: 30px;
}

.single-product-main.product-dels-page .custom-breadcrumb-wrap{
	margin-bottom:0;
}

.shop-seo-top ul li {
    list-style: none;
    margin: 10px 0;
    background-image: url(https://www.diazepam10mg.co.uk/wp-content/uploads/2026/05/checklist.png);
    background-repeat: no-repeat;
    background-size: 17px;
    background-position: 0px 4px;
    padding-left: 24px;
}

/* Grid */

.seo-content-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:30px;
    margin:50px 0;
}

.seo-content-box {
    background: #f8fbff;
    border-radius: 24px;
    padding: 35px 35px 10px;
    border: 1px solid #e7edf5;
}

.seo-content-box h2{
    font-size:28px;
    font-weight:800;
    margin-bottom:20px;
    color:#0f172a;
}
span.shop-mini-badge {
    background: #0b5ed7;
    font-size: 12px;
    padding: 4px 12px;
    border-radius: 50px;
    color: #fff;
    margin-bottom: 5px;
    display: inline-block;
}

.seo-content-box ul{
    margin-top:20px;
    padding-left:0px;
}
.medical-notice h2 {
    color: #9a3412;
}
.seo-content-box li{
    margin-bottom:12px;
 
}

/* FAQ */

.shop-faq-wrap{
    margin-top:70px;
}

.shop-faq-wrap h2{
    font-size:38px;
    font-weight:800;
    margin-bottom:35px;
    color:#0f172a;
}

.faq-item{
    border:1px solid #e7edf5;
    border-radius:20px;
    margin-bottom:18px;
    overflow:hidden;
}

.faq-question{
    width:100%;
    border:none;
    background:#fff;
    padding:24px;
    text-align:left;
    font-size:18px;
    font-weight:700;
    color:#0f172a;
}

.faq-answer{
    display:none;
    padding:0 24px 24px;
}

.faq-answer p{
    color:#475569;
    line-height:1.8;
}

/* Disclaimer */

.medical-disclaimer-box{
    margin-top:60px;
    background:#fff7ed;
    border:1px solid #fed7aa;
    border-radius:24px;
    padding:30px;
    display:flex;
    gap:20px;
}

.disclaimer-icon{
    font-size:28px;
    color:#ea580c;
}

.disclaimer-content h4{
    font-size:24px;
    font-weight:800;
    margin-bottom:12px;
    color:#9a3412;
}

.disclaimer-content p{
    color:#7c2d12;
    line-height:1.8;
}
.product-tab-box h2 {
    font-size: 28px;
    font-weight: 700;
    margin: 0 0 5px;
}

.product-tab-box h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 0 0 5px;
	color:#0b5ed7;
}
.header-cart {
    background: #eff5fe;
    height: 50px;
    width: 50px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.header-cart span {
    position: absolute;
    background: #0d6efd;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    display: inline-block;
    text-align: center;
    line-height: 15px;
    font-size: 11px;
    color: #fff;
    right: 6px;
}

td.product-total {
    text-align: end;
}
tr.cart-subtotal td {
    text-align: end;
}
ul#shipping_method {
    text-align: end;
}

tr.order-total td {
    text-align: end;
}

/* Mobile */

@media(max-width:991px){

    .seo-content-grid{
        grid-template-columns:1fr;
    }

}

@media(max-width:767px){

    .shop-seo-wrapper{
        padding:30px;
        border-radius:24px;
    }

    .shop-seo-top h2,
    .shop-faq-wrap h2{
        font-size:30px;
    }

    .medical-disclaimer-box{
        flex-direction:column;
    }

}

/* PREMIUM WOOCOMMERCE CART NOTICE */
.woocommerce-notices-wrapper {
    width: 100%;
    margin-bottom: 30px;
}

.woocommerce-message,
.woocommerce-error,
.woocommerce-info {
    position: relative;
    background: #ffffff;
    border: none;
    border-left: 4px solid #0d6efd;
    padding: 18px 22px 18px 60px;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    font-size: 15px;
    font-weight: 500;
    color: #1d2433;
    overflow: hidden;
    animation: smoothFade .4s ease;
}

/* Success Icon */
.woocommerce-message::before {
    content: "✓";
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: #e8f5ee;
    color: #28a745;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
}

/* Undo Link */
.woocommerce-message .restore-item,
.woocommerce-message a {
    color: #0d6efd;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.woocommerce-message a:hover {
    color: #000;
}

/* Remove default WooCommerce icon */
.woocommerce-message::after {
    display: none;
}
section.shop-page-main.section-padding.inner-banner {
    background: linear-gradient(135deg, #022460, #10498b);
    padding: 10px 0;
    margin-bottom: 30px;
}

/* Animation */
@keyframes smoothFade {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Mobile */
@media(max-width:767px){

    .woocommerce-message,
    .woocommerce-error,
    .woocommerce-info{
        padding: 16px 16px 16px 50px;
        font-size: 14px;
        border-radius: 12px;
    }

    .woocommerce-message::before{
        left: 16px;
        width: 24px;
        height: 24px;
        font-size: 12px;
    }
}

.doctor-review-section{
    background:#f8fafc;
}

.doctor-review-card{
    background:#ffffff;
    border:1px solid #e5e7eb;
    border-radius:20px;
    padding:30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
    box-shadow:0 10px 35px rgba(0,0,0,0.06);
    transition:0.3s ease;
    position:relative;
    overflow:hidden;
}

.doctor-review-card::before{
    content:"";
    position:absolute;
    top:0;
    left:0;
    width:6px;
    height:100%;
    background:linear-gradient(to bottom,#0d6efd,#00c6ff);
}

.doctor-review-card:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 45px rgba(0,0,0,0.1);
}

.doctor-review-left{
    display:flex;
    align-items:center;
    gap:20px;
}

.doctor-icon{
    width:75px;
    height:75px;
    min-width:75px;
    border-radius:50%;
    background:linear-gradient(135deg,#0d6efd,#00c6ff);
    display:flex;
    align-items:center;
    justify-content:center;
    color:#fff;
    font-size:32px;
    box-shadow:0 8px 25px rgba(13,110,253,0.3);
}

.reviewed-label{
    display:inline-flex;
    align-items:center;
    gap:8px;
    background:#eef6ff;
    color:#0d6efd;
    font-size:13px;
    font-weight:600;
    padding:7px 14px;
    border-radius:50px;
    margin-bottom:12px;
}

.doctor-info h3{
    font-size:28px;
    font-weight:700;
    margin-bottom:8px;
    color:#111827;
}

.doctor-info p{
    margin:0;
    color:#6b7280;
    font-size:16px;
    display:flex;
    align-items:center;
    gap:8px;
}

.doctor-info p i{
    color:#ef4444;
}

.verified-badges{
    display:inline-flex;
    align-items:center;
    gap:10px;
    background:#ecfdf5;
    color:#059669;
    border:1px solid #a7f3d0;
    padding:12px 18px;
    border-radius:12px;
    font-weight:600;
    font-size:15px;
}

.verified-badges i{
    font-size:18px;
}

@media(max-width:767px){

    .doctor-review-card{
        flex-direction:column;
        align-items:flex-start;
        padding:25px 20px;
    }

    .doctor-review-left{
        align-items:flex-start;
    }

    .doctor-info h3{
        font-size:22px;
    }

    .doctor-icon{
        width:65px;
        height:65px;
        min-width:65px;
        font-size:28px;
    }

}


.product-extra-info{
    margin-top:30px;
}

.trust-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-bottom:25px;
}

.product-pages-main .trust-card{
    background:#fff;
    border-radius:18px;
    padding:20px 15px;
    text-align:center;
    border:1px solid #edf2f7;
    transition:0.3s ease;
    box-shadow:0 8px 25px rgba(0,0,0,0.04);
}

.product-pages-main .trust-card:hover{
    transform:translateY(-4px);
}

.product-pages-main .trust-card i{
    font-size:34px;
    color:#2563eb;
    margin-bottom:15px;
}
.product-gallery-wrap{ text-align:center}
.product-gallery-wrap img{ max-width:100%;height:auto;}
.product-pages-main .trust-card h4{
    font-size:18px;
    margin-bottom:8px;
    font-weight:700;
}

.product-pages-main .trust-card p{
    color:#64748b;
    margin:0;
    font-size:14px;
}

.delivery-box,
.faq-box{
    background:#fff;
    border-radius:22px;
    padding:20px;
    margin-bottom:25px;
    box-shadow:0 8px 25px rgba(0,0,0,0.04);
}

.delivery-box h3,
.faq-box h3{
    font-size:24px;
    margin-bottom:20px;
    font-weight:700;
}

.delivery-box ul{
    padding-left:18px;
}

.delivery-box ul li{
    margin-bottom:12px;
    color:#475569;
}

.accordion-item{
    border:none;
    border-bottom:1px solid #e2e8f0;
}

.accordion-button{
    font-weight:600;
    box-shadow:none !important;
    padding-left:0;
}

.accordion-button:not(.collapsed){
    background:none;
    color:#2563eb;
}

.accordion-body{
    padding-left:0;
    color:#64748b;
}

@media(max-width:767px){

    .trust-grid{
        grid-template-columns:1fr;
    }

}

.medical-form-wrapper{ border-radius:20px; border:solid 1px #ccc; padding:20px; margin:20px 0 50px;
    }
.wpcf7-spinner{ display:none;}
.medical-form-wrapper p{ margin:0}
.medical-form-header{
    margin-bottom:20px;
}

.medical-form-header h3{
    font-size:32px;
    font-weight:700;
    color:#022460;
    margin:0 0 12px; text-align:center;
}

.medical-form-header p{
    color:#64748b;
    line-height:1.8; text-align:center;
    margin:0;
}

.medical-form-wrapper label{
    display:block;
    margin-bottom:10px;
    font-size:15px;
    font-weight:600;
    color:#1e293b;
}

.medical-input{
    width:100%;
    border:1px solid #dbe4ee;
    background:#f8fafc; height:60px;
    border-radius:16px;
    padding:10px 18px;
    font-size:16px;
    transition:0.3s ease;
    outline:none;
}

.medical-input:focus{
    border-color:#2563eb;
    background:#fff;
    box-shadow:0 0 0 4px rgba(37,99,235,0.08);
}

textarea.medical-input{
    height:100px;
    resize:none;
}

.medical-consent-box{
    background:#f8fafc;
    border:1px solid #e2e8f0;
    border-radius:18px;
    padding:20px;
    font-size:14px;
    color:#475569;
    line-height:1.7;
}

.medical-consent-box input{
    margin-right:10px;
}

.medical-submit-btn{
    width:100%;
    border:none;
    background:linear-gradient(135deg,#2563eb,#3b82f6);
    color:#fff !important;
    padding:18px 22px;
    border-radius:16px;
    font-size:17px;
    font-weight:600;
    cursor:pointer;
    transition:0.3s ease;
}

.medical-submit-btn:hover{
    transform:translateY(-2px);
    box-shadow:0 12px 35px rgba(37,99,235,0.25);
}

.wpcf7-spinner{
    margin-top:15px;
}

@media(max-width:767px){

    .medical-form-wrapper{
        padding:28px;
    }

    .medical-form-header h3{
        font-size:28px;
    }

}




.blog_bnr{ padding:25px 0; }
.top_banner.blog_bnr figure img{ max-height:480px; }
.blog_dtls p img{ width:100%; height:auto; border-radius:40px; }

.blog_dtls{ width:100%; float: left; padding: 60px 0;}
.side_nav{ width:100%; float: left; position: sticky; top: 100px; max-height: 100vh;  z-index: 5    }
.side_nav h3{ color:var(--primary-color); font-size:24px; font-weight:600; margin:0 0 15px; }
.toc_link_area{width:100%; float: left;background: #f4f4f8; padding: 20px; border-radius: 30px; margin: 0 0 25px}

.share_blog{  margin: 0px 0; display:flex; }
.share_blog  a{ color:#000; margin:5px 10px  }

.blog_content{ padding-left:40px; }
.blog_content h2{ font-size:28px; margin:40px 0 10px; }
.blog_content h3{ font-size:20px; font-weight: 600; color:var(--secondary-color); margin:20px 0 10px; }
.blog_content p { font-size:16px; line-height:27px;}
.blog_content p a{ color:var(--secondary-color); font-weight:600; }
.blog_content .imp_info { width: 100%; float: left;  background: #f4f4f8;  padding: 20px 20px 20px;  border-left: solid 5px var(--secondary-color);   margin: 30px 0 30px;
}
.blog_content .imp_info p{ font-size:18px !important; line-height:30px !important; font-style:italic; margin:0 0 5px; }
.blog_content .imp_info h2{ margin-top:0; }
.blog_content .imp_info ul{ margin:0}
.blog_content ul.read_by{ width:100%;  display:flex; flex-flow:row; margin:0 0 20px; }
.blog_content ul.read_by li{ font-weight:600; margin:0 15px 0 0; position:relative; padding:0 0 0 25px; max-width:33%; display:flex; align-items:center; }
.blog_content ul.read_by li i{ color:#000; margin:0 5px 0 0; font-size:16px; }
.blog_content p{ font-size:16px; line-height:30px; margin:0 0 15px; }
.blog_content ul { margin:0 0 25px; }
.blog_content ul li{ width:100%; position:relative; padding:0 0 0 25px; font-size:16px; line-height:27px; margin:8px 0; }
.blog_content ul li::before{    content: "\f26a"; position: absolute; font-family: 'bootstrap-icons' !important; left: 0; color: var(--secondary-color); font-weight: normal;}

.blog_content figure img{ max-width:100%; max-height:500px; height:auto; object-fit:cover;}
.cta_blog_page{ background:var(--primary-color); padding:15px 20px; color:#fff; margin:30px 0; display:flex; flex-flow:row; align-items:center; justify-content:space-between; }
.cta_blog_page label{ display:flex; font-size:28px; line-height:28px; font-weight:600; color:#fff; margin:0; align-items:center; }
.cta_blog_page label img{ margin-right:10px; }
.cta_blog_page p{ width: auto; font-size:20px; padding:0 20px; margin:0; line-height:30px; flex:0 0 52%; }
.cta_blog_page .btn_area{ flex:0 0 190px; }

.cta_blog_2{ background:#6ef2f2; padding:15px 20px; color:#000; margin:30px 0; display:flex; flex-flow:row; align-items:center; justify-content:space-between; }
.cta_blog_2 label{display:flex; font-size:28px; line-height:28px; font-weight:600; color:#000; margin:0; align-items:center; padding-right:50px; }
.cta_blog_2 label img{ margin-right:10px; max-height:90px; width:auto; }
.cta_blog_2 p{ width: auto; font-size:20px; padding:0 20px; margin:0; line-height:30px; flex:0 0 50%; }
.cta_blog_2 .btn_area{ flex:0 0 200px; }


.padd_100{ padding-bottom:100px; }

.top_doctor .author_dtls span{ width:100%; }
.blog_author{ width:100%; float:left; background:#f7f7f7; border-radius:20px; padding:20px; margin:25px 0 0; display:flex; flex-flow:row; align-items:center;  }
.blog_author figure{ max-width:170px; min-width:170px; height: 170px; background:#fff; border-radius:50%; overflow:hidden; margin:0; line-height:170px; padding:0 15px }
.blog_author figure img{ max-width:100%; }
.blog_author .author_dtls { padding:0 0 0 25px }
.blog_author .author_dtls label{ margin:0 0 5px !important; }
.blog_author .author_dtls span{ font-size:16px; margin:0 0 5px; width:100%; float:left; }
.blog_author .author_dtls h3{ margin:0 0 5px; padding:0; width:100%; float:left;}
.blog_author .author_dtls h3 a { color: #103d7d;}
.blog_author .author_dtls p{ margin:0 }

.toc{ margin: 0; }
.toc li { padding: 0px 10px;  line-height: 1.2; }
.toc li a { font-size: 15px; font-weight: 500;  display: block!important; color: #000;  cursor: pointer;  padding: 0px 0px; transition: all 0.4s ease;  }
.toc li:before{ position: absolute; left: 0px;}
.toc ul li { margin:20px 0; padding:0; }
.toc ul li a:hover { color: var(--secondary-color);}
.toc ul { list-style: none; margin: 0;  padding: 0; border: 0;  vertical-align: baseline;}
.toc li.active{  transform: translateX(0px);  font-weight: 600; padding: 0;}
.toc li::before{ display:none; }

/* active link */
.toc li.active a{  color: var(--secondary-color);}

/* deafult link color hover */
.toc li a.toc-link:hover { text-decoration: underline; color: var(--secondary-color);}
.toc ul ul li a {  font-size: 14px;  font-weight: 400;}
.toc ul ul { padding:0 0 0 25px }
#toc ul ul li { padding-left: 26px; margin:0px 0; padding: 6px 0 6px  00px; list-style-type: circle;}
#toc ul ul li.active a {font-weight: 600;}

.breadcrumb_main{ width:100%; background:#f7f7f7; padding:15px 0;}
.breadcrumb_main ol{
display:flex;
list-style:none;
padding:0;
margin:0;
}

.breadcrumb_main li{
font-size:16px;
color:#000;
}

.breadcrumb_main li+li:before{
content:"›";
margin:0 8px;
color:#000;
}

.breadcrumb_main a{
text-decoration:none;
color:#000;
}
.breadcrumb_main ol li:last-child a{ color:var(--secondary-color);}


.blog_home{ width:100%; float:left; padding:60px 0; background: #f7faff;}
.blog_home ul.blog_list{width:100%; flex-flow:row wrap;  float:left; display:flex; align-items:center; justify-content:space-between; margin:15px 0;}
.blog_home ul.blog_list li{ flex:0 0 32%; min-width:390px; max-width:390px;  margin:20px 0; text-align: center;}
.blog_home ul.blog_list li figure{ width:100%; height:auto; float:left; position:relative; margin: 0 0 25px; overflow: hidden;}
.blog_home ul.blog_list li figure img{ max-width:100%; width:100%; height:auto; transition:ease-in .3s; }
.blog_home ul.blog_list li:hover img{ transform:scale(1.1); }

.blog_home ul.blog_list li figure .rating{ width:auto; position:absolute; width:63px; height:25px; background:#00283C; font-size:12px;  color:#fff; border-radius:12px; right:10px; bottom:-12px; text-align:center; display:flex; align-items:center; justify-content:center; cursor:pointer;  }
.blog_home ul.blog_list li figure .rating svg{ margin-right:5px; }
.blog_home ul.blog_list li label{ width:100%; float:left; font-size:18px; font-weight:500; color:var(--secondary-color); margin:0 0 10px; }
.blog_home ul.blog_list li h3{ width:100%; float:left; font-size:22px; font-weight:600; margin:0 0 8px; padding:0 16px; text-align:center;  }
.blog_home ul.blog_list li h3 a{ color:#000; }
.blog_home ul.blog_list li p{ color:rgba(40, 41, 56, .6); font-size:16px; line-height:24px; margin:0 0 20px;  padding:0 16px;}
.blog_home ul.blog_list li .act_area{ width:100%; float:left;   padding:0 16px;}
.blog_home ul.blog_list li .act_area span{ margin-right:15px;  color:rgba(40, 41, 56, .9);}
.blog_home ul.blog_list li .act_area span img{ margin-right:5px; display:inline; }

/* BLOG SECTION */

.blog_home{
padding:80px 0;
}

.blog_home h2{
font-size:36px;
font-weight:600;
margin-bottom:40px;
}

.blog_home h2 span{
color:#0c7cff;
}


/* CATEGORY FILTER */

.cat_list{
display:flex;
justify-content:center;
flex-wrap:wrap;
gap:10px;
margin-bottom:30px;
padding:0;
list-style:none;
}

.cat_list li{
padding:8px 18px;
border:1px solid #ddd;
border-radius:30px;
cursor:pointer;
font-size:14px;
transition:0.3s;
}

.cat_list li:hover{
background:#0c7cff;
color:#fff;
border-color:#0c7cff;
}

.cat_list li.active{
background:#0c7cff;
color:#fff;
border-color:#0c7cff;
}


/* SEARCH */

.search-container{
text-align:center;
margin-bottom:40px;
}

#blog-search{
width:320px;
max-width:100%;
padding:10px 14px;
border:1px solid #ddd;
border-radius:6px;
outline:none;
font-size:14px;
}


/* BLOG GRID */

.blog_list{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
padding:0;
margin:0;
list-style:none;
}


/* BLOG CARD */

.blog-post{
background:#fff;
border-radius:10px;
overflow:hidden;
box-shadow:0 8px 20px rgba(0,0,0,0.05);
transition:0.3s;
}

.blog-post:hover{
transform:translateY(-5px);
box-shadow:0 15px 30px rgba(0,0,0,0.1);
}


/* BLOG IMAGE */

.blog-post figure{
margin:0;
overflow:hidden;
}

.blog-post img{
width:100%;
height:220px;
object-fit:cover;
display:block;
transition:0.4s;
}

.blog-post:hover img{
transform:scale(1.05);
}


/* BLOG CONTENT */

.dtls_more{
padding:18px;
}

.dtls_more label{
display:block;
font-size:12px;
color:#777;
margin-bottom:8px;
}

.dtls_more h4{
font-size:18px;
font-weight:600;
line-height:1.4;
margin:0;
color:#222;
transition:0.3s;
}

.blog-post:hover h4{
color:#0c7cff;
}


/* LOAD MORE BUTTON */

.load_more_wrap{
margin-top:50px;
}

#load-more-posts{
background:#0c7cff;
border:none;
color:#fff;
padding:12px 28px;
border-radius:6px;
font-size:14px;
cursor:pointer;
transition:0.3s;
}

#load-more-posts:hover{
background:#055bd6;
}


/* RESPONSIVE */

@media(max-width:991px){

.blog_list{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.blog_list{
grid-template-columns:1fr;
}

.blog_home h2{
font-size:28px;
}

#blog-search{
width:100%;
}

}

.blog_single{
padding:80px 0;
}

.blog_title{
font-size:38px;
font-weight:600;
margin-bottom:10px;
}

.blog_meta{
color:#777;
font-size:14px;
margin-bottom:30px;
}

.blog_featured_image img{
width:100%;
border-radius:10px;
margin-bottom:30px;
}

.blog_content{
font-size:16px;
line-height:1.8;
}

.blog_content h2,
.blog_content h3{
margin-top:30px;
margin-bottom:15px;
}

.blog_author_box{
display:flex;
gap:20px;
margin-top:50px;
padding:25px;
background:#f7f7f7;
border-radius:10px;
}

.blog_author_box img{
border-radius:50%;
}


.quick-sale-section .product-box{
    position: relative;
    height: 100%;
}

.quick-sale-section .product-image{
    position: relative;
    overflow: hidden;
    border-radius: 20px;
    background: #fff;
    padding: 20px;
}

.quick-sale-section .product-image img{
    width: 100%;
    height: 260px;
    object-fit: contain;
}

.quick-sale-section .sale-badge{
    position: absolute;
    top: 15px;
    left: 15px;
    background: #0d6efd;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    padding: 6px 12px;
    border-radius: 30px;
}

.quick-sale-section .product-price{
    font-size: 18px;
    font-weight: 700;
    margin-top: 10px;
}

.quick-sale-section .product-price del{
    opacity: .5;
    margin-right: 8px;
}

.quick-sale-section .star-rating{
    font-size: 14px;
}

/* =========================================
   QUICK CHECKOUT SECTION
========================================= */

.homepage-quick-checkout{
    padding:100px 0;
    background:#f7f9fc;
}

.quick-checkout-box{
    background:#fff;
    border-radius:32px;
    padding:60px;
    box-shadow:0 15px 60px rgba(15,23,42,.08);
    overflow:hidden;
}

.quick-product-image{
    background:#f8faff;
    border-radius:28px;
    padding:40px;
    text-align:center;
}

.quick-product-image img{
    width:100%;
    max-width:500px;
    transition:.4s;
}

.quick-product-image img:hover{
    transform:scale(1.03);
}

/* =========================================
   CONTENT
========================================= */

.quick-tag{
    display:inline-block;
    margin-bottom:15px;
    color:#5b6475;
    font-size:15px;
    font-weight:600;
}

.quick-content h2{
    font-size:54px;
    line-height:1.1;
    font-weight:800;
    color:#071c45;
    margin-bottom:25px;
}

.quick-features{
    margin:0 0 35px;
    padding-left:20px;
}

.quick-features li{
    margin-bottom:12px;
    color:#25324b;
    font-size:18px;
}

/* =========================================
   BADGES
========================================= */

.quick-badges{
    display:flex;
    flex-wrap:wrap;
    gap:14px;
    margin-bottom:35px;
}

.quick-badges span{
    background:#f3f6ff;
    border:1px solid #dbe4ff;
    color:#2457ff;
    padding:12px 18px;
    border-radius:60px;
    font-size:14px;
    font-weight:700;
}

/* =========================================
   PRICE
========================================= */

.quick-price-wrap{
    margin-bottom:35px;
}

.old-price{
    font-size:32px;
    color:#a0a7b5;
    text-decoration:line-through;
    font-weight:700;
    margin-bottom:5px;
}

.new-price{
    font-size:54px;
    line-height:1;
    color:#071c45;
    font-weight:900;
}

/* =========================================
   PACKAGE
========================================= */

.package-wrapper label{
    display:block;
    margin-bottom:18px;
    font-size:20px;
    font-weight:800;
    color:#071c45;
}

.package-options{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:40px;
}

.package-btn{
    min-width:150px;
    height:72px;
    border-radius:22px;
    border:2px solid #dbe4ff;
    background:#fff;
    color:#071c45;
    font-size:22px;
    font-weight:800;
    transition:.3s;
}

.package-btn:hover{
    border-color:#2457ff;
    color:#2457ff;
}

.package-btn.active{
    background:linear-gradient(135deg,#2457ff,#4d7dff);
    color:#fff;
    border-color:#2457ff;
    box-shadow:0 10px 25px rgba(36,87,255,.25);
}

/* =========================================
   CART
========================================= */

.quick-cart-bottom{
    display:flex;
    align-items:center;
    gap:20px;
}

.qty-box input{
    width:110px;
    height:68px;
    border-radius:18px;
    border:2px solid #dbe4ff;
    text-align:center;
    font-size:24px;
    font-weight:800;
    outline:none;
}

.quick-cart-btn{
    height:68px;
    padding:0 42px;
    border:none;
    border-radius:20px;
    background:linear-gradient(135deg,#2457ff,#4d7dff);
    color:#fff;
    font-size:20px;
    font-weight:800;
    transition:.3s;
    box-shadow:0 10px 30px rgba(36,87,255,.25);
}

.quick-cart-btn:hover{
    transform:translateY(-2px);
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:991px){

    .quick-checkout-box{
        padding:30px;
    }

    .quick-content h2{
        font-size:38px;
    }

    .new-price{
        font-size:42px;
    }

    .package-btn{
        min-width:120px;
        height:60px;
        font-size:18px;
    }

    .quick-cart-bottom{
        flex-direction:column;
        align-items:stretch;
    }

    .qty-box input,
    .quick-cart-btn{
        width:100%;
    }

}

/* =========================================
   HOMEPAGE CONTENT SECTION
========================================= */

.homepage-content-section{
    padding:120px 0;
    background:#f5f7fb;
    position:relative;
}

.content-wrapper{
    max-width:1180px;
    margin:auto;
}

/* =========================================
   HEADING
========================================= */

.content-heading{
    text-align:center;
    margin-bottom:70px;
}

.content-heading .section-tag{
    display:inline-block;
    margin-bottom:18px;
    color:#ff6b00;
    font-size:15px;
    font-weight:700;
    letter-spacing:1px;
    text-transform:uppercase;
}

.content-heading h2{
    font-size:64px;
    line-height:1.08;
    font-weight:900;
    color:#071c45;
    margin-bottom:24px;
    letter-spacing:-1px;
}

.content-heading h2 span{
    background:linear-gradient(135deg,#2457ff,#4d7dff);
    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
}

.content-heading p{
    max-width:850px;
    margin:auto;
    font-size:21px;
    line-height:1.8;
    color:#5b6475;
}

/* =========================================
   CONTENT BOX
========================================= */

.homepage-content{
    background:#fff;
    border-radius:36px;
    padding:70px;
    box-shadow:
        0 20px 70px rgba(15,23,42,.06);
    position:relative;
    overflow:hidden;
}

.homepage-content.collapsed{
    max-height:950px;
}

.homepage-content.collapsed:after{
    content:'';
    position:absolute;
    left:0;
    bottom:0;
    width:100%;
    height:240px;
    background:linear-gradient(
        to bottom,
        rgba(255,255,255,0),
        #fff
    );
}

/* =========================================
   CONTENT TYPOGRAPHY
========================================= */

.homepage-content h2{
    font-size:32px;
    line-height:1.15;
    font-weight:600;
    color:#071c45;
    margin-top:25px;
    margin-bottom:10px;
    letter-spacing:0px;
}

.homepage-content h2:first-child{
    margin-top:0;
}

.homepage-content h3{
    font-size:24px;
    line-height:1.2;
    font-weight:600;
    color:#071c45;
    margin-top:55px;
    margin-bottom:24px;
}

.homepage-content p{
    font-size:18px;
    line-height:1.8;
    color:#3d4a63;
    margin-bottom:28px;
}

/* =========================================
   LINKS
========================================= */

.homepage-content a{
    color:#2457ff;
    font-weight:700;
    text-decoration:none;
    position:relative;
}

.homepage-content a:hover{
    color:#0d3dd9;
}

/* =========================================
   IMAGE
========================================= */

.homepage-content img{
    width:100%;
    border-radius:28px;
    margin:45px 0;
    display:block;
    box-shadow:
        0 15px 50px rgba(15,23,42,.12);
}

/* =========================================
   LISTS
========================================= */

.homepage-content ul{
    padding-left:22px;
    margin:35px 0;
}

.homepage-content li{
    margin-bottom:18px;
    font-size:20px;
    line-height:1.8;
    color:#3d4a63;
}

/* =========================================
   STRONG
========================================= */

.homepage-content strong{
    color:#071c45;
    font-weight:800;
}

/* =========================================
   READ MORE BUTTON
========================================= */

.read-more-btn{
    margin-top:45px;
    height:68px;
    padding:0 42px;
    border:none;
    border-radius:22px;
    background:linear-gradient(
        135deg,
        #2457ff,
        #4d7dff
    );
    color:#fff;
    font-size:18px;
    font-weight:800;
    transition:.35s;
    box-shadow:
        0 15px 35px rgba(36,87,255,.22);
}

.read-more-btn:hover{
    transform:translateY(-3px);
    box-shadow:
        0 20px 45px rgba(36,87,255,.28);
}

/* =========================================
   MOBILE
========================================= */

@media(max-width:991px){

    .homepage-content-section{
        padding:70px 0;
    }

    .homepage-content{
        padding:35px 25px;
        border-radius:24px;
    }

    .content-heading{
        margin-bottom:45px;
    }

    .content-heading h2{
        font-size:42px;
    }

    .content-heading p{
        font-size:17px;
    }

    .homepage-content h2{
        font-size:34px;
    }

    .homepage-content h3{
        font-size:28px;
    }

    .homepage-content p,
    .homepage-content li{
        font-size:17px;
        line-height:1.9;
    }

    .homepage-content.collapsed{
        max-height:700px;
    }

}

/* =========================================
   HEALTH BLOG SLIDER
========================================= */

.health-blog-box{
    background:#fff;
    border-radius:0px;
    overflow:hidden;
    border:0px solid #e5ebf5;
    display:flex;
    align-items:stretch;
}

.health-blog-image{
    width:40%;
    height:auto;
    overflow:hidden;
}

.health-blog-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:.5s;
}

.health-blog-box:hover img{
    transform:scale(1.05);
}

.health-blog-content{
    width:60%;
    padding:30px;
}

.health-blog-tag{
    display:inline-block;
    margin-bottom:18px;
    font-size:14px;
    font-weight:700;
    color:#ff6b00;
    text-transform:uppercase;
    letter-spacing:1px;
}

.health-blog-content h3{
    font-size:24px;
    line-height:1.2;
    font-weight:700;
    margin-bottom:24px;
}

.health-blog-content h3 a{
    color:#071c45;
    text-decoration:none;
}

.health-blog-content p{
    font-size:18px;
    line-height:1.9;
    color:#5b6475;
    margin-bottom:35px;
}

.health-blog-btn{
    display:inline-flex;
    align-items:center;
    gap:10px;
    height:58px;
    padding:0 28px;
    border-radius:18px;
    background:linear-gradient(
        135deg,
        #2457ff,
        #4d7dff
    );
    color:#fff;
    font-size:16px;
    font-weight:700;
    text-decoration:none;
}

.blog-slider-arrow{
    width:56px;
    height:56px;
    border-radius:50%;
    background:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    color:#071c45;
    font-size:22px;
    box-shadow:0 10px 30px rgba(15,23,42,.1);
}

.carousel-control-prev{
    left:83%;
}

.carousel-control-next{
    right:20px;
}
/* =========================================
   MOBILE
========================================= */

@media(max-width:991px){

    .health-blog-box{
        flex-direction:column;
    }

    .health-blog-image{
        width:100%;
        height:320px;
    }

    .health-blog-content{
        width:100%;
        padding:35px 25px;
    }

    .health-blog-content h3{
        font-size:34px;
    }

    .carousel-control-prev{
        left:10px;
    }

    .carousel-control-next{
        right:10px;
    }

}