*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
}
body{
    background:#020914;
    color:#fff;
    font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    line-height:1.6;
    overflow-x:hidden;
    width: 100%;
}
html{
    width: 100%;
    overflow-x: hidden;
    scroll-behavior:smooth;
}
a{
    text-decoration:none;
    color:inherit;
}

button,
input{
    font-family:inherit;
}
.search input{
    width:320px;
    padding:15px 18px;
    border-radius:10px;
    border:2px solid #243247;
    background:#111b2b;
    color:white;
}
.search input:focus{
    border-color:#1677ff;
    box-shadow:0 0 0 3px rgba(22,119,255,.15);
    outline:2px solid #1677ff;
    outline-offset:3px;
}
/* =========================
   SEARCH RESULTS
========================= */

.search {
    position: relative;
}

.search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
    background: #ffffff;
    border-radius: 12px;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.18);
    border: 1px solid #e5e7eb;
    z-index: 9999;
    display: none;
}

/* Individual result */

.search-result {
    display: block;
    padding: 14px 16px;
    text-decoration: none;
    color: #111827;
    border-bottom: 1px solid #eeeeee;
    transition: background 0.2s ease;
}

.search-result:last-child {
    border-bottom: none;
}

.search-result:hover {
    background: #f5f8ff;
}

.search-result strong {
    display: block;
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 4px;
}

.search-result small {
    display: block;
    color: #6b7280;
    font-size: 13px;
}

/* No result */

.no-results {
    padding: 18px;
    text-align: center;
    color: #6b7280;
    font-size: 14px;
}
.search-result {
    display: flex;
    align-items: center;
    gap: 12px;
}

.search-result img {
    width: 100px;
    height: 60px;
    object-fit: contain;
    border-radius: 8px;
    background: #f5f5f5;
    flex-shrink: 0;
}

.search-result-info {
    min-width: 0;
}

.search-result-info strong {
    margin-bottom: 3px;
}

.search-result-info small {
    margin-bottom: 3px;
}

.search-result-info span {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: #1677ff;
}
/* site logo */
.site-logo{
    font-size: 1.8rem;
    font-family: system-ui;
    font-weight: 700;
    letter-spacing: 9px;
    color: white;
}
.site-logo span{
    color:#1677ff;
}

.navbar{
    border-bottom:1px solid #172238;
    background:#050d18;
    padding: 15px 0;
    top: 0;
    z-index: 1000;
    position: fixed;
    width: 100%;
}
.nav-container{
    display: flex;
    justify-content: space-between;
    align-items: center;
    text-align: center;
    margin: 0 auto;
    padding: 0 45px;
}
.nav-menu{
    display: flex;
    list-style: none;
    gap: 30px;
}
.nav-menu a{
    text-decoration: none;
    text-transform: capitalize;
    color: white;
    font-size: 1.2rem;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition:all 0.3s ease ;
    padding: 8px ;
    letter-spacing: 1px;
    border-radius: 4px;

}
.nav-menu a:hover{
    color:#1680ff;
    border-bottom: 2px solid #1677ff;
    transform: translateY(4px);
    background: #6d7174;
}
.nav-menu a.active{
    color:#1680ff;
   border-bottom: 2px solid #1677ff;
}
.nav-menu a:active{
    font-size: 1.6rem;
    outline:2px solid #1677ff;
    outline-offset:3px;
}


/* ==========================
   HERO SLIDER
========================== */
.hero-section{
    width: 100%;
    max-width: 1400px;
    box-shadow: 0 4px 20px rgba(10,37,64,0.8);
    margin: 140px auto;
    overflow: hidden;
    position: relative;
    border-radius: 10px;
    border: 1px solid #111b2b;
}
.hero-images{
    display: flex;
    transition: transform 0.8s ease-in-out;
    
}
.slider{
    min-width: 100%;
    position: relative;
    animation:fade 0.6s ease;
    
}
.slider img{
    width: 100%;
    height: 700px;
    object-fit: cover;
    display: block;
     animation:float 2s ease-in-out infinite;
}
.dots{
    text-align: center;
    position: absolute;
    bottom: 15px;
    width: 100%;
}
.dot{
    height: 8px;
    width: 8px;
    background: #ccc;
    border-radius: 50%;
    display: inline-block;
    margin: 0 4px;
    cursor: pointer;
}
.dot.active{
    background: #1677ff;
}
@keyframes fade{
    from{
        opacity:0;
        transform:translateX(40px);
    }
    to{
        opacity:1;
        transform:translateX(0);
    }
}

@keyframes float{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-15px);
    }
    100%{
        transform:translateY(0);
    }
}
/* section 1 */
.shop-category{
    display: flex;
    margin-top: 50px;
    align-items: center;
    flex-direction: column;
}
.category-heading{
    display: flex;
    margin-top: 50px;
    /* gap: 700px;
    align-items: center; */
}
.category-heading h2{
    font-size: 2.3rem;
    font-family: system-ui;
    font-weight: 700;
    font-style: oblique;
}

