/*==============================
LEGAL PAGE
==============================*/

.legal-page{

    background:#FCFDF9;

}

.legal-header{

    max-width:760px;

    margin:auto;

    margin-bottom:70px;

}

.legal-badge{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:10px 20px;

    border-radius:50px;

    background:#EAF9EC;

    color:var(--theme-color);

    font-weight:600;

    margin-bottom:22px;

}

.legal-title{

    font-size:clamp(2.4rem,5vw,4rem);

    font-weight:700;

    color:var(--theme-dark);

    margin-bottom:20px;

}

.legal-desc{

    max-width:700px;

    margin:auto;

    color:#666;

    line-height:1.8;

    font-size:1.08rem;

}

.legal-date{

    margin-top:25px;

    color:#888;

    font-size:.95rem;

}




/* Card */

.legal-card{

    background:rgba(255,255,255,.75);

    backdrop-filter:blur(20px);

    border:1px solid rgba(12,58,7,.08);

    border-radius:30px;

    padding:55px;

    box-shadow:0 25px 60px rgba(0,0,0,.04);

}

.policy-item{

    padding-bottom:40px;

    margin-bottom:40px;

    border-bottom:1px solid #edf1ea;

}

.policy-item:last-child{

    margin-bottom:0;

    padding-bottom:0;

    border:none;

}

.policy-item h3{

    display:flex;

    align-items:center;

    gap:18px;

    font-size:1.45rem;

    color:var(--theme-dark);

    margin-bottom:18px;

}

.policy-item h3 span{

    width:46px;

    height:46px;

    border-radius:50%;

    background:#EAF9EC;

    color:var(--theme-color);

    display:flex;

    align-items:center;

    justify-content:center;

    font-weight:700;

}

.policy-item p{

    margin-left:64px;

    color:#666;

    line-height:1.9;

}




/* Contact */