.category-card{
    display: flex;
    flex-wrap: wrap;
    margin-top: 70px;
    margin-bottom: 70px;
    gap: 50px;
}
.card-info{
    width: 270px;
    background:#111b2b;
    border:2px solid #243247;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(10,37,64,0.8);
    animation:fade 0.6s ease;
    transition: .35s ease;
}
.card-info:hover{
    transform:translateY(-8px);
    border-color:#005fe0;
    box-shadow:0 15px 35px rgba(22,119,255,.25);
}
.card-img{
    width: 220px;
    height: 180px;
    overflow: hidden;
    border-radius: 8px;
}
.card-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s ease;
}
.card-info:hover .card-img img{
    transform:scale(1.08);
}
.card-info h3{
    margin-top: 10px;
    font-size: 1.4rem;
    font-family: system-ui;
    font-weight: 500;
}
.brand-info{
    list-style: none;
    padding-top: 10px;
    line-height: 25px;
    color: #ccd2d6;
    padding-bottom: 20px;
}
.exp-btn{
    text-decoration: none;
    color: #1677ff;
    font-size: 1.2rem;
    font-family: system-ui;
    font-weight: 500;
}
/* section 2 */
.best-pick{
    display: flex;
    margin-top: 50px;
    flex-direction: column;
    margin-bottom: 70px;
}
.best-pick-heading{
    display: flex;
    justify-content: space-between;
    margin: 50px;
    align-items: center;
    margin-left: 170px;
    margin-right: 170px;
}
.best-pick-heading h2{
    font-size: 2.3rem;
    font-family: system-ui;
    font-weight: 600;
    font-style: oblique;
}
.best-pick-heading a{
    text-decoration: none;
    color: #1677ff;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: system-ui;
}
.best-pick-card{
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin: 0 auto;
}
.pick-card-info{
    width: 280px;
    background:#111b2b;
    border:2px solid #243247;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(10,37,64,0.8);
    animation:fade 0.6s ease;
    transition:.35s ease;
}
.pick-card-info:hover{
    transform:translateY(-8px);
    border-color:#005fe0;
    box-shadow:0 15px 35px rgba(22,119,255,.25);
}
.pick-card-img{
    width: 150px;
    height: 150px;
    border-radius: 8px;
    overflow: hidden;
    margin-left: 25px;
}
.pick-card-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition:.35s;
}
.pick-card-info:hover .pick-card-img img{
    transform:scale(1.08);
}
.pick-card-info h3{
    font-size: 1.3rem;
    margin-top: 20px;
    font-family: system-ui;
    font-weight: 500;
}
.pick-card-info p{
    font-size: 1.3rem;
    padding-top: 10px;
    font-weight: 600;
    font-family: system-ui;
}
.pick-card-info p small{
    text-decoration: 3px solid #1677ff line-through;
    font-style: oblique;
    padding-left: 12px;
    color: #ccd2d6;
}
.pick-card-info .storage p{
    font-size: 1rem;
    color: #ccd2d6;
    padding-bottom: 20px;
}
.pick-btn{
    background: #1677ff;
    color: white;
    padding: 12px 60px;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s ease;
    text-decoration: none;
    font-family: system-ui;
}
.pick-btn:hover{
    background:#005fe0;
    transform:translateY(-2px);
    box-shadow:0 10px 25px rgba(22,119,255,.35);

}
.pick-btn:active{
    transform:scale(.98);
}
.pick-btn:focus{
    outline:2px solid #1677ff;
    outline-offset:3px;
}
::selection{
    background:#1677ff;
    color:#fff;
}

.badge {
  /* position: absolute; */
  top: 10px;
  right: 10px;
  background: rgb(132, 245, 132); 
  color: #243247;
  padding: 4px 11px;
  border-radius: 6px;
  font-size: 17px;
  font-weight: 800;
}
/* section 3 */
.comparison-product{
    display: flex;
    flex-direction: column;
    margin-top: 60px;
    margin-bottom: 80px;
}
.comparison-heading{
    display: flex;
    justify-content: space-between;
    margin: 50px;
    align-items: center;
    margin-left: 170px;
    margin-right: 170px;
}
.comparison-heading h2{
    font-size: 2.3rem;
    font-family: system-ui;
    font-style: oblique;
    font-weight: 600;
}
.comparison-heading a{
    text-decoration: none;
    color: #1677ff;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: system-ui;
}
.comparison-card{
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin: 0 auto;
}
.comparison-card-info{
    width: 400px;
    background:#111b2b;
    border:2px solid #243247;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(10,37,64,0.8);
    animation:fade 0.6s ease;
    transition: .35s ease;
}
.comparison-card-info:hover{
    transform:translateY(-8px);
    border-color:#005fe0;
    box-shadow:0 15px 35px rgba(22,119,255,.25);
}
.comparison-img {
    width: 350px;
    height: 230px;
    overflow: hidden;
    border-radius: 8px;
    animation:float 2s ease-in-out infinite;
}
.comparison-img img{
    width: 100%;
    height: 100%;
    margin: auto;
}
/* section 4 */
.article{
    display: flex;
    flex-direction: column;
    margin-top: 60px;
    margin-bottom: 70px;
}
.article-heading{
    display: flex;
    justify-content: space-between;
    margin: 50px;
    align-items: center;
    margin-left: 170px;
    margin-right: 170px;
}
.article-heading h2{
    font-size: 2.3rem;
    font-weight: 600;
    font-style: oblique;
    font-family: system-ui;
}
.article-heading a{
    text-decoration: none;
    color: #1677ff;
    font-size: 1.3rem;
    font-weight: 600;
    font-family: system-ui;
}
.article-card{
    display: flex;
    flex-wrap: wrap;
    gap: 50px;
    margin: 0 auto;
    justify-content: center;
}
.article-card-info{
    width: 400px;
    border-radius: 8px;
    border: 2px solid #243247;
    background: #111b2b;
    padding: 30px;
    box-shadow: 0 4px 20px rgba(10,37,64,0.8);
    animation:fade 0.6s ease;
    transition: .35s ease;
}
.article-card-info:hover{
    transform:translateY(-8px);
    border-color:#005fe0;
    box-shadow:0 15px 35px rgba(22,119,255,.25);
}
.article-img{
    width: 100%;
    height: 200px;
    overflow: hidden;
    border-radius: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.article-img img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: .35s ease;
}
.article-card-info:hover .article-img img{
    transform:scale(1.08);
}
.article-card-info h3{
    font-size: 1.4rem;
    padding-top: 10px;
    font-family: system-ui;
    font-weight: 500;
}
.article-card-info p{
    color: #ccd2d6;
    padding-top: 5px;
    font-size: 1.2rem;
    padding-bottom: 10px;
}
.article-card-info a{
    font-size: 1.2rem;
    font-family: system-ui;
    color: #1677ff;
    font-weight: 500;
    text-decoration: none;
}
.article-badge {
  /* position: absolute; */
  top: 10px;
  right: 60px;
  background: rgb(132, 245, 132); 
  color: #243247;
  padding: 7px 15px;
  border-radius: 8px;
  font-size: 17px;
  font-weight: 800;
  font-family: system-ui;
}
.sml{
    color: #ccd2d6;
    padding-left: 10px;
    font-size: 1.2rem;
}
/* section 5 */
.tranding-product{
    display: flex;
    flex-direction: column;
    margin-top: 60px;
    margin-bottom: 150px;
    padding: 0 170px;
    box-sizing: border-box;
}
.tranding-heading{
    display: flex;
    justify-content: space-between;
    margin: 50px 0;
    align-items: center;
}
.tranding-heading h2{
    font-size: 2.3rem;
    font-family: system-ui;
    font-style: oblique;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-btns{ display: flex; gap: 10px; }
.slider-btns button{ 
  border: 1px solid #243247; background: #111b2b; color: #fff;
  padding: 10px 14px; border-radius: 50%; cursor: pointer; font-size: 18px; font-weight: 900; font-family: system-ui;
  transition: 0.3s ease;
}
.slider-btns button:hover{ background: #1677ff; border-color: #1677ff; }
.slider-btns button:disabled{ opacity: 0.3; cursor: not-allowed; }

.slider-wrapper{ overflow: hidden; width: 100%; }
.tranding-card{
    display: flex;
    gap: 50px;
    transition: transform 0.5s ease;
    flex-wrap: nowrap;
}
.tranding-card-info{
    flex: 0 0 calc(25% - 37.5px); /* 4 card = 100% - 3 gaps / 4 */
    border-radius: 8px;
    border: 2px solid #243247;
    background: #111b2b;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(10,37,64,0.8);
    transition: .35s ease;
    box-sizing: border-box;
}
.tranding-card-info:hover{
    transform:translateY(-8px);
    border-color:#005fe0;
    box-shadow:0 15px 35px rgba(22,119,255,.25);
}
.tranding-img{
    display: flex;
    align-items: center;
}
.tranding-img img{
    width: 120px;
    height: 100px;
    margin-right: 15px;
    border-radius: 8px;
    transition: .35s ease;
}
.tranding-card-info:hover .tranding-img img{
    transform:scale(1.08);
}
.tranding-img h3{
    font-size: 1.3rem;
    font-family: system-ui;
    font-weight: 500;
}
.tranding-img p{
    color: #ccd2d6;
    padding-top: 10px;
    font-size: 1rem;
    font-family: system-ui;
}
.tranding-img p span{
    color: limegreen;
    font-weight: bolder;
    padding-left: 12px;
}


/* footer section */
.main-footer{
    display: flex;
    flex-wrap: wrap;
    gap: 80px;
    justify-content: center;
    background: #111b2b;
}
.main-footer-heading{
    display: flex;
    width: 400px;
    flex-direction: column;
    margin-bottom: 150px;
}
.main-footer-heading h3{
    font-size: 2.2rem;
    font-family: system-ui;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 70px;
}
.main-footer-heading span{
    color: #1677ff;
}
.main-footer-heading p{
    font-size: 1.1rem;
    line-height: 30px;
    padding: 20px;
}
.use-full-link{
    display: flex;
    flex-direction: column;
}
.use-full-link h3{
    font-size: 2.2rem;
    font-family: system-ui;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 70px;
}
.use-full-link span{
    color: #1677ff;
}
.links{
    text-decoration: none;
    list-style: none;
    font-size: 1.5rem;
    padding: 20px;
}
.links li{
    margin-bottom: 15px;
}
.links a{
    text-decoration: none;
    text-transform: capitalize;
    color: white;
    font-size: 1.3rem;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition:all 0.3s ease ;
    padding: 8px ;
    letter-spacing: 1px;
    border-radius: 4px;
}
.links a:hover{
    color: #1677ff;
    border-bottom: 2px solid #1680ff;
    transform: translateY(4px);
    background: #6d7174;
}
.local-contact{
    display: flex;
    flex-direction: column;
}
.local-contact h3{
    font-size: 2.2rem;
    font-family: system-ui;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 70px;
}
.local-contact span{
    color: #1677ff;
}
.contact-info-foter{
    text-decoration: none;
    list-style: none;
    font-size: 1.5rem;
    padding: 20px;
}
.contact-info-foter li{
    margin-bottom: 15px;
}
.contact-info-foter a{
    text-decoration: none;
    text-transform: capitalize;
    color: white;
    font-size: 1.3rem;
    font-weight: 500;
    border-bottom: 2px solid transparent;
    transition:all 0.3s ease ;
    padding: 8px ;
    letter-spacing: 1px;
    border-radius: 4px;
}
.contact-info-foter a:hover{
    color: #1677ff;
    border-bottom: 2px solid #1680ff;
    transform: translateY(4px);
    background: #6d7174;
}
.disclaimer{
    display: flex;
    width: 350px;
    flex-direction: column;
    margin-bottom: 50px;
}
.disclaimer h3{
    font-size: 2.2rem;
    font-family: system-ui;
    font-weight: 600;
    letter-spacing: 1px;
    margin-top: 70px;
    
}
.disclaimer p{
    font-size: 1.1rem;
    line-height: 30px;
    padding: 20px;
}
.copyright{
    display: flex;
    justify-content: center;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 30px;
    border-top: 2px solid #1677ff;
}
.copyright p{
    font-size: 1.4rem;
}

/*=========================================
        MOBILE MENU BUTTON
=========================================*/
.hamburger{
    display:none;
    width:32px;
    cursor:pointer;
}
.bar{
    display:block;
    height:3px;
    margin:6px 0;
    background:#fff;
    border-radius:5px;
    transition:.3s;
}
 /*=========================================
        TABLET
=========================================*/

@media(max-width:992px){
.search input{
    max-width:250px;
}
.nav-menu{
    gap:18px;
}
.hero-section{
    margin-top:110px;
}
.slider img{
    height:500px;
}

}

/*=========================================
        MOBILE
=========================================*/

@media(max-width:768px){
    body{
        padding-bottom: 80px;
    }
    .hamburger{
        display: block;
    }
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

.nav-container{
    flex-wrap:wrap;
}
.search{
    order:3;
    width:100%;
    margin-top:12px;
}
.search input{
    max-width:100%;
}
.hamburger{
    display:block;
}
.nav-menu{
    display:none;
    width:100%;
    flex-direction:column;
    align-items:flex-start;
    background:#091321;
    margin-top:15px;
    padding:15px;
    border-radius:10px;
}
.nav-menu.active{
    display:flex;
}
.nav-menu a{
    width:100%;
    padding:12px 0;
}
.hero-section{
    width:95%;
    margin:110px auto 40px;
    border-radius:14px;
}
.slider img{
    height:230px;
    object-fit:cover;
}
.dots{
    bottom:12px;
    gap:8px;
}
.dot{
    width:10px;
    height:10px;
}

/* shop category mobile responsive */
  .shop-category {
    margin-top: 30px ;
  }

  .category-heading h2 {
    font-size: 1.7rem ; 
    text-align: center;
  }

  .category-card {
    gap: 12px ; 
    margin-top: 30px ;
    margin-bottom: 30px ;
    padding: 0 12px;
    justify-content: center;
    
  }

  /* Har card 50% width lega = 2 side by side */
  .card-info {
    width: calc(50% - 6px) ;
    padding: 15px ; 
    box-sizing: border-box ;
  }

  /* Image bhi choti */
  .card-img {
    width: 100% ;
    height: 120px;
  }

  /* Text chota */
  .card-info h3 {
    font-size: 1rem ;
    margin-top: 8px ;
  }

  .brand-info {
    font-size: 0.85rem ;
    line-height: 20px ;
    padding-bottom: 12px ;
  }

  .exp-btn {
    font-size: 1rem ;
  }

  /* best pick mmobile responsive */
  .best-pick {
    margin-top: 30px ;
    margin-bottom: 40px ;
  }

  .best-pick-heading {
    margin: 20px 15px ; /* margin kam */
    flex-direction: column ; /* heading + link neeche */
    gap: 8px ;
    text-align: center;
  }

  .best-pick-heading h2 {
    font-size: 1.7rem ; /* heading choti */
  }

  .best-pick-heading a {
    font-size: 1.1rem ;
  }

  /* Card container 2 column */
  .best-pick-card {
    gap: 12px ; /* gap kam */
    padding: 0 12px ;
    justify-content: center ;
  }

  /* Har card 50% width = 2 side by side */
  .pick-card-info {
    width: calc(50% - 6px) ;
    padding: 15px ; /* padding kam */
    box-sizing: border-box ;
  }

  /* Image choti aur center */
  .pick-card-img {
    width: 100% ;
    height: 110px ;
    margin-left: 0 ;
  }

  /* Text chota */
  .pick-card-info h3 {
    font-size: 1rem ;
    margin-top: 10px ;
  }

  .pick-card-info p {
    font-size: 1rem ;
    padding-top: 10px ;
    padding-bottom: 5px ;
  }

  .pick-btn {
    padding: 10px 0 ; /* full width button */
    width: 100% ;
    font-size: 16px ;
    display: block;
    text-align: center;
  }
  .pick-card-info .storage p{
    font-size: 1rem;
    padding-top: 0;
  }

  .badge {
    font-size: 13px ;
    padding: 3px 8px ;
  }
  /* comparision responsive */
  .comparison-product {
    margin-top: 40px ;
    margin-bottom: 50px ;
  }

  .comparison-heading {
    margin: 20px 15px ; /* margin kam */
    flex-direction: column ; /* heading + link neeche */
    gap: 8px ;
    text-align: center;
  }

  .comparison-heading h2 {
    font-size: 1.7rem ; /* heading choti */
  }

  .comparison-heading a {
    font-size: 1.1rem ;
  }

  /* Card container 2 column */
  .comparison-card {
    gap: 12px ; 
    padding: 0 12px;
    justify-content: center ;
  }

  /* Har card 50% width = 2 side by side */
  .comparison-card-info {
    width: calc(50% - 6px) ;
    padding: 15px ; 
    box-sizing: border-box ;
  }

  /* Image choti */
  .comparison-img {
    width: 100% ;
    height: 120px ;
  }

  .comparison-img img {
    animation: none ; 
  }
  /* article section */
  .article {
    margin-top: 40px ;
    margin-bottom: 50px ;
  }

  .article-heading {
    margin: 20px 15px ; /* margin kam */
    flex-direction: column ; /* heading + link neeche */
    gap: 8px ;
    text-align: center;
  }

  .article-heading h2 {
    font-size: 1.7rem ; /* heading choti */
  }

  .article-heading a {
    font-size: 1.1rem ;
  }

  /* Card container 2 column */
  .article-card {
    gap: 12px ; /* gap kam */
    padding: 0 12px ;
    justify-content: center ;
  }

  /* Har card 50% width = 2 side by side */
  .article-card-info {
    padding: 15px ; /* padding kam */
    box-sizing: border-box ;
  }

  /* Image choti */
  .article-img {
    height: 180px ;
    margin-bottom: 10px ;
  }

  /* Text chota */
  .article-card-info h3 {
    font-size: 1rem ;
    padding-top: 10px ;
  }

  .article-card-info p {
    font-size: 0.9rem ;
    padding-top: 8px ;
    padding-bottom: 12px ;
  }

  .article-card-info a {
    font-size: 1rem ;
  }

  .article-badge {
    font-size: 12px ;
    padding: 4px 8px ;
  }

  .sml {
    font-size: 0.9rem ;
  }
/* tranding products */
    .tranding-product{ 
        padding: 0 20px;
    }
    .tranding-heading{ margin: 30px 0; }
    .tranding-heading h2{ font-size: 1.7rem; }
    .tranding-card{ gap: 20px; } /* mobile me gap kam */
    .tranding-card-info{
        flex: 0 0 100%; 
    }

  /* footer section */
  .main-footer {
    gap: 0 ;
    padding: 40px 20px ;
    flex-direction: column ;
  }

  /* Har column ko card jesa feel */
  .main-footer-heading,
  .use-full-link,
  .local-contact,
  .disclaimer {
    width: 100% ;
    margin-bottom: 30px ;
    padding: 20px ;
    background: rgba(22, 119, 255, 0.05) ; /* halka blue bg */
    border: 1px solid rgba(22, 119, 255, 0.15) ;
    border-radius: 12px ;
    backdrop-filter: blur(10px) ;
  }

  /* Heading premium */
  .main-footer-heading h3,
  .use-full-link h3,
  .local-contact h3,
  .disclaimer h3 {
    font-size: 1.5rem ;
    margin-top: 0 ;
    margin-bottom: 15px ;
    letter-spacing: 0.5px ;
    position: relative ;
    padding-bottom: 10px ;
  }

  /* Heading ke neeche blue line */
  .main-footer-heading h3::after,
  .use-full-link h3::after,
  .local-contact h3::after,
  .disclaimer h3::after {
    content: '' ;
    position: absolute ;
    bottom: 0 ;
    left: 0 ;
    width: 50px ;
    height: 3px ;
    background: #1677ff ;
    border-radius: 2px ;
  }

  .main-footer-heading span,
  .use-full-link span,
  .local-contact span {
    color: #1677ff ;
  }

  /* Text chota aur clean */
  .main-footer-heading p,
  .disclaimer p {
    font-size: 0.95rem ;
    line-height: 24px ;
    padding: 0 ;
    color: #ccd2d6 ;
  }

  /* Links ko 2 column grid */
  .links,
  .contact-info-foter {
    font-size: 1rem ;
    padding: 0 ;
    display: grid ;
    grid-template-columns: 1fr 1fr ; /* 2 column */
    gap: 5px ;
  }

  .links li,
  .contact-info-foter li {
    margin-bottom: 0 ;
  }

  /* Premium link style */
  .links a,
  .contact-info-foter a {
    font-size: 0.9rem ;
    padding: 10px 12px ;
    display: block ;
    background: rgba(22, 119, 255, 0.08) ;
    border: 1px solid transparent ;
    border-radius: 8px ;
    letter-spacing: 0.1px ;
    transition: all 0.3s ease ;
  }

  /* Mobile hover = tap effect */
  .links a:active,
  .contact-info-foter a:active {
    background: #1677ff ;
    color: white ;
    transform: translateY(-2px) ;
    box-shadow: 0 4px 12px rgba(22, 119, 255, 0.3) ;
  }

  /* Copyright premium */
  .copyright {
    padding: 20px 15px ;
    text-align: center ;
  }

  .copyright p {
    font-size: 0.95rem ;
    line-height: 22px ;
  }

    /* BOTTOM NAV  */
    .bottom-nav{
        position: fixed;
        bottom: 0;
        left: 0;
        right: 0;
        background: #050d18;
        border-top: 1px solid #172238;
        display: flex;
        justify-content: space-around;
        padding: 8px 0;
        z-index: 1000;
    }
    .bottom-nav a{
        display: flex;
        flex-direction: column;
        align-items: center;
        font-size: 11px;
        color: #b8c2d0;
    }
    .bottom-nav a.active{
        color: #1677ff;
    }
    .bottom-nav span{
        font-size: 22px;
        margin-bottom: 3px;
    }
}
/* Desktop me bottom nav hide */
@media (min-width: 769px){
    .bottom-nav{
        display: none;
    }
    .mobile-filter-btn{
        display: none;
    }
}

/*=========================================
      EXTRA SMALL MOBILE
=========================================*/

@media(max-width:420px){
    .navbar{
        padding-top: 10px;
        padding-bottom: 5px;
    }
    .site-logo{
        font-size: 1.3rem;

    }
    .search{
        margin-top: 5px;
    }
    .search input{
        padding: 8px 8px;
    }
    .bar{
        height: 2px;
    }
    .slider img{
    height:200px;
}
}

/* ========== BOHAT CHOTE PHONE 400px SE KAM Shop Category  ========== */
@media (max-width: 400px) {
  .card-info {
    width: 100% ; /* 1 column */
  }
  .card-img {
    height: 150px ;
  }
  /* best pick responsive */
  .pick-card-info {
    width: 100% ; /* 1 column */
  }
  .pick-card-img {
    height: 160px ;
  }
  .pick-card-img img{
    height: 130%;
  }
  /* comparision responsive */
  .comparison-card-info {
    width: 100% ; /* 1 column */
  }
  .comparison-img {
    height: 200px;
  }
  /* article responsive */
  .article-card-info {
    width: 100% ; /* 1 column */
  }
  .article-img {
    height: 160px ;
  }
  /* trand product */
  .tranding-card-info {
    width: 100% ; 
  }
  .tranding-heading h2{
    font-size: 1.5rem;
  }
  .tranding-img {
    flex-direction: row ; 
    text-align: left;
  }
  .tranding-img img {
    width: 100px ;
    height: 90px ;
    margin-right: 10px ;
    margin-bottom: 0 ;
  }
  /* footer section */
  .links,
  .contact-info-foter {
    grid-template-columns: 1fr ; /* 1 column */
  }
}
/* =========================
   SEO MAIN HEADING
   Keeps H1 available to search engines
   without changing the existing design
========================= */

.seo-main-heading{
    position:absolute;
    width:1px;
    height:1px;
    padding:0;
    margin:-1px;
    overflow:hidden;
    clip:rect(0,0,0,0);
    white-space:nowrap;
    border:0;
}
/* =========================
   INTERNAL PRODUCT LINKS
   ========================= */

.pick-card-info h3 a{
    color: inherit;
    text-decoration: none;
}

.pick-card-info h3 a:hover{
    color: #1677ff;
}

/* =========================
   DARAZ 1% CASHBACK SECTION
========================= */

.cashback-section {
    width: 100%;
    padding: 90px 20px;
    background:
        radial-gradient(circle at 15% 50%, rgba(22, 119, 255, 0.12), transparent 30%),
        radial-gradient(circle at 85% 50%, rgba(255, 87, 34, 0.10), transparent 30%),
        #020914;
    overflow: hidden;
    animation:fade 0.6s ease;
}

.cashback-container {
    max-width: 1200px;
    margin: auto;
    min-height: 500px;
    padding: 55px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 50px;

    background: linear-gradient(
        135deg,
        rgba(17, 27, 43, 0.96),
        rgba(7, 16, 29, 0.96)
    );

    border: 1px solid #243247;
    border-radius: 28px;
    position: relative;
    overflow: hidden;

    box-shadow:
        0 25px 80px rgba(0, 0, 0, 0.35),
        inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

/* Glow */

.cashback-container::before {
    content: "";
    position: absolute;
    width: 350px;
    height: 350px;
    top: -180px;
    left: -150px;
    background: rgba(22, 119, 255, 0.12);
    filter: blur(80px);
    border-radius: 50%;
}

.cashback-container::after {
    content: "";
    position: absolute;
    width: 300px;
    height: 300px;
    bottom: -170px;
    right: -120px;
    background: rgba(255, 87, 34, 0.10);
    filter: blur(80px);
    border-radius: 50%;
}

/* Content */

.cashback-content {
    position: relative;
    z-index: 2;
}

.cashback-badge {
    display: inline-block;
    padding: 8px 15px;
    border-radius: 50px;
    background: rgba(22, 119, 255, 0.10);
    border: 1px solid rgba(22, 119, 255, 0.35);
    color: #4f9cff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    margin-bottom: 18px;
}

.cashback-content h2 {
    margin: 0;
    color: #ffffff;
    font-size: 42px;
    line-height: 1.15;
    font-weight: 800;
}

.cashback-content h2 span {
    color: #ff5722;
}

.cashback-description {
    max-width: 650px;
    margin: 20px 0 30px;
    color: #aeb9c8;
    font-size: 16px;
    line-height: 1.8;
}

.cashback-description strong {
    color: #ffffff;
}

/* Steps */

.cashback-steps {
    display: flex;
    flex-direction: column;
    gap: 17px;
    margin-bottom: 30px;
}

.cashback-step {
    display: flex;
    align-items: center;
    gap: 15px;
}

.step-number {
    min-width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 12px;
    background: #0d1b2e;
    border: 1px solid #243b58;

    color: #4f9cff;
    font-size: 13px;
    font-weight: 800;
}

.cashback-step h3 {
    margin: 0 0 3px;
    color: #ffffff;
    font-size: 15px;
}

.cashback-step p {
    margin: 0;
    color: #7f8da0;
    font-size: 13px;
}

/* Buttons */

.cashback-actions {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.cashback-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 9px;

    padding: 14px 21px;
    border-radius: 10px;

    background: #25D366;
    color: #ffffff;

    text-decoration: none;
    font-size: 14px;
    font-weight: 700;

    transition: 0.3s ease;
}

.cashback-whatsapp:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.22);
}

.whatsapp-icon {
    font-size: 17px;
}

.cashback-products {
    padding: 13px 20px;
    border: 1px solid #30435d;
    border-radius: 10px;

    color: #d9e2ef;
    text-decoration: none;
    font-size: 14px;
    font-weight: 600;

    transition: 0.3s ease;
}

.cashback-products:hover {
    border-color: #1677ff;
    color: #ffffff;
    background: rgba(22, 119, 255, 0.08);
}

.cashback-note {
    margin: 18px 0 0;
    color: #647286;
    font-size: 11px;
    line-height: 1.6;
}

/* =========================
   RIGHT VISUAL
========================= */

.cashback-visual {
    min-height: 390px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.cashback-circle {
    width: 300px;
    height: 300px;
    position: absolute;

    border-radius: 50%;
    border: 1px solid rgba(22, 119, 255, 0.25);
    background: radial-gradient(
        circle,
        rgba(22, 119, 255, 0.12),
        transparent 65%
    );
}

/* Main Cashback Card */

.cashback-card {
    width: 270px;
    padding: 25px;
    position: relative;
    z-index: 3;

    border-radius: 22px;

    background: rgba(10, 22, 38, 0.95);
    border: 1px solid #2b415e;

    box-shadow:
        0 25px 60px rgba(0, 0, 0, 0.45),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);

    transform: rotate(-4deg);
}

.cashback-card-top,
.cashback-card-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.cashback-card-top {
    color: #718198;
    font-size: 10px;
    letter-spacing: 1.5px;
    font-weight: 700;
}

.cashback-check {
    width: 27px;
    height: 27px;

    display: flex;
    align-items: center;
    justify-content: center;

    border-radius: 50%;
    background: rgba(37, 211, 102, 0.12);
    color: #25D366;
    font-size: 14px;
}

.cashback-percent {
    margin: 25px 0;
    color: #ffffff;
    font-size: 78px;
    line-height: 1;
    font-weight: 900;
    letter-spacing: -4px;
}

.cashback-percent span {
    color: #ff5722;
    font-size: 42px;
}

.cashback-card-bottom {
    padding-top: 15px;
    border-top: 1px solid #22344c;

    color: #8290a3;
    font-size: 11px;
}

/* Floating Cards */

.floating-card {
    position: absolute;
    z-index: 4;

    padding: 12px 16px;
    border-radius: 10px;

    background: #111d2d;
    border: 1px solid #2b405b;

    color: #dce6f3;
    font-size: 12px;
    font-weight: 700;

    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.floating-card-one {
    top: 55px;
    left: 15px;
}

.floating-card-two {
    right: 10px;
    bottom: 60px;
}
/* =========================
   CASHBACK - MOBILE FIX
========================= */

@media (max-width: 600px) {

    .cashback-section {
        padding: 35px 10px;
    }

    .cashback-container {
        display: block;
        min-height: auto;
        padding: 25px 18px;
        border-radius: 18px;
    }

    .cashback-badge {
        font-size: 10px;
        padding: 6px 11px;
        margin-bottom: 12px;
    }

    .cashback-content h2 {
        font-size: 25px;
        line-height: 1.2;
        margin-bottom: 12px;
    }

    .cashback-description {
        font-size: 13px;
        line-height: 1.6;
        margin: 10px 0 20px;
    }

    /* Steps compact */

    .cashback-steps {
        gap: 12px;
        margin-bottom: 20px;
    }

    .cashback-step {
        gap: 10px;
    }

    .step-number {
        min-width: 32px;
        width: 32px;
        height: 32px;
        border-radius: 8px;
        font-size: 10px;
    }

    .cashback-step h3 {
        font-size: 13px;
        margin-bottom: 2px;
    }

    .cashback-step p {
        font-size: 11px;
        line-height: 1.4;
    }

    /* Buttons */

    .cashback-actions {
        display: flex;
        flex-direction: column;
        gap: 9px;
        width: 100%;
    }

    .cashback-whatsapp,
    .cashback-products {
        width: 100%;
        min-height: 42px;
        padding: 11px 15px;
        box-sizing: border-box;
        justify-content: center;
        font-size: 12px;
    }

    .cashback-note {
        margin-top: 12px;
        font-size: 9px;
        line-height: 1.5;
    }

    /* Compact cashback visual */

    .cashback-visual {
        min-height: 175px;
        height: 175px;
        margin-top: 8px;
        transform: none;
    }

    .cashback-circle {
        width: 150px;
        height: 150px;
    }

    .cashback-card {
        width: 175px;
        padding: 16px;
        border-radius: 15px;
        transform: rotate(-3deg);
    }

    .cashback-card-top {
        font-size: 8px;
    }

    .cashback-check {
        width: 20px;
        height: 20px;
        font-size: 10px;
    }

    .cashback-percent {
        margin: 15px 0;
        font-size: 48px;
        letter-spacing: -2px;
    }

    .cashback-percent span {
        font-size: 27px;
    }

    .cashback-card-bottom {
        padding-top: 10px;
        font-size: 8px;
    }

    .floating-card {
        padding: 8px 10px;
        border-radius: 7px;
        font-size: 9px;
    }

    .floating-card-one {
        top: 25px;
        left: 0;
    }

    .floating-card-two {
        right: 0;
        bottom: 25px;
    }
}