.legal-contact{

    margin-top:50px;

    background:linear-gradient(135deg,#EAF9EC,#ffffff);

    border-radius:28px;

    padding:40px;

}

.legal-contact h4{

    color:var(--theme-dark);

    font-weight:700;

}

.legal-contact p{

    color:#666;

    margin-top:10px;

}




/* Responsive */

@media(max-width:991px){

.legal-card{

padding:35px;

}

.policy-item p{

margin-left:0;

}

}



@media(max-width:767px){

.legal-card{

padding:25px;

border-radius:22px;

}

.policy-item h3{

font-size:1.2rem;

gap:12px;

}

.policy-item h3 span{

width:38px;

height:38px;

font-size:.9rem;

}

.legal-contact{

padding:25px;

text-align:center;

}

}

/* product page */

/* Page Header Smooth Spacing */
.page-header {
  /* Agar aapka navbar fixed-top hai, toh height overlap na ho isliye top padding thoda badha sakte hain */
  padding-top: 100px !important; 
  padding-bottom: 60px !important;
  border-bottom: 1px solid #e0e0e0;
}

/* Text style optimization for scannability */
.page-title {
  font-family: inherit; /* Jo aapke brand ka main font hai */
}

@media (max-width: 767.98px) {
  .page-header {
    padding-top: 90px !important;
    padding-bottom: 40px !important;
  }
  .page-title {
    font-size: 2rem; /* Mobile par headings adjust karna achha responsive UX hai */
  }
  .page-subtitle {
    font-size: 0.95rem !important;
  }
}

/*====================================
    PRODUCT CATEGORY NAV
====================================*/

.category-wrapper{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:16px;

    flex-wrap:wrap;

}

.category-pill{

    display:inline-flex;

    align-items:center;

    gap:8px;

    padding:12px 24px;

    border-radius:50px;

    background:#fff;

    color:var(--heading-color);

    border:1px solid rgba(0,0,0,.08);

    text-decoration:none;

    font-weight:600;

    transition:.3s;

}

.category-pill:hover,

.category-pill.active{

    background:var(--theme-color);

    color:#fff;

    border-color:var(--theme-color);

    transform:translateY(-3px);

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

/* Mobile */

@media(max-width:768px){

.category-wrapper{

justify-content:flex-start;

flex-wrap:nowrap;

overflow-x:auto;

padding-bottom:10px;

scrollbar-width:none;

}

.category-wrapper::-webkit-scrollbar{

display:none;

}

.category-pill{

flex-shrink:0;

}

}

.category-action{

    display:flex;

    justify-content:flex-end;

}

.category-link{

    font-weight:600;

    color:var(--theme-color);

    text-decoration:none;

    transition:.3s;

}

.category-link:hover{

    letter-spacing:.4px;

}

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

.about-section{

    position:relative;
    overflow:hidden;
    background:#fff;

}

.about-section::before{

    content:'';
    position:absolute;
    width:450px;
    height:450px;
    background:#cefcde36;
    border-radius:50%;
    top:-180px;
    right:-150px;
    opacity:.55;

}

.about-image{

    position:relative;
    border-radius:24px;
    overflow:hidden;
    box-shadow:0 25px 60px rgba(0,0,0,.08);

}

.about-image img{

    width:100%;
    transition:.5s;

}

.about-image:hover img{

    transform:scale(1.05);

}

.section-badge{

    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 18px;
    border-radius:30px;
    background:#EAF8EF;
    color:var(--primary-color);
    font-size:.9rem;
    font-weight:600;
    margin-bottom:20px;

}

.section-title{

    font-size:2.6rem;
    font-weight:700;
    color:#173B2F;
    line-height:1.3;
    margin-bottom:20px;

}

.section-title span{

    color:var(--primary-color);

}

.section-desc{

    font-size:1.1rem;
    color:#555;
    line-height:1.9;

}

.about-section p{

    color:#666;
    line-height:1.9;

}

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

.about-features{

    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
    margin:35px 0;

}

.feature-card{

    display:flex;
    align-items:flex-start;
    gap:16px;

    padding:18px;

    background:#fff;

    border-radius:18px;

    border:1px solid #EDF2EE;

    transition:.35s;

}

.feature-card:hover{

    transform:translateY(-5px);

    box-shadow:0 15px 35px rgba(0,0,0,.08);

}

.feature-card i{

    width:52px;

    height:52px;

    display:flex;

    justify-content:center;

    align-items:center;

    border-radius:50%;

    background:#EAF8EF;

    color:var(--primary-color);

    font-size:24px;

    flex-shrink:0;

}

.feature-card h6{

    margin-bottom:6px;

    font-size:1.05rem;

    font-weight:600;

    color:#173B2F;

}

.feature-card p{

    margin:0;

    font-size:.92rem;

    color:#666;

    line-height:1.6;

}

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

@media(max-width:992px){

    .section-title{

        font-size:2rem;

    }

    .about-image{

        margin-bottom:20px;

    }

}

@media(max-width:768px){

    .about-features{

        grid-template-columns:1fr;

    }

    .section-title{

        font-size:1.8rem;

    }

    .section-desc{

        font-size:1rem;

    }

}

@media(max-width:576px){

    .about-section{

        text-align:center;

    }

    .section-title{

        font-size:1.6rem;

    }

    .feature-card{

        text-align:left;

    }

}

/*=========================================
         COUNTER SECTION
==========================================*/

.about-counter{
    background:#F8FAF8;
}

.counter-box{
    background:#fff;
    padding:35px 20px;
    border-radius:20px;
    text-align:center;
    height:100%;
    transition:.35s;
    border:1px solid #E8ECE8;
}

.counter-box:hover{
    transform:translateY(-8px);
    box-shadow:0 15px 40px rgba(0,0,0,.08);
}

.counter-box h3{
    font-size:2.4rem;
    font-weight:700;
    color:var(--primary-color);
    margin-bottom:10px;
}

.counter-box p{
    margin:0;
    color:#666;
    font-size:1rem;
}


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

@media(max-width:992px){

    .section-title{
        font-size:2rem;
    }

    .about-image{
        margin-bottom:35px;
    }

}

@media(max-width:768px){

    .about-section{
        text-align:center;
    }

    .section-title{
        font-size:1.8rem;
    }

    .section-desc{
        font-size:1rem;
    }

    .feature-item{
        justify-content:center;
        text-align:left;
    }

    .counter-box{
        margin-bottom:20px;
    }

}

@media(max-width:576px){

    .section-title{
        font-size:1.55rem;
    }

    .counter-box h3{
        font-size:2rem;
    }

}

/*==========================
     CONTACT SUPPORT
===========================*/

.contact-support{

    background:#F8FAF8;

}

.contact-support .section-title h2{

    font-size:2.4rem;

    font-weight:700;

    color:#173B2F;

}

.contact-support .section-title h2 span{

    color:var(--primary-color);

}

.contact-support .section-title p{

    max-width:550px;

    margin:20px auto 0;

    color:#666;

}

.support-card{

    background:#fff;

    padding:35px 25px;

    text-align:center;

    border-radius:22px;

    border:1px solid #EEF2EF;

    transition:.35s;

    height:100%;

}

.support-card:hover{

    transform:translateY(-8px);

    box-shadow:0 18px 40px rgba(0,0,0,.08);

}

.support-icon{

    width:70px;

    height:70px;

    margin:auto;

    border-radius:50%;

    background:#EAF8EF;

    display:flex;

    justify-content:center;

    align-items:center;

    margin-bottom:20px;

}

.support-icon i{

    font-size:32px;

    color:var(--primary-color);

}

.support-card h5{

    margin-bottom:15px;

    font-weight:600;

    color:#173B2F;

}

.support-card p{

    color:#666;

    line-height:1.8;

    margin:0;

}

@media(max-width:768px){

.contact-support .section-title h2{

font-size:1.8rem;

}

}